[9e8054]: / paper / NAR / 02_transcriptome / CNN / 04_visulization.ipynb

Download this file

241 lines (240 with data), 392.4 kB

{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {},
   "outputs": [],
   "source": [
    "import pandas as pd\n",
    "from glob import glob\n",
    "import numpy as np\n",
    "from aggmap import AggMap, AggModel"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {},
   "outputs": [],
   "source": [
    "flist = glob('./data/*.csv.gzip')\n",
    "flist = pd.Series(flist).sort_values().tolist()\n",
    "fall = []\n",
    "for i in flist:\n",
    "    df1 = pd.read_csv(i, compression='gzip', index_col = 0)\n",
    "    df1['class'] = i.split('/')[-1].split('.csv')[0]\n",
    "    fall.append(df1)\n",
    "    \n",
    "df = pd.concat(fall, axis=0)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": 21,
   "metadata": {},
   "outputs": [],
   "source": [
    "low_data_class = ['01_ACC', '05_CHOL', '07_DLBC', '08_ESCA', '09_GBM', '11_KICH',\n",
    "       '14_LAML', '19_MESO', '21_PAAD', '22_PCPG', '24_READ', '28_TGCT',\n",
    "       '30_THYM', '32_UCS', '33_UVM']\n",
    "df1 = df[df['class'].isin(low_data_class)]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 24,
   "metadata": {},
   "outputs": [],
   "source": [
    "dfx = df1[df1.columns[:-1]]\n",
    "dfy = df1[df1.columns[-1:]]\n",
    "dfx = np.log2(dfx + 1) #apply log2(x + 1)\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 25,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2021-01-19 22:21:54,881 - \u001b[32mINFO\u001b[0m - [bidd-aggmap]\u001b[0m - Calculating distance ...\u001b[0m\n",
      "2021-01-19 22:21:55,083 - \u001b[32mINFO\u001b[0m - [bidd-aggmap]\u001b[0m - the number of process is 16\u001b[0m\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "100%|##########| 1583310/1583310 [01:03<00:00, 24935.88it/s]\n",
      "100%|##########| 1583310/1583310 [00:00<00:00, 1826129.78it/s]\n",
      "100%|##########| 1780/1780 [00:03<00:00, 498.68it/s]\n"
     ]
    }
   ],
   "source": [
    "mp = AggMap(dfx.T)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 28,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2021-01-19 22:24:45,439 - \u001b[32mINFO\u001b[0m - [bidd-aggmap]\u001b[0m - Applying grid feature map(assignment), this may take several minutes(1~30 min)\u001b[0m\n",
      "2021-01-19 22:24:49,525 - \u001b[32mINFO\u001b[0m - [bidd-aggmap]\u001b[0m - Finished\u001b[0m\n"
     ]
    },
    {
     "data": {
      "text/plain": [
       "<aggmap.map.AggMap at 0x7f6ee9277ba8>"
      ]
     },
     "execution_count": 28,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "mp.fit(feature_group_list=dfy['class'].tolist(), min_dist = 0.9, verbose = 0)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 29,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2021-01-19 22:24:49,532 - \u001b[32mINFO\u001b[0m - [bidd-aggmap]\u001b[0m - generate file: ./feature points_1780_correlation_umap_scatter\u001b[0m\n",
      "2021-01-19 22:24:49,577 - \u001b[32mINFO\u001b[0m - [bidd-aggmap]\u001b[0m - save html file to ./feature points_1780_correlation_umap_scatter\u001b[0m\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<iframe style=\"border:0;outline:none;overflow:hidden\" srcdoc=\"&lt;!DOCTYPE html&gt; &lt;html lang=&quot;en&quot;&gt; &lt;head&gt; &lt;meta charset=&quot;utf-8&quot; /&gt; &lt;link href=&quot;https://www.highcharts.com/highslide/highslide.css&quot; rel=&quot;stylesheet&quot; /&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://code.highcharts.com/6/highcharts.js&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://code.highcharts.com/6/highcharts-more.js&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://code.highcharts.com/6/modules/heatmap.js&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://code.highcharts.com/6/modules/exporting.js&quot;&gt;&lt;/script&gt; &lt;/head&gt; &lt;body style=&quot;margin:0;padding:0&quot;&gt; &lt;div id=&quot;container&quot; style=&quot;width:1000px;height:850px;&quot;&gt;Loading....&lt;/div&gt; &lt;script&gt; $(function(){ Highcharts.setOptions({&quot;global&quot;: {}, &quot;lang&quot;: {}}); var option = {&quot;chart&quot;: {&quot;renderTo&quot;: &quot;container&quot;, &quot;width&quot;: 1000, &quot;height&quot;: 850, &quot;type&quot;: &quot;scatter&quot;, &quot;zoomType&quot;: &quot;xy&quot;}, &quot;colors&quot;: {}, &quot;credits&quot;: {&quot;enabled&quot;: false}, &quot;drilldown&quot;: {}, &quot;exporting&quot;: {}, &quot;labels&quot;: {}, &quot;legend&quot;: {&quot;align&quot;: &quot;right&quot;, &quot;layout&quot;: &quot;vertical&quot;, &quot;margin&quot;: 1, &quot;verticalAlign&quot;: &quot;top&quot;, &quot;y&quot;: 40, &quot;symbolHeight&quot;: 12, &quot;floating&quot;: false}, &quot;loading&quot;: {}, &quot;navigation&quot;: {}, &quot;pane&quot;: {}, &quot;plotOptions&quot;: {&quot;scatter&quot;: {&quot;marker&quot;: {&quot;radius&quot;: 2, &quot;states&quot;: {&quot;hover&quot;: {&quot;enabled&quot;: true, &quot;lineColor&quot;: &quot;rgb(100,100,100)&quot;}}}, &quot;states&quot;: {&quot;hover&quot;: {&quot;marker&quot;: {&quot;enabled&quot;: false}}}, &quot;tooltip&quot;: {&quot;headerFormat&quot;: &quot;&lt;b&gt;{series.name}&lt;/b&gt;&lt;br&gt;&quot;, &quot;pointFormat&quot;: &quot;{point.IDs}&quot;}}, &quot;series&quot;: {&quot;turboThreshold&quot;: 5000, &quot;dataLabels&quot;: {&quot;enabled&quot;: false, &quot;format&quot;: &quot;{point.IDs}&quot;}}}, &quot;series&quot;: {}, &quot;subtitle&quot;: {&quot;text&quot;: &quot;number of feature points: 1780, metric method: correlation&quot;}, &quot;title&quot;: {&quot;text&quot;: &quot;2D emmbedding of feature points based on umap method&quot;}, &quot;tooltip&quot;: {}, &quot;xAxis&quot;: {&quot;title&quot;: {&quot;enabled&quot;: true, &quot;text&quot;: &quot;X&quot;, &quot;style&quot;: {&quot;fontSize&quot;: 20}}, &quot;labels&quot;: {&quot;style&quot;: {&quot;fontSize&quot;: 20}}, &quot;gridLineWidth&quot;: 1, &quot;startOnTick&quot;: true, &quot;endOnTick&quot;: true, &quot;showLastLabel&quot;: true}, &quot;yAxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;Y&quot;, &quot;style&quot;: {&quot;fontSize&quot;: 20}}, &quot;labels&quot;: {&quot;style&quot;: {&quot;fontSize&quot;: 20}}, &quot;gridLineWidth&quot;: 1}}; var chart = new Highcharts.Chart(option); var data = [{&quot;data&quot;: [{&quot;x&quot;: -0.276031494140625, &quot;y&quot;: 17.949005126953125, &quot;IDs&quot;: &quot;TCGA-OR-A5J1-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.5523609519004822, &quot;y&quot;: 18.01845932006836, &quot;IDs&quot;: &quot;TCGA-OR-A5J2-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.4865606725215912, &quot;y&quot;: 17.921939849853516, &quot;IDs&quot;: &quot;TCGA-OR-A5J3-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.5303130745887756, &quot;y&quot;: 17.906370162963867, &quot;IDs&quot;: &quot;TCGA-OR-A5J5-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.019066497683525085, &quot;y&quot;: 16.47916603088379, &quot;IDs&quot;: &quot;TCGA-OR-A5J6-01A-31R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.027522817254066467, &quot;y&quot;: 18.500608444213867, &quot;IDs&quot;: &quot;TCGA-OR-A5J7-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 10.582968711853027, &quot;y&quot;: -6.539219379425049, &quot;IDs&quot;: &quot;TCGA-OR-A5J8-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.4444117844104767, &quot;y&quot;: 18.80107307434082, &quot;IDs&quot;: &quot;TCGA-OR-A5J9-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.8629112243652344, &quot;y&quot;: 17.75189208984375, &quot;IDs&quot;: &quot;TCGA-OR-A5JA-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 9.270282745361328, &quot;y&quot;: -5.528369903564453, &quot;IDs&quot;: &quot;TCGA-OR-A5JB-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.5682087540626526, &quot;y&quot;: 17.333965301513672, &quot;IDs&quot;: &quot;TCGA-OR-A5JC-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.36355891823768616, &quot;y&quot;: 15.187759399414062, &quot;IDs&quot;: &quot;TCGA-OR-A5JD-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.5477137565612793, &quot;y&quot;: 18.826679229736328, &quot;IDs&quot;: &quot;TCGA-OR-A5JE-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.14926578104496002, &quot;y&quot;: 17.785720825195312, &quot;IDs&quot;: &quot;TCGA-OR-A5JF-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.6651929616928101, &quot;y&quot;: 18.15171241760254, &quot;IDs&quot;: &quot;TCGA-OR-A5JG-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.6327651143074036, &quot;y&quot;: 16.094566345214844, &quot;IDs&quot;: &quot;TCGA-OR-A5JI-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.18169435858726501, &quot;y&quot;: 18.359132766723633, &quot;IDs&quot;: &quot;TCGA-OR-A5JJ-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.560370147228241, &quot;y&quot;: 16.797679901123047, &quot;IDs&quot;: &quot;TCGA-OR-A5JK-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.8624408841133118, &quot;y&quot;: 16.941795349121094, &quot;IDs&quot;: &quot;TCGA-OR-A5JL-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.7579706907272339, &quot;y&quot;: 18.732797622680664, &quot;IDs&quot;: &quot;TCGA-OR-A5JM-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.06453502178192139, &quot;y&quot;: 15.851241111755371, &quot;IDs&quot;: &quot;TCGA-OR-A5JO-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.006650094408541918, &quot;y&quot;: 19.01007843017578, &quot;IDs&quot;: &quot;TCGA-OR-A5JP-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.4317127764225006, &quot;y&quot;: 15.660852432250977, &quot;IDs&quot;: &quot;TCGA-OR-A5JQ-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.922685444355011, &quot;y&quot;: 15.756243705749512, &quot;IDs&quot;: &quot;TCGA-OR-A5JR-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.5646581053733826, &quot;y&quot;: 17.9239501953125, &quot;IDs&quot;: &quot;TCGA-OR-A5JS-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.9486954212188721, &quot;y&quot;: 15.86774730682373, &quot;IDs&quot;: &quot;TCGA-OR-A5JT-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -1.1151454448699951, &quot;y&quot;: 15.933357238769531, &quot;IDs&quot;: &quot;TCGA-OR-A5JV-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.4223296642303467, &quot;y&quot;: 17.562255859375, &quot;IDs&quot;: &quot;TCGA-OR-A5JW-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.3981899619102478, &quot;y&quot;: 17.322492599487305, &quot;IDs&quot;: &quot;TCGA-OR-A5JX-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 1.126770257949829, &quot;y&quot;: 18.617237091064453, &quot;IDs&quot;: &quot;TCGA-OR-A5JY-01A-31R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -1.0891284942626953, &quot;y&quot;: 15.852517127990723, &quot;IDs&quot;: &quot;TCGA-OR-A5JZ-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.5986992716789246, &quot;y&quot;: 18.26283836364746, &quot;IDs&quot;: &quot;TCGA-OR-A5K0-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.6329149603843689, &quot;y&quot;: 16.103254318237305, &quot;IDs&quot;: &quot;TCGA-OR-A5K1-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.2215990126132965, &quot;y&quot;: 18.628774642944336, &quot;IDs&quot;: &quot;TCGA-OR-A5K2-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -1.174161434173584, &quot;y&quot;: 16.657249450683594, &quot;IDs&quot;: &quot;TCGA-OR-A5K3-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.8249701857566833, &quot;y&quot;: 16.313156127929688, &quot;IDs&quot;: &quot;TCGA-OR-A5K4-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.9495952725410461, &quot;y&quot;: 18.9052734375, &quot;IDs&quot;: &quot;TCGA-OR-A5K5-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.8936101794242859, &quot;y&quot;: 17.73358917236328, &quot;IDs&quot;: &quot;TCGA-OR-A5K6-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.5902023911476135, &quot;y&quot;: 17.539823532104492, &quot;IDs&quot;: &quot;TCGA-OR-A5K8-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.5943015217781067, &quot;y&quot;: 18.473054885864258, &quot;IDs&quot;: &quot;TCGA-OR-A5K9-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.02760385535657406, &quot;y&quot;: 17.836803436279297, &quot;IDs&quot;: &quot;TCGA-OR-A5KO-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.10956355184316635, &quot;y&quot;: 16.723251342773438, &quot;IDs&quot;: &quot;TCGA-OR-A5KT-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.44735822081565857, &quot;y&quot;: 18.0941104888916, &quot;IDs&quot;: &quot;TCGA-OR-A5KU-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.1665874421596527, &quot;y&quot;: 18.634092330932617, &quot;IDs&quot;: &quot;TCGA-OR-A5KV-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.9270321726799011, &quot;y&quot;: 17.77621078491211, &quot;IDs&quot;: &quot;TCGA-OR-A5KW-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.07998231798410416, &quot;y&quot;: 17.510787963867188, &quot;IDs&quot;: &quot;TCGA-OR-A5KX-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.02050039730966091, &quot;y&quot;: 18.442502975463867, &quot;IDs&quot;: &quot;TCGA-OR-A5KY-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.23497027158737183, &quot;y&quot;: 17.768077850341797, &quot;IDs&quot;: &quot;TCGA-OR-A5KZ-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.9057247638702393, &quot;y&quot;: 17.24455451965332, &quot;IDs&quot;: &quot;TCGA-OR-A5L3-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.5257918834686279, &quot;y&quot;: 16.61753273010254, &quot;IDs&quot;: &quot;TCGA-OR-A5L4-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.008649315685033798, &quot;y&quot;: 16.064693450927734, &quot;IDs&quot;: &quot;TCGA-OR-A5L5-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.7627276182174683, &quot;y&quot;: 16.452545166015625, &quot;IDs&quot;: &quot;TCGA-OR-A5L6-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.09423601627349854, &quot;y&quot;: 18.154016494750977, &quot;IDs&quot;: &quot;TCGA-OR-A5L8-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.9689011573791504, &quot;y&quot;: 16.376541137695312, &quot;IDs&quot;: &quot;TCGA-OR-A5L9-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.3142911195755005, &quot;y&quot;: 16.071243286132812, &quot;IDs&quot;: &quot;TCGA-OR-A5LA-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.6278039216995239, &quot;y&quot;: 18.10757064819336, &quot;IDs&quot;: &quot;TCGA-OR-A5LB-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.5923371315002441, &quot;y&quot;: 18.02764320373535, &quot;IDs&quot;: &quot;TCGA-OR-A5LC-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.051085490733385086, &quot;y&quot;: 18.86224937438965, &quot;IDs&quot;: &quot;TCGA-OR-A5LD-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.9021238088607788, &quot;y&quot;: 18.714590072631836, &quot;IDs&quot;: &quot;TCGA-OR-A5LE-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.35882681608200073, &quot;y&quot;: 16.885547637939453, &quot;IDs&quot;: &quot;TCGA-OR-A5LG-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.9028554558753967, &quot;y&quot;: 16.721677780151367, &quot;IDs&quot;: &quot;TCGA-OR-A5LH-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.7638483643531799, &quot;y&quot;: 18.434181213378906, &quot;IDs&quot;: &quot;TCGA-OR-A5LJ-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.5735163688659668, &quot;y&quot;: 15.316739082336426, &quot;IDs&quot;: &quot;TCGA-OR-A5LK-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.657251238822937, &quot;y&quot;: 17.0426082611084, &quot;IDs&quot;: &quot;TCGA-OR-A5LL-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -1.1504440307617188, &quot;y&quot;: 17.241493225097656, &quot;IDs&quot;: &quot;TCGA-OR-A5LM-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.25813236832618713, &quot;y&quot;: 15.416378021240234, &quot;IDs&quot;: &quot;TCGA-OR-A5LN-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.9703561663627625, &quot;y&quot;: 18.265504837036133, &quot;IDs&quot;: &quot;TCGA-OR-A5LO-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.17650526762008667, &quot;y&quot;: 15.589839935302734, &quot;IDs&quot;: &quot;TCGA-OR-A5LP-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.7902418375015259, &quot;y&quot;: 15.97637939453125, &quot;IDs&quot;: &quot;TCGA-OR-A5LR-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.5721330046653748, &quot;y&quot;: 18.344621658325195, &quot;IDs&quot;: &quot;TCGA-OR-A5LS-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -1.149004340171814, &quot;y&quot;: 15.645195960998535, &quot;IDs&quot;: &quot;TCGA-OR-A5LT-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.27868014574050903, &quot;y&quot;: 18.52596092224121, &quot;IDs&quot;: &quot;TCGA-OU-A5PI-01A-12R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.0614205002784729, &quot;y&quot;: 18.030515670776367, &quot;IDs&quot;: &quot;TCGA-P6-A5OF-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 10.085028648376465, &quot;y&quot;: -5.877884387969971, &quot;IDs&quot;: &quot;TCGA-P6-A5OG-01A-22R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.5324922800064087, &quot;y&quot;: 15.470702171325684, &quot;IDs&quot;: &quot;TCGA-PA-A5YG-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.7485026717185974, &quot;y&quot;: 16.886167526245117, &quot;IDs&quot;: &quot;TCGA-PK-A5H8-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: 0.06900137662887573, &quot;y&quot;: 16.01289939880371, &quot;IDs&quot;: &quot;TCGA-PK-A5H9-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.9962606430053711, &quot;y&quot;: 15.347429275512695, &quot;IDs&quot;: &quot;TCGA-PK-A5HA-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}, {&quot;x&quot;: -0.7368373870849609, &quot;y&quot;: 18.267898559570312, &quot;IDs&quot;: &quot;TCGA-PK-A5HB-01A-11R-A29S-07&quot;, &quot;Subtypes&quot;: &quot;01_ACC&quot;, &quot;colors&quot;: &quot;#ff5f00&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#ff5f00&quot;, &quot;name&quot;: &quot;01_ACC&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 13.255998611450195, &quot;y&quot;: 3.695441484451294, &quot;IDs&quot;: &quot;TCGA-3X-AAV9-01A-72R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.482637405395508, &quot;y&quot;: 2.1463656425476074, &quot;IDs&quot;: &quot;TCGA-3X-AAVA-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 14.699701309204102, &quot;y&quot;: 4.9609551429748535, &quot;IDs&quot;: &quot;TCGA-3X-AAVB-01A-31R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.060338973999023, &quot;y&quot;: 7.767728805541992, &quot;IDs&quot;: &quot;TCGA-3X-AAVC-01A-21R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.594942092895508, &quot;y&quot;: 2.1245617866516113, &quot;IDs&quot;: &quot;TCGA-3X-AAVE-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.731026649475098, &quot;y&quot;: 1.4457979202270508, &quot;IDs&quot;: &quot;TCGA-4G-AAZO-01A-12R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.169157028198242, &quot;y&quot;: 1.3612343072891235, &quot;IDs&quot;: &quot;TCGA-4G-AAZT-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 10.268187522888184, &quot;y&quot;: 1.8654433488845825, &quot;IDs&quot;: &quot;TCGA-W5-AA2G-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.125272750854492, &quot;y&quot;: -0.20560196042060852, &quot;IDs&quot;: &quot;TCGA-W5-AA2H-01A-31R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 8.860123634338379, &quot;y&quot;: 1.897674560546875, &quot;IDs&quot;: &quot;TCGA-W5-AA2I-11A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 10.84178352355957, &quot;y&quot;: 1.6127792596817017, &quot;IDs&quot;: &quot;TCGA-W5-AA2I-01A-32R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 10.44326114654541, &quot;y&quot;: 2.1405694484710693, &quot;IDs&quot;: &quot;TCGA-W5-AA2O-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 9.14162540435791, &quot;y&quot;: 2.129939079284668, &quot;IDs&quot;: &quot;TCGA-W5-AA2Q-11A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.36510944366455, &quot;y&quot;: 2.1899375915527344, &quot;IDs&quot;: &quot;TCGA-W5-AA2Q-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 8.914206504821777, &quot;y&quot;: 1.6402747631072998, &quot;IDs&quot;: &quot;TCGA-W5-AA2R-11A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.118916511535645, &quot;y&quot;: 1.6787301301956177, &quot;IDs&quot;: &quot;TCGA-W5-AA2R-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.364280700683594, &quot;y&quot;: 1.4592616558074951, &quot;IDs&quot;: &quot;TCGA-W5-AA2T-01A-12R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 9.049488067626953, &quot;y&quot;: 2.1596412658691406, &quot;IDs&quot;: &quot;TCGA-W5-AA2U-11A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.233647346496582, &quot;y&quot;: 2.0111818313598633, &quot;IDs&quot;: &quot;TCGA-W5-AA2U-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 10.892066955566406, &quot;y&quot;: 2.0077292919158936, &quot;IDs&quot;: &quot;TCGA-W5-AA2W-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 9.26839542388916, &quot;y&quot;: 1.7585681676864624, &quot;IDs&quot;: &quot;TCGA-W5-AA2X-11A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 13.210296630859375, &quot;y&quot;: 7.120497703552246, &quot;IDs&quot;: &quot;TCGA-W5-AA2X-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.425350189208984, &quot;y&quot;: 2.3218884468078613, &quot;IDs&quot;: &quot;TCGA-W5-AA2Z-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 9.28543472290039, &quot;y&quot;: 1.8416630029678345, &quot;IDs&quot;: &quot;TCGA-W5-AA30-11A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 10.932049751281738, &quot;y&quot;: 2.155945062637329, &quot;IDs&quot;: &quot;TCGA-W5-AA30-01A-31R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 8.793514251708984, &quot;y&quot;: 2.013406276702881, &quot;IDs&quot;: &quot;TCGA-W5-AA31-11A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 10.597704887390137, &quot;y&quot;: 2.0449578762054443, &quot;IDs&quot;: &quot;TCGA-W5-AA31-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 10.340729713439941, &quot;y&quot;: 2.1421523094177246, &quot;IDs&quot;: &quot;TCGA-W5-AA33-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 8.80322265625, &quot;y&quot;: 1.7542599439620972, &quot;IDs&quot;: &quot;TCGA-W5-AA34-11A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.339089393615723, &quot;y&quot;: 1.5911341905593872, &quot;IDs&quot;: &quot;TCGA-W5-AA34-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.8507719039917, &quot;y&quot;: 1.711743950843811, &quot;IDs&quot;: &quot;TCGA-W5-AA36-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.42993450164795, &quot;y&quot;: 1.5589065551757812, &quot;IDs&quot;: &quot;TCGA-W5-AA38-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 9.442974090576172, &quot;y&quot;: 1.6359549760818481, &quot;IDs&quot;: &quot;TCGA-W5-AA39-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.776585578918457, &quot;y&quot;: 1.8001635074615479, &quot;IDs&quot;: &quot;TCGA-W6-AA0S-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 10.444258689880371, &quot;y&quot;: 1.7724066972732544, &quot;IDs&quot;: &quot;TCGA-WD-A7RX-01A-12R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 10.442140579223633, &quot;y&quot;: 1.867404580116272, &quot;IDs&quot;: &quot;TCGA-YR-A95A-01A-12R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.574544906616211, &quot;y&quot;: 1.684814691543579, &quot;IDs&quot;: &quot;TCGA-ZD-A8I3-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 10.90229320526123, &quot;y&quot;: 2.01645827293396, &quot;IDs&quot;: &quot;TCGA-ZH-A8Y1-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.713770866394043, &quot;y&quot;: 1.979952335357666, &quot;IDs&quot;: &quot;TCGA-ZH-A8Y2-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 10.939499855041504, &quot;y&quot;: 1.793946385383606, &quot;IDs&quot;: &quot;TCGA-ZH-A8Y4-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.287882804870605, &quot;y&quot;: 1.9468657970428467, &quot;IDs&quot;: &quot;TCGA-ZH-A8Y5-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 11.44051742553711, &quot;y&quot;: 2.2177188396453857, &quot;IDs&quot;: &quot;TCGA-ZH-A8Y6-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 10.886774063110352, &quot;y&quot;: 2.3880138397216797, &quot;IDs&quot;: &quot;TCGA-ZH-A8Y8-01A-51R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 8.882746696472168, &quot;y&quot;: 2.013493061065674, &quot;IDs&quot;: &quot;TCGA-ZU-A8S4-11A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}, {&quot;x&quot;: 12.143793106079102, &quot;y&quot;: 2.879892587661743, &quot;IDs&quot;: &quot;TCGA-ZU-A8S4-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;05_CHOL&quot;, &quot;colors&quot;: &quot;#ffbd00&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#ffbd00&quot;, &quot;name&quot;: &quot;05_CHOL&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 12.358925819396973, &quot;y&quot;: -1.9684932231903076, &quot;IDs&quot;: &quot;TCGA-FA-8693-01A-11R-2404-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.630592346191406, &quot;y&quot;: -0.8249209523200989, &quot;IDs&quot;: &quot;TCGA-FA-A4BB-01A-11R-A31O-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.497445106506348, &quot;y&quot;: -1.7538436651229858, &quot;IDs&quot;: &quot;TCGA-FA-A4XK-01A-11R-A31O-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.149954795837402, &quot;y&quot;: -0.3466774821281433, &quot;IDs&quot;: &quot;TCGA-FA-A6HN-01A-11R-A31O-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.051466941833496, &quot;y&quot;: -0.6914517879486084, &quot;IDs&quot;: &quot;TCGA-FA-A6HO-01A-11R-A31O-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 10.930985450744629, &quot;y&quot;: -1.3009051084518433, &quot;IDs&quot;: &quot;TCGA-FA-A7DS-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.059286117553711, &quot;y&quot;: -1.5196690559387207, &quot;IDs&quot;: &quot;TCGA-FA-A7Q1-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.737091064453125, &quot;y&quot;: -1.7082383632659912, &quot;IDs&quot;: &quot;TCGA-FA-A82F-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.055624961853027, &quot;y&quot;: -0.6095382571220398, &quot;IDs&quot;: &quot;TCGA-FA-A86F-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.457693099975586, &quot;y&quot;: -1.1927168369293213, &quot;IDs&quot;: &quot;TCGA-FF-8041-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.595218658447266, &quot;y&quot;: -1.558361291885376, &quot;IDs&quot;: &quot;TCGA-FF-8042-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.487418174743652, &quot;y&quot;: -1.309327244758606, &quot;IDs&quot;: &quot;TCGA-FF-8043-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.9287109375, &quot;y&quot;: -0.8198156356811523, &quot;IDs&quot;: &quot;TCGA-FF-8046-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.96456527709961, &quot;y&quot;: -0.9322192668914795, &quot;IDs&quot;: &quot;TCGA-FF-8047-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.500740051269531, &quot;y&quot;: -1.6304785013198853, &quot;IDs&quot;: &quot;TCGA-FF-8061-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.095457077026367, &quot;y&quot;: -1.3206430673599243, &quot;IDs&quot;: &quot;TCGA-FF-8062-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 10.954750061035156, &quot;y&quot;: -1.1935057640075684, &quot;IDs&quot;: &quot;TCGA-FF-A7CQ-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 10.821761131286621, &quot;y&quot;: -1.2817548513412476, &quot;IDs&quot;: &quot;TCGA-FF-A7CR-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.711091041564941, &quot;y&quot;: -0.7436580657958984, &quot;IDs&quot;: &quot;TCGA-FF-A7CW-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.162296295166016, &quot;y&quot;: -1.0703312158584595, &quot;IDs&quot;: &quot;TCGA-FF-A7CX-01A-12R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.733161926269531, &quot;y&quot;: -1.0867375135421753, &quot;IDs&quot;: &quot;TCGA-FM-8000-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.74291706085205, &quot;y&quot;: -0.30817684531211853, &quot;IDs&quot;: &quot;TCGA-G8-6324-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.357084274291992, &quot;y&quot;: -1.4664418697357178, &quot;IDs&quot;: &quot;TCGA-G8-6325-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.850439071655273, &quot;y&quot;: -1.6891138553619385, &quot;IDs&quot;: &quot;TCGA-G8-6326-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.014945983886719, &quot;y&quot;: -1.681891918182373, &quot;IDs&quot;: &quot;TCGA-G8-6906-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.590150833129883, &quot;y&quot;: -0.8268206715583801, &quot;IDs&quot;: &quot;TCGA-G8-6907-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.164568901062012, &quot;y&quot;: -1.1474652290344238, &quot;IDs&quot;: &quot;TCGA-G8-6909-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.517241477966309, &quot;y&quot;: -1.5245683193206787, &quot;IDs&quot;: &quot;TCGA-G8-6914-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.679753303527832, &quot;y&quot;: -1.435226321220398, &quot;IDs&quot;: &quot;TCGA-GR-7351-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.402758598327637, &quot;y&quot;: -0.8324914574623108, &quot;IDs&quot;: &quot;TCGA-GR-7353-01A-11R-2213-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 10.932706832885742, &quot;y&quot;: -1.9041229486465454, &quot;IDs&quot;: &quot;TCGA-GR-A4D4-01A-11R-A31O-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.183897972106934, &quot;y&quot;: -1.4067779779434204, &quot;IDs&quot;: &quot;TCGA-GR-A4D5-01A-11R-A31O-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.106687545776367, &quot;y&quot;: -0.4757794737815857, &quot;IDs&quot;: &quot;TCGA-GR-A4D6-01A-11R-A31O-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 10.832930564880371, &quot;y&quot;: -1.611400842666626, &quot;IDs&quot;: &quot;TCGA-GR-A4D9-01B-11R-A31O-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.46098804473877, &quot;y&quot;: -1.6502766609191895, &quot;IDs&quot;: &quot;TCGA-GS-A9TQ-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.395124435424805, &quot;y&quot;: -1.6397897005081177, &quot;IDs&quot;: &quot;TCGA-GS-A9TT-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 10.768776893615723, &quot;y&quot;: -0.9243675470352173, &quot;IDs&quot;: &quot;TCGA-GS-A9TU-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 10.9672269821167, &quot;y&quot;: -0.8485264182090759, &quot;IDs&quot;: &quot;TCGA-GS-A9TV-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.413262367248535, &quot;y&quot;: -1.4865808486938477, &quot;IDs&quot;: &quot;TCGA-GS-A9TW-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 10.624029159545898, &quot;y&quot;: -0.5427732467651367, &quot;IDs&quot;: &quot;TCGA-GS-A9TX-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.409442901611328, &quot;y&quot;: -1.2437127828598022, &quot;IDs&quot;: &quot;TCGA-GS-A9TY-01A-11R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.15149974822998, &quot;y&quot;: -1.0247035026550293, &quot;IDs&quot;: &quot;TCGA-GS-A9TZ-01A-11R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.16035270690918, &quot;y&quot;: -1.2024405002593994, &quot;IDs&quot;: &quot;TCGA-GS-A9U3-01A-11R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.387689590454102, &quot;y&quot;: -1.7585809230804443, &quot;IDs&quot;: &quot;TCGA-GS-A9U4-01A-11R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.760641098022461, &quot;y&quot;: -1.4417610168457031, &quot;IDs&quot;: &quot;TCGA-RQ-A68N-01A-11R-A31O-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.38322925567627, &quot;y&quot;: -1.8777210712432861, &quot;IDs&quot;: &quot;TCGA-RQ-A6JB-01A-11R-A31O-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 12.239119529724121, &quot;y&quot;: -1.2209845781326294, &quot;IDs&quot;: &quot;TCGA-RQ-AAAT-01A-11R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}, {&quot;x&quot;: 11.930063247680664, &quot;y&quot;: -1.9892759323120117, &quot;IDs&quot;: &quot;TCGA-VB-A8QN-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;07_DLBC&quot;, &quot;colors&quot;: &quot;#e2ff00&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#e2ff00&quot;, &quot;name&quot;: &quot;07_DLBC&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 10.141938209533691, &quot;y&quot;: 6.281548500061035, &quot;IDs&quot;: &quot;TCGA-2H-A9GF-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.951488494873047, &quot;y&quot;: 6.005087852478027, &quot;IDs&quot;: &quot;TCGA-2H-A9GG-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.747208595275879, &quot;y&quot;: 6.189816474914551, &quot;IDs&quot;: &quot;TCGA-2H-A9GH-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.684832572937012, &quot;y&quot;: 7.480475902557373, &quot;IDs&quot;: &quot;TCGA-2H-A9GI-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.884636878967285, &quot;y&quot;: 7.174286365509033, &quot;IDs&quot;: &quot;TCGA-2H-A9GJ-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.438274383544922, &quot;y&quot;: 6.01207971572876, &quot;IDs&quot;: &quot;TCGA-2H-A9GK-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.624215126037598, &quot;y&quot;: 5.891794204711914, &quot;IDs&quot;: &quot;TCGA-2H-A9GL-01A-12R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.782785415649414, &quot;y&quot;: 6.218723773956299, &quot;IDs&quot;: &quot;TCGA-2H-A9GM-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.849100112915039, &quot;y&quot;: 7.544949054718018, &quot;IDs&quot;: &quot;TCGA-2H-A9GN-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.65254020690918, &quot;y&quot;: 7.6768903732299805, &quot;IDs&quot;: &quot;TCGA-2H-A9GO-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 6.94327449798584, &quot;y&quot;: 4.817042827606201, &quot;IDs&quot;: &quot;TCGA-2H-A9GQ-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.018311500549316, &quot;y&quot;: 5.8780741691589355, &quot;IDs&quot;: &quot;TCGA-2H-A9GR-01A-12R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 6.652195453643799, &quot;y&quot;: 5.838100433349609, &quot;IDs&quot;: &quot;TCGA-IC-A6RE-11A-12R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.270453453063965, &quot;y&quot;: 6.095550060272217, &quot;IDs&quot;: &quot;TCGA-IC-A6RE-01A-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 6.384200096130371, &quot;y&quot;: 5.456615447998047, &quot;IDs&quot;: &quot;TCGA-IC-A6RF-11A-21R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.403387546539307, &quot;y&quot;: 4.81373929977417, &quot;IDs&quot;: &quot;TCGA-IC-A6RF-01A-13R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 7.614880561828613, &quot;y&quot;: 4.659786224365234, &quot;IDs&quot;: &quot;TCGA-IG-A3I8-11A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.423824787139893, &quot;y&quot;: 5.178150177001953, &quot;IDs&quot;: &quot;TCGA-IG-A3I8-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.257592678070068, &quot;y&quot;: 6.065683841705322, &quot;IDs&quot;: &quot;TCGA-IG-A3QL-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.822916030883789, &quot;y&quot;: 4.214221477508545, &quot;IDs&quot;: &quot;TCGA-IG-A3Y9-01A-12R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 6.242759704589844, &quot;y&quot;: 4.677827835083008, &quot;IDs&quot;: &quot;TCGA-IG-A3YA-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 6.203586578369141, &quot;y&quot;: 4.452592849731445, &quot;IDs&quot;: &quot;TCGA-IG-A3YB-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.87572717666626, &quot;y&quot;: 4.855267524719238, &quot;IDs&quot;: &quot;TCGA-IG-A3YC-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.897741794586182, &quot;y&quot;: 5.457742214202881, &quot;IDs&quot;: &quot;TCGA-IG-A4P3-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.109203338623047, &quot;y&quot;: 6.465087890625, &quot;IDs&quot;: &quot;TCGA-IG-A4QS-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.657313346862793, &quot;y&quot;: -0.70461505651474, &quot;IDs&quot;: &quot;TCGA-IG-A4QT-01A-21R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.711371898651123, &quot;y&quot;: 5.32602596282959, &quot;IDs&quot;: &quot;TCGA-IG-A50L-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.421178817749023, &quot;y&quot;: 3.8218295574188232, &quot;IDs&quot;: &quot;TCGA-IG-A51D-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.103812217712402, &quot;y&quot;: 3.886763095855713, &quot;IDs&quot;: &quot;TCGA-IG-A5B8-01A-11R-A28J-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.748269081115723, &quot;y&quot;: 5.667054176330566, &quot;IDs&quot;: &quot;TCGA-IG-A5S3-01A-11R-A28J-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.441749095916748, &quot;y&quot;: 6.305218696594238, &quot;IDs&quot;: &quot;TCGA-IG-A625-01A-11R-A31P-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.684518814086914, &quot;y&quot;: 3.6228997707366943, &quot;IDs&quot;: &quot;TCGA-IG-A6QS-01A-12R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 11.702049255371094, &quot;y&quot;: 3.8673667907714844, &quot;IDs&quot;: &quot;TCGA-IG-A7DP-01A-31R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.28120756149292, &quot;y&quot;: 6.409779071807861, &quot;IDs&quot;: &quot;TCGA-IG-A8O2-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.119412422180176, &quot;y&quot;: 4.287379264831543, &quot;IDs&quot;: &quot;TCGA-IG-A97H-01A-11R-A38D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.715071678161621, &quot;y&quot;: 4.789525032043457, &quot;IDs&quot;: &quot;TCGA-IG-A97I-01A-11R-A38D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.953892707824707, &quot;y&quot;: 7.499874114990234, &quot;IDs&quot;: &quot;TCGA-JY-A6F8-01A-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.155651569366455, &quot;y&quot;: 6.303242206573486, &quot;IDs&quot;: &quot;TCGA-JY-A6FA-01A-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.668205261230469, &quot;y&quot;: 7.047435283660889, &quot;IDs&quot;: &quot;TCGA-JY-A6FB-01A-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.014221668243408, &quot;y&quot;: 4.115566730499268, &quot;IDs&quot;: &quot;TCGA-JY-A6FD-01A-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.245909690856934, &quot;y&quot;: -4.853696346282959, &quot;IDs&quot;: &quot;TCGA-JY-A6FE-01A-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.195984840393066, &quot;y&quot;: 4.480473518371582, &quot;IDs&quot;: &quot;TCGA-JY-A6FG-01A-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.875765800476074, &quot;y&quot;: 6.792352676391602, &quot;IDs&quot;: &quot;TCGA-JY-A6FH-01A-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.11621379852295, &quot;y&quot;: 5.45974588394165, &quot;IDs&quot;: &quot;TCGA-JY-A938-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.052605628967285, &quot;y&quot;: 4.720921993255615, &quot;IDs&quot;: &quot;TCGA-JY-A939-01A-12R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.828681945800781, &quot;y&quot;: 6.649763584136963, &quot;IDs&quot;: &quot;TCGA-JY-A93C-01A-11R-A38D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.911823272705078, &quot;y&quot;: 4.709388256072998, &quot;IDs&quot;: &quot;TCGA-JY-A93D-01A-11R-A38D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.69149398803711, &quot;y&quot;: 5.059101104736328, &quot;IDs&quot;: &quot;TCGA-JY-A93E-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.032284736633301, &quot;y&quot;: 4.259704113006592, &quot;IDs&quot;: &quot;TCGA-JY-A93F-01A-21R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 6.418379306793213, &quot;y&quot;: 5.673604965209961, &quot;IDs&quot;: &quot;TCGA-KH-A6WC-01A-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.328279495239258, &quot;y&quot;: 4.228749752044678, &quot;IDs&quot;: &quot;TCGA-L5-A43C-11A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 11.37202262878418, &quot;y&quot;: 6.319880962371826, &quot;IDs&quot;: &quot;TCGA-L5-A43C-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.290678024291992, &quot;y&quot;: 7.1128010749816895, &quot;IDs&quot;: &quot;TCGA-L5-A43E-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.22749137878418, &quot;y&quot;: 5.628602981567383, &quot;IDs&quot;: &quot;TCGA-L5-A43H-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.364638328552246, &quot;y&quot;: 7.613675117492676, &quot;IDs&quot;: &quot;TCGA-L5-A43I-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.863809108734131, &quot;y&quot;: 4.478261947631836, &quot;IDs&quot;: &quot;TCGA-L5-A43J-01A-12R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.793959617614746, &quot;y&quot;: 5.1980414390563965, &quot;IDs&quot;: &quot;TCGA-L5-A43M-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.022820472717285, &quot;y&quot;: 5.683502197265625, &quot;IDs&quot;: &quot;TCGA-L5-A4OE-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.159116744995117, &quot;y&quot;: 4.425736904144287, &quot;IDs&quot;: &quot;TCGA-L5-A4OF-11A-12R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.623880386352539, &quot;y&quot;: 7.22531795501709, &quot;IDs&quot;: &quot;TCGA-L5-A4OF-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.512006759643555, &quot;y&quot;: 4.337899208068848, &quot;IDs&quot;: &quot;TCGA-L5-A4OG-11A-12R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.72432804107666, &quot;y&quot;: 5.8596577644348145, &quot;IDs&quot;: &quot;TCGA-L5-A4OG-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.829071044921875, &quot;y&quot;: 6.893655776977539, &quot;IDs&quot;: &quot;TCGA-L5-A4OH-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.968531608581543, &quot;y&quot;: 7.550119876861572, &quot;IDs&quot;: &quot;TCGA-L5-A4OI-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.209256172180176, &quot;y&quot;: 4.021504878997803, &quot;IDs&quot;: &quot;TCGA-L5-A4OJ-11A-12R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.54510498046875, &quot;y&quot;: 7.463481903076172, &quot;IDs&quot;: &quot;TCGA-L5-A4OJ-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.193517684936523, &quot;y&quot;: 4.744109630584717, &quot;IDs&quot;: &quot;TCGA-L5-A4OM-11A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.3335862159729, &quot;y&quot;: 5.589982032775879, &quot;IDs&quot;: &quot;TCGA-L5-A4OM-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.291777610778809, &quot;y&quot;: 6.459403991699219, &quot;IDs&quot;: &quot;TCGA-L5-A4ON-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.720796585083008, &quot;y&quot;: 4.226215362548828, &quot;IDs&quot;: &quot;TCGA-L5-A4OO-11A-12R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 11.126729965209961, &quot;y&quot;: 5.1334919929504395, &quot;IDs&quot;: &quot;TCGA-L5-A4OO-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.36340045928955, &quot;y&quot;: 6.5967206954956055, &quot;IDs&quot;: &quot;TCGA-L5-A4OP-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 7.714937686920166, &quot;y&quot;: 4.039310932159424, &quot;IDs&quot;: &quot;TCGA-L5-A4OQ-11A-12R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.791504859924316, &quot;y&quot;: 7.11604118347168, &quot;IDs&quot;: &quot;TCGA-L5-A4OQ-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.48019027709961, &quot;y&quot;: 4.065940856933594, &quot;IDs&quot;: &quot;TCGA-L5-A4OR-11A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.09329605102539, &quot;y&quot;: 6.922664165496826, &quot;IDs&quot;: &quot;TCGA-L5-A4OR-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 11.133103370666504, &quot;y&quot;: 6.97207498550415, &quot;IDs&quot;: &quot;TCGA-L5-A4OS-01A-11R-A28J-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.480810165405273, &quot;y&quot;: 5.166224002838135, &quot;IDs&quot;: &quot;TCGA-L5-A4OT-01A-11R-A28J-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.604299545288086, &quot;y&quot;: 5.250520706176758, &quot;IDs&quot;: &quot;TCGA-L5-A4OU-01A-11R-A28J-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.645197868347168, &quot;y&quot;: 6.444085121154785, &quot;IDs&quot;: &quot;TCGA-L5-A4OW-01A-11R-A28J-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.681795120239258, &quot;y&quot;: 7.028777122497559, &quot;IDs&quot;: &quot;TCGA-L5-A4OX-01A-21R-A28J-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 6.417012691497803, &quot;y&quot;: 4.1898884773254395, &quot;IDs&quot;: &quot;TCGA-L5-A88S-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 7.231400489807129, &quot;y&quot;: 5.580117225646973, &quot;IDs&quot;: &quot;TCGA-L5-A88T-01A-11R-A354-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.013775825500488, &quot;y&quot;: 6.361514568328857, &quot;IDs&quot;: &quot;TCGA-L5-A88V-01A-11R-A354-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 3.8060216903686523, &quot;y&quot;: 4.0045037269592285, &quot;IDs&quot;: &quot;TCGA-L5-A88W-01A-11R-A354-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.514047622680664, &quot;y&quot;: 5.772984504699707, &quot;IDs&quot;: &quot;TCGA-L5-A88Y-01A-11R-A354-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.5717010498046875, &quot;y&quot;: 6.338958263397217, &quot;IDs&quot;: &quot;TCGA-L5-A88Z-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 11.970136642456055, &quot;y&quot;: 7.5271382331848145, &quot;IDs&quot;: &quot;TCGA-L5-A891-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.568439483642578, &quot;y&quot;: 5.483663082122803, &quot;IDs&quot;: &quot;TCGA-L5-A893-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.050514221191406, &quot;y&quot;: 6.868474006652832, &quot;IDs&quot;: &quot;TCGA-L5-A8NE-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.646273612976074, &quot;y&quot;: 6.610470771789551, &quot;IDs&quot;: &quot;TCGA-L5-A8NF-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.4022855758667, &quot;y&quot;: 5.8873186111450195, &quot;IDs&quot;: &quot;TCGA-L5-A8NG-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.520840644836426, &quot;y&quot;: 7.0263190269470215, &quot;IDs&quot;: &quot;TCGA-L5-A8NH-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.653263092041016, &quot;y&quot;: 5.983864784240723, &quot;IDs&quot;: &quot;TCGA-L5-A8NI-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.704741477966309, &quot;y&quot;: 6.835305690765381, &quot;IDs&quot;: &quot;TCGA-L5-A8NJ-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 6.136954307556152, &quot;y&quot;: 5.398199558258057, &quot;IDs&quot;: &quot;TCGA-L5-A8NK-01A-21R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.962024688720703, &quot;y&quot;: 5.454134464263916, &quot;IDs&quot;: &quot;TCGA-L5-A8NL-01A-12R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.912038803100586, &quot;y&quot;: 7.273133277893066, &quot;IDs&quot;: &quot;TCGA-L5-A8NM-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.988327026367188, &quot;y&quot;: 7.054629325866699, &quot;IDs&quot;: &quot;TCGA-L5-A8NN-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 6.581466197967529, &quot;y&quot;: 5.402894496917725, &quot;IDs&quot;: &quot;TCGA-L5-A8NQ-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.290254592895508, &quot;y&quot;: 5.833067893981934, &quot;IDs&quot;: &quot;TCGA-L5-A8NR-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.646610260009766, &quot;y&quot;: 5.4961347579956055, &quot;IDs&quot;: &quot;TCGA-L5-A8NS-01A-12R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.990418434143066, &quot;y&quot;: 5.556673526763916, &quot;IDs&quot;: &quot;TCGA-L5-A8NT-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.924076080322266, &quot;y&quot;: 4.803328990936279, &quot;IDs&quot;: &quot;TCGA-L5-A8NU-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.605599403381348, &quot;y&quot;: 5.293721675872803, &quot;IDs&quot;: &quot;TCGA-L5-A8NV-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 7.599782943725586, &quot;y&quot;: 5.796779632568359, &quot;IDs&quot;: &quot;TCGA-L5-A8NW-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.505131721496582, &quot;y&quot;: 5.744529724121094, &quot;IDs&quot;: &quot;TCGA-L7-A56G-01A-21R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.45168685913086, &quot;y&quot;: 7.1625494956970215, &quot;IDs&quot;: &quot;TCGA-L7-A6VZ-01A-12R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.57687520980835, &quot;y&quot;: 5.451651096343994, &quot;IDs&quot;: &quot;TCGA-LN-A49K-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.926340103149414, &quot;y&quot;: 4.593466281890869, &quot;IDs&quot;: &quot;TCGA-LN-A49L-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.131993770599365, &quot;y&quot;: 4.194847106933594, &quot;IDs&quot;: &quot;TCGA-LN-A49M-01A-21R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.827443599700928, &quot;y&quot;: 4.839977264404297, &quot;IDs&quot;: &quot;TCGA-LN-A49N-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.756054401397705, &quot;y&quot;: 3.8057475090026855, &quot;IDs&quot;: &quot;TCGA-LN-A49O-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.960975646972656, &quot;y&quot;: 5.522842884063721, &quot;IDs&quot;: &quot;TCGA-LN-A49P-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.681356430053711, &quot;y&quot;: 5.206906318664551, &quot;IDs&quot;: &quot;TCGA-LN-A49R-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 6.362504005432129, &quot;y&quot;: 5.835467338562012, &quot;IDs&quot;: &quot;TCGA-LN-A49S-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 3.995436906814575, &quot;y&quot;: 5.286233901977539, &quot;IDs&quot;: &quot;TCGA-LN-A49U-01A-31R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.640690326690674, &quot;y&quot;: 5.0393524169921875, &quot;IDs&quot;: &quot;TCGA-LN-A49V-01A-11R-A24K-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 6.065192699432373, &quot;y&quot;: 4.10500431060791, &quot;IDs&quot;: &quot;TCGA-LN-A49W-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.682690143585205, &quot;y&quot;: 4.212711811065674, &quot;IDs&quot;: &quot;TCGA-LN-A49X-01A-31R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.679583549499512, &quot;y&quot;: 5.6732048988342285, &quot;IDs&quot;: &quot;TCGA-LN-A49Y-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.103940010070801, &quot;y&quot;: 4.112951755523682, &quot;IDs&quot;: &quot;TCGA-LN-A4A1-01A-21R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.348617076873779, &quot;y&quot;: 5.141674518585205, &quot;IDs&quot;: &quot;TCGA-LN-A4A2-01A-31R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.051695346832275, &quot;y&quot;: 4.568410873413086, &quot;IDs&quot;: &quot;TCGA-LN-A4A3-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.662224292755127, &quot;y&quot;: 5.573002815246582, &quot;IDs&quot;: &quot;TCGA-LN-A4A4-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 6.452495574951172, &quot;y&quot;: 4.388973712921143, &quot;IDs&quot;: &quot;TCGA-LN-A4A5-01A-21R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.12326717376709, &quot;y&quot;: 4.529666900634766, &quot;IDs&quot;: &quot;TCGA-LN-A4A6-01A-11R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.749729633331299, &quot;y&quot;: 4.346096992492676, &quot;IDs&quot;: &quot;TCGA-LN-A4A8-01A-32R-A260-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.143843173980713, &quot;y&quot;: 4.034424781799316, &quot;IDs&quot;: &quot;TCGA-LN-A4A9-01A-11R-A28J-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.935342311859131, &quot;y&quot;: 6.663435935974121, &quot;IDs&quot;: &quot;TCGA-LN-A4MQ-01A-11R-A28J-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.503539562225342, &quot;y&quot;: 4.461695194244385, &quot;IDs&quot;: &quot;TCGA-LN-A4MR-01A-11R-A28J-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.958795547485352, &quot;y&quot;: 5.879226207733154, &quot;IDs&quot;: &quot;TCGA-LN-A5U5-01A-21R-A28J-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.568907737731934, &quot;y&quot;: 4.825864791870117, &quot;IDs&quot;: &quot;TCGA-LN-A5U6-01A-11R-A28J-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.244436740875244, &quot;y&quot;: 4.851281642913818, &quot;IDs&quot;: &quot;TCGA-LN-A5U7-01A-11R-A31P-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.988408088684082, &quot;y&quot;: 4.434030055999756, &quot;IDs&quot;: &quot;TCGA-LN-A7HV-01A-21R-A354-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.116700649261475, &quot;y&quot;: 5.814447402954102, &quot;IDs&quot;: &quot;TCGA-LN-A7HW-01A-22R-A354-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 3.9984288215637207, &quot;y&quot;: 4.373631477355957, &quot;IDs&quot;: &quot;TCGA-LN-A7HX-01A-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 6.127125263214111, &quot;y&quot;: 4.071802616119385, &quot;IDs&quot;: &quot;TCGA-LN-A7HY-01A-12R-A354-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.161032676696777, &quot;y&quot;: 6.113032341003418, &quot;IDs&quot;: &quot;TCGA-LN-A7HZ-01A-31R-A354-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.558258533477783, &quot;y&quot;: 6.401165962219238, &quot;IDs&quot;: &quot;TCGA-LN-A8HZ-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.093806743621826, &quot;y&quot;: 5.664221286773682, &quot;IDs&quot;: &quot;TCGA-LN-A8I0-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.665755271911621, &quot;y&quot;: 6.121047496795654, &quot;IDs&quot;: &quot;TCGA-LN-A8I1-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.565417766571045, &quot;y&quot;: 3.833122730255127, &quot;IDs&quot;: &quot;TCGA-LN-A9FO-01A-11R-A38D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 6.850094795227051, &quot;y&quot;: 4.4991044998168945, &quot;IDs&quot;: &quot;TCGA-LN-A9FP-01A-31R-A38D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.775024890899658, &quot;y&quot;: 5.906385898590088, &quot;IDs&quot;: &quot;TCGA-LN-A9FQ-01A-31R-A38D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.253015518188477, &quot;y&quot;: 4.728426933288574, &quot;IDs&quot;: &quot;TCGA-LN-A9FR-01A-11R-A38D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.149828910827637, &quot;y&quot;: 6.0474371910095215, &quot;IDs&quot;: &quot;TCGA-M9-A5M8-01A-11R-A28J-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.053522109985352, &quot;y&quot;: 4.5622148513793945, &quot;IDs&quot;: &quot;TCGA-Q9-A6FU-01A-11R-A31P-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.07483196258545, &quot;y&quot;: 5.606220245361328, &quot;IDs&quot;: &quot;TCGA-Q9-A6FW-01A-31R-A31P-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.210088729858398, &quot;y&quot;: 5.731225490570068, &quot;IDs&quot;: &quot;TCGA-R6-A6DN-01B-11R-A31P-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.429850578308105, &quot;y&quot;: 6.49766206741333, &quot;IDs&quot;: &quot;TCGA-R6-A6DQ-01B-11R-A31P-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.911571502685547, &quot;y&quot;: 6.760294437408447, &quot;IDs&quot;: &quot;TCGA-R6-A6KZ-01A-11R-A31P-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 7.9884033203125, &quot;y&quot;: 5.896116733551025, &quot;IDs&quot;: &quot;TCGA-R6-A6L4-01A-11R-A31P-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.075800895690918, &quot;y&quot;: 6.213812351226807, &quot;IDs&quot;: &quot;TCGA-R6-A6L6-01B-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.11156940460205, &quot;y&quot;: 7.581323146820068, &quot;IDs&quot;: &quot;TCGA-R6-A6XG-01B-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.142783164978027, &quot;y&quot;: 6.337921619415283, &quot;IDs&quot;: &quot;TCGA-R6-A6XQ-01B-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 7.676960468292236, &quot;y&quot;: 5.744313716888428, &quot;IDs&quot;: &quot;TCGA-R6-A6Y0-01B-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 11.582119941711426, &quot;y&quot;: 6.609033107757568, &quot;IDs&quot;: &quot;TCGA-R6-A6Y2-01B-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.421526908874512, &quot;y&quot;: 6.3569793701171875, &quot;IDs&quot;: &quot;TCGA-R6-A8W5-01B-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.959674835205078, &quot;y&quot;: 6.272440433502197, &quot;IDs&quot;: &quot;TCGA-R6-A8W8-01B-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.320845603942871, &quot;y&quot;: 7.611831188201904, &quot;IDs&quot;: &quot;TCGA-R6-A8WC-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.929784774780273, &quot;y&quot;: 6.974469184875488, &quot;IDs&quot;: &quot;TCGA-R6-A8WG-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 10.219513893127441, &quot;y&quot;: 7.587544918060303, &quot;IDs&quot;: &quot;TCGA-RE-A7BO-01A-11R-A336-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.280381202697754, &quot;y&quot;: 5.8122406005859375, &quot;IDs&quot;: &quot;TCGA-S8-A6BV-01A-21R-A31P-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.197764873504639, &quot;y&quot;: 6.048629283905029, &quot;IDs&quot;: &quot;TCGA-S8-A6BW-01A-11R-A31P-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.352380752563477, &quot;y&quot;: 6.15038537979126, &quot;IDs&quot;: &quot;TCGA-V5-A7RB-01A-11R-A354-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.714446544647217, &quot;y&quot;: 6.263579368591309, &quot;IDs&quot;: &quot;TCGA-V5-A7RC-06A-11R-A406-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.327479839324951, &quot;y&quot;: 6.114243030548096, &quot;IDs&quot;: &quot;TCGA-V5-A7RC-01B-11R-A406-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 8.92378044128418, &quot;y&quot;: 7.127414226531982, &quot;IDs&quot;: &quot;TCGA-V5-A7RE-01A-11R-A354-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.95478630065918, &quot;y&quot;: 4.052985191345215, &quot;IDs&quot;: &quot;TCGA-V5-AASV-01A-11R-A38D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.180779457092285, &quot;y&quot;: 7.440451145172119, &quot;IDs&quot;: &quot;TCGA-V5-AASW-01A-11R-A406-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.832731246948242, &quot;y&quot;: 6.8603363037109375, &quot;IDs&quot;: &quot;TCGA-V5-AASX-01A-11R-A38D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.668496608734131, &quot;y&quot;: 5.258080959320068, &quot;IDs&quot;: &quot;TCGA-VR-A8EO-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.405348777770996, &quot;y&quot;: 6.356562614440918, &quot;IDs&quot;: &quot;TCGA-VR-A8EP-01A-31R-A406-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.07541275024414, &quot;y&quot;: 7.119078636169434, &quot;IDs&quot;: &quot;TCGA-VR-A8EQ-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.988759994506836, &quot;y&quot;: 6.456256866455078, &quot;IDs&quot;: &quot;TCGA-VR-A8ER-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.711131572723389, &quot;y&quot;: 4.748113632202148, &quot;IDs&quot;: &quot;TCGA-VR-A8ET-01A-11R-A406-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.453199863433838, &quot;y&quot;: 3.9092438220977783, &quot;IDs&quot;: &quot;TCGA-VR-A8EU-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.013803958892822, &quot;y&quot;: 5.929444789886475, &quot;IDs&quot;: &quot;TCGA-VR-A8EW-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.831950664520264, &quot;y&quot;: 5.867592811584473, &quot;IDs&quot;: &quot;TCGA-VR-A8EX-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.167364120483398, &quot;y&quot;: 5.170170307159424, &quot;IDs&quot;: &quot;TCGA-VR-A8EY-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.913015365600586, &quot;y&quot;: 5.991030216217041, &quot;IDs&quot;: &quot;TCGA-VR-A8EZ-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.397654056549072, &quot;y&quot;: 3.442667007446289, &quot;IDs&quot;: &quot;TCGA-VR-A8Q7-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.208399772644043, &quot;y&quot;: 7.210605144500732, &quot;IDs&quot;: &quot;TCGA-VR-AA4D-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.116081714630127, &quot;y&quot;: 4.395705699920654, &quot;IDs&quot;: &quot;TCGA-VR-AA4G-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.477138519287109, &quot;y&quot;: 4.701505661010742, &quot;IDs&quot;: &quot;TCGA-VR-AA7B-01A-31R-A406-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.783527851104736, &quot;y&quot;: 3.8169093132019043, &quot;IDs&quot;: &quot;TCGA-VR-AA7D-01A-11R-A406-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.509315490722656, &quot;y&quot;: 4.240375995635986, &quot;IDs&quot;: &quot;TCGA-VR-AA7I-01A-11R-A406-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 9.65206527709961, &quot;y&quot;: 5.562337875366211, &quot;IDs&quot;: &quot;TCGA-X8-AAAR-01A-11R-A406-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.539062023162842, &quot;y&quot;: 6.170739650726318, &quot;IDs&quot;: &quot;TCGA-XP-A8T6-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.857802867889404, &quot;y&quot;: 5.541067123413086, &quot;IDs&quot;: &quot;TCGA-XP-A8T8-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.4897661209106445, &quot;y&quot;: 3.823068380355835, &quot;IDs&quot;: &quot;TCGA-Z6-A8JD-01A-11R-A36D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.225663661956787, &quot;y&quot;: 5.176190376281738, &quot;IDs&quot;: &quot;TCGA-Z6-A8JE-01A-11R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 5.08437442779541, &quot;y&quot;: 6.232110500335693, &quot;IDs&quot;: &quot;TCGA-Z6-A9VB-01A-21R-A37I-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 4.966510772705078, &quot;y&quot;: 3.8811981678009033, &quot;IDs&quot;: &quot;TCGA-Z6-AAPN-01A-11R-A406-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}, {&quot;x&quot;: 11.399665832519531, &quot;y&quot;: 5.3103508949279785, &quot;IDs&quot;: &quot;TCGA-ZR-A9CJ-01B-11R-A38D-31&quot;, &quot;Subtypes&quot;: &quot;08_ESCA&quot;, &quot;colors&quot;: &quot;#84ff00&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#84ff00&quot;, &quot;name&quot;: &quot;08_ESCA&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 13.659762382507324, &quot;y&quot;: -12.199628829956055, &quot;IDs&quot;: &quot;TCGA-02-0047-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.515731811523438, &quot;y&quot;: -8.812787055969238, &quot;IDs&quot;: &quot;TCGA-02-0055-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.71436882019043, &quot;y&quot;: -13.134807586669922, &quot;IDs&quot;: &quot;TCGA-02-2483-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.058553695678711, &quot;y&quot;: -11.516762733459473, &quot;IDs&quot;: &quot;TCGA-02-2485-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.58182144165039, &quot;y&quot;: -9.854021072387695, &quot;IDs&quot;: &quot;TCGA-02-2486-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.46910572052002, &quot;y&quot;: -10.142268180847168, &quot;IDs&quot;: &quot;TCGA-06-0125-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.481735229492188, &quot;y&quot;: -10.819221496582031, &quot;IDs&quot;: &quot;TCGA-06-0125-02A-11R-2005-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.898048400878906, &quot;y&quot;: -12.862695693969727, &quot;IDs&quot;: &quot;TCGA-06-0129-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.196853637695312, &quot;y&quot;: -8.588218688964844, &quot;IDs&quot;: &quot;TCGA-06-0130-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.750907897949219, &quot;y&quot;: -11.832162857055664, &quot;IDs&quot;: &quot;TCGA-06-0132-01A-02R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.269763946533203, &quot;y&quot;: -11.58166790008545, &quot;IDs&quot;: &quot;TCGA-06-0138-01A-02R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.97702693939209, &quot;y&quot;: -9.983672142028809, &quot;IDs&quot;: &quot;TCGA-06-0141-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.712247848510742, &quot;y&quot;: -10.072237968444824, &quot;IDs&quot;: &quot;TCGA-06-0152-02A-01R-2005-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.504433631896973, &quot;y&quot;: -11.592416763305664, &quot;IDs&quot;: &quot;TCGA-06-0156-01A-03R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.19352912902832, &quot;y&quot;: -10.85413932800293, &quot;IDs&quot;: &quot;TCGA-06-0157-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.328290939331055, &quot;y&quot;: -11.170629501342773, &quot;IDs&quot;: &quot;TCGA-06-0158-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.315682411193848, &quot;y&quot;: -11.129226684570312, &quot;IDs&quot;: &quot;TCGA-06-0168-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.44297981262207, &quot;y&quot;: -9.7692289352417, &quot;IDs&quot;: &quot;TCGA-06-0171-02A-11R-2005-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.229025840759277, &quot;y&quot;: -12.782041549682617, &quot;IDs&quot;: &quot;TCGA-06-0174-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.159662246704102, &quot;y&quot;: -12.475687980651855, &quot;IDs&quot;: &quot;TCGA-06-0178-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.455263137817383, &quot;y&quot;: -9.951995849609375, &quot;IDs&quot;: &quot;TCGA-06-0184-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.507338523864746, &quot;y&quot;: -9.039603233337402, &quot;IDs&quot;: &quot;TCGA-06-0187-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.89892292022705, &quot;y&quot;: -9.048172950744629, &quot;IDs&quot;: &quot;TCGA-06-0190-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.121567726135254, &quot;y&quot;: -8.191253662109375, &quot;IDs&quot;: &quot;TCGA-06-0190-02A-01R-2005-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.397258758544922, &quot;y&quot;: -9.284093856811523, &quot;IDs&quot;: &quot;TCGA-06-0210-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.267854690551758, &quot;y&quot;: -10.740797996520996, &quot;IDs&quot;: &quot;TCGA-06-0210-02A-01R-2005-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.027633666992188, &quot;y&quot;: -10.57076644897461, &quot;IDs&quot;: &quot;TCGA-06-0211-01B-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.995341300964355, &quot;y&quot;: -9.630481719970703, &quot;IDs&quot;: &quot;TCGA-06-0211-02A-02R-2005-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.496859550476074, &quot;y&quot;: -11.363279342651367, &quot;IDs&quot;: &quot;TCGA-06-0219-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.273832321166992, &quot;y&quot;: -12.752537727355957, &quot;IDs&quot;: &quot;TCGA-06-0221-02A-11R-2005-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.756189346313477, &quot;y&quot;: -12.55437183380127, &quot;IDs&quot;: &quot;TCGA-06-0238-01A-02R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.594879150390625, &quot;y&quot;: -8.54213809967041, &quot;IDs&quot;: &quot;TCGA-06-0644-01A-02R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.263713836669922, &quot;y&quot;: -10.194035530090332, &quot;IDs&quot;: &quot;TCGA-06-0645-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.230179786682129, &quot;y&quot;: -11.650052070617676, &quot;IDs&quot;: &quot;TCGA-06-0646-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.359864234924316, &quot;y&quot;: -11.32468032836914, &quot;IDs&quot;: &quot;TCGA-06-0649-01B-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.686967849731445, &quot;y&quot;: -12.815073013305664, &quot;IDs&quot;: &quot;TCGA-06-0675-11A-32R-A36H-07&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 16.025310516357422, &quot;y&quot;: -12.520322799682617, &quot;IDs&quot;: &quot;TCGA-06-0678-11A-32R-A36H-07&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.712241172790527, &quot;y&quot;: -12.621158599853516, &quot;IDs&quot;: &quot;TCGA-06-0680-11A-32R-A36H-07&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.993157386779785, &quot;y&quot;: -12.531598091125488, &quot;IDs&quot;: &quot;TCGA-06-0681-11A-41R-A36H-07&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.882427215576172, &quot;y&quot;: -13.065196990966797, &quot;IDs&quot;: &quot;TCGA-06-0686-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.640753746032715, &quot;y&quot;: -10.560152053833008, &quot;IDs&quot;: &quot;TCGA-06-0743-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.468534469604492, &quot;y&quot;: -10.731100082397461, &quot;IDs&quot;: &quot;TCGA-06-0744-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.940848350524902, &quot;y&quot;: -11.392133712768555, &quot;IDs&quot;: &quot;TCGA-06-0745-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.007474899291992, &quot;y&quot;: -10.54672622680664, &quot;IDs&quot;: &quot;TCGA-06-0747-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.824572563171387, &quot;y&quot;: -12.078221321105957, &quot;IDs&quot;: &quot;TCGA-06-0749-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.004440307617188, &quot;y&quot;: -10.679208755493164, &quot;IDs&quot;: &quot;TCGA-06-0750-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.670269012451172, &quot;y&quot;: -9.728273391723633, &quot;IDs&quot;: &quot;TCGA-06-0878-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.242020606994629, &quot;y&quot;: -11.243027687072754, &quot;IDs&quot;: &quot;TCGA-06-0882-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.002065658569336, &quot;y&quot;: -11.67668628692627, &quot;IDs&quot;: &quot;TCGA-06-1804-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.148717880249023, &quot;y&quot;: -10.80006217956543, &quot;IDs&quot;: &quot;TCGA-06-2557-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.290915489196777, &quot;y&quot;: -12.494338035583496, &quot;IDs&quot;: &quot;TCGA-06-2558-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.082986831665039, &quot;y&quot;: -11.973793029785156, &quot;IDs&quot;: &quot;TCGA-06-2559-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.890542984008789, &quot;y&quot;: -11.10633373260498, &quot;IDs&quot;: &quot;TCGA-06-2561-01A-02R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.175418853759766, &quot;y&quot;: -9.916656494140625, &quot;IDs&quot;: &quot;TCGA-06-2562-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.85083293914795, &quot;y&quot;: -10.266966819763184, &quot;IDs&quot;: &quot;TCGA-06-2563-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.537615776062012, &quot;y&quot;: -10.555588722229004, &quot;IDs&quot;: &quot;TCGA-06-2564-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.893990516662598, &quot;y&quot;: -10.001333236694336, &quot;IDs&quot;: &quot;TCGA-06-2565-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.576412200927734, &quot;y&quot;: -11.357192039489746, &quot;IDs&quot;: &quot;TCGA-06-2567-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.118542671203613, &quot;y&quot;: -6.516425132751465, &quot;IDs&quot;: &quot;TCGA-06-2569-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.842384338378906, &quot;y&quot;: -13.017297744750977, &quot;IDs&quot;: &quot;TCGA-06-2570-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.789448738098145, &quot;y&quot;: -10.42745590209961, &quot;IDs&quot;: &quot;TCGA-06-5408-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.529328346252441, &quot;y&quot;: -9.632684707641602, &quot;IDs&quot;: &quot;TCGA-06-5410-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.948321342468262, &quot;y&quot;: -12.480365753173828, &quot;IDs&quot;: &quot;TCGA-06-5411-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.949766159057617, &quot;y&quot;: -9.629358291625977, &quot;IDs&quot;: &quot;TCGA-06-5412-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.784475326538086, &quot;y&quot;: -11.040719985961914, &quot;IDs&quot;: &quot;TCGA-06-5413-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.174656867980957, &quot;y&quot;: -9.197548866271973, &quot;IDs&quot;: &quot;TCGA-06-5414-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.23597240447998, &quot;y&quot;: -11.288272857666016, &quot;IDs&quot;: &quot;TCGA-06-5415-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.484917640686035, &quot;y&quot;: -12.785809516906738, &quot;IDs&quot;: &quot;TCGA-06-5416-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.580547332763672, &quot;y&quot;: -13.055557250976562, &quot;IDs&quot;: &quot;TCGA-06-5417-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.04204273223877, &quot;y&quot;: -9.284920692443848, &quot;IDs&quot;: &quot;TCGA-06-5418-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.906203269958496, &quot;y&quot;: -11.059298515319824, &quot;IDs&quot;: &quot;TCGA-06-5856-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.760668754577637, &quot;y&quot;: -10.775500297546387, &quot;IDs&quot;: &quot;TCGA-06-5858-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.879220008850098, &quot;y&quot;: -11.184268951416016, &quot;IDs&quot;: &quot;TCGA-06-5859-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.854757308959961, &quot;y&quot;: -12.757098197937012, &quot;IDs&quot;: &quot;TCGA-06-AABW-11A-31R-A36H-07&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.274234771728516, &quot;y&quot;: -11.234884262084961, &quot;IDs&quot;: &quot;TCGA-08-0386-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.620198249816895, &quot;y&quot;: -12.00944709777832, &quot;IDs&quot;: &quot;TCGA-12-0616-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.67275619506836, &quot;y&quot;: -13.01250171661377, &quot;IDs&quot;: &quot;TCGA-12-0618-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.849530220031738, &quot;y&quot;: -9.63525676727295, &quot;IDs&quot;: &quot;TCGA-12-0619-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.88316822052002, &quot;y&quot;: -11.239897727966309, &quot;IDs&quot;: &quot;TCGA-12-0821-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.640822410583496, &quot;y&quot;: -12.847854614257812, &quot;IDs&quot;: &quot;TCGA-12-1597-01B-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.666003227233887, &quot;y&quot;: -11.802453994750977, &quot;IDs&quot;: &quot;TCGA-12-3650-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.858338356018066, &quot;y&quot;: -9.686674118041992, &quot;IDs&quot;: &quot;TCGA-12-3652-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.936726570129395, &quot;y&quot;: -9.081608772277832, &quot;IDs&quot;: &quot;TCGA-12-3653-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.31004810333252, &quot;y&quot;: -9.670684814453125, &quot;IDs&quot;: &quot;TCGA-12-5295-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.178446769714355, &quot;y&quot;: -9.796548843383789, &quot;IDs&quot;: &quot;TCGA-12-5299-01A-02R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.866779327392578, &quot;y&quot;: -11.514965057373047, &quot;IDs&quot;: &quot;TCGA-14-0736-02A-01R-2005-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.30662727355957, &quot;y&quot;: -9.042269706726074, &quot;IDs&quot;: &quot;TCGA-14-0781-01B-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.840367317199707, &quot;y&quot;: -9.850930213928223, &quot;IDs&quot;: &quot;TCGA-14-0787-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.387519836425781, &quot;y&quot;: -9.042956352233887, &quot;IDs&quot;: &quot;TCGA-14-0789-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.645174980163574, &quot;y&quot;: -10.50009536743164, &quot;IDs&quot;: &quot;TCGA-14-0790-01B-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.086485862731934, &quot;y&quot;: -10.424626350402832, &quot;IDs&quot;: &quot;TCGA-14-0817-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.852453231811523, &quot;y&quot;: -9.272462844848633, &quot;IDs&quot;: &quot;TCGA-14-1034-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.73967456817627, &quot;y&quot;: -10.426276206970215, &quot;IDs&quot;: &quot;TCGA-14-1034-02B-01R-2005-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.165053367614746, &quot;y&quot;: -10.654199600219727, &quot;IDs&quot;: &quot;TCGA-14-1402-02A-01R-2005-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.687233924865723, &quot;y&quot;: -9.993474006652832, &quot;IDs&quot;: &quot;TCGA-14-1823-01A-01R-1849-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.812765121459961, &quot;y&quot;: -12.90765380859375, &quot;IDs&quot;: &quot;TCGA-14-1825-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.76439380645752, &quot;y&quot;: -10.618232727050781, &quot;IDs&quot;: &quot;TCGA-14-1829-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.19735050201416, &quot;y&quot;: -10.378506660461426, &quot;IDs&quot;: &quot;TCGA-14-2554-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.615880966186523, &quot;y&quot;: -10.108519554138184, &quot;IDs&quot;: &quot;TCGA-15-0742-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.854523658752441, &quot;y&quot;: -12.415654182434082, &quot;IDs&quot;: &quot;TCGA-15-1444-01A-02R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.56336498260498, &quot;y&quot;: -12.045234680175781, &quot;IDs&quot;: &quot;TCGA-16-0846-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.942813873291016, &quot;y&quot;: -10.063214302062988, &quot;IDs&quot;: &quot;TCGA-16-1045-01B-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.242156982421875, &quot;y&quot;: -12.278059005737305, &quot;IDs&quot;: &quot;TCGA-19-0957-02A-11R-2005-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.528085708618164, &quot;y&quot;: -9.096137046813965, &quot;IDs&quot;: &quot;TCGA-19-1389-02A-21R-2005-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.252893447875977, &quot;y&quot;: -12.807900428771973, &quot;IDs&quot;: &quot;TCGA-19-1390-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.67724609375, &quot;y&quot;: -10.948796272277832, &quot;IDs&quot;: &quot;TCGA-19-1787-01B-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.367223739624023, &quot;y&quot;: -10.27995491027832, &quot;IDs&quot;: &quot;TCGA-19-2619-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.780365943908691, &quot;y&quot;: -11.402029991149902, &quot;IDs&quot;: &quot;TCGA-19-2620-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.813733100891113, &quot;y&quot;: -12.382877349853516, &quot;IDs&quot;: &quot;TCGA-19-2624-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.778013229370117, &quot;y&quot;: -10.119834899902344, &quot;IDs&quot;: &quot;TCGA-19-2625-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.331890106201172, &quot;y&quot;: -12.52692699432373, &quot;IDs&quot;: &quot;TCGA-19-2629-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.256718635559082, &quot;y&quot;: -9.227863311767578, &quot;IDs&quot;: &quot;TCGA-19-4065-01A-01R-2005-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.14744758605957, &quot;y&quot;: -10.895490646362305, &quot;IDs&quot;: &quot;TCGA-19-4065-02A-11R-2005-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.937400817871094, &quot;y&quot;: -11.737068176269531, &quot;IDs&quot;: &quot;TCGA-19-5960-01A-11R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.557903289794922, &quot;y&quot;: -12.415576934814453, &quot;IDs&quot;: &quot;TCGA-26-1442-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.687472343444824, &quot;y&quot;: -10.66418170928955, &quot;IDs&quot;: &quot;TCGA-26-5132-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.254128456115723, &quot;y&quot;: -12.798066139221191, &quot;IDs&quot;: &quot;TCGA-26-5133-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.602901458740234, &quot;y&quot;: -12.670537948608398, &quot;IDs&quot;: &quot;TCGA-26-5134-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.201683044433594, &quot;y&quot;: -12.036707878112793, &quot;IDs&quot;: &quot;TCGA-26-5135-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.955617904663086, &quot;y&quot;: -10.776867866516113, &quot;IDs&quot;: &quot;TCGA-26-5136-01B-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.000001907348633, &quot;y&quot;: -10.483321189880371, &quot;IDs&quot;: &quot;TCGA-26-5139-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.975713729858398, &quot;y&quot;: -11.286458015441895, &quot;IDs&quot;: &quot;TCGA-27-1830-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.317797660827637, &quot;y&quot;: -10.31980037689209, &quot;IDs&quot;: &quot;TCGA-27-1831-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.696176528930664, &quot;y&quot;: -10.35845947265625, &quot;IDs&quot;: &quot;TCGA-27-1832-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.067099571228027, &quot;y&quot;: -11.679807662963867, &quot;IDs&quot;: &quot;TCGA-27-1834-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.489452362060547, &quot;y&quot;: -10.10789966583252, &quot;IDs&quot;: &quot;TCGA-27-1835-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.815709114074707, &quot;y&quot;: -11.283676147460938, &quot;IDs&quot;: &quot;TCGA-27-1837-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.556368827819824, &quot;y&quot;: -11.508657455444336, &quot;IDs&quot;: &quot;TCGA-27-2519-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.326427459716797, &quot;y&quot;: -13.284119606018066, &quot;IDs&quot;: &quot;TCGA-27-2521-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.244787216186523, &quot;y&quot;: -10.471931457519531, &quot;IDs&quot;: &quot;TCGA-27-2523-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.447436332702637, &quot;y&quot;: -9.55798625946045, &quot;IDs&quot;: &quot;TCGA-27-2524-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.172438621520996, &quot;y&quot;: -9.365556716918945, &quot;IDs&quot;: &quot;TCGA-27-2526-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.210776329040527, &quot;y&quot;: -9.825512886047363, &quot;IDs&quot;: &quot;TCGA-27-2528-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.553642272949219, &quot;y&quot;: -11.462776184082031, &quot;IDs&quot;: &quot;TCGA-28-1747-01C-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.64646053314209, &quot;y&quot;: -10.335280418395996, &quot;IDs&quot;: &quot;TCGA-28-1753-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.545526504516602, &quot;y&quot;: -10.381291389465332, &quot;IDs&quot;: &quot;TCGA-28-2499-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.394255638122559, &quot;y&quot;: -9.131736755371094, &quot;IDs&quot;: &quot;TCGA-28-2509-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.461175918579102, &quot;y&quot;: -12.373021125793457, &quot;IDs&quot;: &quot;TCGA-28-2510-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.06035041809082, &quot;y&quot;: -9.408543586730957, &quot;IDs&quot;: &quot;TCGA-28-2513-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.021650314331055, &quot;y&quot;: -11.791951179504395, &quot;IDs&quot;: &quot;TCGA-28-2514-01A-02R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.110726356506348, &quot;y&quot;: -9.561652183532715, &quot;IDs&quot;: &quot;TCGA-28-5204-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.344808578491211, &quot;y&quot;: -11.554237365722656, &quot;IDs&quot;: &quot;TCGA-28-5207-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.45976734161377, &quot;y&quot;: -10.29088306427002, &quot;IDs&quot;: &quot;TCGA-28-5208-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.159908294677734, &quot;y&quot;: -9.509641647338867, &quot;IDs&quot;: &quot;TCGA-28-5209-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.521193504333496, &quot;y&quot;: -9.990869522094727, &quot;IDs&quot;: &quot;TCGA-28-5213-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.146750450134277, &quot;y&quot;: -12.058748245239258, &quot;IDs&quot;: &quot;TCGA-28-5215-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.147740364074707, &quot;y&quot;: -12.32962703704834, &quot;IDs&quot;: &quot;TCGA-28-5216-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 11.974775314331055, &quot;y&quot;: -7.517022609710693, &quot;IDs&quot;: &quot;TCGA-28-5218-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.192962646484375, &quot;y&quot;: -11.342062950134277, &quot;IDs&quot;: &quot;TCGA-28-5220-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.14340877532959, &quot;y&quot;: -11.444314956665039, &quot;IDs&quot;: &quot;TCGA-32-1970-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.947216033935547, &quot;y&quot;: -11.872919082641602, &quot;IDs&quot;: &quot;TCGA-32-1980-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.70453929901123, &quot;y&quot;: -9.844097137451172, &quot;IDs&quot;: &quot;TCGA-32-1982-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.447098731994629, &quot;y&quot;: -10.81617546081543, &quot;IDs&quot;: &quot;TCGA-32-2615-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.25564193725586, &quot;y&quot;: -9.97527027130127, &quot;IDs&quot;: &quot;TCGA-32-2616-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.0111665725708, &quot;y&quot;: -10.47263240814209, &quot;IDs&quot;: &quot;TCGA-32-2632-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.147164344787598, &quot;y&quot;: -12.195329666137695, &quot;IDs&quot;: &quot;TCGA-32-2634-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.228753089904785, &quot;y&quot;: -9.836191177368164, &quot;IDs&quot;: &quot;TCGA-32-2638-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.500465393066406, &quot;y&quot;: -9.579777717590332, &quot;IDs&quot;: &quot;TCGA-32-4213-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.958935737609863, &quot;y&quot;: -10.232851028442383, &quot;IDs&quot;: &quot;TCGA-32-5222-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.390772819519043, &quot;y&quot;: -13.080145835876465, &quot;IDs&quot;: &quot;TCGA-41-2571-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.734381675720215, &quot;y&quot;: -9.802628517150879, &quot;IDs&quot;: &quot;TCGA-41-2572-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.668014526367188, &quot;y&quot;: -10.827130317687988, &quot;IDs&quot;: &quot;TCGA-41-3915-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.641681671142578, &quot;y&quot;: -10.726192474365234, &quot;IDs&quot;: &quot;TCGA-41-4097-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.268143653869629, &quot;y&quot;: -13.110052108764648, &quot;IDs&quot;: &quot;TCGA-41-5651-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.903547286987305, &quot;y&quot;: -9.39786434173584, &quot;IDs&quot;: &quot;TCGA-76-4925-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.469423294067383, &quot;y&quot;: -11.259061813354492, &quot;IDs&quot;: &quot;TCGA-76-4926-01B-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.658844947814941, &quot;y&quot;: -10.491061210632324, &quot;IDs&quot;: &quot;TCGA-76-4927-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 13.11761474609375, &quot;y&quot;: -8.869966506958008, &quot;IDs&quot;: &quot;TCGA-76-4928-01B-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 12.478618621826172, &quot;y&quot;: -11.780341148376465, &quot;IDs&quot;: &quot;TCGA-76-4929-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 15.148923873901367, &quot;y&quot;: -10.921080589294434, &quot;IDs&quot;: &quot;TCGA-76-4931-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}, {&quot;x&quot;: 14.796603202819824, &quot;y&quot;: -9.171195030212402, &quot;IDs&quot;: &quot;TCGA-76-4932-01A-01R-1850-01&quot;, &quot;Subtypes&quot;: &quot;09_GBM&quot;, &quot;colors&quot;: &quot;#25ff00&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#25ff00&quot;, &quot;name&quot;: &quot;09_GBM&quot;}, {&quot;data&quot;: [{&quot;x&quot;: -3.595876455307007, &quot;y&quot;: -9.424854278564453, &quot;IDs&quot;: &quot;TCGA-KL-8323-01A-21R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.9118380546569824, &quot;y&quot;: -3.4921836853027344, &quot;IDs&quot;: &quot;TCGA-KL-8324-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -5.1847734451293945, &quot;y&quot;: -8.632041931152344, &quot;IDs&quot;: &quot;TCGA-KL-8324-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.9303975105285645, &quot;y&quot;: -9.426814079284668, &quot;IDs&quot;: &quot;TCGA-KL-8325-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.050229072570801, &quot;y&quot;: -3.5971415042877197, &quot;IDs&quot;: &quot;TCGA-KL-8326-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.805703639984131, &quot;y&quot;: -8.404494285583496, &quot;IDs&quot;: &quot;TCGA-KL-8326-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.7407288551330566, &quot;y&quot;: -8.312967300415039, &quot;IDs&quot;: &quot;TCGA-KL-8327-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.857487440109253, &quot;y&quot;: -9.856629371643066, &quot;IDs&quot;: &quot;TCGA-KL-8328-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.6512489318847656, &quot;y&quot;: -3.2495131492614746, &quot;IDs&quot;: &quot;TCGA-KL-8329-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.65767765045166, &quot;y&quot;: -8.926531791687012, &quot;IDs&quot;: &quot;TCGA-KL-8329-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.582817554473877, &quot;y&quot;: -9.465764045715332, &quot;IDs&quot;: &quot;TCGA-KL-8330-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.711050510406494, &quot;y&quot;: -9.372488021850586, &quot;IDs&quot;: &quot;TCGA-KL-8331-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.937682628631592, &quot;y&quot;: -3.4178109169006348, &quot;IDs&quot;: &quot;TCGA-KL-8332-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.239839553833008, &quot;y&quot;: -8.235603332519531, &quot;IDs&quot;: &quot;TCGA-KL-8332-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.809366703033447, &quot;y&quot;: -7.833263874053955, &quot;IDs&quot;: &quot;TCGA-KL-8333-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.9987404346466064, &quot;y&quot;: -9.229945182800293, &quot;IDs&quot;: &quot;TCGA-KL-8334-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.898930311203003, &quot;y&quot;: -9.54356861114502, &quot;IDs&quot;: &quot;TCGA-KL-8335-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.6373162269592285, &quot;y&quot;: -3.90205979347229, &quot;IDs&quot;: &quot;TCGA-KL-8336-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.63192081451416, &quot;y&quot;: -9.511735916137695, &quot;IDs&quot;: &quot;TCGA-KL-8336-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.5464322566986084, &quot;y&quot;: -9.079838752746582, &quot;IDs&quot;: &quot;TCGA-KL-8337-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.45468807220459, &quot;y&quot;: -9.066205024719238, &quot;IDs&quot;: &quot;TCGA-KL-8338-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.112751007080078, &quot;y&quot;: -3.241285800933838, &quot;IDs&quot;: &quot;TCGA-KL-8339-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.217193126678467, &quot;y&quot;: -9.895936965942383, &quot;IDs&quot;: &quot;TCGA-KL-8339-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.241328716278076, &quot;y&quot;: -9.013862609863281, &quot;IDs&quot;: &quot;TCGA-KL-8340-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.2690229415893555, &quot;y&quot;: -9.215263366699219, &quot;IDs&quot;: &quot;TCGA-KL-8341-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.006676197052002, &quot;y&quot;: -8.188697814941406, &quot;IDs&quot;: &quot;TCGA-KL-8342-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.83632493019104, &quot;y&quot;: -8.091170310974121, &quot;IDs&quot;: &quot;TCGA-KL-8343-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.279903888702393, &quot;y&quot;: -7.790145397186279, &quot;IDs&quot;: &quot;TCGA-KL-8344-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.3288326263427734, &quot;y&quot;: -9.020514488220215, &quot;IDs&quot;: &quot;TCGA-KL-8345-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.151950359344482, &quot;y&quot;: -9.628690719604492, &quot;IDs&quot;: &quot;TCGA-KL-8346-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -5.162283897399902, &quot;y&quot;: -8.892918586730957, &quot;IDs&quot;: &quot;TCGA-KM-8438-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.458268642425537, &quot;y&quot;: -6.712700366973877, &quot;IDs&quot;: &quot;TCGA-KM-8439-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.825906753540039, &quot;y&quot;: -9.562804222106934, &quot;IDs&quot;: &quot;TCGA-KM-8440-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.483484745025635, &quot;y&quot;: -6.506147861480713, &quot;IDs&quot;: &quot;TCGA-KM-8441-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.630417346954346, &quot;y&quot;: -8.881617546081543, &quot;IDs&quot;: &quot;TCGA-KM-8442-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.3730764389038086, &quot;y&quot;: -9.145544052124023, &quot;IDs&quot;: &quot;TCGA-KM-8443-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.576321601867676, &quot;y&quot;: -8.224332809448242, &quot;IDs&quot;: &quot;TCGA-KM-8476-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.380652904510498, &quot;y&quot;: -7.558704853057861, &quot;IDs&quot;: &quot;TCGA-KM-8477-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.392109394073486, &quot;y&quot;: -5.958008289337158, &quot;IDs&quot;: &quot;TCGA-KM-8639-01A-11R-2403-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.28515100479126, &quot;y&quot;: -9.670947074890137, &quot;IDs&quot;: &quot;TCGA-KN-8418-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.816441059112549, &quot;y&quot;: -5.027377605438232, &quot;IDs&quot;: &quot;TCGA-KN-8419-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.577071189880371, &quot;y&quot;: -7.849113941192627, &quot;IDs&quot;: &quot;TCGA-KN-8419-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.8973164558410645, &quot;y&quot;: -9.293907165527344, &quot;IDs&quot;: &quot;TCGA-KN-8421-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.239377498626709, &quot;y&quot;: -4.40891695022583, &quot;IDs&quot;: &quot;TCGA-KN-8422-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.875229358673096, &quot;y&quot;: -8.915197372436523, &quot;IDs&quot;: &quot;TCGA-KN-8422-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.114433765411377, &quot;y&quot;: -4.947163105010986, &quot;IDs&quot;: &quot;TCGA-KN-8423-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.746710300445557, &quot;y&quot;: -8.01565170288086, &quot;IDs&quot;: &quot;TCGA-KN-8423-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.240250110626221, &quot;y&quot;: -4.837035655975342, &quot;IDs&quot;: &quot;TCGA-KN-8424-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.196690082550049, &quot;y&quot;: -8.807489395141602, &quot;IDs&quot;: &quot;TCGA-KN-8424-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.1880083084106445, &quot;y&quot;: -5.671388149261475, &quot;IDs&quot;: &quot;TCGA-KN-8425-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.783882141113281, &quot;y&quot;: -8.167705535888672, &quot;IDs&quot;: &quot;TCGA-KN-8425-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.9462084770202637, &quot;y&quot;: -5.240952968597412, &quot;IDs&quot;: &quot;TCGA-KN-8426-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -5.037498474121094, &quot;y&quot;: -8.143335342407227, &quot;IDs&quot;: &quot;TCGA-KN-8426-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.646868944168091, &quot;y&quot;: -5.290582180023193, &quot;IDs&quot;: &quot;TCGA-KN-8427-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: 9.333245277404785, &quot;y&quot;: -5.810153484344482, &quot;IDs&quot;: &quot;TCGA-KN-8427-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.118063926696777, &quot;y&quot;: -3.5802345275878906, &quot;IDs&quot;: &quot;TCGA-KN-8428-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.181576251983643, &quot;y&quot;: -9.302295684814453, &quot;IDs&quot;: &quot;TCGA-KN-8428-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.050017356872559, &quot;y&quot;: -5.23132848739624, &quot;IDs&quot;: &quot;TCGA-KN-8429-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.359126567840576, &quot;y&quot;: -9.32154369354248, &quot;IDs&quot;: &quot;TCGA-KN-8429-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.04265832901001, &quot;y&quot;: -5.68074893951416, &quot;IDs&quot;: &quot;TCGA-KN-8430-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.905025959014893, &quot;y&quot;: -8.376664161682129, &quot;IDs&quot;: &quot;TCGA-KN-8430-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.899827003479004, &quot;y&quot;: -5.081439018249512, &quot;IDs&quot;: &quot;TCGA-KN-8431-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.769432544708252, &quot;y&quot;: -9.318227767944336, &quot;IDs&quot;: &quot;TCGA-KN-8431-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.8963725566864014, &quot;y&quot;: -4.8905181884765625, &quot;IDs&quot;: &quot;TCGA-KN-8432-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.0761284828186035, &quot;y&quot;: -8.941473960876465, &quot;IDs&quot;: &quot;TCGA-KN-8432-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.30513858795166, &quot;y&quot;: -3.8499913215637207, &quot;IDs&quot;: &quot;TCGA-KN-8433-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -5.316913604736328, &quot;y&quot;: -8.389594078063965, &quot;IDs&quot;: &quot;TCGA-KN-8433-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.2244672775268555, &quot;y&quot;: -3.522099256515503, &quot;IDs&quot;: &quot;TCGA-KN-8434-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.124817848205566, &quot;y&quot;: -8.450852394104004, &quot;IDs&quot;: &quot;TCGA-KN-8434-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.854865074157715, &quot;y&quot;: -3.382871150970459, &quot;IDs&quot;: &quot;TCGA-KN-8435-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.385422706604004, &quot;y&quot;: -9.25906753540039, &quot;IDs&quot;: &quot;TCGA-KN-8435-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.119391918182373, &quot;y&quot;: -5.349846839904785, &quot;IDs&quot;: &quot;TCGA-KN-8436-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.4965338706970215, &quot;y&quot;: -8.703801155090332, &quot;IDs&quot;: &quot;TCGA-KN-8436-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.857253313064575, &quot;y&quot;: -4.369682312011719, &quot;IDs&quot;: &quot;TCGA-KN-8437-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.300512313842773, &quot;y&quot;: -6.3284220695495605, &quot;IDs&quot;: &quot;TCGA-KN-8437-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.468433380126953, &quot;y&quot;: -5.131248474121094, &quot;IDs&quot;: &quot;TCGA-KO-8403-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.7284204959869385, &quot;y&quot;: -8.452896118164062, &quot;IDs&quot;: &quot;TCGA-KO-8403-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: 10.370978355407715, &quot;y&quot;: -6.281339645385742, &quot;IDs&quot;: &quot;TCGA-KO-8404-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -5.045296669006348, &quot;y&quot;: -8.35520076751709, &quot;IDs&quot;: &quot;TCGA-KO-8405-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.2568018436431885, &quot;y&quot;: -8.775508880615234, &quot;IDs&quot;: &quot;TCGA-KO-8406-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.230282306671143, &quot;y&quot;: -8.704312324523926, &quot;IDs&quot;: &quot;TCGA-KO-8407-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.564375877380371, &quot;y&quot;: -9.23531436920166, &quot;IDs&quot;: &quot;TCGA-KO-8408-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.99938440322876, &quot;y&quot;: -8.53083610534668, &quot;IDs&quot;: &quot;TCGA-KO-8409-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.7780537605285645, &quot;y&quot;: -7.4553937911987305, &quot;IDs&quot;: &quot;TCGA-KO-8410-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.278372287750244, &quot;y&quot;: -8.618057250976562, &quot;IDs&quot;: &quot;TCGA-KO-8411-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -5.076423645019531, &quot;y&quot;: -7.771472454071045, &quot;IDs&quot;: &quot;TCGA-KO-8413-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.777776718139648, &quot;y&quot;: -8.456814765930176, &quot;IDs&quot;: &quot;TCGA-KO-8414-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.123841762542725, &quot;y&quot;: -4.251010417938232, &quot;IDs&quot;: &quot;TCGA-KO-8415-11A-01R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -4.908531188964844, &quot;y&quot;: -8.596806526184082, &quot;IDs&quot;: &quot;TCGA-KO-8415-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.9818849563598633, &quot;y&quot;: -8.593589782714844, &quot;IDs&quot;: &quot;TCGA-KO-8416-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}, {&quot;x&quot;: -3.577868700027466, &quot;y&quot;: -9.080171585083008, &quot;IDs&quot;: &quot;TCGA-KO-8417-01A-11R-2315-07&quot;, &quot;Subtypes&quot;: &quot;11_KICH&quot;, &quot;colors&quot;: &quot;#00ff39&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#00ff39&quot;, &quot;name&quot;: &quot;11_KICH&quot;}, {&quot;data&quot;: [{&quot;x&quot;: -8.782073974609375, &quot;y&quot;: -0.33504238724708557, &quot;IDs&quot;: &quot;TCGA-AB-2803-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.176383972167969, &quot;y&quot;: 4.43393087387085, &quot;IDs&quot;: &quot;TCGA-AB-2805-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.417552471160889, &quot;y&quot;: 5.478965759277344, &quot;IDs&quot;: &quot;TCGA-AB-2806-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.749563217163086, &quot;y&quot;: 2.9551708698272705, &quot;IDs&quot;: &quot;TCGA-AB-2807-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.937039375305176, &quot;y&quot;: 5.3564229011535645, &quot;IDs&quot;: &quot;TCGA-AB-2808-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.139961242675781, &quot;y&quot;: 4.576012134552002, &quot;IDs&quot;: &quot;TCGA-AB-2810-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.801231384277344, &quot;y&quot;: 5.774119853973389, &quot;IDs&quot;: &quot;TCGA-AB-2811-03B-01T-0760-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.491480827331543, &quot;y&quot;: 3.921473741531372, &quot;IDs&quot;: &quot;TCGA-AB-2812-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.132946014404297, &quot;y&quot;: 4.632518291473389, &quot;IDs&quot;: &quot;TCGA-AB-2813-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.853074073791504, &quot;y&quot;: 2.7613131999969482, &quot;IDs&quot;: &quot;TCGA-AB-2814-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.588069915771484, &quot;y&quot;: 4.548303127288818, &quot;IDs&quot;: &quot;TCGA-AB-2815-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.89035701751709, &quot;y&quot;: 5.942521095275879, &quot;IDs&quot;: &quot;TCGA-AB-2816-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.032206535339355, &quot;y&quot;: 3.300966262817383, &quot;IDs&quot;: &quot;TCGA-AB-2817-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.265932083129883, &quot;y&quot;: 5.360044479370117, &quot;IDs&quot;: &quot;TCGA-AB-2818-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.318788528442383, &quot;y&quot;: 5.29104471206665, &quot;IDs&quot;: &quot;TCGA-AB-2819-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.723065376281738, &quot;y&quot;: 2.6661489009857178, &quot;IDs&quot;: &quot;TCGA-AB-2820-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.595124244689941, &quot;y&quot;: 3.1515190601348877, &quot;IDs&quot;: &quot;TCGA-AB-2821-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.57827377319336, &quot;y&quot;: 3.7650034427642822, &quot;IDs&quot;: &quot;TCGA-AB-2822-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.132546424865723, &quot;y&quot;: -0.31479522585868835, &quot;IDs&quot;: &quot;TCGA-AB-2823-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.990158081054688, &quot;y&quot;: 5.608245372772217, &quot;IDs&quot;: &quot;TCGA-AB-2824-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.187768936157227, &quot;y&quot;: 6.246457576751709, &quot;IDs&quot;: &quot;TCGA-AB-2825-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.455617904663086, &quot;y&quot;: 5.825949192047119, &quot;IDs&quot;: &quot;TCGA-AB-2826-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.6732048988342285, &quot;y&quot;: 4.341062068939209, &quot;IDs&quot;: &quot;TCGA-AB-2828-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.479052543640137, &quot;y&quot;: 3.5638482570648193, &quot;IDs&quot;: &quot;TCGA-AB-2830-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.139068603515625, &quot;y&quot;: 6.05517578125, &quot;IDs&quot;: &quot;TCGA-AB-2832-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.950272083282471, &quot;y&quot;: 4.703205585479736, &quot;IDs&quot;: &quot;TCGA-AB-2833-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.813549995422363, &quot;y&quot;: 5.0475754737854, &quot;IDs&quot;: &quot;TCGA-AB-2834-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.725476264953613, &quot;y&quot;: 6.300521373748779, &quot;IDs&quot;: &quot;TCGA-AB-2835-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.986462593078613, &quot;y&quot;: 5.421677112579346, &quot;IDs&quot;: &quot;TCGA-AB-2836-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.87760066986084, &quot;y&quot;: 6.305520534515381, &quot;IDs&quot;: &quot;TCGA-AB-2837-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.858819961547852, &quot;y&quot;: 3.200294256210327, &quot;IDs&quot;: &quot;TCGA-AB-2838-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.848169326782227, &quot;y&quot;: 4.246805191040039, &quot;IDs&quot;: &quot;TCGA-AB-2839-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.959904670715332, &quot;y&quot;: -0.187339186668396, &quot;IDs&quot;: &quot;TCGA-AB-2840-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.05145263671875, &quot;y&quot;: -0.4333740770816803, &quot;IDs&quot;: &quot;TCGA-AB-2841-03B-01T-0760-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.660438537597656, &quot;y&quot;: 5.860604763031006, &quot;IDs&quot;: &quot;TCGA-AB-2842-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.368911743164062, &quot;y&quot;: 3.551774740219116, &quot;IDs&quot;: &quot;TCGA-AB-2843-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.92197036743164, &quot;y&quot;: 4.868828773498535, &quot;IDs&quot;: &quot;TCGA-AB-2844-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.586943626403809, &quot;y&quot;: 4.892301082611084, &quot;IDs&quot;: &quot;TCGA-AB-2845-03B-01T-0748-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.38770866394043, &quot;y&quot;: 4.4946794509887695, &quot;IDs&quot;: &quot;TCGA-AB-2846-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.756321907043457, &quot;y&quot;: 2.5100338459014893, &quot;IDs&quot;: &quot;TCGA-AB-2847-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.686279296875, &quot;y&quot;: 5.5268778800964355, &quot;IDs&quot;: &quot;TCGA-AB-2848-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.025480270385742, &quot;y&quot;: 3.7126259803771973, &quot;IDs&quot;: &quot;TCGA-AB-2849-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.708740234375, &quot;y&quot;: 5.666209697723389, &quot;IDs&quot;: &quot;TCGA-AB-2851-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.732621192932129, &quot;y&quot;: 4.646027088165283, &quot;IDs&quot;: &quot;TCGA-AB-2853-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.151453971862793, &quot;y&quot;: 3.9924254417419434, &quot;IDs&quot;: &quot;TCGA-AB-2854-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.373260498046875, &quot;y&quot;: 4.417815208435059, &quot;IDs&quot;: &quot;TCGA-AB-2855-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.258681297302246, &quot;y&quot;: 5.147956848144531, &quot;IDs&quot;: &quot;TCGA-AB-2856-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.722190856933594, &quot;y&quot;: 2.3329265117645264, &quot;IDs&quot;: &quot;TCGA-AB-2857-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.681674957275391, &quot;y&quot;: 5.622796535491943, &quot;IDs&quot;: &quot;TCGA-AB-2858-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.14896297454834, &quot;y&quot;: 3.868420362472534, &quot;IDs&quot;: &quot;TCGA-AB-2859-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.12567138671875, &quot;y&quot;: 3.4682490825653076, &quot;IDs&quot;: &quot;TCGA-AB-2860-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.862242698669434, &quot;y&quot;: 6.62855863571167, &quot;IDs&quot;: &quot;TCGA-AB-2861-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.783003807067871, &quot;y&quot;: -0.1441197395324707, &quot;IDs&quot;: &quot;TCGA-AB-2862-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.631231307983398, &quot;y&quot;: 4.01057243347168, &quot;IDs&quot;: &quot;TCGA-AB-2863-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.873216152191162, &quot;y&quot;: 4.249518871307373, &quot;IDs&quot;: &quot;TCGA-AB-2865-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.506637573242188, &quot;y&quot;: 5.889167308807373, &quot;IDs&quot;: &quot;TCGA-AB-2866-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.651036262512207, &quot;y&quot;: 4.727928161621094, &quot;IDs&quot;: &quot;TCGA-AB-2867-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.777474403381348, &quot;y&quot;: 2.8188436031341553, &quot;IDs&quot;: &quot;TCGA-AB-2868-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.002472877502441, &quot;y&quot;: 3.615260124206543, &quot;IDs&quot;: &quot;TCGA-AB-2869-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.45683479309082, &quot;y&quot;: 4.238753318786621, &quot;IDs&quot;: &quot;TCGA-AB-2870-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.385605812072754, &quot;y&quot;: 3.2075576782226562, &quot;IDs&quot;: &quot;TCGA-AB-2871-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.590607643127441, &quot;y&quot;: -0.22645561397075653, &quot;IDs&quot;: &quot;TCGA-AB-2872-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.817657470703125, &quot;y&quot;: 5.441553115844727, &quot;IDs&quot;: &quot;TCGA-AB-2873-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.861451148986816, &quot;y&quot;: 4.6220550537109375, &quot;IDs&quot;: &quot;TCGA-AB-2874-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.782582759857178, &quot;y&quot;: 5.124087333679199, &quot;IDs&quot;: &quot;TCGA-AB-2875-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.751627922058105, &quot;y&quot;: 4.031522750854492, &quot;IDs&quot;: &quot;TCGA-AB-2877-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.744145393371582, &quot;y&quot;: 3.8915843963623047, &quot;IDs&quot;: &quot;TCGA-AB-2879-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.377578735351562, &quot;y&quot;: 5.0971784591674805, &quot;IDs&quot;: &quot;TCGA-AB-2880-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.520488262176514, &quot;y&quot;: 4.755655288696289, &quot;IDs&quot;: &quot;TCGA-AB-2881-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.090532302856445, &quot;y&quot;: 2.8279433250427246, &quot;IDs&quot;: &quot;TCGA-AB-2882-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.30362606048584, &quot;y&quot;: 5.621969223022461, &quot;IDs&quot;: &quot;TCGA-AB-2884-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.625914573669434, &quot;y&quot;: 2.5404715538024902, &quot;IDs&quot;: &quot;TCGA-AB-2885-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.610427379608154, &quot;y&quot;: 5.562806129455566, &quot;IDs&quot;: &quot;TCGA-AB-2886-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.60701847076416, &quot;y&quot;: 2.9847428798675537, &quot;IDs&quot;: &quot;TCGA-AB-2887-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.960464954376221, &quot;y&quot;: 4.8834452629089355, &quot;IDs&quot;: &quot;TCGA-AB-2888-03B-01T-0748-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.360322952270508, &quot;y&quot;: 4.601108551025391, &quot;IDs&quot;: &quot;TCGA-AB-2889-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.08262825012207, &quot;y&quot;: 3.934257745742798, &quot;IDs&quot;: &quot;TCGA-AB-2890-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.555651664733887, &quot;y&quot;: 5.033745288848877, &quot;IDs&quot;: &quot;TCGA-AB-2891-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.303497314453125, &quot;y&quot;: 3.5556089878082275, &quot;IDs&quot;: &quot;TCGA-AB-2895-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.781771659851074, &quot;y&quot;: 3.863800525665283, &quot;IDs&quot;: &quot;TCGA-AB-2896-03B-01T-0751-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.441349983215332, &quot;y&quot;: -0.48422306776046753, &quot;IDs&quot;: &quot;TCGA-AB-2897-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.78494644165039, &quot;y&quot;: 3.027038812637329, &quot;IDs&quot;: &quot;TCGA-AB-2898-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.32046890258789, &quot;y&quot;: 3.4714808464050293, &quot;IDs&quot;: &quot;TCGA-AB-2899-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.507171630859375, &quot;y&quot;: 5.709364891052246, &quot;IDs&quot;: &quot;TCGA-AB-2900-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.764627456665039, &quot;y&quot;: 4.260748863220215, &quot;IDs&quot;: &quot;TCGA-AB-2901-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.975419044494629, &quot;y&quot;: 4.024310111999512, &quot;IDs&quot;: &quot;TCGA-AB-2903-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.302751541137695, &quot;y&quot;: 2.553053140640259, &quot;IDs&quot;: &quot;TCGA-AB-2904-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.020134925842285, &quot;y&quot;: 2.8919565677642822, &quot;IDs&quot;: &quot;TCGA-AB-2908-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.2775654792785645, &quot;y&quot;: 4.341630458831787, &quot;IDs&quot;: &quot;TCGA-AB-2909-03A-01T-0744-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.823080062866211, &quot;y&quot;: 6.3603668212890625, &quot;IDs&quot;: &quot;TCGA-AB-2910-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.80224895477295, &quot;y&quot;: 5.890004634857178, &quot;IDs&quot;: &quot;TCGA-AB-2911-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.368404388427734, &quot;y&quot;: 3.9370384216308594, &quot;IDs&quot;: &quot;TCGA-AB-2912-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.046732902526855, &quot;y&quot;: 3.374384880065918, &quot;IDs&quot;: &quot;TCGA-AB-2913-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -6.817788600921631, &quot;y&quot;: 4.853526592254639, &quot;IDs&quot;: &quot;TCGA-AB-2914-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.915019989013672, &quot;y&quot;: 4.317434310913086, &quot;IDs&quot;: &quot;TCGA-AB-2915-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.666312217712402, &quot;y&quot;: 5.176933288574219, &quot;IDs&quot;: &quot;TCGA-AB-2916-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.885008811950684, &quot;y&quot;: 3.328503131866455, &quot;IDs&quot;: &quot;TCGA-AB-2917-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.91245174407959, &quot;y&quot;: 4.409554958343506, &quot;IDs&quot;: &quot;TCGA-AB-2918-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.517991065979004, &quot;y&quot;: 3.7778210639953613, &quot;IDs&quot;: &quot;TCGA-AB-2919-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.056300163269043, &quot;y&quot;: 2.7222132682800293, &quot;IDs&quot;: &quot;TCGA-AB-2920-03B-01T-0760-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.018534660339355, &quot;y&quot;: 4.496802806854248, &quot;IDs&quot;: &quot;TCGA-AB-2921-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.537094116210938, &quot;y&quot;: 5.4018754959106445, &quot;IDs&quot;: &quot;TCGA-AB-2924-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.415417671203613, &quot;y&quot;: 6.227620601654053, &quot;IDs&quot;: &quot;TCGA-AB-2925-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.35069465637207, &quot;y&quot;: 3.4605565071105957, &quot;IDs&quot;: &quot;TCGA-AB-2927-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.419551849365234, &quot;y&quot;: 3.27683424949646, &quot;IDs&quot;: &quot;TCGA-AB-2928-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.509931564331055, &quot;y&quot;: 3.275146722793579, &quot;IDs&quot;: &quot;TCGA-AB-2929-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.584698677062988, &quot;y&quot;: 4.830320358276367, &quot;IDs&quot;: &quot;TCGA-AB-2930-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.348278999328613, &quot;y&quot;: 4.1385931968688965, &quot;IDs&quot;: &quot;TCGA-AB-2931-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.199141502380371, &quot;y&quot;: 6.254051208496094, &quot;IDs&quot;: &quot;TCGA-AB-2932-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.826155662536621, &quot;y&quot;: 3.9287660121917725, &quot;IDs&quot;: &quot;TCGA-AB-2933-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.211698532104492, &quot;y&quot;: 4.66051721572876, &quot;IDs&quot;: &quot;TCGA-AB-2934-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.342018127441406, &quot;y&quot;: 2.874882936477661, &quot;IDs&quot;: &quot;TCGA-AB-2935-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.766300201416016, &quot;y&quot;: 3.621190309524536, &quot;IDs&quot;: &quot;TCGA-AB-2936-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.31901741027832, &quot;y&quot;: 5.492761611938477, &quot;IDs&quot;: &quot;TCGA-AB-2937-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.55693244934082, &quot;y&quot;: 2.535207509994507, &quot;IDs&quot;: &quot;TCGA-AB-2938-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.988677978515625, &quot;y&quot;: 5.006268501281738, &quot;IDs&quot;: &quot;TCGA-AB-2939-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.657865524291992, &quot;y&quot;: 4.865047931671143, &quot;IDs&quot;: &quot;TCGA-AB-2940-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.730242729187012, &quot;y&quot;: 2.715097665786743, &quot;IDs&quot;: &quot;TCGA-AB-2941-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.010251045227051, &quot;y&quot;: 4.586225986480713, &quot;IDs&quot;: &quot;TCGA-AB-2942-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.232975006103516, &quot;y&quot;: 2.7884228229522705, &quot;IDs&quot;: &quot;TCGA-AB-2943-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.200922012329102, &quot;y&quot;: 2.989044427871704, &quot;IDs&quot;: &quot;TCGA-AB-2944-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.518717765808105, &quot;y&quot;: 5.524190425872803, &quot;IDs&quot;: &quot;TCGA-AB-2946-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.788559913635254, &quot;y&quot;: 4.511333465576172, &quot;IDs&quot;: &quot;TCGA-AB-2948-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.36589527130127, &quot;y&quot;: 3.05070161819458, &quot;IDs&quot;: &quot;TCGA-AB-2949-03B-01T-0748-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -7.462306499481201, &quot;y&quot;: 5.345887660980225, &quot;IDs&quot;: &quot;TCGA-AB-2950-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.260282516479492, &quot;y&quot;: 3.398380994796753, &quot;IDs&quot;: &quot;TCGA-AB-2952-03B-01T-0760-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -6.994178771972656, &quot;y&quot;: 4.5475077629089355, &quot;IDs&quot;: &quot;TCGA-AB-2954-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.466209411621094, &quot;y&quot;: 5.443221092224121, &quot;IDs&quot;: &quot;TCGA-AB-2955-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.923979759216309, &quot;y&quot;: 6.566543102264404, &quot;IDs&quot;: &quot;TCGA-AB-2956-03A-01T-0740-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.704645156860352, &quot;y&quot;: 3.8069329261779785, &quot;IDs&quot;: &quot;TCGA-AB-2959-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.749639511108398, &quot;y&quot;: 5.148017406463623, &quot;IDs&quot;: &quot;TCGA-AB-2963-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.613395690917969, &quot;y&quot;: 3.038689374923706, &quot;IDs&quot;: &quot;TCGA-AB-2964-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.953415870666504, &quot;y&quot;: 5.701729774475098, &quot;IDs&quot;: &quot;TCGA-AB-2965-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.519575119018555, &quot;y&quot;: 4.591708660125732, &quot;IDs&quot;: &quot;TCGA-AB-2966-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.623817443847656, &quot;y&quot;: 5.531385898590088, &quot;IDs&quot;: &quot;TCGA-AB-2967-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.611320495605469, &quot;y&quot;: 6.520418643951416, &quot;IDs&quot;: &quot;TCGA-AB-2969-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.706146240234375, &quot;y&quot;: 3.9204375743865967, &quot;IDs&quot;: &quot;TCGA-AB-2970-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.552777290344238, &quot;y&quot;: 5.2997894287109375, &quot;IDs&quot;: &quot;TCGA-AB-2971-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.758715629577637, &quot;y&quot;: 2.994590997695923, &quot;IDs&quot;: &quot;TCGA-AB-2972-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.570390701293945, &quot;y&quot;: 6.166536808013916, &quot;IDs&quot;: &quot;TCGA-AB-2973-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.368109703063965, &quot;y&quot;: 3.904672145843506, &quot;IDs&quot;: &quot;TCGA-AB-2975-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.980037689208984, &quot;y&quot;: 4.05874490737915, &quot;IDs&quot;: &quot;TCGA-AB-2976-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.944475173950195, &quot;y&quot;: 5.176088333129883, &quot;IDs&quot;: &quot;TCGA-AB-2977-03B-01T-0760-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.646956443786621, &quot;y&quot;: 3.393035411834717, &quot;IDs&quot;: &quot;TCGA-AB-2978-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.656877517700195, &quot;y&quot;: 5.590176105499268, &quot;IDs&quot;: &quot;TCGA-AB-2979-03B-01T-0760-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.835735321044922, &quot;y&quot;: 0.5349360108375549, &quot;IDs&quot;: &quot;TCGA-AB-2980-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.703588485717773, &quot;y&quot;: 6.030216693878174, &quot;IDs&quot;: &quot;TCGA-AB-2981-03B-01T-0748-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.431098937988281, &quot;y&quot;: 0.28476181626319885, &quot;IDs&quot;: &quot;TCGA-AB-2982-03B-01T-0748-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.090750694274902, &quot;y&quot;: 3.981680393218994, &quot;IDs&quot;: &quot;TCGA-AB-2983-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.389874458312988, &quot;y&quot;: 4.0139617919921875, &quot;IDs&quot;: &quot;TCGA-AB-2984-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.82070255279541, &quot;y&quot;: 5.977892875671387, &quot;IDs&quot;: &quot;TCGA-AB-2985-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.73574447631836, &quot;y&quot;: 4.432961940765381, &quot;IDs&quot;: &quot;TCGA-AB-2986-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.420598983764648, &quot;y&quot;: 5.808234691619873, &quot;IDs&quot;: &quot;TCGA-AB-2987-03A-01T-0734-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.000353813171387, &quot;y&quot;: 4.107421875, &quot;IDs&quot;: &quot;TCGA-AB-2988-03B-01T-0748-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.13429069519043, &quot;y&quot;: 4.3072052001953125, &quot;IDs&quot;: &quot;TCGA-AB-2990-03B-01T-0748-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.066174507141113, &quot;y&quot;: 0.2795387804508209, &quot;IDs&quot;: &quot;TCGA-AB-2991-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.751909255981445, &quot;y&quot;: 3.7517364025115967, &quot;IDs&quot;: &quot;TCGA-AB-2992-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.327826499938965, &quot;y&quot;: 3.576730251312256, &quot;IDs&quot;: &quot;TCGA-AB-2993-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.176496505737305, &quot;y&quot;: -0.40074610710144043, &quot;IDs&quot;: &quot;TCGA-AB-2994-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.702945709228516, &quot;y&quot;: 2.748331069946289, &quot;IDs&quot;: &quot;TCGA-AB-2995-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.341443061828613, &quot;y&quot;: 3.4431424140930176, &quot;IDs&quot;: &quot;TCGA-AB-2996-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.2791748046875, &quot;y&quot;: 0.028525663539767265, &quot;IDs&quot;: &quot;TCGA-AB-2998-03A-01T-0735-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.491740226745605, &quot;y&quot;: 0.22832177579402924, &quot;IDs&quot;: &quot;TCGA-AB-2999-03B-01T-0748-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.82703685760498, &quot;y&quot;: 5.267716407775879, &quot;IDs&quot;: &quot;TCGA-AB-3000-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.73741626739502, &quot;y&quot;: 0.27379557490348816, &quot;IDs&quot;: &quot;TCGA-AB-3001-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.436725616455078, &quot;y&quot;: 3.4416935443878174, &quot;IDs&quot;: &quot;TCGA-AB-3002-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.526447296142578, &quot;y&quot;: 6.49197244644165, &quot;IDs&quot;: &quot;TCGA-AB-3005-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -10.605283737182617, &quot;y&quot;: 3.466522216796875, &quot;IDs&quot;: &quot;TCGA-AB-3006-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.954395294189453, &quot;y&quot;: 0.14180892705917358, &quot;IDs&quot;: &quot;TCGA-AB-3007-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.64069938659668, &quot;y&quot;: 5.405440330505371, &quot;IDs&quot;: &quot;TCGA-AB-3008-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -9.282529830932617, &quot;y&quot;: 4.2780561447143555, &quot;IDs&quot;: &quot;TCGA-AB-3009-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -11.106393814086914, &quot;y&quot;: 3.7936110496520996, &quot;IDs&quot;: &quot;TCGA-AB-3011-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}, {&quot;x&quot;: -8.44221305847168, &quot;y&quot;: -0.07876618951559067, &quot;IDs&quot;: &quot;TCGA-AB-3012-03A-01T-0736-13&quot;, &quot;Subtypes&quot;: &quot;14_LAML&quot;, &quot;colors&quot;: &quot;#00ff97&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#00ff97&quot;, &quot;name&quot;: &quot;14_LAML&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 6.935172080993652, &quot;y&quot;: -7.719853401184082, &quot;IDs&quot;: &quot;TCGA-3H-AB3K-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.588206768035889, &quot;y&quot;: -6.674393177032471, &quot;IDs&quot;: &quot;TCGA-3H-AB3L-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.577630043029785, &quot;y&quot;: -8.420647621154785, &quot;IDs&quot;: &quot;TCGA-3H-AB3M-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.73613452911377, &quot;y&quot;: -5.6828227043151855, &quot;IDs&quot;: &quot;TCGA-3H-AB3O-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.248838424682617, &quot;y&quot;: -7.448569297790527, &quot;IDs&quot;: &quot;TCGA-3H-AB3S-01A-21R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.037568092346191, &quot;y&quot;: -5.798856258392334, &quot;IDs&quot;: &quot;TCGA-3H-AB3T-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 6.7124924659729, &quot;y&quot;: -7.7829790115356445, &quot;IDs&quot;: &quot;TCGA-3H-AB3U-01A-21R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.208761215209961, &quot;y&quot;: -8.27208137512207, &quot;IDs&quot;: &quot;TCGA-3H-AB3X-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.903950691223145, &quot;y&quot;: -7.01870584487915, &quot;IDs&quot;: &quot;TCGA-3U-A98D-01A-12R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 6.629894256591797, &quot;y&quot;: -7.133296966552734, &quot;IDs&quot;: &quot;TCGA-3U-A98E-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.650983810424805, &quot;y&quot;: -6.9772047996521, &quot;IDs&quot;: &quot;TCGA-3U-A98F-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.965373992919922, &quot;y&quot;: -6.197465419769287, &quot;IDs&quot;: &quot;TCGA-3U-A98G-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.727989673614502, &quot;y&quot;: -7.380521297454834, &quot;IDs&quot;: &quot;TCGA-3U-A98H-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.472125053405762, &quot;y&quot;: -6.847421169281006, &quot;IDs&quot;: &quot;TCGA-3U-A98I-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.689225673675537, &quot;y&quot;: -8.057722091674805, &quot;IDs&quot;: &quot;TCGA-3U-A98J-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.420433521270752, &quot;y&quot;: -7.238070487976074, &quot;IDs&quot;: &quot;TCGA-LK-A4NW-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.491534233093262, &quot;y&quot;: -8.34402084350586, &quot;IDs&quot;: &quot;TCGA-LK-A4NY-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.158884048461914, &quot;y&quot;: -7.830767631530762, &quot;IDs&quot;: &quot;TCGA-LK-A4NZ-01A-12R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.177850723266602, &quot;y&quot;: -5.6310224533081055, &quot;IDs&quot;: &quot;TCGA-LK-A4O0-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.086675643920898, &quot;y&quot;: -6.230999946594238, &quot;IDs&quot;: &quot;TCGA-LK-A4O2-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 12.895942687988281, &quot;y&quot;: 2.3596510887145996, &quot;IDs&quot;: &quot;TCGA-LK-A4O4-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.883749008178711, &quot;y&quot;: -7.022733211517334, &quot;IDs&quot;: &quot;TCGA-LK-A4O5-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.100634574890137, &quot;y&quot;: -7.3767266273498535, &quot;IDs&quot;: &quot;TCGA-LK-A4O6-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.050431251525879, &quot;y&quot;: -7.714310646057129, &quot;IDs&quot;: &quot;TCGA-LK-A4O7-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.028550148010254, &quot;y&quot;: -7.649226188659668, &quot;IDs&quot;: &quot;TCGA-MQ-A4KX-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 6.839879989624023, &quot;y&quot;: -7.439117908477783, &quot;IDs&quot;: &quot;TCGA-MQ-A4LC-01A-31R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.860946178436279, &quot;y&quot;: -8.273591995239258, &quot;IDs&quot;: &quot;TCGA-MQ-A4LI-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.212955474853516, &quot;y&quot;: -8.152241706848145, &quot;IDs&quot;: &quot;TCGA-MQ-A4LJ-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.73965072631836, &quot;y&quot;: -5.747347831726074, &quot;IDs&quot;: &quot;TCGA-MQ-A4LM-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.225069999694824, &quot;y&quot;: -7.665507793426514, &quot;IDs&quot;: &quot;TCGA-MQ-A4LP-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.648780822753906, &quot;y&quot;: -6.230282783508301, &quot;IDs&quot;: &quot;TCGA-MQ-A4LV-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.863547325134277, &quot;y&quot;: -5.581084728240967, &quot;IDs&quot;: &quot;TCGA-MQ-A6BL-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.3230133056640625, &quot;y&quot;: -6.916384220123291, &quot;IDs&quot;: &quot;TCGA-MQ-A6BN-01A-12R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 6.734642028808594, &quot;y&quot;: -7.564812660217285, &quot;IDs&quot;: &quot;TCGA-MQ-A6BQ-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.282102584838867, &quot;y&quot;: -7.35231876373291, &quot;IDs&quot;: &quot;TCGA-MQ-A6BR-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.192261695861816, &quot;y&quot;: -7.684714317321777, &quot;IDs&quot;: &quot;TCGA-MQ-A6BS-01A-12R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.869950294494629, &quot;y&quot;: -6.111159324645996, &quot;IDs&quot;: &quot;TCGA-NQ-A57I-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.9236531257629395, &quot;y&quot;: -7.4446587562561035, &quot;IDs&quot;: &quot;TCGA-NQ-A638-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.022293090820312, &quot;y&quot;: -7.350817680358887, &quot;IDs&quot;: &quot;TCGA-SC-A6LM-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.894163131713867, &quot;y&quot;: -7.355048179626465, &quot;IDs&quot;: &quot;TCGA-SC-A6LN-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.635163307189941, &quot;y&quot;: -5.900437355041504, &quot;IDs&quot;: &quot;TCGA-SC-A6LP-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.917138576507568, &quot;y&quot;: -6.633947849273682, &quot;IDs&quot;: &quot;TCGA-SC-A6LQ-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.1213884353637695, &quot;y&quot;: -8.365087509155273, &quot;IDs&quot;: &quot;TCGA-SC-A6LR-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.287687301635742, &quot;y&quot;: -7.295804977416992, &quot;IDs&quot;: &quot;TCGA-SC-AA5Z-01A-21R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.378893852233887, &quot;y&quot;: -7.366349697113037, &quot;IDs&quot;: &quot;TCGA-SH-A7BC-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 6.808010101318359, &quot;y&quot;: -6.999189376831055, &quot;IDs&quot;: &quot;TCGA-SH-A7BD-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.477835655212402, &quot;y&quot;: -6.268941879272461, &quot;IDs&quot;: &quot;TCGA-SH-A7BH-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.477842330932617, &quot;y&quot;: -7.863712310791016, &quot;IDs&quot;: &quot;TCGA-SH-A9CT-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.946988582611084, &quot;y&quot;: -8.593012809753418, &quot;IDs&quot;: &quot;TCGA-SH-A9CU-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 6.657530307769775, &quot;y&quot;: -7.435631275177002, &quot;IDs&quot;: &quot;TCGA-TS-A7OU-01B-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.029690742492676, &quot;y&quot;: -6.487807273864746, &quot;IDs&quot;: &quot;TCGA-TS-A7OY-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.370146751403809, &quot;y&quot;: -7.5987467765808105, &quot;IDs&quot;: &quot;TCGA-TS-A7OZ-01A-21R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.28365707397461, &quot;y&quot;: -8.027314186096191, &quot;IDs&quot;: &quot;TCGA-TS-A7P0-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.393782615661621, &quot;y&quot;: -6.8166022300720215, &quot;IDs&quot;: &quot;TCGA-TS-A7P1-01A-41R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.69538402557373, &quot;y&quot;: -7.130011081695557, &quot;IDs&quot;: &quot;TCGA-TS-A7P3-01A-12R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.554998397827148, &quot;y&quot;: -6.671153545379639, &quot;IDs&quot;: &quot;TCGA-TS-A7P6-01A-21R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.8846435546875, &quot;y&quot;: -7.107150077819824, &quot;IDs&quot;: &quot;TCGA-TS-A7P7-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.167268753051758, &quot;y&quot;: -7.107194900512695, &quot;IDs&quot;: &quot;TCGA-TS-A7P8-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 6.803121089935303, &quot;y&quot;: -6.795200824737549, &quot;IDs&quot;: &quot;TCGA-TS-A7PB-01A-11R-A34F-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.481012344360352, &quot;y&quot;: -7.467451572418213, &quot;IDs&quot;: &quot;TCGA-TS-A8AF-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.007309913635254, &quot;y&quot;: -7.283205509185791, &quot;IDs&quot;: &quot;TCGA-TS-A8AI-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.256270408630371, &quot;y&quot;: -7.098457336425781, &quot;IDs&quot;: &quot;TCGA-TS-A8AS-01A-21R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.617840766906738, &quot;y&quot;: -5.3877177238464355, &quot;IDs&quot;: &quot;TCGA-TS-A8AV-01A-12R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.27220344543457, &quot;y&quot;: -8.33350944519043, &quot;IDs&quot;: &quot;TCGA-TS-A8AY-01A-21R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.311752319335938, &quot;y&quot;: -7.3900227546691895, &quot;IDs&quot;: &quot;TCGA-UD-AABY-01A-12R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.761887073516846, &quot;y&quot;: -6.990933418273926, &quot;IDs&quot;: &quot;TCGA-UD-AABZ-01A-12R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.010913848876953, &quot;y&quot;: -7.309352874755859, &quot;IDs&quot;: &quot;TCGA-UD-AAC1-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.471829414367676, &quot;y&quot;: -6.931438446044922, &quot;IDs&quot;: &quot;TCGA-UD-AAC4-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.414484977722168, &quot;y&quot;: -7.256108283996582, &quot;IDs&quot;: &quot;TCGA-UD-AAC5-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.589197158813477, &quot;y&quot;: -7.133143901824951, &quot;IDs&quot;: &quot;TCGA-UD-AAC6-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.240290641784668, &quot;y&quot;: -6.502102375030518, &quot;IDs&quot;: &quot;TCGA-UD-AAC7-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.123432636260986, &quot;y&quot;: -7.422591209411621, &quot;IDs&quot;: &quot;TCGA-UT-A88C-01B-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.564391136169434, &quot;y&quot;: -7.043475151062012, &quot;IDs&quot;: &quot;TCGA-UT-A88D-01B-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.306398868560791, &quot;y&quot;: -7.342122554779053, &quot;IDs&quot;: &quot;TCGA-UT-A88E-01B-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.075276374816895, &quot;y&quot;: -7.871199607849121, &quot;IDs&quot;: &quot;TCGA-UT-A88G-01B-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.562946319580078, &quot;y&quot;: -6.796345233917236, &quot;IDs&quot;: &quot;TCGA-UT-A97Y-01A-21R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.40620231628418, &quot;y&quot;: -6.58556604385376, &quot;IDs&quot;: &quot;TCGA-XT-AASU-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.340120315551758, &quot;y&quot;: -7.990217685699463, &quot;IDs&quot;: &quot;TCGA-YS-A95B-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.060661315917969, &quot;y&quot;: -7.918422222137451, &quot;IDs&quot;: &quot;TCGA-YS-A95C-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.785613059997559, &quot;y&quot;: -6.063356399536133, &quot;IDs&quot;: &quot;TCGA-YS-AA4M-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 7.036593437194824, &quot;y&quot;: -7.1616530418396, &quot;IDs&quot;: &quot;TCGA-ZN-A9VO-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.215193748474121, &quot;y&quot;: -7.690659046173096, &quot;IDs&quot;: &quot;TCGA-ZN-A9VP-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 9.278497695922852, &quot;y&quot;: -7.503317356109619, &quot;IDs&quot;: &quot;TCGA-ZN-A9VQ-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 6.72609281539917, &quot;y&quot;: -7.137560844421387, &quot;IDs&quot;: &quot;TCGA-ZN-A9VS-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 6.554422378540039, &quot;y&quot;: -7.183896064758301, &quot;IDs&quot;: &quot;TCGA-ZN-A9VU-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.549363136291504, &quot;y&quot;: -7.784617900848389, &quot;IDs&quot;: &quot;TCGA-ZN-A9VV-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}, {&quot;x&quot;: 8.698870658874512, &quot;y&quot;: -6.240731239318848, &quot;IDs&quot;: &quot;TCGA-ZN-A9VW-01A-11R-A40A-07&quot;, &quot;Subtypes&quot;: &quot;19_MESO&quot;, &quot;colors&quot;: &quot;#00fff6&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#00fff6&quot;, &quot;name&quot;: &quot;19_MESO&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 15.1929931640625, &quot;y&quot;: 5.569432258605957, &quot;IDs&quot;: &quot;TCGA-2J-AAB1-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.64164924621582, &quot;y&quot;: 5.126573085784912, &quot;IDs&quot;: &quot;TCGA-2J-AAB4-01A-12R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.721075057983398, &quot;y&quot;: 4.044958114624023, &quot;IDs&quot;: &quot;TCGA-2J-AAB6-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.049423217773438, &quot;y&quot;: 5.437201499938965, &quot;IDs&quot;: &quot;TCGA-2J-AAB8-01A-12R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.841391563415527, &quot;y&quot;: 3.586472749710083, &quot;IDs&quot;: &quot;TCGA-2J-AAB9-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.440284729003906, &quot;y&quot;: 4.873017311096191, &quot;IDs&quot;: &quot;TCGA-2J-AABA-01A-21R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.952914237976074, &quot;y&quot;: 5.408698081970215, &quot;IDs&quot;: &quot;TCGA-2J-AABE-01A-12R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.428338050842285, &quot;y&quot;: 4.357157230377197, &quot;IDs&quot;: &quot;TCGA-2J-AABF-01A-31R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.905067443847656, &quot;y&quot;: 5.026352405548096, &quot;IDs&quot;: &quot;TCGA-2J-AABH-01A-21R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.706170082092285, &quot;y&quot;: 4.290755271911621, &quot;IDs&quot;: &quot;TCGA-2J-AABI-01A-12R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 16.023658752441406, &quot;y&quot;: 4.750184059143066, &quot;IDs&quot;: &quot;TCGA-2J-AABK-01A-31R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.153975486755371, &quot;y&quot;: 4.0239973068237305, &quot;IDs&quot;: &quot;TCGA-2J-AABO-01A-21R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 10.183374404907227, &quot;y&quot;: -5.8589653968811035, &quot;IDs&quot;: &quot;TCGA-2J-AABP-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.512190818786621, &quot;y&quot;: 3.194685459136963, &quot;IDs&quot;: &quot;TCGA-2J-AABR-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.381965637207031, &quot;y&quot;: 3.5496222972869873, &quot;IDs&quot;: &quot;TCGA-2J-AABT-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.841930389404297, &quot;y&quot;: 4.704470634460449, &quot;IDs&quot;: &quot;TCGA-2J-AABU-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 16.60592269897461, &quot;y&quot;: 3.7371585369110107, &quot;IDs&quot;: &quot;TCGA-2J-AABV-01A-12R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.185080528259277, &quot;y&quot;: 6.152566909790039, &quot;IDs&quot;: &quot;TCGA-2L-AAQA-01A-21R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.565811157226562, &quot;y&quot;: 5.018850803375244, &quot;IDs&quot;: &quot;TCGA-2L-AAQE-01A-11R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.589629173278809, &quot;y&quot;: 5.114434719085693, &quot;IDs&quot;: &quot;TCGA-2L-AAQI-01A-12R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.725346565246582, &quot;y&quot;: 5.650270462036133, &quot;IDs&quot;: &quot;TCGA-2L-AAQJ-01A-12R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.832498550415039, &quot;y&quot;: 4.660531044006348, &quot;IDs&quot;: &quot;TCGA-2L-AAQL-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 7.005195617675781, &quot;y&quot;: 11.93371295928955, &quot;IDs&quot;: &quot;TCGA-2L-AAQM-01A-11R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.976353645324707, &quot;y&quot;: 4.368358135223389, &quot;IDs&quot;: &quot;TCGA-3A-A9I5-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.888566970825195, &quot;y&quot;: 4.336460590362549, &quot;IDs&quot;: &quot;TCGA-3A-A9I7-01A-21R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 16.30721092224121, &quot;y&quot;: 4.13425350189209, &quot;IDs&quot;: &quot;TCGA-3A-A9I9-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.91141128540039, &quot;y&quot;: 3.931529998779297, &quot;IDs&quot;: &quot;TCGA-3A-A9IB-01A-21R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.944437026977539, &quot;y&quot;: 4.995157241821289, &quot;IDs&quot;: &quot;TCGA-3A-A9IC-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.668667793273926, &quot;y&quot;: 5.037695407867432, &quot;IDs&quot;: &quot;TCGA-3A-A9IH-01A-12R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 6.669551372528076, &quot;y&quot;: 12.4024658203125, &quot;IDs&quot;: &quot;TCGA-3A-A9IJ-01A-11R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 7.590458869934082, &quot;y&quot;: 11.518815994262695, &quot;IDs&quot;: &quot;TCGA-3A-A9IL-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 7.336065292358398, &quot;y&quot;: 11.702978134155273, &quot;IDs&quot;: &quot;TCGA-3A-A9IN-01A-11R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 7.5671000480651855, &quot;y&quot;: 11.599617004394531, &quot;IDs&quot;: &quot;TCGA-3A-A9IO-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 7.61997127532959, &quot;y&quot;: 12.230632781982422, &quot;IDs&quot;: &quot;TCGA-3A-A9IR-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 7.210157871246338, &quot;y&quot;: 12.20340633392334, &quot;IDs&quot;: &quot;TCGA-3A-A9IS-01A-21R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.141195297241211, &quot;y&quot;: 4.270946025848389, &quot;IDs&quot;: &quot;TCGA-3A-A9IU-01A-11R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 7.571229934692383, &quot;y&quot;: 11.955659866333008, &quot;IDs&quot;: &quot;TCGA-3A-A9IV-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.592726707458496, &quot;y&quot;: 2.745574712753296, &quot;IDs&quot;: &quot;TCGA-3A-A9IX-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.372681617736816, &quot;y&quot;: 5.273939609527588, &quot;IDs&quot;: &quot;TCGA-3A-A9IZ-01A-12R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.914963722229004, &quot;y&quot;: 5.613245964050293, &quot;IDs&quot;: &quot;TCGA-3A-A9J0-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.4173583984375, &quot;y&quot;: 3.9555602073669434, &quot;IDs&quot;: &quot;TCGA-3E-AAAY-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.044642448425293, &quot;y&quot;: 3.94990611076355, &quot;IDs&quot;: &quot;TCGA-3E-AAAZ-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.037707328796387, &quot;y&quot;: 5.522733211517334, &quot;IDs&quot;: &quot;TCGA-F2-6879-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 16.483793258666992, &quot;y&quot;: 2.7563695907592773, &quot;IDs&quot;: &quot;TCGA-F2-6880-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.62905502319336, &quot;y&quot;: 2.196014165878296, &quot;IDs&quot;: &quot;TCGA-F2-7273-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.479902267456055, &quot;y&quot;: 2.096952438354492, &quot;IDs&quot;: &quot;TCGA-F2-7276-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.616830825805664, &quot;y&quot;: 5.478615760803223, &quot;IDs&quot;: &quot;TCGA-F2-A44G-01A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 16.10194969177246, &quot;y&quot;: 3.344111680984497, &quot;IDs&quot;: &quot;TCGA-F2-A44H-01A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.296429634094238, &quot;y&quot;: 3.5928611755371094, &quot;IDs&quot;: &quot;TCGA-F2-A7TX-01A-33R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.651853561401367, &quot;y&quot;: 5.760496139526367, &quot;IDs&quot;: &quot;TCGA-F2-A8YN-01A-11R-A37L-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.81447696685791, &quot;y&quot;: 3.075176239013672, &quot;IDs&quot;: &quot;TCGA-FB-A4P5-01A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.685855865478516, &quot;y&quot;: 3.0426082611083984, &quot;IDs&quot;: &quot;TCGA-FB-A4P6-01A-12R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.577696800231934, &quot;y&quot;: 4.969619274139404, &quot;IDs&quot;: &quot;TCGA-FB-A545-01A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.938240051269531, &quot;y&quot;: 3.306277275085449, &quot;IDs&quot;: &quot;TCGA-FB-A5VM-01A-11R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 16.17573356628418, &quot;y&quot;: 4.698267936706543, &quot;IDs&quot;: &quot;TCGA-FB-A78T-01A-12R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.999295234680176, &quot;y&quot;: 3.596210479736328, &quot;IDs&quot;: &quot;TCGA-FB-A7DR-01A-21R-A33R-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 11.422765731811523, &quot;y&quot;: 10.36133861541748, &quot;IDs&quot;: &quot;TCGA-FB-AAPP-01A-12R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.886752128601074, &quot;y&quot;: 5.896831035614014, &quot;IDs&quot;: &quot;TCGA-FB-AAPQ-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.954121589660645, &quot;y&quot;: 2.8806822299957275, &quot;IDs&quot;: &quot;TCGA-FB-AAPS-01A-12R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.50202465057373, &quot;y&quot;: 6.379868984222412, &quot;IDs&quot;: &quot;TCGA-FB-AAPU-01A-31R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.388845443725586, &quot;y&quot;: 4.993229389190674, &quot;IDs&quot;: &quot;TCGA-FB-AAPY-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.565155029296875, &quot;y&quot;: 4.096221923828125, &quot;IDs&quot;: &quot;TCGA-FB-AAPZ-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.03645133972168, &quot;y&quot;: 6.314258098602295, &quot;IDs&quot;: &quot;TCGA-FB-AAQ0-01A-31R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.560275077819824, &quot;y&quot;: 4.490322589874268, &quot;IDs&quot;: &quot;TCGA-FB-AAQ1-01A-12R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.168886184692383, &quot;y&quot;: 4.2803802490234375, &quot;IDs&quot;: &quot;TCGA-FB-AAQ2-01A-31R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.122661590576172, &quot;y&quot;: 5.445670127868652, &quot;IDs&quot;: &quot;TCGA-FB-AAQ3-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.641763687133789, &quot;y&quot;: 6.299978256225586, &quot;IDs&quot;: &quot;TCGA-FB-AAQ6-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.902734756469727, &quot;y&quot;: 2.460890054702759, &quot;IDs&quot;: &quot;TCGA-H6-8124-11A-01R-2404-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.431215286254883, &quot;y&quot;: 4.690330505371094, &quot;IDs&quot;: &quot;TCGA-H6-8124-01A-11R-2404-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 10.561847686767578, &quot;y&quot;: -0.5329988598823547, &quot;IDs&quot;: &quot;TCGA-H6-A45N-11A-12R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.15811824798584, &quot;y&quot;: 3.8311655521392822, &quot;IDs&quot;: &quot;TCGA-H6-A45N-01A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.404029846191406, &quot;y&quot;: 5.1752753257751465, &quot;IDs&quot;: &quot;TCGA-H8-A6C1-01A-11R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 16.053539276123047, &quot;y&quot;: 3.0313448905944824, &quot;IDs&quot;: &quot;TCGA-HV-A5A3-11A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.460234642028809, &quot;y&quot;: 5.695580005645752, &quot;IDs&quot;: &quot;TCGA-HV-A5A3-01A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.854594230651855, &quot;y&quot;: 5.459814071655273, &quot;IDs&quot;: &quot;TCGA-HV-A5A4-01A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.87529182434082, &quot;y&quot;: 4.1390790939331055, &quot;IDs&quot;: &quot;TCGA-HV-A5A5-01A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.930130004882812, &quot;y&quot;: 5.486684799194336, &quot;IDs&quot;: &quot;TCGA-HV-A5A6-01A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.576103210449219, &quot;y&quot;: 5.62714958190918, &quot;IDs&quot;: &quot;TCGA-HV-A7OL-01A-11R-A33R-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.305365562438965, &quot;y&quot;: 6.979067325592041, &quot;IDs&quot;: &quot;TCGA-HV-A7OP-01A-11R-A33R-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.669528007507324, &quot;y&quot;: 4.636482238769531, &quot;IDs&quot;: &quot;TCGA-HV-AA8V-01A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.565428733825684, &quot;y&quot;: 5.972862243652344, &quot;IDs&quot;: &quot;TCGA-HV-AA8X-01A-11R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 11.041387557983398, &quot;y&quot;: 10.112411499023438, &quot;IDs&quot;: &quot;TCGA-HZ-7289-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.975061416625977, &quot;y&quot;: 2.0147881507873535, &quot;IDs&quot;: &quot;TCGA-HZ-7918-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.698147773742676, &quot;y&quot;: 4.2927680015563965, &quot;IDs&quot;: &quot;TCGA-HZ-7919-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.722736358642578, &quot;y&quot;: 1.9369287490844727, &quot;IDs&quot;: &quot;TCGA-HZ-7920-01A-11R-2204-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.461747169494629, &quot;y&quot;: 3.6862690448760986, &quot;IDs&quot;: &quot;TCGA-HZ-7922-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.946937561035156, &quot;y&quot;: 1.9975043535232544, &quot;IDs&quot;: &quot;TCGA-HZ-7923-01A-12R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.88825511932373, &quot;y&quot;: 4.381206035614014, &quot;IDs&quot;: &quot;TCGA-HZ-7924-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.398763656616211, &quot;y&quot;: 4.120968818664551, &quot;IDs&quot;: &quot;TCGA-HZ-7925-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.896663665771484, &quot;y&quot;: 3.8650333881378174, &quot;IDs&quot;: &quot;TCGA-HZ-7926-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.43822193145752, &quot;y&quot;: 2.6438663005828857, &quot;IDs&quot;: &quot;TCGA-HZ-8001-01A-11R-2204-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.457862854003906, &quot;y&quot;: 2.172128915786743, &quot;IDs&quot;: &quot;TCGA-HZ-8002-01A-11R-2204-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 16.107418060302734, &quot;y&quot;: 2.3486979007720947, &quot;IDs&quot;: &quot;TCGA-HZ-8003-01A-21R-2204-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.419509887695312, &quot;y&quot;: 4.491108417510986, &quot;IDs&quot;: &quot;TCGA-HZ-8005-01A-11R-2204-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.185612678527832, &quot;y&quot;: 3.8136491775512695, &quot;IDs&quot;: &quot;TCGA-HZ-8315-01A-11R-2404-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.543193817138672, &quot;y&quot;: 3.612210750579834, &quot;IDs&quot;: &quot;TCGA-HZ-8317-01A-11R-2404-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.431352615356445, &quot;y&quot;: 2.216381311416626, &quot;IDs&quot;: &quot;TCGA-HZ-8519-01A-11R-2404-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.850957870483398, &quot;y&quot;: 4.318507194519043, &quot;IDs&quot;: &quot;TCGA-HZ-8636-01A-21R-2404-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.450690269470215, &quot;y&quot;: 2.4917755126953125, &quot;IDs&quot;: &quot;TCGA-HZ-8637-01A-11R-2404-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.563470840454102, &quot;y&quot;: 4.351332187652588, &quot;IDs&quot;: &quot;TCGA-HZ-8638-01A-11R-2404-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.878447532653809, &quot;y&quot;: 3.500836133956909, &quot;IDs&quot;: &quot;TCGA-HZ-A49G-01A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.860111236572266, &quot;y&quot;: 2.6447594165802, &quot;IDs&quot;: &quot;TCGA-HZ-A49H-01A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.647114753723145, &quot;y&quot;: 4.738731861114502, &quot;IDs&quot;: &quot;TCGA-HZ-A49I-01A-12R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.244195938110352, &quot;y&quot;: 3.5941965579986572, &quot;IDs&quot;: &quot;TCGA-HZ-A4BH-01A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.986895561218262, &quot;y&quot;: 4.745372772216797, &quot;IDs&quot;: &quot;TCGA-HZ-A4BK-01A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.728803634643555, &quot;y&quot;: 4.257259845733643, &quot;IDs&quot;: &quot;TCGA-HZ-A77O-01A-11R-A33R-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.580848693847656, &quot;y&quot;: 3.4267396926879883, &quot;IDs&quot;: &quot;TCGA-HZ-A77P-01A-11R-A33R-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.978321075439453, &quot;y&quot;: 3.4197309017181396, &quot;IDs&quot;: &quot;TCGA-HZ-A77Q-01A-11R-A36G-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.795187950134277, &quot;y&quot;: 4.878487586975098, &quot;IDs&quot;: &quot;TCGA-HZ-A8P0-01A-11R-A36G-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.905173301696777, &quot;y&quot;: 6.329969882965088, &quot;IDs&quot;: &quot;TCGA-HZ-A8P1-01A-11R-A37L-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.90860366821289, &quot;y&quot;: 5.071895122528076, &quot;IDs&quot;: &quot;TCGA-HZ-A9TJ-06A-11R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.679502487182617, &quot;y&quot;: 5.809825897216797, &quot;IDs&quot;: &quot;TCGA-HZ-A9TJ-01A-11R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.361605644226074, &quot;y&quot;: 5.203312397003174, &quot;IDs&quot;: &quot;TCGA-IB-7644-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.957025527954102, &quot;y&quot;: 2.5190961360931396, &quot;IDs&quot;: &quot;TCGA-IB-7645-01A-22R-2204-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.936134338378906, &quot;y&quot;: 4.364932060241699, &quot;IDs&quot;: &quot;TCGA-IB-7646-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.528242111206055, &quot;y&quot;: 3.238697052001953, &quot;IDs&quot;: &quot;TCGA-IB-7647-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.455493927001953, &quot;y&quot;: 2.5685501098632812, &quot;IDs&quot;: &quot;TCGA-IB-7649-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.912900924682617, &quot;y&quot;: 3.704470157623291, &quot;IDs&quot;: &quot;TCGA-IB-7651-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.531195640563965, &quot;y&quot;: 3.1095221042633057, &quot;IDs&quot;: &quot;TCGA-IB-7652-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.201290130615234, &quot;y&quot;: 2.888800859451294, &quot;IDs&quot;: &quot;TCGA-IB-7654-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.414968490600586, &quot;y&quot;: 4.291709899902344, &quot;IDs&quot;: &quot;TCGA-IB-7885-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.242010116577148, &quot;y&quot;: 4.6493096351623535, &quot;IDs&quot;: &quot;TCGA-IB-7886-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.63403606414795, &quot;y&quot;: 5.161948204040527, &quot;IDs&quot;: &quot;TCGA-IB-7887-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.876852989196777, &quot;y&quot;: 2.3114659786224365, &quot;IDs&quot;: &quot;TCGA-IB-7888-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.460190773010254, &quot;y&quot;: 3.549975872039795, &quot;IDs&quot;: &quot;TCGA-IB-7889-01A-11R-2156-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.328039169311523, &quot;y&quot;: 3.850468158721924, &quot;IDs&quot;: &quot;TCGA-IB-7890-01A-12R-2204-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.524969100952148, &quot;y&quot;: 2.4820659160614014, &quot;IDs&quot;: &quot;TCGA-IB-7891-01A-11R-2204-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.984841346740723, &quot;y&quot;: 4.0297980308532715, &quot;IDs&quot;: &quot;TCGA-IB-7893-01A-11R-2204-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.348492622375488, &quot;y&quot;: 1.7798752784729004, &quot;IDs&quot;: &quot;TCGA-IB-7897-01A-21R-2204-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 16.382898330688477, &quot;y&quot;: 2.4784460067749023, &quot;IDs&quot;: &quot;TCGA-IB-8126-01A-11R-2404-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.210186004638672, &quot;y&quot;: 4.5020036697387695, &quot;IDs&quot;: &quot;TCGA-IB-8127-01A-11R-2404-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.352008819580078, &quot;y&quot;: 3.4212584495544434, &quot;IDs&quot;: &quot;TCGA-IB-A5SO-01A-11R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.731987953186035, &quot;y&quot;: 5.742898941040039, &quot;IDs&quot;: &quot;TCGA-IB-A5SP-01A-11R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.317102432250977, &quot;y&quot;: 3.084176778793335, &quot;IDs&quot;: &quot;TCGA-IB-A5SQ-01A-11R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.516927719116211, &quot;y&quot;: 4.235467910766602, &quot;IDs&quot;: &quot;TCGA-IB-A5SS-01A-11R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.852405548095703, &quot;y&quot;: 3.098726511001587, &quot;IDs&quot;: &quot;TCGA-IB-A5ST-01A-11R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.162646293640137, &quot;y&quot;: 4.315657615661621, &quot;IDs&quot;: &quot;TCGA-IB-A6UF-01A-23R-A33R-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.889984130859375, &quot;y&quot;: 3.678985118865967, &quot;IDs&quot;: &quot;TCGA-IB-A6UG-01A-32R-A33R-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.83712100982666, &quot;y&quot;: 4.518228054046631, &quot;IDs&quot;: &quot;TCGA-IB-A7LX-01A-12R-A36G-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.310365676879883, &quot;y&quot;: 4.726083755493164, &quot;IDs&quot;: &quot;TCGA-IB-A7M4-01A-11R-A36G-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 16.55718994140625, &quot;y&quot;: 3.0179076194763184, &quot;IDs&quot;: &quot;TCGA-IB-AAUM-01A-11R-A37L-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.094865798950195, &quot;y&quot;: 4.299317836761475, &quot;IDs&quot;: &quot;TCGA-IB-AAUN-01A-12R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.456058502197266, &quot;y&quot;: 4.78950309753418, &quot;IDs&quot;: &quot;TCGA-IB-AAUO-01A-12R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.36591911315918, &quot;y&quot;: 2.883631706237793, &quot;IDs&quot;: &quot;TCGA-IB-AAUP-01A-11R-A37L-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.401997566223145, &quot;y&quot;: 4.550394058227539, &quot;IDs&quot;: &quot;TCGA-IB-AAUQ-01A-22R-A41I-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.399561882019043, &quot;y&quot;: 2.685858964920044, &quot;IDs&quot;: &quot;TCGA-IB-AAUR-01A-21R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.591142654418945, &quot;y&quot;: 3.156101703643799, &quot;IDs&quot;: &quot;TCGA-IB-AAUS-01A-12R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.834846496582031, &quot;y&quot;: 2.6049904823303223, &quot;IDs&quot;: &quot;TCGA-IB-AAUT-01A-11R-A37L-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.142483711242676, &quot;y&quot;: 5.283644676208496, &quot;IDs&quot;: &quot;TCGA-IB-AAUU-01A-11R-A37L-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.780556678771973, &quot;y&quot;: 2.115471839904785, &quot;IDs&quot;: &quot;TCGA-IB-AAUV-01A-11R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.93841552734375, &quot;y&quot;: 2.8354737758636475, &quot;IDs&quot;: &quot;TCGA-IB-AAUW-01A-12R-A38C-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.032156944274902, &quot;y&quot;: 4.596695899963379, &quot;IDs&quot;: &quot;TCGA-L1-A7W4-01A-12R-A36G-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.906187057495117, &quot;y&quot;: 5.9334940910339355, &quot;IDs&quot;: &quot;TCGA-LB-A7SX-01A-11R-A33R-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 16.25497817993164, &quot;y&quot;: 4.071625709533691, &quot;IDs&quot;: &quot;TCGA-LB-A8F3-01A-11R-A36G-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 16.238494873046875, &quot;y&quot;: 3.2760815620422363, &quot;IDs&quot;: &quot;TCGA-LB-A9Q5-01A-11R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.881150245666504, &quot;y&quot;: 5.101321697235107, &quot;IDs&quot;: &quot;TCGA-M8-A5N4-01A-11R-A26U-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.656108856201172, &quot;y&quot;: 6.006180286407471, &quot;IDs&quot;: &quot;TCGA-OE-A75W-01A-12R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.306145668029785, &quot;y&quot;: 5.120657920837402, &quot;IDs&quot;: &quot;TCGA-PZ-A5RE-01A-11R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.89379596710205, &quot;y&quot;: 2.788404941558838, &quot;IDs&quot;: &quot;TCGA-Q3-A5QY-01A-12R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.467034339904785, &quot;y&quot;: 5.582131385803223, &quot;IDs&quot;: &quot;TCGA-Q3-AA2A-01A-11R-A37L-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.70438003540039, &quot;y&quot;: 5.078226089477539, &quot;IDs&quot;: &quot;TCGA-RB-A7B8-01A-12R-A33R-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.147597312927246, &quot;y&quot;: 4.155008792877197, &quot;IDs&quot;: &quot;TCGA-RB-AA9M-01A-11R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.333207130432129, &quot;y&quot;: 3.1238796710968018, &quot;IDs&quot;: &quot;TCGA-RL-AAAS-01A-32R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.974776268005371, &quot;y&quot;: 6.158778190612793, &quot;IDs&quot;: &quot;TCGA-S4-A8RM-01A-11R-A37L-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.172245025634766, &quot;y&quot;: 4.771350383758545, &quot;IDs&quot;: &quot;TCGA-S4-A8RO-01A-12R-A37L-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.4537353515625, &quot;y&quot;: 4.744400978088379, &quot;IDs&quot;: &quot;TCGA-S4-A8RP-01A-11R-A36G-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.967488288879395, &quot;y&quot;: 3.5758681297302246, &quot;IDs&quot;: &quot;TCGA-US-A774-01A-21R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 11.426314353942871, &quot;y&quot;: 10.265914916992188, &quot;IDs&quot;: &quot;TCGA-US-A776-01A-13R-A33R-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.396522521972656, &quot;y&quot;: 6.077517509460449, &quot;IDs&quot;: &quot;TCGA-US-A779-01A-11R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.043901443481445, &quot;y&quot;: 5.330288887023926, &quot;IDs&quot;: &quot;TCGA-US-A77E-01A-11R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.945219993591309, &quot;y&quot;: 5.6813645362854, &quot;IDs&quot;: &quot;TCGA-US-A77G-01A-11R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.423691749572754, &quot;y&quot;: 2.852802276611328, &quot;IDs&quot;: &quot;TCGA-US-A77J-01A-11R-A32O-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.705958366394043, &quot;y&quot;: 2.5459697246551514, &quot;IDs&quot;: &quot;TCGA-XD-AAUG-01A-61R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.147073745727539, &quot;y&quot;: 2.168525457382202, &quot;IDs&quot;: &quot;TCGA-XD-AAUH-01A-42R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.128829956054688, &quot;y&quot;: 4.042317867279053, &quot;IDs&quot;: &quot;TCGA-XD-AAUI-01A-42R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.007457733154297, &quot;y&quot;: 5.092822074890137, &quot;IDs&quot;: &quot;TCGA-XD-AAUL-01A-21R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 15.649637222290039, &quot;y&quot;: 3.3546786308288574, &quot;IDs&quot;: &quot;TCGA-XN-A8T3-01A-11R-A36G-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.814767837524414, &quot;y&quot;: 2.5209550857543945, &quot;IDs&quot;: &quot;TCGA-XN-A8T5-01A-12R-A36G-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 13.840032577514648, &quot;y&quot;: 3.359651565551758, &quot;IDs&quot;: &quot;TCGA-YB-A89D-11A-11R-A36G-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.347115516662598, &quot;y&quot;: 4.017188549041748, &quot;IDs&quot;: &quot;TCGA-YB-A89D-01A-12R-A36G-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.828255653381348, &quot;y&quot;: 4.973358154296875, &quot;IDs&quot;: &quot;TCGA-YH-A8SY-01A-11R-A37L-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 14.681715965270996, &quot;y&quot;: 6.494575500488281, &quot;IDs&quot;: &quot;TCGA-YY-A8LH-01A-11R-A36G-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}, {&quot;x&quot;: 12.592493057250977, &quot;y&quot;: 2.53480863571167, &quot;IDs&quot;: &quot;TCGA-Z5-AAPL-01A-12R-A41B-07&quot;, &quot;Subtypes&quot;: &quot;21_PAAD&quot;, &quot;colors&quot;: &quot;#00aaff&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#00aaff&quot;, &quot;name&quot;: &quot;21_PAAD&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 6.017442226409912, &quot;y&quot;: 14.78112506866455, &quot;IDs&quot;: &quot;TCGA-P7-A5NX-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.936309814453125, &quot;y&quot;: 17.614877700805664, &quot;IDs&quot;: &quot;TCGA-P7-A5NY-05A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.84690523147583, &quot;y&quot;: 17.149547576904297, &quot;IDs&quot;: &quot;TCGA-P7-A5NY-01A-12R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 1.5815786123275757, &quot;y&quot;: 16.378414154052734, &quot;IDs&quot;: &quot;TCGA-P8-A5KC-11A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.8703529834747314, &quot;y&quot;: 14.220032691955566, &quot;IDs&quot;: &quot;TCGA-P8-A5KC-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 0.800847053527832, &quot;y&quot;: 16.524263381958008, &quot;IDs&quot;: &quot;TCGA-P8-A5KD-11A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.996134281158447, &quot;y&quot;: 17.365049362182617, &quot;IDs&quot;: &quot;TCGA-P8-A5KD-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.95540714263916, &quot;y&quot;: 12.509765625, &quot;IDs&quot;: &quot;TCGA-P8-A6RX-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.723546028137207, &quot;y&quot;: 14.950214385986328, &quot;IDs&quot;: &quot;TCGA-P8-A6RY-01A-12R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.5495846271514893, &quot;y&quot;: 15.050712585449219, &quot;IDs&quot;: &quot;TCGA-PR-A5PF-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.455300807952881, &quot;y&quot;: 17.43674087524414, &quot;IDs&quot;: &quot;TCGA-PR-A5PG-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.477875232696533, &quot;y&quot;: 14.477975845336914, &quot;IDs&quot;: &quot;TCGA-PR-A5PH-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.99101448059082, &quot;y&quot;: 16.218521118164062, &quot;IDs&quot;: &quot;TCGA-QR-A6GO-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.4670510292053223, &quot;y&quot;: 15.26191520690918, &quot;IDs&quot;: &quot;TCGA-QR-A6GR-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.789359092712402, &quot;y&quot;: 16.954923629760742, &quot;IDs&quot;: &quot;TCGA-QR-A6GS-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.14669942855835, &quot;y&quot;: 13.670393943786621, &quot;IDs&quot;: &quot;TCGA-QR-A6GT-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.251280784606934, &quot;y&quot;: 13.981999397277832, &quot;IDs&quot;: &quot;TCGA-QR-A6GU-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.13983678817749, &quot;y&quot;: 17.547679901123047, &quot;IDs&quot;: &quot;TCGA-QR-A6GW-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.136458873748779, &quot;y&quot;: 14.024261474609375, &quot;IDs&quot;: &quot;TCGA-QR-A6GX-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.785726547241211, &quot;y&quot;: 15.906991004943848, &quot;IDs&quot;: &quot;TCGA-QR-A6GY-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.663488388061523, &quot;y&quot;: 12.436604499816895, &quot;IDs&quot;: &quot;TCGA-QR-A6GZ-05A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.570140361785889, &quot;y&quot;: 13.116690635681152, &quot;IDs&quot;: &quot;TCGA-QR-A6GZ-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.956329822540283, &quot;y&quot;: 12.800480842590332, &quot;IDs&quot;: &quot;TCGA-QR-A6H0-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.698460102081299, &quot;y&quot;: 16.587793350219727, &quot;IDs&quot;: &quot;TCGA-QR-A6H1-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.495290279388428, &quot;y&quot;: 16.359516143798828, &quot;IDs&quot;: &quot;TCGA-QR-A6H2-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.599817276000977, &quot;y&quot;: 12.910013198852539, &quot;IDs&quot;: &quot;TCGA-QR-A6H3-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.9107744693756104, &quot;y&quot;: 17.028186798095703, &quot;IDs&quot;: &quot;TCGA-QR-A6H4-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.9755945205688477, &quot;y&quot;: 13.133185386657715, &quot;IDs&quot;: &quot;TCGA-QR-A6H5-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.592498302459717, &quot;y&quot;: 13.604926109313965, &quot;IDs&quot;: &quot;TCGA-QR-A6H6-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.409340858459473, &quot;y&quot;: 12.647822380065918, &quot;IDs&quot;: &quot;TCGA-QR-A6ZZ-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.9793460369110107, &quot;y&quot;: 16.114362716674805, &quot;IDs&quot;: &quot;TCGA-QR-A700-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.929925918579102, &quot;y&quot;: 15.846060752868652, &quot;IDs&quot;: &quot;TCGA-QR-A702-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.740696430206299, &quot;y&quot;: 13.102943420410156, &quot;IDs&quot;: &quot;TCGA-QR-A703-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.299262523651123, &quot;y&quot;: 13.396708488464355, &quot;IDs&quot;: &quot;TCGA-QR-A705-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.600347518920898, &quot;y&quot;: 13.469954490661621, &quot;IDs&quot;: &quot;TCGA-QR-A706-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.125881671905518, &quot;y&quot;: 16.053442001342773, &quot;IDs&quot;: &quot;TCGA-QR-A707-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.290833950042725, &quot;y&quot;: 15.674809455871582, &quot;IDs&quot;: &quot;TCGA-QR-A708-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.207546710968018, &quot;y&quot;: 14.377366065979004, &quot;IDs&quot;: &quot;TCGA-QR-A70A-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.817535400390625, &quot;y&quot;: 14.49630069732666, &quot;IDs&quot;: &quot;TCGA-QR-A70C-01A-21R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.810438632965088, &quot;y&quot;: 13.532038688659668, &quot;IDs&quot;: &quot;TCGA-QR-A70D-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.398448467254639, &quot;y&quot;: 14.693710327148438, &quot;IDs&quot;: &quot;TCGA-QR-A70E-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 2.9664719104766846, &quot;y&quot;: 16.319868087768555, &quot;IDs&quot;: &quot;TCGA-QR-A70G-01B-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.4150450229644775, &quot;y&quot;: 14.71957778930664, &quot;IDs&quot;: &quot;TCGA-QR-A70H-01A-12R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.647910118103027, &quot;y&quot;: 13.621399879455566, &quot;IDs&quot;: &quot;TCGA-QR-A70I-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.7963478565216064, &quot;y&quot;: 12.867703437805176, &quot;IDs&quot;: &quot;TCGA-QR-A70J-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.414775371551514, &quot;y&quot;: 16.720067977905273, &quot;IDs&quot;: &quot;TCGA-QR-A70K-01A-12R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.619131088256836, &quot;y&quot;: 15.903685569763184, &quot;IDs&quot;: &quot;TCGA-QR-A70M-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.271631717681885, &quot;y&quot;: 12.529294967651367, &quot;IDs&quot;: &quot;TCGA-QR-A70N-01A-12R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.710058689117432, &quot;y&quot;: 15.913915634155273, &quot;IDs&quot;: &quot;TCGA-QR-A70O-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.732202053070068, &quot;y&quot;: 13.607050895690918, &quot;IDs&quot;: &quot;TCGA-QR-A70P-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.001749038696289, &quot;y&quot;: 13.16795825958252, &quot;IDs&quot;: &quot;TCGA-QR-A70Q-01A-13R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.9937515258789062, &quot;y&quot;: 15.411423683166504, &quot;IDs&quot;: &quot;TCGA-QR-A70R-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.060128688812256, &quot;y&quot;: 14.895408630371094, &quot;IDs&quot;: &quot;TCGA-QR-A70T-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.395798683166504, &quot;y&quot;: 16.01226234436035, &quot;IDs&quot;: &quot;TCGA-QR-A70U-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.3152995109558105, &quot;y&quot;: 15.729668617248535, &quot;IDs&quot;: &quot;TCGA-QR-A70V-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.37415885925293, &quot;y&quot;: 15.843979835510254, &quot;IDs&quot;: &quot;TCGA-QR-A70W-01A-12R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.2287511825561523, &quot;y&quot;: 16.088117599487305, &quot;IDs&quot;: &quot;TCGA-QR-A70X-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.968201160430908, &quot;y&quot;: 14.54514217376709, &quot;IDs&quot;: &quot;TCGA-QR-A7IN-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.728844165802002, &quot;y&quot;: 13.655271530151367, &quot;IDs&quot;: &quot;TCGA-QR-A7IP-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.93503999710083, &quot;y&quot;: 13.767510414123535, &quot;IDs&quot;: &quot;TCGA-QT-A5XJ-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.9777398109436035, &quot;y&quot;: 17.413585662841797, &quot;IDs&quot;: &quot;TCGA-QT-A5XK-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.307348251342773, &quot;y&quot;: 13.429831504821777, &quot;IDs&quot;: &quot;TCGA-QT-A5XL-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.215911865234375, &quot;y&quot;: 16.719606399536133, &quot;IDs&quot;: &quot;TCGA-QT-A5XM-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.77274227142334, &quot;y&quot;: 16.744892120361328, &quot;IDs&quot;: &quot;TCGA-QT-A5XN-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.374943733215332, &quot;y&quot;: 16.56041717529297, &quot;IDs&quot;: &quot;TCGA-QT-A5XO-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.286220073699951, &quot;y&quot;: 17.296445846557617, &quot;IDs&quot;: &quot;TCGA-QT-A5XP-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.7320475578308105, &quot;y&quot;: 15.574143409729004, &quot;IDs&quot;: &quot;TCGA-QT-A69Q-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.348127841949463, &quot;y&quot;: 14.821325302124023, &quot;IDs&quot;: &quot;TCGA-QT-A7U0-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.966152191162109, &quot;y&quot;: 12.750760078430176, &quot;IDs&quot;: &quot;TCGA-RM-A68T-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.879827976226807, &quot;y&quot;: 12.759917259216309, &quot;IDs&quot;: &quot;TCGA-RM-A68W-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.148353099822998, &quot;y&quot;: 15.183931350708008, &quot;IDs&quot;: &quot;TCGA-RT-A6Y9-01A-12R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.636264324188232, &quot;y&quot;: 16.070552825927734, &quot;IDs&quot;: &quot;TCGA-RT-A6YA-01A-12R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.583723068237305, &quot;y&quot;: 17.0778751373291, &quot;IDs&quot;: &quot;TCGA-RT-A6YC-01A-12R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.689410209655762, &quot;y&quot;: 15.65158462524414, &quot;IDs&quot;: &quot;TCGA-RW-A67V-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.9578511714935303, &quot;y&quot;: 15.877801895141602, &quot;IDs&quot;: &quot;TCGA-RW-A67W-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.91922926902771, &quot;y&quot;: 13.163880348205566, &quot;IDs&quot;: &quot;TCGA-RW-A67X-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.619308948516846, &quot;y&quot;: 16.45458221435547, &quot;IDs&quot;: &quot;TCGA-RW-A67Y-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.17622709274292, &quot;y&quot;: 13.345179557800293, &quot;IDs&quot;: &quot;TCGA-RW-A680-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.376713275909424, &quot;y&quot;: 15.689861297607422, &quot;IDs&quot;: &quot;TCGA-RW-A681-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.236666679382324, &quot;y&quot;: 16.304101943969727, &quot;IDs&quot;: &quot;TCGA-RW-A684-01A-12R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.1949751377105713, &quot;y&quot;: 16.45343017578125, &quot;IDs&quot;: &quot;TCGA-RW-A685-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.8797199726104736, &quot;y&quot;: 14.713444709777832, &quot;IDs&quot;: &quot;TCGA-RW-A686-06A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.160605430603027, &quot;y&quot;: 14.923704147338867, &quot;IDs&quot;: &quot;TCGA-RW-A686-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.401069641113281, &quot;y&quot;: 16.31955909729004, &quot;IDs&quot;: &quot;TCGA-RW-A688-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.425961494445801, &quot;y&quot;: 16.68829917907715, &quot;IDs&quot;: &quot;TCGA-RW-A689-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.605387210845947, &quot;y&quot;: 17.257648468017578, &quot;IDs&quot;: &quot;TCGA-RW-A68A-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.741044044494629, &quot;y&quot;: 17.025081634521484, &quot;IDs&quot;: &quot;TCGA-RW-A68B-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.218722343444824, &quot;y&quot;: 13.089400291442871, &quot;IDs&quot;: &quot;TCGA-RW-A68C-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.491633892059326, &quot;y&quot;: 14.778362274169922, &quot;IDs&quot;: &quot;TCGA-RW-A68D-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.704128742218018, &quot;y&quot;: 14.111963272094727, &quot;IDs&quot;: &quot;TCGA-RW-A68F-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 2.8654515743255615, &quot;y&quot;: 15.532221794128418, &quot;IDs&quot;: &quot;TCGA-RW-A68G-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.402502059936523, &quot;y&quot;: 13.407452583312988, &quot;IDs&quot;: &quot;TCGA-RW-A7CZ-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.944000482559204, &quot;y&quot;: 17.035558700561523, &quot;IDs&quot;: &quot;TCGA-RW-A7D0-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.080689430236816, &quot;y&quot;: 14.864676475524902, &quot;IDs&quot;: &quot;TCGA-RW-A8AZ-01A-11R-A35K-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.16000509262085, &quot;y&quot;: 16.576831817626953, &quot;IDs&quot;: &quot;TCGA-RX-A8JQ-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.060388565063477, &quot;y&quot;: 17.131032943725586, &quot;IDs&quot;: &quot;TCGA-S7-A7WL-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.361483573913574, &quot;y&quot;: 17.185251235961914, &quot;IDs&quot;: &quot;TCGA-S7-A7WM-01A-12R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.802062034606934, &quot;y&quot;: 16.734336853027344, &quot;IDs&quot;: &quot;TCGA-S7-A7WN-01A-12R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 1.948643684387207, &quot;y&quot;: 16.293668746948242, &quot;IDs&quot;: &quot;TCGA-S7-A7WO-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.468522548675537, &quot;y&quot;: 13.317185401916504, &quot;IDs&quot;: &quot;TCGA-S7-A7WP-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.070723533630371, &quot;y&quot;: 12.555267333984375, &quot;IDs&quot;: &quot;TCGA-S7-A7WQ-01A-12R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.20900297164917, &quot;y&quot;: 17.738630294799805, &quot;IDs&quot;: &quot;TCGA-S7-A7WR-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.85361909866333, &quot;y&quot;: 16.44863510131836, &quot;IDs&quot;: &quot;TCGA-S7-A7WT-01A-12R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.617372989654541, &quot;y&quot;: 14.72109317779541, &quot;IDs&quot;: &quot;TCGA-S7-A7WU-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.067812919616699, &quot;y&quot;: 14.665635108947754, &quot;IDs&quot;: &quot;TCGA-S7-A7WV-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.3070292472839355, &quot;y&quot;: 15.248661041259766, &quot;IDs&quot;: &quot;TCGA-S7-A7WW-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.9446752071380615, &quot;y&quot;: 17.023378372192383, &quot;IDs&quot;: &quot;TCGA-S7-A7WX-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.765897750854492, &quot;y&quot;: 13.991045951843262, &quot;IDs&quot;: &quot;TCGA-S7-A7X0-01A-12R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.121692657470703, &quot;y&quot;: 12.590700149536133, &quot;IDs&quot;: &quot;TCGA-S7-A7X1-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.945281982421875, &quot;y&quot;: 17.094032287597656, &quot;IDs&quot;: &quot;TCGA-S7-A7X2-01A-12R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.751591205596924, &quot;y&quot;: 14.86231517791748, &quot;IDs&quot;: &quot;TCGA-SA-A6C2-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.072153568267822, &quot;y&quot;: 16.549785614013672, &quot;IDs&quot;: &quot;TCGA-SP-A6QC-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.921695232391357, &quot;y&quot;: 13.688928604125977, &quot;IDs&quot;: &quot;TCGA-SP-A6QD-01A-12R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.097507953643799, &quot;y&quot;: 16.349807739257812, &quot;IDs&quot;: &quot;TCGA-SP-A6QF-01A-12R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.311659336090088, &quot;y&quot;: 14.099492073059082, &quot;IDs&quot;: &quot;TCGA-SP-A6QG-01A-12R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.488537311553955, &quot;y&quot;: 13.512200355529785, &quot;IDs&quot;: &quot;TCGA-SP-A6QH-01A-21R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.090592384338379, &quot;y&quot;: 16.183624267578125, &quot;IDs&quot;: &quot;TCGA-SP-A6QI-01A-12R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.381287574768066, &quot;y&quot;: 16.306392669677734, &quot;IDs&quot;: &quot;TCGA-SP-A6QJ-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 2.942423105239868, &quot;y&quot;: 15.727810859680176, &quot;IDs&quot;: &quot;TCGA-SP-A6QK-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 1.0531163215637207, &quot;y&quot;: 16.675695419311523, &quot;IDs&quot;: &quot;TCGA-SQ-A6I4-11A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.464176177978516, &quot;y&quot;: 17.51786231994629, &quot;IDs&quot;: &quot;TCGA-SQ-A6I4-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.137551784515381, &quot;y&quot;: 16.81344223022461, &quot;IDs&quot;: &quot;TCGA-SQ-A6I6-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.289071083068848, &quot;y&quot;: 16.982479095458984, &quot;IDs&quot;: &quot;TCGA-SR-A6MP-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.596162796020508, &quot;y&quot;: 16.220230102539062, &quot;IDs&quot;: &quot;TCGA-SR-A6MQ-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.281042098999023, &quot;y&quot;: 14.162203788757324, &quot;IDs&quot;: &quot;TCGA-SR-A6MR-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.624372482299805, &quot;y&quot;: 15.634780883789062, &quot;IDs&quot;: &quot;TCGA-SR-A6MS-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.159164905548096, &quot;y&quot;: 15.217881202697754, &quot;IDs&quot;: &quot;TCGA-SR-A6MT-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.327449321746826, &quot;y&quot;: 15.78651237487793, &quot;IDs&quot;: &quot;TCGA-SR-A6MU-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.632762908935547, &quot;y&quot;: 15.142642974853516, &quot;IDs&quot;: &quot;TCGA-SR-A6MV-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.3978095054626465, &quot;y&quot;: 13.372053146362305, &quot;IDs&quot;: &quot;TCGA-SR-A6MX-05A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.453286170959473, &quot;y&quot;: 13.195241928100586, &quot;IDs&quot;: &quot;TCGA-SR-A6MX-06A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.1440510749816895, &quot;y&quot;: 13.540206909179688, &quot;IDs&quot;: &quot;TCGA-SR-A6MX-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.423099040985107, &quot;y&quot;: 17.36429786682129, &quot;IDs&quot;: &quot;TCGA-SR-A6MY-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.243516206741333, &quot;y&quot;: 16.322284698486328, &quot;IDs&quot;: &quot;TCGA-SR-A6MZ-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 2.4478156566619873, &quot;y&quot;: 15.835518836975098, &quot;IDs&quot;: &quot;TCGA-SR-A6N0-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.723899841308594, &quot;y&quot;: 16.280120849609375, &quot;IDs&quot;: &quot;TCGA-TT-A6YJ-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.561273097991943, &quot;y&quot;: 14.169303894042969, &quot;IDs&quot;: &quot;TCGA-TT-A6YK-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.621064186096191, &quot;y&quot;: 16.938745498657227, &quot;IDs&quot;: &quot;TCGA-TT-A6YN-01A-12R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 0.9312294125556946, &quot;y&quot;: 16.793073654174805, &quot;IDs&quot;: &quot;TCGA-TT-A6YO-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.325170993804932, &quot;y&quot;: 12.682231903076172, &quot;IDs&quot;: &quot;TCGA-TT-A6YP-01A-21R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.124568939208984, &quot;y&quot;: 17.183223724365234, &quot;IDs&quot;: &quot;TCGA-W2-A7H5-01B-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.710038185119629, &quot;y&quot;: 13.25196647644043, &quot;IDs&quot;: &quot;TCGA-W2-A7H7-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.750036716461182, &quot;y&quot;: 17.50335121154785, &quot;IDs&quot;: &quot;TCGA-W2-A7HA-01B-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.610419750213623, &quot;y&quot;: 16.616849899291992, &quot;IDs&quot;: &quot;TCGA-W2-A7HB-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.121942043304443, &quot;y&quot;: 17.393348693847656, &quot;IDs&quot;: &quot;TCGA-W2-A7HC-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.713646411895752, &quot;y&quot;: 16.98679542541504, &quot;IDs&quot;: &quot;TCGA-W2-A7HD-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.1079630851745605, &quot;y&quot;: 16.419828414916992, &quot;IDs&quot;: &quot;TCGA-W2-A7HE-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.765738010406494, &quot;y&quot;: 16.29473304748535, &quot;IDs&quot;: &quot;TCGA-W2-A7HF-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.844600677490234, &quot;y&quot;: 15.282180786132812, &quot;IDs&quot;: &quot;TCGA-W2-A7HH-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.992427349090576, &quot;y&quot;: 13.341291427612305, &quot;IDs&quot;: &quot;TCGA-W2-A7UY-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.715670347213745, &quot;y&quot;: 15.331048965454102, &quot;IDs&quot;: &quot;TCGA-WB-A80K-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.131896018981934, &quot;y&quot;: 15.367558479309082, &quot;IDs&quot;: &quot;TCGA-WB-A80L-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.065881252288818, &quot;y&quot;: 15.982695579528809, &quot;IDs&quot;: &quot;TCGA-WB-A80M-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.588781356811523, &quot;y&quot;: 16.640472412109375, &quot;IDs&quot;: &quot;TCGA-WB-A80N-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.2311224937438965, &quot;y&quot;: 17.5096435546875, &quot;IDs&quot;: &quot;TCGA-WB-A80O-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.231665134429932, &quot;y&quot;: 13.754467010498047, &quot;IDs&quot;: &quot;TCGA-WB-A80P-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.9396164417266846, &quot;y&quot;: 14.760961532592773, &quot;IDs&quot;: &quot;TCGA-WB-A80Q-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.992921352386475, &quot;y&quot;: 16.17495346069336, &quot;IDs&quot;: &quot;TCGA-WB-A80V-01A-12R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.18828010559082, &quot;y&quot;: 15.774609565734863, &quot;IDs&quot;: &quot;TCGA-WB-A80Y-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.5819220542907715, &quot;y&quot;: 13.913822174072266, &quot;IDs&quot;: &quot;TCGA-WB-A814-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.459068298339844, &quot;y&quot;: 14.74613094329834, &quot;IDs&quot;: &quot;TCGA-WB-A815-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 2.5766615867614746, &quot;y&quot;: 16.009979248046875, &quot;IDs&quot;: &quot;TCGA-WB-A816-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.1684694290161133, &quot;y&quot;: 15.89564323425293, &quot;IDs&quot;: &quot;TCGA-WB-A817-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.551473140716553, &quot;y&quot;: 17.05910301208496, &quot;IDs&quot;: &quot;TCGA-WB-A818-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.535482883453369, &quot;y&quot;: 17.59041404724121, &quot;IDs&quot;: &quot;TCGA-WB-A819-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.533615589141846, &quot;y&quot;: 15.178234100341797, &quot;IDs&quot;: &quot;TCGA-WB-A81A-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.960587978363037, &quot;y&quot;: 17.37046241760254, &quot;IDs&quot;: &quot;TCGA-WB-A81D-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.7823052406311035, &quot;y&quot;: 14.063945770263672, &quot;IDs&quot;: &quot;TCGA-WB-A81E-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.8162970542907715, &quot;y&quot;: 16.78653907775879, &quot;IDs&quot;: &quot;TCGA-WB-A81F-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 6.243077754974365, &quot;y&quot;: 13.300033569335938, &quot;IDs&quot;: &quot;TCGA-WB-A81G-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.1544368267059326, &quot;y&quot;: 15.860556602478027, &quot;IDs&quot;: &quot;TCGA-WB-A81H-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.325301170349121, &quot;y&quot;: 15.485244750976562, &quot;IDs&quot;: &quot;TCGA-WB-A81I-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.788545608520508, &quot;y&quot;: 16.48220443725586, &quot;IDs&quot;: &quot;TCGA-WB-A81J-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.5193278789520264, &quot;y&quot;: 15.693948745727539, &quot;IDs&quot;: &quot;TCGA-WB-A81K-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.553719997406006, &quot;y&quot;: 16.35004234313965, &quot;IDs&quot;: &quot;TCGA-WB-A81M-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.515778541564941, &quot;y&quot;: 16.84770965576172, &quot;IDs&quot;: &quot;TCGA-WB-A81N-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.840832710266113, &quot;y&quot;: 15.548811912536621, &quot;IDs&quot;: &quot;TCGA-WB-A81P-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.2487335205078125, &quot;y&quot;: 17.02621841430664, &quot;IDs&quot;: &quot;TCGA-WB-A81Q-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.562780857086182, &quot;y&quot;: 17.191143035888672, &quot;IDs&quot;: &quot;TCGA-WB-A81R-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.697977066040039, &quot;y&quot;: 16.8515625, &quot;IDs&quot;: &quot;TCGA-WB-A81S-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 3.8646903038024902, &quot;y&quot;: 16.76704978942871, &quot;IDs&quot;: &quot;TCGA-WB-A81T-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.22114896774292, &quot;y&quot;: 15.808064460754395, &quot;IDs&quot;: &quot;TCGA-WB-A81V-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.2454633712768555, &quot;y&quot;: 16.835996627807617, &quot;IDs&quot;: &quot;TCGA-WB-A81W-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.598385810852051, &quot;y&quot;: 17.46525001525879, &quot;IDs&quot;: &quot;TCGA-WB-A820-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.120192050933838, &quot;y&quot;: 14.520206451416016, &quot;IDs&quot;: &quot;TCGA-WB-A821-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 5.391190528869629, &quot;y&quot;: 13.8214750289917, &quot;IDs&quot;: &quot;TCGA-WB-A822-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}, {&quot;x&quot;: 4.190382480621338, &quot;y&quot;: 14.294711112976074, &quot;IDs&quot;: &quot;TCGA-XG-A823-01A-11R-A35L-07&quot;, &quot;Subtypes&quot;: &quot;22_PCPG&quot;, &quot;colors&quot;: &quot;#004bff&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#004bff&quot;, &quot;name&quot;: &quot;22_PCPG&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 12.03967571258545, &quot;y&quot;: 7.2808990478515625, &quot;IDs&quot;: &quot;TCGA-AF-2687-01A-02R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 9.649713516235352, &quot;y&quot;: 10.167189598083496, &quot;IDs&quot;: &quot;TCGA-AF-2689-11A-01R-A32Z-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.415764808654785, &quot;y&quot;: 7.302804946899414, &quot;IDs&quot;: &quot;TCGA-AF-2690-01A-02R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 9.66698932647705, &quot;y&quot;: 10.069838523864746, &quot;IDs&quot;: &quot;TCGA-AF-2691-11A-01R-A32Z-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 9.276254653930664, &quot;y&quot;: 10.393906593322754, &quot;IDs&quot;: &quot;TCGA-AF-2692-11A-01R-A32Z-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.482080459594727, &quot;y&quot;: 9.413339614868164, &quot;IDs&quot;: &quot;TCGA-AF-2693-01A-02R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 10.233420372009277, &quot;y&quot;: 9.874201774597168, &quot;IDs&quot;: &quot;TCGA-AF-3400-11A-01R-A32Z-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.349528312683105, &quot;y&quot;: 8.860692024230957, &quot;IDs&quot;: &quot;TCGA-AF-3911-01A-01R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.218997955322266, &quot;y&quot;: 8.702329635620117, &quot;IDs&quot;: &quot;TCGA-AF-4110-01A-02R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 10.190934181213379, &quot;y&quot;: 9.836353302001953, &quot;IDs&quot;: &quot;TCGA-AF-5654-11A-11R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.248564720153809, &quot;y&quot;: 9.836701393127441, &quot;IDs&quot;: &quot;TCGA-AF-5654-01A-01R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.206849098205566, &quot;y&quot;: 9.948810577392578, &quot;IDs&quot;: &quot;TCGA-AF-6136-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.842202186584473, &quot;y&quot;: 8.69211483001709, &quot;IDs&quot;: &quot;TCGA-AF-6655-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.564901351928711, &quot;y&quot;: 10.298566818237305, &quot;IDs&quot;: &quot;TCGA-AF-6672-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.286105155944824, &quot;y&quot;: 8.576922416687012, &quot;IDs&quot;: &quot;TCGA-AF-A56K-01A-32R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.192880630493164, &quot;y&quot;: 9.234112739562988, &quot;IDs&quot;: &quot;TCGA-AF-A56L-01A-31R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.290173530578613, &quot;y&quot;: 8.909350395202637, &quot;IDs&quot;: &quot;TCGA-AF-A56N-01A-12R-A39D-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.61706829071045, &quot;y&quot;: 10.300134658813477, &quot;IDs&quot;: &quot;TCGA-AG-3591-01A-01R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.103724479675293, &quot;y&quot;: 9.360027313232422, &quot;IDs&quot;: &quot;TCGA-AG-3592-01A-02R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 9.81763744354248, &quot;y&quot;: 9.822772026062012, &quot;IDs&quot;: &quot;TCGA-AG-3725-11A-01R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.771594047546387, &quot;y&quot;: 10.146096229553223, &quot;IDs&quot;: &quot;TCGA-AG-3725-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 9.586954116821289, &quot;y&quot;: 10.14523696899414, &quot;IDs&quot;: &quot;TCGA-AG-3731-11A-01R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.423151016235352, &quot;y&quot;: 8.000030517578125, &quot;IDs&quot;: &quot;TCGA-AG-3731-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 9.207159042358398, &quot;y&quot;: 9.91928768157959, &quot;IDs&quot;: &quot;TCGA-AG-3732-11A-01R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 10.946634292602539, &quot;y&quot;: 9.850859642028809, &quot;IDs&quot;: &quot;TCGA-AG-3732-01A-11R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 9.397185325622559, &quot;y&quot;: 10.159892082214355, &quot;IDs&quot;: &quot;TCGA-AG-3742-11A-01R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.18379020690918, &quot;y&quot;: 8.740045547485352, &quot;IDs&quot;: &quot;TCGA-AG-3742-01A-11R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.09766960144043, &quot;y&quot;: 8.985428810119629, &quot;IDs&quot;: &quot;TCGA-AG-3902-01A-01R-A32Z-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.456888198852539, &quot;y&quot;: 8.341691970825195, &quot;IDs&quot;: &quot;TCGA-AG-4021-01A-01R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.88850212097168, &quot;y&quot;: 8.511202812194824, &quot;IDs&quot;: &quot;TCGA-AG-4022-01A-01R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.114022254943848, &quot;y&quot;: 10.079888343811035, &quot;IDs&quot;: &quot;TCGA-AH-6544-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 10.530631065368652, &quot;y&quot;: 9.319829940795898, &quot;IDs&quot;: &quot;TCGA-AH-6547-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.89153003692627, &quot;y&quot;: 8.688720703125, &quot;IDs&quot;: &quot;TCGA-AH-6549-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 9.527958869934082, &quot;y&quot;: 10.101954460144043, &quot;IDs&quot;: &quot;TCGA-AH-6643-11A-01R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.656712532043457, &quot;y&quot;: 8.092364311218262, &quot;IDs&quot;: &quot;TCGA-AH-6643-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.353400230407715, &quot;y&quot;: 8.252252578735352, &quot;IDs&quot;: &quot;TCGA-AH-6644-01A-21R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.73183822631836, &quot;y&quot;: 9.696585655212402, &quot;IDs&quot;: &quot;TCGA-AH-6897-01A-11R-1928-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.507546424865723, &quot;y&quot;: 10.313637733459473, &quot;IDs&quot;: &quot;TCGA-AH-6903-01A-11R-1928-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.391186714172363, &quot;y&quot;: 8.806929588317871, &quot;IDs&quot;: &quot;TCGA-BM-6198-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.31602954864502, &quot;y&quot;: 8.480673789978027, &quot;IDs&quot;: &quot;TCGA-CI-6619-01B-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.866137504577637, &quot;y&quot;: 9.319696426391602, &quot;IDs&quot;: &quot;TCGA-CI-6620-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.3531494140625, &quot;y&quot;: 8.738641738891602, &quot;IDs&quot;: &quot;TCGA-CI-6621-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.142751693725586, &quot;y&quot;: 9.951075553894043, &quot;IDs&quot;: &quot;TCGA-CI-6622-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.381512641906738, &quot;y&quot;: 9.508638381958008, &quot;IDs&quot;: &quot;TCGA-CI-6623-01B-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.013650894165039, &quot;y&quot;: 9.120918273925781, &quot;IDs&quot;: &quot;TCGA-CI-6624-01C-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.377052307128906, &quot;y&quot;: 9.49714469909668, &quot;IDs&quot;: &quot;TCGA-CL-4957-01A-01R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.893360137939453, &quot;y&quot;: 8.763644218444824, &quot;IDs&quot;: &quot;TCGA-CL-5917-01A-11R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.099047660827637, &quot;y&quot;: 9.469520568847656, &quot;IDs&quot;: &quot;TCGA-CL-5918-01A-11R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.20376968383789, &quot;y&quot;: 8.974576950073242, &quot;IDs&quot;: &quot;TCGA-DC-4745-01A-01R-A32Z-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.687171936035156, &quot;y&quot;: 9.839820861816406, &quot;IDs&quot;: &quot;TCGA-DC-4749-01A-01R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.733901977539062, &quot;y&quot;: 9.96400260925293, &quot;IDs&quot;: &quot;TCGA-DC-5337-01A-01R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.72037124633789, &quot;y&quot;: 9.24946117401123, &quot;IDs&quot;: &quot;TCGA-DC-5869-01A-01R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.4378023147583, &quot;y&quot;: 8.916971206665039, &quot;IDs&quot;: &quot;TCGA-DC-6154-01A-31R-1928-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.771883010864258, &quot;y&quot;: 9.241703987121582, &quot;IDs&quot;: &quot;TCGA-DC-6155-01A-11R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.251338958740234, &quot;y&quot;: 7.541804313659668, &quot;IDs&quot;: &quot;TCGA-DC-6156-01A-11R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.201505661010742, &quot;y&quot;: 9.066755294799805, &quot;IDs&quot;: &quot;TCGA-DC-6157-01A-11R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.85129165649414, &quot;y&quot;: 7.730915546417236, &quot;IDs&quot;: &quot;TCGA-DC-6158-01A-11R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.609908103942871, &quot;y&quot;: 9.753188133239746, &quot;IDs&quot;: &quot;TCGA-DC-6160-01A-11R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.5092134475708, &quot;y&quot;: 8.49055290222168, &quot;IDs&quot;: &quot;TCGA-DC-6681-01A-11R-A32Z-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.868643760681152, &quot;y&quot;: 9.092268943786621, &quot;IDs&quot;: &quot;TCGA-DC-6682-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.03350830078125, &quot;y&quot;: 8.671167373657227, &quot;IDs&quot;: &quot;TCGA-DC-6683-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.43194580078125, &quot;y&quot;: 7.712629318237305, &quot;IDs&quot;: &quot;TCGA-DT-5265-01A-21R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.460990905761719, &quot;y&quot;: 9.401993751525879, &quot;IDs&quot;: &quot;TCGA-DY-A0XA-01A-11R-A155-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.652694702148438, &quot;y&quot;: 9.27956485748291, &quot;IDs&quot;: &quot;TCGA-DY-A1DC-01A-31R-A155-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.524678230285645, &quot;y&quot;: 8.69865894317627, &quot;IDs&quot;: &quot;TCGA-DY-A1DD-01A-21R-A155-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.772713661193848, &quot;y&quot;: 8.773595809936523, &quot;IDs&quot;: &quot;TCGA-DY-A1DE-01A-11R-A155-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.369010925292969, &quot;y&quot;: 8.361979484558105, &quot;IDs&quot;: &quot;TCGA-DY-A1DF-01A-11R-A155-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.907946586608887, &quot;y&quot;: 10.001492500305176, &quot;IDs&quot;: &quot;TCGA-DY-A1DG-01A-11R-A32Y-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.430757522583008, &quot;y&quot;: 9.781852722167969, &quot;IDs&quot;: &quot;TCGA-DY-A1H8-01A-21R-A155-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.824052810668945, &quot;y&quot;: 9.32510757446289, &quot;IDs&quot;: &quot;TCGA-EF-5830-01A-01R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.466365814208984, &quot;y&quot;: 9.044563293457031, &quot;IDs&quot;: &quot;TCGA-EF-5831-01A-01R-1660-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.291224479675293, &quot;y&quot;: 9.51882266998291, &quot;IDs&quot;: &quot;TCGA-EI-6506-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.2366361618042, &quot;y&quot;: 8.182433128356934, &quot;IDs&quot;: &quot;TCGA-EI-6507-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.96979808807373, &quot;y&quot;: 9.651012420654297, &quot;IDs&quot;: &quot;TCGA-EI-6508-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.189885139465332, &quot;y&quot;: 8.748661994934082, &quot;IDs&quot;: &quot;TCGA-EI-6509-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.201638221740723, &quot;y&quot;: 10.426258087158203, &quot;IDs&quot;: &quot;TCGA-EI-6510-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.78283405303955, &quot;y&quot;: 8.654203414916992, &quot;IDs&quot;: &quot;TCGA-EI-6511-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.578645706176758, &quot;y&quot;: 9.232397079467773, &quot;IDs&quot;: &quot;TCGA-EI-6512-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.054110527038574, &quot;y&quot;: 8.935404777526855, &quot;IDs&quot;: &quot;TCGA-EI-6513-01A-21R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.056365966796875, &quot;y&quot;: 8.134903907775879, &quot;IDs&quot;: &quot;TCGA-EI-6514-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.871794700622559, &quot;y&quot;: 9.686495780944824, &quot;IDs&quot;: &quot;TCGA-EI-6881-01A-11R-A32Z-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.41136646270752, &quot;y&quot;: 9.800985336303711, &quot;IDs&quot;: &quot;TCGA-EI-6882-01A-11R-1928-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.901436805725098, &quot;y&quot;: 9.205093383789062, &quot;IDs&quot;: &quot;TCGA-EI-6883-01A-31R-1928-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.409894943237305, &quot;y&quot;: 9.083412170410156, &quot;IDs&quot;: &quot;TCGA-EI-6884-01A-11R-1928-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.218839645385742, &quot;y&quot;: 8.276209831237793, &quot;IDs&quot;: &quot;TCGA-EI-6885-01A-11R-1928-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.735345840454102, &quot;y&quot;: 7.980615139007568, &quot;IDs&quot;: &quot;TCGA-EI-6917-01A-11R-1928-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.92811393737793, &quot;y&quot;: 8.36745548248291, &quot;IDs&quot;: &quot;TCGA-EI-7002-01A-11R-1928-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.629923820495605, &quot;y&quot;: 7.554718971252441, &quot;IDs&quot;: &quot;TCGA-EI-7004-01A-11R-1928-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.245546340942383, &quot;y&quot;: 7.219566345214844, &quot;IDs&quot;: &quot;TCGA-F5-6464-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.333443641662598, &quot;y&quot;: 8.095052719116211, &quot;IDs&quot;: &quot;TCGA-F5-6465-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.575516700744629, &quot;y&quot;: 7.567537307739258, &quot;IDs&quot;: &quot;TCGA-F5-6571-01A-12R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.160141944885254, &quot;y&quot;: 7.773515224456787, &quot;IDs&quot;: &quot;TCGA-F5-6702-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.35306167602539, &quot;y&quot;: 8.298725128173828, &quot;IDs&quot;: &quot;TCGA-F5-6810-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.250301361083984, &quot;y&quot;: 7.872084617614746, &quot;IDs&quot;: &quot;TCGA-F5-6811-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.628327369689941, &quot;y&quot;: 7.510671615600586, &quot;IDs&quot;: &quot;TCGA-F5-6812-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.43010139465332, &quot;y&quot;: 8.394536972045898, &quot;IDs&quot;: &quot;TCGA-F5-6813-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.953660011291504, &quot;y&quot;: 8.744500160217285, &quot;IDs&quot;: &quot;TCGA-F5-6814-01A-31R-1928-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.541790008544922, &quot;y&quot;: 9.377585411071777, &quot;IDs&quot;: &quot;TCGA-F5-6861-01A-11R-1928-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.131793975830078, &quot;y&quot;: 8.619651794433594, &quot;IDs&quot;: &quot;TCGA-F5-6863-01A-11R-1928-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.803272247314453, &quot;y&quot;: 7.712212085723877, &quot;IDs&quot;: &quot;TCGA-F5-6864-01A-11R-1928-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.16425609588623, &quot;y&quot;: 8.808979988098145, &quot;IDs&quot;: &quot;TCGA-G5-6233-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 12.253270149230957, &quot;y&quot;: 10.39345645904541, &quot;IDs&quot;: &quot;TCGA-G5-6235-01A-11R-1736-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 13.486832618713379, &quot;y&quot;: 8.486381530761719, &quot;IDs&quot;: &quot;TCGA-G5-6572-01A-11R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 9.626689910888672, &quot;y&quot;: 2.1452269554138184, &quot;IDs&quot;: &quot;TCGA-G5-6572-02A-12R-1830-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}, {&quot;x&quot;: 11.97607421875, &quot;y&quot;: 10.675714492797852, &quot;IDs&quot;: &quot;TCGA-G5-6641-01A-11R-A32Z-07&quot;, &quot;Subtypes&quot;: &quot;24_READ&quot;, &quot;colors&quot;: &quot;#1300ff&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#1300ff&quot;, &quot;name&quot;: &quot;24_READ&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 1.021157145500183, &quot;y&quot;: 2.4932453632354736, &quot;IDs&quot;: &quot;TCGA-2G-AAEW-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.0690792798995972, &quot;y&quot;: -0.27979928255081177, &quot;IDs&quot;: &quot;TCGA-2G-AAEX-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.4710434675216675, &quot;y&quot;: 2.0738413333892822, &quot;IDs&quot;: &quot;TCGA-2G-AAF1-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.1720179319381714, &quot;y&quot;: 0.39133119583129883, &quot;IDs&quot;: &quot;TCGA-2G-AAF4-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.6403366327285767, &quot;y&quot;: 0.6137132048606873, &quot;IDs&quot;: &quot;TCGA-2G-AAF6-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.799477756023407, &quot;y&quot;: 0.15968021750450134, &quot;IDs&quot;: &quot;TCGA-2G-AAF8-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.2277508974075317, &quot;y&quot;: 2.0560576915740967, &quot;IDs&quot;: &quot;TCGA-2G-AAFE-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.5247448086738586, &quot;y&quot;: 1.0219616889953613, &quot;IDs&quot;: &quot;TCGA-2G-AAFG-05A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.9126625061035156, &quot;y&quot;: 0.5191505551338196, &quot;IDs&quot;: &quot;TCGA-2G-AAFG-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.3116852045059204, &quot;y&quot;: 0.17985187470912933, &quot;IDs&quot;: &quot;TCGA-2G-AAFH-01A-12R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 16.837034225463867, &quot;y&quot;: -6.402148723602295, &quot;IDs&quot;: &quot;TCGA-2G-AAFI-01A-21R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.213908195495605, &quot;y&quot;: -6.291757106781006, &quot;IDs&quot;: &quot;TCGA-2G-AAFJ-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.97304344177246, &quot;y&quot;: -4.694702625274658, &quot;IDs&quot;: &quot;TCGA-2G-AAFL-01A-21R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.43924903869629, &quot;y&quot;: -4.859982967376709, &quot;IDs&quot;: &quot;TCGA-2G-AAFM-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.742494583129883, &quot;y&quot;: -5.737591743469238, &quot;IDs&quot;: &quot;TCGA-2G-AAFN-01A-31R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.566102981567383, &quot;y&quot;: -4.669119358062744, &quot;IDs&quot;: &quot;TCGA-2G-AAFO-01A-31R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.622785568237305, &quot;y&quot;: -7.227298736572266, &quot;IDs&quot;: &quot;TCGA-2G-AAFV-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.532564163208008, &quot;y&quot;: -5.192355632781982, &quot;IDs&quot;: &quot;TCGA-2G-AAFY-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.102333068847656, &quot;y&quot;: -6.559822082519531, &quot;IDs&quot;: &quot;TCGA-2G-AAFZ-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.971786499023438, &quot;y&quot;: -5.443810939788818, &quot;IDs&quot;: &quot;TCGA-2G-AAG0-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.376506805419922, &quot;y&quot;: -5.9567766189575195, &quot;IDs&quot;: &quot;TCGA-2G-AAG3-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.445765495300293, &quot;y&quot;: -5.462803363800049, &quot;IDs&quot;: &quot;TCGA-2G-AAG5-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.132942199707031, &quot;y&quot;: -5.850729465484619, &quot;IDs&quot;: &quot;TCGA-2G-AAG6-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.48523712158203, &quot;y&quot;: -6.5048418045043945, &quot;IDs&quot;: &quot;TCGA-2G-AAG7-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 18.237010955810547, &quot;y&quot;: -4.61207389831543, &quot;IDs&quot;: &quot;TCGA-2G-AAG8-01A-31R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.0261609554290771, &quot;y&quot;: 1.237409234046936, &quot;IDs&quot;: &quot;TCGA-2G-AAG9-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 18.38370132446289, &quot;y&quot;: -5.030854225158691, &quot;IDs&quot;: &quot;TCGA-2G-AAGA-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 16.619749069213867, &quot;y&quot;: -5.879639148712158, &quot;IDs&quot;: &quot;TCGA-2G-AAGC-01A-21R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.246057510375977, &quot;y&quot;: -5.875446319580078, &quot;IDs&quot;: &quot;TCGA-2G-AAGE-01A-21R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 16.870241165161133, &quot;y&quot;: -5.89030647277832, &quot;IDs&quot;: &quot;TCGA-2G-AAGF-01A-31R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.066506385803223, &quot;y&quot;: -5.7126784324646, &quot;IDs&quot;: &quot;TCGA-2G-AAGG-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.9489390850067139, &quot;y&quot;: 0.9963017702102661, &quot;IDs&quot;: &quot;TCGA-2G-AAGI-05A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.548016548156738, &quot;y&quot;: -6.233931064605713, &quot;IDs&quot;: &quot;TCGA-2G-AAGI-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 18.20827865600586, &quot;y&quot;: -5.4563727378845215, &quot;IDs&quot;: &quot;TCGA-2G-AAGJ-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 16.649362564086914, &quot;y&quot;: -6.291819095611572, &quot;IDs&quot;: &quot;TCGA-2G-AAGK-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.23569107055664, &quot;y&quot;: -6.914276599884033, &quot;IDs&quot;: &quot;TCGA-2G-AAGM-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 18.094356536865234, &quot;y&quot;: -5.354401588439941, &quot;IDs&quot;: &quot;TCGA-2G-AAGN-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 18.44600486755371, &quot;y&quot;: -5.810586452484131, &quot;IDs&quot;: &quot;TCGA-2G-AAGO-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.521557807922363, &quot;y&quot;: -5.751729488372803, &quot;IDs&quot;: &quot;TCGA-2G-AAGP-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 16.75545883178711, &quot;y&quot;: -6.661765098571777, &quot;IDs&quot;: &quot;TCGA-2G-AAGS-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.729574203491211, &quot;y&quot;: -7.379011154174805, &quot;IDs&quot;: &quot;TCGA-2G-AAGT-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 13.80062198638916, &quot;y&quot;: -5.729969024658203, &quot;IDs&quot;: &quot;TCGA-2G-AAGV-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 18.24948501586914, &quot;y&quot;: -6.183521747589111, &quot;IDs&quot;: &quot;TCGA-2G-AAGW-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.533169746398926, &quot;y&quot;: -6.059323310852051, &quot;IDs&quot;: &quot;TCGA-2G-AAGX-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 2.386277198791504, &quot;y&quot;: 1.267838954925537, &quot;IDs&quot;: &quot;TCGA-2G-AAGY-05A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.088035583496094, &quot;y&quot;: -6.769608020782471, &quot;IDs&quot;: &quot;TCGA-2G-AAGY-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.564119338989258, &quot;y&quot;: -5.005063533782959, &quot;IDs&quot;: &quot;TCGA-2G-AAGZ-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.1349092721939087, &quot;y&quot;: 0.6994976997375488, &quot;IDs&quot;: &quot;TCGA-2G-AAH0-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.577449798583984, &quot;y&quot;: -5.827371120452881, &quot;IDs&quot;: &quot;TCGA-2G-AAH2-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.5541542768478394, &quot;y&quot;: 1.9995826482772827, &quot;IDs&quot;: &quot;TCGA-2G-AAH3-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.211576461791992, &quot;y&quot;: -6.781716823577881, &quot;IDs&quot;: &quot;TCGA-2G-AAH4-01A-12R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.9214997291564941, &quot;y&quot;: 0.677300214767456, &quot;IDs&quot;: &quot;TCGA-2G-AAH8-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.5502727031707764, &quot;y&quot;: 2.4324119091033936, &quot;IDs&quot;: &quot;TCGA-2G-AAHA-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.8987913727760315, &quot;y&quot;: 1.148269772529602, &quot;IDs&quot;: &quot;TCGA-2G-AAHC-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 2.3509206771850586, &quot;y&quot;: 0.31804269552230835, &quot;IDs&quot;: &quot;TCGA-2G-AAHG-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.4983923137187958, &quot;y&quot;: 1.8004459142684937, &quot;IDs&quot;: &quot;TCGA-2G-AAHL-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: -0.07078253477811813, &quot;y&quot;: 2.1554453372955322, &quot;IDs&quot;: &quot;TCGA-2G-AAHN-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.2262974977493286, &quot;y&quot;: 2.343491315841675, &quot;IDs&quot;: &quot;TCGA-2G-AAHP-05A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.8764804601669312, &quot;y&quot;: -0.27346283197402954, &quot;IDs&quot;: &quot;TCGA-2G-AAHP-01A-12R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.1316033601760864, &quot;y&quot;: 2.3695638179779053, &quot;IDs&quot;: &quot;TCGA-2G-AAHT-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.984031677246094, &quot;y&quot;: -5.732818603515625, &quot;IDs&quot;: &quot;TCGA-2G-AAKD-01A-31R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: -0.09681473672389984, &quot;y&quot;: 0.7307830452919006, &quot;IDs&quot;: &quot;TCGA-2G-AAKG-05A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 16.49560546875, &quot;y&quot;: -5.739372253417969, &quot;IDs&quot;: &quot;TCGA-2G-AAKG-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.832239151000977, &quot;y&quot;: -4.817924499511719, &quot;IDs&quot;: &quot;TCGA-2G-AAKH-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 18.374696731567383, &quot;y&quot;: -5.253787517547607, &quot;IDs&quot;: &quot;TCGA-2G-AAKL-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.610145568847656, &quot;y&quot;: -5.520955562591553, &quot;IDs&quot;: &quot;TCGA-2G-AAKM-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.08200648427009583, &quot;y&quot;: 1.9025421142578125, &quot;IDs&quot;: &quot;TCGA-2G-AAKO-05A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.936343789100647, &quot;y&quot;: 1.979068636894226, &quot;IDs&quot;: &quot;TCGA-2G-AAKO-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.230700492858887, &quot;y&quot;: -6.778641223907471, &quot;IDs&quot;: &quot;TCGA-2G-AAL5-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.935222625732422, &quot;y&quot;: -5.517448425292969, &quot;IDs&quot;: &quot;TCGA-2G-AAL7-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 16.162166595458984, &quot;y&quot;: -7.114884376525879, &quot;IDs&quot;: &quot;TCGA-2G-AALF-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.687323570251465, &quot;y&quot;: -5.585308074951172, &quot;IDs&quot;: &quot;TCGA-2G-AALG-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 16.005971908569336, &quot;y&quot;: -6.31826114654541, &quot;IDs&quot;: &quot;TCGA-2G-AALN-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.049636840820312, &quot;y&quot;: -5.357769012451172, &quot;IDs&quot;: &quot;TCGA-2G-AALO-01A-12R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.031883239746094, &quot;y&quot;: -6.092034339904785, &quot;IDs&quot;: &quot;TCGA-2G-AALP-01A-12R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.709556579589844, &quot;y&quot;: -6.719402313232422, &quot;IDs&quot;: &quot;TCGA-2G-AALQ-01A-12R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.98693561553955, &quot;y&quot;: -7.180220603942871, &quot;IDs&quot;: &quot;TCGA-2G-AALR-01A-21R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 16.83132553100586, &quot;y&quot;: -5.22062349319458, &quot;IDs&quot;: &quot;TCGA-2G-AALS-01A-12R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.954179763793945, &quot;y&quot;: -5.4788289070129395, &quot;IDs&quot;: &quot;TCGA-2G-AALT-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.107300758361816, &quot;y&quot;: -6.073069095611572, &quot;IDs&quot;: &quot;TCGA-2G-AALW-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.019618034362793, &quot;y&quot;: -6.202843189239502, &quot;IDs&quot;: &quot;TCGA-2G-AALX-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 16.27155113220215, &quot;y&quot;: -6.258191108703613, &quot;IDs&quot;: &quot;TCGA-2G-AALY-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.82998275756836, &quot;y&quot;: -5.953494071960449, &quot;IDs&quot;: &quot;TCGA-2G-AALZ-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.81218719482422, &quot;y&quot;: -6.672669887542725, &quot;IDs&quot;: &quot;TCGA-2G-AAM2-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.344629287719727, &quot;y&quot;: -5.867872714996338, &quot;IDs&quot;: &quot;TCGA-2G-AAM3-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.43756103515625, &quot;y&quot;: -6.619186878204346, &quot;IDs&quot;: &quot;TCGA-2G-AAM4-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.5964162349700928, &quot;y&quot;: 1.2134130001068115, &quot;IDs&quot;: &quot;TCGA-2X-A9D5-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.3105993270874023, &quot;y&quot;: 2.346161127090454, &quot;IDs&quot;: &quot;TCGA-2X-A9D6-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.704493761062622, &quot;y&quot;: 1.9741261005401611, &quot;IDs&quot;: &quot;TCGA-4K-AA1G-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.23531243205070496, &quot;y&quot;: 2.0052947998046875, &quot;IDs&quot;: &quot;TCGA-4K-AA1H-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.32396185398101807, &quot;y&quot;: 1.4266480207443237, &quot;IDs&quot;: &quot;TCGA-4K-AA1I-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.4233839213848114, &quot;y&quot;: 1.0014480352401733, &quot;IDs&quot;: &quot;TCGA-4K-AAAL-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.696260690689087, &quot;y&quot;: 1.4607422351837158, &quot;IDs&quot;: &quot;TCGA-S6-A8JW-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 2.3041977882385254, &quot;y&quot;: 0.3693810701370239, &quot;IDs&quot;: &quot;TCGA-S6-A8JX-01A-11R-A430-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 2.105976104736328, &quot;y&quot;: 0.4004124701023102, &quot;IDs&quot;: &quot;TCGA-S6-A8JY-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.0689222812652588, &quot;y&quot;: 0.20124338567256927, &quot;IDs&quot;: &quot;TCGA-SB-A6J6-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 2.178035259246826, &quot;y&quot;: 0.9621694087982178, &quot;IDs&quot;: &quot;TCGA-SB-A76C-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.785430669784546, &quot;y&quot;: -0.23811562359333038, &quot;IDs&quot;: &quot;TCGA-SN-A6IS-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 13.997482299804688, &quot;y&quot;: -6.26006555557251, &quot;IDs&quot;: &quot;TCGA-SN-A84W-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.812496185302734, &quot;y&quot;: -5.663557052612305, &quot;IDs&quot;: &quot;TCGA-SN-A84X-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 18.130096435546875, &quot;y&quot;: -6.258448123931885, &quot;IDs&quot;: &quot;TCGA-SN-A84Y-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 2.501627206802368, &quot;y&quot;: 0.765417218208313, &quot;IDs&quot;: &quot;TCGA-SO-A8JP-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.944616317749023, &quot;y&quot;: -6.339599132537842, &quot;IDs&quot;: &quot;TCGA-VF-A8A8-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.39592307806015015, &quot;y&quot;: 0.10625602304935455, &quot;IDs&quot;: &quot;TCGA-VF-A8A9-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.3478695154190063, &quot;y&quot;: 1.8910934925079346, &quot;IDs&quot;: &quot;TCGA-VF-A8AA-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.05411645770072937, &quot;y&quot;: 1.8788005113601685, &quot;IDs&quot;: &quot;TCGA-VF-A8AB-01A-31R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.755013644695282, &quot;y&quot;: 2.063880443572998, &quot;IDs&quot;: &quot;TCGA-VF-A8AC-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.973981857299805, &quot;y&quot;: -4.971895217895508, &quot;IDs&quot;: &quot;TCGA-VF-A8AD-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.06731776148080826, &quot;y&quot;: 0.4432854950428009, &quot;IDs&quot;: &quot;TCGA-VF-A8AE-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.6940208673477173, &quot;y&quot;: 0.259392648935318, &quot;IDs&quot;: &quot;TCGA-W4-A7U2-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.508527755737305, &quot;y&quot;: -6.656859874725342, &quot;IDs&quot;: &quot;TCGA-W4-A7U3-01A-12R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 18.300886154174805, &quot;y&quot;: -5.889716148376465, &quot;IDs&quot;: &quot;TCGA-W4-A7U4-01A-12R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 2.0188050270080566, &quot;y&quot;: 0.7280964255332947, &quot;IDs&quot;: &quot;TCGA-WZ-A7V3-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.7301165461540222, &quot;y&quot;: 1.741633653640747, &quot;IDs&quot;: &quot;TCGA-WZ-A7V4-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.3691641092300415, &quot;y&quot;: 1.192986249923706, &quot;IDs&quot;: &quot;TCGA-WZ-A7V5-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.5313029289245605, &quot;y&quot;: 0.7110199332237244, &quot;IDs&quot;: &quot;TCGA-WZ-A8D5-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 16.182674407958984, &quot;y&quot;: -6.053036689758301, &quot;IDs&quot;: &quot;TCGA-X3-A8G4-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 18.017000198364258, &quot;y&quot;: -5.552318096160889, &quot;IDs&quot;: &quot;TCGA-XE-A8H1-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.5927535891532898, &quot;y&quot;: 1.1146849393844604, &quot;IDs&quot;: &quot;TCGA-XE-A8H4-01A-31R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.5347601175308228, &quot;y&quot;: 0.23381105065345764, &quot;IDs&quot;: &quot;TCGA-XE-A8H5-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.230909824371338, &quot;y&quot;: 0.07336825877428055, &quot;IDs&quot;: &quot;TCGA-XE-A9SE-01A-21R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 13.83881950378418, &quot;y&quot;: -6.596843719482422, &quot;IDs&quot;: &quot;TCGA-XE-AANI-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.3877907991409302, &quot;y&quot;: 0.39774447679519653, &quot;IDs&quot;: &quot;TCGA-XE-AANJ-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.6207323670387268, &quot;y&quot;: 1.6184897422790527, &quot;IDs&quot;: &quot;TCGA-XE-AANR-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.6838053464889526, &quot;y&quot;: 1.7308928966522217, &quot;IDs&quot;: &quot;TCGA-XE-AANV-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.7826881408691406, &quot;y&quot;: -0.13261890411376953, &quot;IDs&quot;: &quot;TCGA-XE-AAO3-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.0465290546417236, &quot;y&quot;: 1.723634123802185, &quot;IDs&quot;: &quot;TCGA-XE-AAO4-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.6308066844940186, &quot;y&quot;: 0.38112491369247437, &quot;IDs&quot;: &quot;TCGA-XE-AAO6-01A-31R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 16.604530334472656, &quot;y&quot;: -5.4123992919921875, &quot;IDs&quot;: &quot;TCGA-XE-AAOB-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.268383979797363, &quot;y&quot;: -7.028666973114014, &quot;IDs&quot;: &quot;TCGA-XE-AAOC-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.262781023979187, &quot;y&quot;: 1.1943563222885132, &quot;IDs&quot;: &quot;TCGA-XE-AAOD-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.9527460336685181, &quot;y&quot;: 1.7874774932861328, &quot;IDs&quot;: &quot;TCGA-XE-AAOF-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.62795639038086, &quot;y&quot;: -7.01162576675415, &quot;IDs&quot;: &quot;TCGA-XE-AAOJ-01A-12R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.8553839921951294, &quot;y&quot;: -0.13961714506149292, &quot;IDs&quot;: &quot;TCGA-XE-AAOL-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.5464895367622375, &quot;y&quot;: 1.921905517578125, &quot;IDs&quot;: &quot;TCGA-XY-A89B-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.75253677368164, &quot;y&quot;: -6.033717155456543, &quot;IDs&quot;: &quot;TCGA-XY-A8S2-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 17.0010929107666, &quot;y&quot;: -6.211788654327393, &quot;IDs&quot;: &quot;TCGA-XY-A8S3-01B-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.2808674573898315, &quot;y&quot;: 0.0696692243218422, &quot;IDs&quot;: &quot;TCGA-XY-A9T9-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 18.414960861206055, &quot;y&quot;: -5.338947772979736, &quot;IDs&quot;: &quot;TCGA-YU-A90P-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 2.2673776149749756, &quot;y&quot;: 1.3746145963668823, &quot;IDs&quot;: &quot;TCGA-YU-A90Q-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: -0.16710835695266724, &quot;y&quot;: 2.1410624980926514, &quot;IDs&quot;: &quot;TCGA-YU-A90S-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.8550790548324585, &quot;y&quot;: -0.12038836628198624, &quot;IDs&quot;: &quot;TCGA-YU-A90W-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 16.646039962768555, &quot;y&quot;: -5.914737701416016, &quot;IDs&quot;: &quot;TCGA-YU-A90Y-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 1.4818888902664185, &quot;y&quot;: 0.8808252215385437, &quot;IDs&quot;: &quot;TCGA-YU-A912-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 14.128284454345703, &quot;y&quot;: -6.885313510894775, &quot;IDs&quot;: &quot;TCGA-YU-A94D-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.75845718383789, &quot;y&quot;: -7.227616786956787, &quot;IDs&quot;: &quot;TCGA-YU-A94I-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 16.0278377532959, &quot;y&quot;: -7.198454856872559, &quot;IDs&quot;: &quot;TCGA-YU-AA4L-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 15.748883247375488, &quot;y&quot;: -6.534586429595947, &quot;IDs&quot;: &quot;TCGA-YU-AA61-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: -0.3001576066017151, &quot;y&quot;: 1.5681698322296143, &quot;IDs&quot;: &quot;TCGA-ZM-AA05-01A-12R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.23663565516471863, &quot;y&quot;: 0.9101067185401917, &quot;IDs&quot;: &quot;TCGA-ZM-AA06-01A-12R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.0667213723063469, &quot;y&quot;: 0.3931944668292999, &quot;IDs&quot;: &quot;TCGA-ZM-AA0B-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.30068495869636536, &quot;y&quot;: 1.7363804578781128, &quot;IDs&quot;: &quot;TCGA-ZM-AA0D-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: -0.1821783483028412, &quot;y&quot;: 1.24359130859375, &quot;IDs&quot;: &quot;TCGA-ZM-AA0E-01A-12R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: -0.3385896384716034, &quot;y&quot;: 1.8117152452468872, &quot;IDs&quot;: &quot;TCGA-ZM-AA0F-01A-21R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: -0.4225868284702301, &quot;y&quot;: 1.4722949266433716, &quot;IDs&quot;: &quot;TCGA-ZM-AA0H-01A-11R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}, {&quot;x&quot;: 0.2717459499835968, &quot;y&quot;: 0.1666727066040039, &quot;IDs&quot;: &quot;TCGA-ZM-AA0N-01A-21R-A431-07&quot;, &quot;Subtypes&quot;: &quot;28_TGCT&quot;, &quot;colors&quot;: &quot;#7200ff&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#7200ff&quot;, &quot;name&quot;: &quot;28_TGCT&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 5.936108589172363, &quot;y&quot;: -0.16395783424377441, &quot;IDs&quot;: &quot;TCGA-3G-AB0O-01A-22R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.048989295959473, &quot;y&quot;: -3.944674253463745, &quot;IDs&quot;: &quot;TCGA-3G-AB0Q-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.224239349365234, &quot;y&quot;: -0.002144675701856613, &quot;IDs&quot;: &quot;TCGA-3G-AB0T-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.476685047149658, &quot;y&quot;: 1.1765414476394653, &quot;IDs&quot;: &quot;TCGA-3G-AB14-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.278322219848633, &quot;y&quot;: -3.106259822845459, &quot;IDs&quot;: &quot;TCGA-3G-AB19-01A-21R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.307031631469727, &quot;y&quot;: -0.6190162897109985, &quot;IDs&quot;: &quot;TCGA-3Q-A9WF-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 8.435629844665527, &quot;y&quot;: -1.0956227779388428, &quot;IDs&quot;: &quot;TCGA-3S-A8YW-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.640891075134277, &quot;y&quot;: -0.7786170840263367, &quot;IDs&quot;: &quot;TCGA-3S-AAYX-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.053910255432129, &quot;y&quot;: -0.9840884208679199, &quot;IDs&quot;: &quot;TCGA-3T-AA9L-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.356068134307861, &quot;y&quot;: 0.0826120600104332, &quot;IDs&quot;: &quot;TCGA-4V-A9QI-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.272831916809082, &quot;y&quot;: -1.0539242029190063, &quot;IDs&quot;: &quot;TCGA-4V-A9QJ-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.420385837554932, &quot;y&quot;: -2.8910868167877197, &quot;IDs&quot;: &quot;TCGA-4V-A9QL-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.278826713562012, &quot;y&quot;: -4.044029235839844, &quot;IDs&quot;: &quot;TCGA-4V-A9QM-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.5708770751953125, &quot;y&quot;: 1.3422343730926514, &quot;IDs&quot;: &quot;TCGA-4V-A9QN-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.043407917022705, &quot;y&quot;: 1.008523941040039, &quot;IDs&quot;: &quot;TCGA-4V-A9QR-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.090111255645752, &quot;y&quot;: 0.42531439661979675, &quot;IDs&quot;: &quot;TCGA-4V-A9QS-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.4346513748168945, &quot;y&quot;: -0.6897727251052856, &quot;IDs&quot;: &quot;TCGA-4V-A9QT-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.30700159072876, &quot;y&quot;: -2.6860790252685547, &quot;IDs&quot;: &quot;TCGA-4V-A9QU-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.769796848297119, &quot;y&quot;: -1.8166128396987915, &quot;IDs&quot;: &quot;TCGA-4V-A9QW-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.386690616607666, &quot;y&quot;: -2.5181477069854736, &quot;IDs&quot;: &quot;TCGA-4V-A9QX-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.890417098999023, &quot;y&quot;: -0.20198607444763184, &quot;IDs&quot;: &quot;TCGA-4X-A9F9-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.901350498199463, &quot;y&quot;: -3.3762102127075195, &quot;IDs&quot;: &quot;TCGA-4X-A9FA-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.189108371734619, &quot;y&quot;: -0.5010325908660889, &quot;IDs&quot;: &quot;TCGA-4X-A9FB-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.836703300476074, &quot;y&quot;: -2.6904101371765137, &quot;IDs&quot;: &quot;TCGA-4X-A9FC-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.10469913482666, &quot;y&quot;: 0.9336938858032227, &quot;IDs&quot;: &quot;TCGA-4X-A9FD-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.991487979888916, &quot;y&quot;: -1.5222247838974, &quot;IDs&quot;: &quot;TCGA-5G-A9ZZ-01A-31R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.3398284912109375, &quot;y&quot;: -2.6929521560668945, &quot;IDs&quot;: &quot;TCGA-5K-AAAP-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.803919792175293, &quot;y&quot;: -1.2631639242172241, &quot;IDs&quot;: &quot;TCGA-5U-AB0D-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.1743998527526855, &quot;y&quot;: 0.7166592478752136, &quot;IDs&quot;: &quot;TCGA-5U-AB0E-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.2425971031188965, &quot;y&quot;: -1.6329905986785889, &quot;IDs&quot;: &quot;TCGA-5U-AB0F-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.081622123718262, &quot;y&quot;: -2.425224542617798, &quot;IDs&quot;: &quot;TCGA-5V-A9RR-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.473234176635742, &quot;y&quot;: -1.557580590248108, &quot;IDs&quot;: &quot;TCGA-X7-A8D6-11A-22R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.89945650100708, &quot;y&quot;: -3.02020525932312, &quot;IDs&quot;: &quot;TCGA-X7-A8D6-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.857414722442627, &quot;y&quot;: -0.8144083023071289, &quot;IDs&quot;: &quot;TCGA-X7-A8D7-11A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.549325466156006, &quot;y&quot;: -0.06293041259050369, &quot;IDs&quot;: &quot;TCGA-X7-A8D7-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.719105243682861, &quot;y&quot;: -3.7449634075164795, &quot;IDs&quot;: &quot;TCGA-X7-A8D8-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.181259632110596, &quot;y&quot;: -3.6487202644348145, &quot;IDs&quot;: &quot;TCGA-X7-A8D9-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.782677173614502, &quot;y&quot;: -0.1400453895330429, &quot;IDs&quot;: &quot;TCGA-X7-A8DB-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.40432071685791, &quot;y&quot;: -1.8635849952697754, &quot;IDs&quot;: &quot;TCGA-X7-A8DD-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.4869465827941895, &quot;y&quot;: -2.2744762897491455, &quot;IDs&quot;: &quot;TCGA-X7-A8DE-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.288369655609131, &quot;y&quot;: -2.4852216243743896, &quot;IDs&quot;: &quot;TCGA-X7-A8DF-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.6085100173950195, &quot;y&quot;: 0.08152518421411514, &quot;IDs&quot;: &quot;TCGA-X7-A8DG-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.792703151702881, &quot;y&quot;: -3.691849946975708, &quot;IDs&quot;: &quot;TCGA-X7-A8DJ-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.264488220214844, &quot;y&quot;: -2.343343496322632, &quot;IDs&quot;: &quot;TCGA-X7-A8M0-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.898499965667725, &quot;y&quot;: -3.7629690170288086, &quot;IDs&quot;: &quot;TCGA-X7-A8M1-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.161957263946533, &quot;y&quot;: 1.3848146200180054, &quot;IDs&quot;: &quot;TCGA-X7-A8M3-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.214630603790283, &quot;y&quot;: -3.1386349201202393, &quot;IDs&quot;: &quot;TCGA-X7-A8M4-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.996722221374512, &quot;y&quot;: -2.4711766242980957, &quot;IDs&quot;: &quot;TCGA-X7-A8M5-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.115518569946289, &quot;y&quot;: -0.4138350486755371, &quot;IDs&quot;: &quot;TCGA-X7-A8M6-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.852209568023682, &quot;y&quot;: 0.238143190741539, &quot;IDs&quot;: &quot;TCGA-X7-A8M7-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.4458112716674805, &quot;y&quot;: -2.7160518169403076, &quot;IDs&quot;: &quot;TCGA-X7-A8M8-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.7377238273620605, &quot;y&quot;: -3.1513938903808594, &quot;IDs&quot;: &quot;TCGA-XH-A853-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 9.867076873779297, &quot;y&quot;: -0.9506032466888428, &quot;IDs&quot;: &quot;TCGA-XM-A8R8-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.882128715515137, &quot;y&quot;: -2.016951560974121, &quot;IDs&quot;: &quot;TCGA-XM-A8R9-01A-31R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.4494404792785645, &quot;y&quot;: -0.6034759879112244, &quot;IDs&quot;: &quot;TCGA-XM-A8RB-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.474442958831787, &quot;y&quot;: -0.21238252520561218, &quot;IDs&quot;: &quot;TCGA-XM-A8RC-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.962658882141113, &quot;y&quot;: 0.8529544472694397, &quot;IDs&quot;: &quot;TCGA-XM-A8RD-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.780460834503174, &quot;y&quot;: -1.983769416809082, &quot;IDs&quot;: &quot;TCGA-XM-A8RE-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.406162261962891, &quot;y&quot;: -3.003664016723633, &quot;IDs&quot;: &quot;TCGA-XM-A8RF-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.777275562286377, &quot;y&quot;: -3.3671202659606934, &quot;IDs&quot;: &quot;TCGA-XM-A8RG-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.936480522155762, &quot;y&quot;: -2.704540491104126, &quot;IDs&quot;: &quot;TCGA-XM-A8RH-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.555448532104492, &quot;y&quot;: -0.8629693388938904, &quot;IDs&quot;: &quot;TCGA-XM-A8RI-01A-12R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.293042182922363, &quot;y&quot;: -0.5734127759933472, &quot;IDs&quot;: &quot;TCGA-XM-A8RL-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.458451747894287, &quot;y&quot;: 0.637326180934906, &quot;IDs&quot;: &quot;TCGA-XM-AAZ1-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.324603080749512, &quot;y&quot;: -3.475773334503174, &quot;IDs&quot;: &quot;TCGA-XM-AAZ2-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.725074768066406, &quot;y&quot;: -3.4215633869171143, &quot;IDs&quot;: &quot;TCGA-XM-AAZ3-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.8458027839660645, &quot;y&quot;: -2.821108341217041, &quot;IDs&quot;: &quot;TCGA-XU-A92O-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.75321626663208, &quot;y&quot;: -3.715890884399414, &quot;IDs&quot;: &quot;TCGA-XU-A92Q-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 8.089729309082031, &quot;y&quot;: -3.7939958572387695, &quot;IDs&quot;: &quot;TCGA-XU-A92T-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.8007097244262695, &quot;y&quot;: -3.5527751445770264, &quot;IDs&quot;: &quot;TCGA-XU-A92U-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.499622821807861, &quot;y&quot;: -4.249979496002197, &quot;IDs&quot;: &quot;TCGA-XU-A92V-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.27153205871582, &quot;y&quot;: 0.4014122486114502, &quot;IDs&quot;: &quot;TCGA-XU-A92W-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.986385345458984, &quot;y&quot;: 0.6651673316955566, &quot;IDs&quot;: &quot;TCGA-XU-A92X-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.4336442947387695, &quot;y&quot;: 0.4127967655658722, &quot;IDs&quot;: &quot;TCGA-XU-A92Y-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 9.818512916564941, &quot;y&quot;: -6.818872451782227, &quot;IDs&quot;: &quot;TCGA-XU-A92Z-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.975440502166748, &quot;y&quot;: 1.0146067142486572, &quot;IDs&quot;: &quot;TCGA-XU-A930-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.112785339355469, &quot;y&quot;: 1.1681747436523438, &quot;IDs&quot;: &quot;TCGA-XU-A931-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.498172760009766, &quot;y&quot;: 0.13437344133853912, &quot;IDs&quot;: &quot;TCGA-XU-A932-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 8.305547714233398, &quot;y&quot;: -1.8056293725967407, &quot;IDs&quot;: &quot;TCGA-XU-A933-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 8.100564002990723, &quot;y&quot;: -1.4497348070144653, &quot;IDs&quot;: &quot;TCGA-XU-A936-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.744931221008301, &quot;y&quot;: 0.48514750599861145, &quot;IDs&quot;: &quot;TCGA-XU-AAXV-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.220805644989014, &quot;y&quot;: -0.2756081819534302, &quot;IDs&quot;: &quot;TCGA-XU-AAXW-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.293308734893799, &quot;y&quot;: 0.5895757079124451, &quot;IDs&quot;: &quot;TCGA-XU-AAXX-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.1098833084106445, &quot;y&quot;: 0.14625084400177002, &quot;IDs&quot;: &quot;TCGA-XU-AAXY-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.856320381164551, &quot;y&quot;: -0.8607000708580017, &quot;IDs&quot;: &quot;TCGA-XU-AAXZ-01A-11R-A466-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.585608959197998, &quot;y&quot;: -2.1649601459503174, &quot;IDs&quot;: &quot;TCGA-XU-AAY0-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.298217296600342, &quot;y&quot;: -2.107536554336548, &quot;IDs&quot;: &quot;TCGA-XU-AAY1-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.530348777770996, &quot;y&quot;: -4.4284348487854, &quot;IDs&quot;: &quot;TCGA-YT-A95D-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.312612533569336, &quot;y&quot;: -2.5689878463745117, &quot;IDs&quot;: &quot;TCGA-YT-A95E-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.153939247131348, &quot;y&quot;: -4.202549457550049, &quot;IDs&quot;: &quot;TCGA-YT-A95F-01A-11R-A42C-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.768219470977783, &quot;y&quot;: 0.3208920657634735, &quot;IDs&quot;: &quot;TCGA-YT-A95G-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.588052272796631, &quot;y&quot;: -2.948927402496338, &quot;IDs&quot;: &quot;TCGA-YT-A95H-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.827785491943359, &quot;y&quot;: 0.9122543931007385, &quot;IDs&quot;: &quot;TCGA-ZB-A961-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.888134002685547, &quot;y&quot;: -3.808800458908081, &quot;IDs&quot;: &quot;TCGA-ZB-A962-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.7115678787231445, &quot;y&quot;: -2.8381922245025635, &quot;IDs&quot;: &quot;TCGA-ZB-A963-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.752093315124512, &quot;y&quot;: -3.9098353385925293, &quot;IDs&quot;: &quot;TCGA-ZB-A964-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 8.074081420898438, &quot;y&quot;: -3.600975275039673, &quot;IDs&quot;: &quot;TCGA-ZB-A965-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 8.867828369140625, &quot;y&quot;: -1.577104926109314, &quot;IDs&quot;: &quot;TCGA-ZB-A966-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.953067779541016, &quot;y&quot;: -3.22690749168396, &quot;IDs&quot;: &quot;TCGA-ZB-A969-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.151188850402832, &quot;y&quot;: -2.1542718410491943, &quot;IDs&quot;: &quot;TCGA-ZB-A96A-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.662508487701416, &quot;y&quot;: -2.7769837379455566, &quot;IDs&quot;: &quot;TCGA-ZB-A96B-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.702010631561279, &quot;y&quot;: -4.180203914642334, &quot;IDs&quot;: &quot;TCGA-ZB-A96C-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.464134216308594, &quot;y&quot;: -3.758533477783203, &quot;IDs&quot;: &quot;TCGA-ZB-A96D-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.648151397705078, &quot;y&quot;: -3.013883352279663, &quot;IDs&quot;: &quot;TCGA-ZB-A96E-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.294846534729004, &quot;y&quot;: 0.7953916788101196, &quot;IDs&quot;: &quot;TCGA-ZB-A96F-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.971311092376709, &quot;y&quot;: -2.128621816635132, &quot;IDs&quot;: &quot;TCGA-ZB-A96G-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 8.19193172454834, &quot;y&quot;: -3.2669341564178467, &quot;IDs&quot;: &quot;TCGA-ZB-A96H-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.462024688720703, &quot;y&quot;: 0.8402841091156006, &quot;IDs&quot;: &quot;TCGA-ZB-A96I-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.147732734680176, &quot;y&quot;: -4.176975250244141, &quot;IDs&quot;: &quot;TCGA-ZB-A96K-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.646981716156006, &quot;y&quot;: -3.4791829586029053, &quot;IDs&quot;: &quot;TCGA-ZB-A96L-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.406235218048096, &quot;y&quot;: -4.216229438781738, &quot;IDs&quot;: &quot;TCGA-ZB-A96M-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.387974262237549, &quot;y&quot;: -0.32956013083457947, &quot;IDs&quot;: &quot;TCGA-ZB-A96O-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.641376972198486, &quot;y&quot;: -0.4082246422767639, &quot;IDs&quot;: &quot;TCGA-ZB-A96P-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.563794136047363, &quot;y&quot;: -3.6477108001708984, &quot;IDs&quot;: &quot;TCGA-ZB-A96Q-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.539512634277344, &quot;y&quot;: -0.24066099524497986, &quot;IDs&quot;: &quot;TCGA-ZB-A96R-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 8.91003704071045, &quot;y&quot;: -1.5566145181655884, &quot;IDs&quot;: &quot;TCGA-ZB-A96V-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 8.76780891418457, &quot;y&quot;: -1.2487648725509644, &quot;IDs&quot;: &quot;TCGA-ZC-AAA7-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.987295627593994, &quot;y&quot;: 0.41072332859039307, &quot;IDs&quot;: &quot;TCGA-ZC-AAAA-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 5.118255138397217, &quot;y&quot;: -2.351320505142212, &quot;IDs&quot;: &quot;TCGA-ZC-AAAF-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.9385294914245605, &quot;y&quot;: -0.24290750920772552, &quot;IDs&quot;: &quot;TCGA-ZC-AAAH-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 7.742268085479736, &quot;y&quot;: -3.0660550594329834, &quot;IDs&quot;: &quot;TCGA-ZL-A9V6-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}, {&quot;x&quot;: 6.040210723876953, &quot;y&quot;: -1.712384819984436, &quot;IDs&quot;: &quot;TCGA-ZT-A8OM-01A-11R-A42S-07&quot;, &quot;Subtypes&quot;: &quot;30_THYM&quot;, &quot;colors&quot;: &quot;#d000ff&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#d000ff&quot;, &quot;name&quot;: &quot;30_THYM&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 13.706591606140137, &quot;y&quot;: -4.564157962799072, &quot;IDs&quot;: &quot;TCGA-N5-A4R8-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 13.902770042419434, &quot;y&quot;: -4.280650615692139, &quot;IDs&quot;: &quot;TCGA-N5-A4RA-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 13.12785530090332, &quot;y&quot;: -4.888620853424072, &quot;IDs&quot;: &quot;TCGA-N5-A4RD-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.065696716308594, &quot;y&quot;: -5.083263397216797, &quot;IDs&quot;: &quot;TCGA-N5-A4RF-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 13.333931922912598, &quot;y&quot;: -5.503106594085693, &quot;IDs&quot;: &quot;TCGA-N5-A4RJ-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.134848594665527, &quot;y&quot;: -5.0494890213012695, &quot;IDs&quot;: &quot;TCGA-N5-A4RM-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.700386047363281, &quot;y&quot;: -5.959195137023926, &quot;IDs&quot;: &quot;TCGA-N5-A4RN-01A-12R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 13.07606029510498, &quot;y&quot;: -4.876562595367432, &quot;IDs&quot;: &quot;TCGA-N5-A4RO-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.766555786132812, &quot;y&quot;: -5.427553653717041, &quot;IDs&quot;: &quot;TCGA-N5-A4RS-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.505066871643066, &quot;y&quot;: -5.230485916137695, &quot;IDs&quot;: &quot;TCGA-N5-A4RT-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.108421325683594, &quot;y&quot;: -5.333523273468018, &quot;IDs&quot;: &quot;TCGA-N5-A4RU-01A-31R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.460251808166504, &quot;y&quot;: -5.030354976654053, &quot;IDs&quot;: &quot;TCGA-N5-A4RV-01A-21R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.872876167297363, &quot;y&quot;: -5.379765033721924, &quot;IDs&quot;: &quot;TCGA-N5-A59E-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.385951042175293, &quot;y&quot;: -5.4588727951049805, &quot;IDs&quot;: &quot;TCGA-N5-A59F-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.884981155395508, &quot;y&quot;: -5.426168441772461, &quot;IDs&quot;: &quot;TCGA-N6-A4V9-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.346556663513184, &quot;y&quot;: -4.9734673500061035, &quot;IDs&quot;: &quot;TCGA-N6-A4VC-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.204965591430664, &quot;y&quot;: -4.423710823059082, &quot;IDs&quot;: &quot;TCGA-N6-A4VD-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.27762222290039, &quot;y&quot;: -5.669156551361084, &quot;IDs&quot;: &quot;TCGA-N6-A4VE-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.728720664978027, &quot;y&quot;: -4.889570236206055, &quot;IDs&quot;: &quot;TCGA-N6-A4VF-01A-31R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.916389465332031, &quot;y&quot;: -5.7394819259643555, &quot;IDs&quot;: &quot;TCGA-N6-A4VG-01A-31R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.713269233703613, &quot;y&quot;: -5.720188140869141, &quot;IDs&quot;: &quot;TCGA-N7-A4Y0-01A-12R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 13.780543327331543, &quot;y&quot;: -3.8184142112731934, &quot;IDs&quot;: &quot;TCGA-N7-A4Y5-01A-12R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.69052791595459, &quot;y&quot;: -4.81829833984375, &quot;IDs&quot;: &quot;TCGA-N7-A4Y8-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.273903846740723, &quot;y&quot;: -4.537052154541016, &quot;IDs&quot;: &quot;TCGA-N7-A59B-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.533190727233887, &quot;y&quot;: -4.7950921058654785, &quot;IDs&quot;: &quot;TCGA-N8-A4PI-01A-21R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.17651081085205, &quot;y&quot;: -5.457649230957031, &quot;IDs&quot;: &quot;TCGA-N8-A4PL-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.852675437927246, &quot;y&quot;: -4.884992599487305, &quot;IDs&quot;: &quot;TCGA-N8-A4PM-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 13.591362953186035, &quot;y&quot;: -4.367940902709961, &quot;IDs&quot;: &quot;TCGA-N8-A4PN-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.956510543823242, &quot;y&quot;: -5.2076568603515625, &quot;IDs&quot;: &quot;TCGA-N8-A4PO-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.414948463439941, &quot;y&quot;: -5.023300647735596, &quot;IDs&quot;: &quot;TCGA-N8-A4PP-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.952887535095215, &quot;y&quot;: -4.749092102050781, &quot;IDs&quot;: &quot;TCGA-N8-A4PQ-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.932002067565918, &quot;y&quot;: -5.70548152923584, &quot;IDs&quot;: &quot;TCGA-N8-A56S-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.612271308898926, &quot;y&quot;: -5.23161506652832, &quot;IDs&quot;: &quot;TCGA-N9-A4PZ-01A-22R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 13.453648567199707, &quot;y&quot;: -4.140175819396973, &quot;IDs&quot;: &quot;TCGA-N9-A4Q1-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.848236083984375, &quot;y&quot;: -5.790472030639648, &quot;IDs&quot;: &quot;TCGA-N9-A4Q3-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 13.626845359802246, &quot;y&quot;: -4.246294975280762, &quot;IDs&quot;: &quot;TCGA-N9-A4Q4-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 9.600104331970215, &quot;y&quot;: -1.4455080032348633, &quot;IDs&quot;: &quot;TCGA-N9-A4Q7-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.148816108703613, &quot;y&quot;: -4.564112663269043, &quot;IDs&quot;: &quot;TCGA-N9-A4Q8-01A-31R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.918793678283691, &quot;y&quot;: -5.625758171081543, &quot;IDs&quot;: &quot;TCGA-NA-A4QV-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 13.774054527282715, &quot;y&quot;: -3.9736487865448, &quot;IDs&quot;: &quot;TCGA-NA-A4QW-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 13.542508125305176, &quot;y&quot;: -4.270162105560303, &quot;IDs&quot;: &quot;TCGA-NA-A4QX-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.546906471252441, &quot;y&quot;: -6.050233840942383, &quot;IDs&quot;: &quot;TCGA-NA-A4QY-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.015380859375, &quot;y&quot;: -5.367800712585449, &quot;IDs&quot;: &quot;TCGA-NA-A4R0-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.389904975891113, &quot;y&quot;: -5.639070510864258, &quot;IDs&quot;: &quot;TCGA-NA-A4R1-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.650762557983398, &quot;y&quot;: -5.9713521003723145, &quot;IDs&quot;: &quot;TCGA-NA-A5I1-01A-21R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.450738906860352, &quot;y&quot;: -4.633419513702393, &quot;IDs&quot;: &quot;TCGA-ND-A4W6-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.114212989807129, &quot;y&quot;: -6.085143089294434, &quot;IDs&quot;: &quot;TCGA-ND-A4WA-01A-12R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.726387023925781, &quot;y&quot;: 4.311321258544922, &quot;IDs&quot;: &quot;TCGA-ND-A4WC-01A-21R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 13.270489692687988, &quot;y&quot;: -4.816776752471924, &quot;IDs&quot;: &quot;TCGA-ND-A4WF-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.585116386413574, &quot;y&quot;: -5.483274459838867, &quot;IDs&quot;: &quot;TCGA-NF-A4WU-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 12.607927322387695, &quot;y&quot;: -5.874828815460205, &quot;IDs&quot;: &quot;TCGA-NF-A4WX-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.164351463317871, &quot;y&quot;: -5.7281975746154785, &quot;IDs&quot;: &quot;TCGA-NF-A4X2-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.248719215393066, &quot;y&quot;: -4.809963703155518, &quot;IDs&quot;: &quot;TCGA-NF-A5CP-01A-12R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 13.78309440612793, &quot;y&quot;: -4.175454616546631, &quot;IDs&quot;: &quot;TCGA-NG-A4VU-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.48173999786377, &quot;y&quot;: -4.505194664001465, &quot;IDs&quot;: &quot;TCGA-NG-A4VW-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.356255531311035, &quot;y&quot;: -4.715713977813721, &quot;IDs&quot;: &quot;TCGA-QM-A5NM-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}, {&quot;x&quot;: 11.530549049377441, &quot;y&quot;: -5.443726062774658, &quot;IDs&quot;: &quot;TCGA-QN-A5NN-01A-11R-A28V-07&quot;, &quot;Subtypes&quot;: &quot;32_UCS&quot;, &quot;colors&quot;: &quot;#ff00cf&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#ff00cf&quot;, &quot;name&quot;: &quot;32_UCS&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 0.49866601824760437, &quot;y&quot;: -16.194990158081055, &quot;IDs&quot;: &quot;TCGA-RZ-AB0B-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.20997968316078186, &quot;y&quot;: -15.863960266113281, &quot;IDs&quot;: &quot;TCGA-V3-A9ZX-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.2132446765899658, &quot;y&quot;: -17.23981475830078, &quot;IDs&quot;: &quot;TCGA-V3-A9ZY-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.4408100843429565, &quot;y&quot;: -18.0180606842041, &quot;IDs&quot;: &quot;TCGA-V4-A9E5-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 1.2192741632461548, &quot;y&quot;: -17.100038528442383, &quot;IDs&quot;: &quot;TCGA-V4-A9E7-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 1.0644358396530151, &quot;y&quot;: -17.136783599853516, &quot;IDs&quot;: &quot;TCGA-V4-A9E8-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.3069103956222534, &quot;y&quot;: -18.251920700073242, &quot;IDs&quot;: &quot;TCGA-V4-A9E9-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.0185983180999756, &quot;y&quot;: -18.106184005737305, &quot;IDs&quot;: &quot;TCGA-V4-A9EA-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.4489175081253052, &quot;y&quot;: -18.133459091186523, &quot;IDs&quot;: &quot;TCGA-V4-A9EC-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.09750817716121674, &quot;y&quot;: -16.881193161010742, &quot;IDs&quot;: &quot;TCGA-V4-A9ED-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.8961723446846008, &quot;y&quot;: -15.953025817871094, &quot;IDs&quot;: &quot;TCGA-V4-A9EE-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.6596670150756836, &quot;y&quot;: -17.226213455200195, &quot;IDs&quot;: &quot;TCGA-V4-A9EF-01A-21R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.2848169803619385, &quot;y&quot;: -16.49607276916504, &quot;IDs&quot;: &quot;TCGA-V4-A9EH-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 1.0697605609893799, &quot;y&quot;: -16.413236618041992, &quot;IDs&quot;: &quot;TCGA-V4-A9EI-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.3593242168426514, &quot;y&quot;: -17.94864273071289, &quot;IDs&quot;: &quot;TCGA-V4-A9EJ-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.8622996211051941, &quot;y&quot;: -16.952512741088867, &quot;IDs&quot;: &quot;TCGA-V4-A9EK-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.6442480683326721, &quot;y&quot;: -15.79197883605957, &quot;IDs&quot;: &quot;TCGA-V4-A9EL-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.6263469457626343, &quot;y&quot;: -16.948843002319336, &quot;IDs&quot;: &quot;TCGA-V4-A9EM-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.028301578015089035, &quot;y&quot;: -17.615049362182617, &quot;IDs&quot;: &quot;TCGA-V4-A9EO-01A-12R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 1.0508785247802734, &quot;y&quot;: -17.521465301513672, &quot;IDs&quot;: &quot;TCGA-V4-A9EQ-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.08418721705675125, &quot;y&quot;: -17.28034019470215, &quot;IDs&quot;: &quot;TCGA-V4-A9ES-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.7685584425926208, &quot;y&quot;: -18.14386558532715, &quot;IDs&quot;: &quot;TCGA-V4-A9ET-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.32424747943878174, &quot;y&quot;: -15.917877197265625, &quot;IDs&quot;: &quot;TCGA-V4-A9EU-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.776475727558136, &quot;y&quot;: -15.78864574432373, &quot;IDs&quot;: &quot;TCGA-V4-A9EV-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.368484616279602, &quot;y&quot;: -17.64769172668457, &quot;IDs&quot;: &quot;TCGA-V4-A9EW-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 1.082985281944275, &quot;y&quot;: -16.37675666809082, &quot;IDs&quot;: &quot;TCGA-V4-A9EX-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.0615607500076294, &quot;y&quot;: -16.734285354614258, &quot;IDs&quot;: &quot;TCGA-V4-A9EY-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.6612232327461243, &quot;y&quot;: -18.074079513549805, &quot;IDs&quot;: &quot;TCGA-V4-A9EZ-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.2499464899301529, &quot;y&quot;: -16.771175384521484, &quot;IDs&quot;: &quot;TCGA-V4-A9F0-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.5405732989311218, &quot;y&quot;: -16.36067771911621, &quot;IDs&quot;: &quot;TCGA-V4-A9F1-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.0973947048187256, &quot;y&quot;: -16.72422981262207, &quot;IDs&quot;: &quot;TCGA-V4-A9F2-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.5532451272010803, &quot;y&quot;: -15.818751335144043, &quot;IDs&quot;: &quot;TCGA-V4-A9F3-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.0617045164108276, &quot;y&quot;: -17.536529541015625, &quot;IDs&quot;: &quot;TCGA-V4-A9F4-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 1.0817519426345825, &quot;y&quot;: -17.300437927246094, &quot;IDs&quot;: &quot;TCGA-V4-A9F5-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -2.342878580093384, &quot;y&quot;: -17.23300552368164, &quot;IDs&quot;: &quot;TCGA-V4-A9F7-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.5210733413696289, &quot;y&quot;: -17.77045249938965, &quot;IDs&quot;: &quot;TCGA-V4-A9F8-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -2.2668888568878174, &quot;y&quot;: -17.51433753967285, &quot;IDs&quot;: &quot;TCGA-VD-A8K7-01B-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.538823664188385, &quot;y&quot;: -16.12736701965332, &quot;IDs&quot;: &quot;TCGA-VD-A8K8-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.8323709964752197, &quot;y&quot;: -17.88129997253418, &quot;IDs&quot;: &quot;TCGA-VD-A8K9-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.2667261362075806, &quot;y&quot;: -17.61297035217285, &quot;IDs&quot;: &quot;TCGA-VD-A8KA-01B-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.2837998867034912, &quot;y&quot;: -18.290481567382812, &quot;IDs&quot;: &quot;TCGA-VD-A8KB-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.6042763590812683, &quot;y&quot;: -15.629520416259766, &quot;IDs&quot;: &quot;TCGA-VD-A8KD-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.6488354206085205, &quot;y&quot;: -16.83416748046875, &quot;IDs&quot;: &quot;TCGA-VD-A8KE-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.05249578133225441, &quot;y&quot;: -16.421897888183594, &quot;IDs&quot;: &quot;TCGA-VD-A8KF-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.2518874406814575, &quot;y&quot;: -17.663137435913086, &quot;IDs&quot;: &quot;TCGA-VD-A8KG-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.9682695865631104, &quot;y&quot;: -17.585344314575195, &quot;IDs&quot;: &quot;TCGA-VD-A8KH-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.8259284496307373, &quot;y&quot;: -17.237062454223633, &quot;IDs&quot;: &quot;TCGA-VD-A8KI-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.557492733001709, &quot;y&quot;: -17.755172729492188, &quot;IDs&quot;: &quot;TCGA-VD-A8KJ-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.5864917039871216, &quot;y&quot;: -17.208728790283203, &quot;IDs&quot;: &quot;TCGA-VD-A8KK-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.5429160594940186, &quot;y&quot;: -17.944759368896484, &quot;IDs&quot;: &quot;TCGA-VD-A8KL-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.9563775658607483, &quot;y&quot;: -15.579305648803711, &quot;IDs&quot;: &quot;TCGA-VD-A8KM-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.34573230147361755, &quot;y&quot;: -16.521133422851562, &quot;IDs&quot;: &quot;TCGA-VD-A8KN-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -2.3563570976257324, &quot;y&quot;: -17.58493995666504, &quot;IDs&quot;: &quot;TCGA-VD-A8KO-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.405390977859497, &quot;y&quot;: -17.072587966918945, &quot;IDs&quot;: &quot;TCGA-VD-AA8M-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 1.0996460914611816, &quot;y&quot;: -16.817384719848633, &quot;IDs&quot;: &quot;TCGA-VD-AA8N-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.9824725985527039, &quot;y&quot;: -16.945144653320312, &quot;IDs&quot;: &quot;TCGA-VD-AA8O-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.5770145654678345, &quot;y&quot;: -17.242759704589844, &quot;IDs&quot;: &quot;TCGA-VD-AA8P-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.8965428471565247, &quot;y&quot;: -16.52878189086914, &quot;IDs&quot;: &quot;TCGA-VD-AA8Q-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.7371045351028442, &quot;y&quot;: -16.898473739624023, &quot;IDs&quot;: &quot;TCGA-VD-AA8R-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.8849174976348877, &quot;y&quot;: -17.250600814819336, &quot;IDs&quot;: &quot;TCGA-VD-AA8S-01B-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.4756156802177429, &quot;y&quot;: -16.892333984375, &quot;IDs&quot;: &quot;TCGA-VD-AA8T-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -2.107426404953003, &quot;y&quot;: -17.183101654052734, &quot;IDs&quot;: &quot;TCGA-WC-A87T-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.6478420495986938, &quot;y&quot;: -16.946611404418945, &quot;IDs&quot;: &quot;TCGA-WC-A87U-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.5912083387374878, &quot;y&quot;: -17.00910186767578, &quot;IDs&quot;: &quot;TCGA-WC-A87W-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.14865608513355255, &quot;y&quot;: -16.08502960205078, &quot;IDs&quot;: &quot;TCGA-WC-A87Y-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.9221159219741821, &quot;y&quot;: -17.327539443969727, &quot;IDs&quot;: &quot;TCGA-WC-A880-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.9188838005065918, &quot;y&quot;: -17.54367446899414, &quot;IDs&quot;: &quot;TCGA-WC-A881-01A-12R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.49529674649238586, &quot;y&quot;: -16.684885025024414, &quot;IDs&quot;: &quot;TCGA-WC-A882-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.603705883026123, &quot;y&quot;: -16.20193862915039, &quot;IDs&quot;: &quot;TCGA-WC-A883-01A-12R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.521450400352478, &quot;y&quot;: -16.430191040039062, &quot;IDs&quot;: &quot;TCGA-WC-A884-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -1.5293960571289062, &quot;y&quot;: -18.028772354125977, &quot;IDs&quot;: &quot;TCGA-WC-A885-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.9954166412353516, &quot;y&quot;: -16.02841567993164, &quot;IDs&quot;: &quot;TCGA-WC-A888-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 1.065551519393921, &quot;y&quot;: -16.986230850219727, &quot;IDs&quot;: &quot;TCGA-WC-A88A-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.5314241051673889, &quot;y&quot;: -17.316884994506836, &quot;IDs&quot;: &quot;TCGA-WC-AA9A-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.8109596371650696, &quot;y&quot;: -17.9340763092041, &quot;IDs&quot;: &quot;TCGA-WC-AA9E-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.060716427862644196, &quot;y&quot;: -16.179973602294922, &quot;IDs&quot;: &quot;TCGA-YZ-A980-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -0.24982933700084686, &quot;y&quot;: -17.396900177001953, &quot;IDs&quot;: &quot;TCGA-YZ-A982-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: -2.1458845138549805, &quot;y&quot;: -17.345653533935547, &quot;IDs&quot;: &quot;TCGA-YZ-A983-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.04600955918431282, &quot;y&quot;: -17.58987808227539, &quot;IDs&quot;: &quot;TCGA-YZ-A984-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}, {&quot;x&quot;: 0.5772055387496948, &quot;y&quot;: -17.72458839416504, &quot;IDs&quot;: &quot;TCGA-YZ-A985-01A-11R-A405-07&quot;, &quot;Subtypes&quot;: &quot;33_UVM&quot;, &quot;colors&quot;: &quot;#ff0071&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#ff0071&quot;, &quot;name&quot;: &quot;33_UVM&quot;}]; var dataLen = data.length; for (var ix = 0; ix &lt; dataLen; ix++) { chart.addSeries(data[ix]); } }); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt;\" height=850 width=1000></iframe>"
      ],
      "text/plain": [
       "<highcharts.highcharts.highcharts.Highchart at 0x7f738b2d1860>"
      ]
     },
     "execution_count": 29,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "mp.plot_scatter()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3",
   "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.6.9"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 4
}