{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "from __future__ import print_function\n", "import pandas as pd \n", "import matplotlib.pyplot as plt \n", "import numpy as np \n", "from scipy.stats import zscore\n", "import seaborn as sns\n", "import sys,os\n", "from mapper import expand, parse_mapping_table, apply_mappers\n", "%matplotlib inline" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "gene_id = \"ENTREZID\"\n", "raw_data_dir = \"/home/olya/SFU/Hossein/PDX/\" \n", "preprocessed_data_dir = \"/home/olya/SFU/Hossein/v2/preprocessed/exprs/\"\n", "root_dir = \"/home/olya/SFU/Hossein/v2/\"\n", "# wget https://media.nature.com/original/nature-assets/nm/journal/v21/n11/extref/nm.3954-S2.xlsx\n", "# download Entrez ID mapping file" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# PDX \n", "\n", "- for 22665 Gene symbols are converted to Gene IDs \n", "- gene expression profiles (FPKM) for 399 samples converted to log2(TPM+1)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(22665, 399)\n" ] }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
X-1004X-1008X-1027X-1095X-1119X-1156X-1167X-1169X-1172X-1173...X-5713X-5717X-5727X-5739X-5808X-5959X-5974X-5975X-6030X-6047
Sample
A1BG2.758.970.140.130.0817.520.180.410.080.00...21.240.4618.700.008.3014.415.096.350.093.22
A1BG-AS12.483.250.000.000.006.520.000.000.000.00...15.210.093.420.008.308.363.714.520.003.24
A1CF0.020.031.302.832.870.723.410.011.842.96...0.010.450.000.010.000.000.020.034.630.02
A2LD14.870.816.454.9411.070.873.280.320.617.10...1.332.512.673.130.442.960.001.992.571.50
A2M0.0171.170.003.690.0058.160.000.0294.120.02...463.320.0433.350.00254.9741.522.320.000.000.16
\n", "

5 rows × 399 columns

\n", "
" ], "text/plain": [ " X-1004 X-1008 X-1027 X-1095 X-1119 X-1156 X-1167 X-1169 \\\n", "Sample \n", "A1BG 2.75 8.97 0.14 0.13 0.08 17.52 0.18 0.41 \n", "A1BG-AS1 2.48 3.25 0.00 0.00 0.00 6.52 0.00 0.00 \n", "A1CF 0.02 0.03 1.30 2.83 2.87 0.72 3.41 0.01 \n", "A2LD1 4.87 0.81 6.45 4.94 11.07 0.87 3.28 0.32 \n", "A2M 0.01 71.17 0.00 3.69 0.00 58.16 0.00 0.02 \n", "\n", " X-1172 X-1173 ... X-5713 X-5717 X-5727 X-5739 X-5808 \\\n", "Sample ... \n", "A1BG 0.08 0.00 ... 21.24 0.46 18.70 0.00 8.30 \n", "A1BG-AS1 0.00 0.00 ... 15.21 0.09 3.42 0.00 8.30 \n", "A1CF 1.84 2.96 ... 0.01 0.45 0.00 0.01 0.00 \n", "A2LD1 0.61 7.10 ... 1.33 2.51 2.67 3.13 0.44 \n", "A2M 94.12 0.02 ... 463.32 0.04 33.35 0.00 254.97 \n", "\n", " X-5959 X-5974 X-5975 X-6030 X-6047 \n", "Sample \n", "A1BG 14.41 5.09 6.35 0.09 3.22 \n", "A1BG-AS1 8.36 3.71 4.52 0.00 3.24 \n", "A1CF 0.00 0.02 0.03 4.63 0.02 \n", "A2LD1 2.96 0.00 1.99 2.57 1.50 \n", "A2M 41.52 2.32 0.00 0.00 0.16 \n", "\n", "[5 rows x 399 columns]" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "exprs = pd.read_excel(raw_data_dir+\"nm.3954-S2.xlsx\",\"RNAseq_fpkm\")\n", "exprs.set_index(\"Sample\",inplace=True,drop=True)\n", "print(exprs.shape)\n", "exprs.head() " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Mapping of gene symbols to EntrezID using current gene_info file prowided by NCBI:\n", "\n", "\n", " * Download the unzip the file \n", "\\# wget ftp://ftp.ncbi.nih.gov/gene/DATA/GENE_INFO/Mammalia/Homo_sapiens.gene_info.gz\n", "\\# gunzip Homo_sapiens.gene_info.gz;\n", " * Specify *hgnc_file* variable in this notebook\n", " * Mapping strategy\n", " \n", "1). Unknown genes and genes belonging to organisms other than H.sapiens were excluded.\n", "\n", "2). First each query symbol was tried to match with any of current \"Symbol\" directly. If the query symbol mapped to one of current symbol but has no Gene ID, the query symbol was marked as not mapped. \n", "\n", "3). If the query symbol matches none of current symbols, we tried to match it with one of \"Synonyms\". Genes matched no synonym as well as matched ambiguous synonyms correponding more than one Gene ID were condiered not mapped. \n", "\n", "4). At this point, many of not recognized symbols had LOCXXXXXXXXX format. \n", "According to the documntation provided by NCBI: \"Symbols beginning with LOC. When a published symbol is not available, and orthologs have not yet been determined, Gene will provide a symbol that is constructed as 'LOC' + the GeneID. This is not retained when a replacement symbol has been identified, although queries by the LOC term are still supported. In other words, a record with the symbol LOC12345 is equivalent to GeneID = 12345. So if the symbol changes, the record can still be retrieved on the web using LOC12345 as a query, or from any file using GeneID = 12345\" e.g. :\n", "\n", " - LOC100093631 -> 100093631 \n", " - LOC100129726 -> 100129726\n", " - etc. \n", "\n", "Therefore all genes started with LOC were converted to Gene IDs removing \"LOC\" from query term. If resulting Gene ID matched none of current Gene IDs the symbol was considered not mapped. \n", "\n", "4). Several pairs of query gene symbols matched current symbol and synonym of the same Entrez gene ID, e.g. AGAP8 and AGAP4, ANXA8L1 and ANXA8L2, etc.\n", "Expressions of these genes were summarized because such genes were merged to a single gene in newer assembly versions." ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "2547 rows with both Previous Symbols and Entrez Gene ID empty\n", "Ok: no duplicated pairs detected\n", "27336 rows with empty Previous Symbols were excluded\n", "173 Previous Symbols ids mapped to no Entrez Gene ID\n", "83 Previous Symbols mapped to multiple Entrez Gene ID\n", "4697 different Previous Symbols mapped to the same Entrez Gene ID\n", "9336 Previous Symbols can be mapped directly to Entrez Gene ID\n" ] } ], "source": [ "hgnc_file = root_dir+\"HGNC_5.10.2018.txt\"\n", "\n", "hgnc = pd.read_csv(hgnc_file, sep =\"\\t\",index_col=0)#\n", "#print(hgnc.shape, len(set(hgnc.index.values)))\n", "approved = hgnc.loc[hgnc[\"Status\"] == \"Approved\",:]\n", "hgnc_prev = expand(approved[[\"Previous Symbols\",\"Entrez Gene ID\"]],column=\"Previous Symbols\",sep=\", \") \n", "hgnc_prev = parse_mapping_table(hgnc_prev, \"Previous Symbols\",\"Entrez Gene ID\")" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "2224 rows with both Synonyms and Entrez Gene ID empty\n", "Ok: no duplicated pairs detected\n", "18283 rows with empty Synonyms were excluded\n", "662 Synonyms ids mapped to no Entrez Gene ID\n", "962 Synonyms mapped to multiple Entrez Gene ID\n", "27509 different Synonyms mapped to the same Entrez Gene ID\n", "10612 Synonyms can be mapped directly to Entrez Gene ID\n" ] } ], "source": [ "hgnc_syn = expand(approved[[\"Synonyms\",\"Entrez Gene ID\"]],column=\"Synonyms\",sep=\", \") \n", "hgnc_syn = parse_mapping_table(hgnc_syn, \"Synonyms\",\"Entrez Gene ID\")" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Ok: no empty rows detected\n", "Ok: no duplicated pairs detected\n", "Ok: All Symbol rows are not empty.\n", "Ok: All Symbol are mapped to GeneID\n", "16 Symbol mapped to multiple GeneID\n", "Ok: All GeneID are unique\n", "59266 Symbol can be mapped directly to GeneID\n" ] } ], "source": [ "NCBI = pd.read_csv(root_dir+\"Homo_sapiens.gene_info\",sep = \"\\t\")\n", "NCBI = NCBI[[\"#tax_id\",\"GeneID\",\"Symbol\",\"Synonyms\",\"type_of_gene\"]]\n", "NCBI = NCBI.loc[NCBI[\"#tax_id\"] == 9606]\n", "NCBI = NCBI.loc[NCBI[\"type_of_gene\"] != \"unknown\"]\n", "ncbi_symbols = parse_mapping_table(NCBI, \"Symbol\",\"GeneID\")" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Ok: no empty rows detected\n", "Ok: no duplicated pairs detected\n", "Ok: All Synonyms rows are not empty.\n", "Ok: All Synonyms are mapped to GeneID\n", "3145 Synonyms mapped to multiple GeneID\n", "49179 different Synonyms mapped to the same GeneID\n", "10839 Synonyms can be mapped directly to GeneID\n" ] } ], "source": [ "ncbi_synonyms = expand(NCBI[[\"Synonyms\",\"GeneID\"]],column=\"Synonyms\",sep=\"|\") \n", "ncbi_synonyms = parse_mapping_table(ncbi_synonyms, \"Synonyms\",\"GeneID\")" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Mapped: 22467 \n", "\tdirectly via main_mapper 20272 \n", "\tvia alternative mapper 471 \n", "\tvia one of multiple synonyms in alternative mapper 1026 \n", "\tLOC 698 \n", "Unmapped: 198 \n", "\trecognized symbols without Entrez ID 0 \n", "\tmultiple query_ids map to the same target_id 0 \n", "\tquery_ids map to multiple target_ids in the main mapper 0 \n", "\tquery_ids map to multiple target_ids in the alternative mapper 54 \n", "\tLOC not found in Entrez 26 \n", "\tNot found at all: 118\n", "Warning: query IDs mapping to duplicated target IDs in mapping table: 47\n", "Warning: query IDs not mapped to any target IDs excluded: 198\n" ] }, { "ename": "AttributeError", "evalue": "'tuple' object has no attribute 'head'", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0mexprs\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mapply_mappers\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mexprs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mncbi_symbols\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mncbi_synonyms\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mverbose\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mTrue\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mhandle_duplicates\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m\"sum\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 2\u001b[0;31m \u001b[0mexprs\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mhead\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m5\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", "\u001b[0;31mAttributeError\u001b[0m: 'tuple' object has no attribute 'head'" ] } ], "source": [ "exprs = apply_mappers(exprs, ncbi_symbols, ncbi_synonyms, verbose = True,handle_duplicates = \"sum\")\n", "exprs.head(5)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### FPKM to TPM conversion\n", "Let $X_i$ is a number of fragments mapped to a transcript, $N$ is a total number of fragments sequensed (and assigned to any transcript) and $\\widetilde{l_i}$ is an effective length of a transcript (i.e. how many fragments with average length $\\mu_{frag}$ can generate a transcript of length $l_i$: $\\widetilde{l_i} = l_i - \\mu_{frag}+1$)\n", "\n", "*FPKM* - fragments per kilobase of exon (i.e. effective length) per million reads mapped\n", "\n", "$FPKM_i = \\frac{X_i}{\\frac{$\\widetilde{l_i}}{10^3}*\\frac{N}{10^6}} = \\frac{X_i}{l_iN}*10^9 $\n", "\n", "*TPM* - transcripts per million of transcripts.\n", "\n", "In turn, $\\frac{X_i}{\\widetilde{l_i}}$ is estimated number of transcripts \n", "\n", "$TPM_i = \\frac{\\frac{X_i}{\\widetilde{l_i}}}{\\sum_j{\\frac{X_j}{\\widetilde{l_j}}}}*10^6 $\n", "\n", "\n", "### how to convert FPKM to TPM\n", "Divide both numerator and denominator by $N$ and mutiply by $10^9$:\n", "\n", "$TPM_i = \\frac{\\frac{X_i}{N\\widetilde{l_i}}*10^9}{\\sum_j{\\frac{X_j}{N\\widetilde{l_j}}*10^9}}*10^6 = \\frac{FPKM_i}{\\sum_j{FPKM_j}} * 10^6$\n", "\n", "Sources:\n", " - What the FPKM? https://haroldpimentel.wordpress.com/2014/05/08/what-the-fpkm-a-review-rna-seq-expression-units/\n", " - https://www.biostars.org/p/160989/\n", " - Lior Pachter https://arxiv.org/pdf/1104.3889.pdf\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "scrolled": true }, "outputs": [], "source": [ "## FPKM convert to log2(TPM+1)\n", "sum_fpkm = exprs.apply(sum,axis=0)\n", "sum_fpkm.head()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "tpm = exprs / sum_fpkm *1000000 +1\n", "tpm.head()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "\n", "tpm = tpm.applymap(np.log2)\n", "#tpm.to_csv(preprocessed_data_dir + \"/PDX.FPKM2TPMplus1log2.Expr.tsv\",sep=\"\\t\")\n", "print(tpm.shape)\n", "tpm.head()\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# TCGA \n", "\n", "* from http://gdac.broadinstitute.org/runs/stddata__2016_01_18/data/ download RSEM files, \"scaled estimate\" per gene. \n", "\n", "* RSEM Scaled estimate is an aboundance of a transcript divided by sum of aboundance over all the transcripts. Therefore $TPM_i=ScaledEstimate_i*10^6$\n", "\n", "* Resulted TPM were log2-transformed" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "# replace with downloading \n", "tcga_tmp_dir = \"/home/olya/SFU/Hossein/TCGA/expression__2016_01_28/\"" ] }, { "cell_type": "code", "execution_count": 10, "metadata": { "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "gdac.broadinstitute.org_BRCA.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 BRCA\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926,928,929,931,932,934,935,937,938,940,941,943,944,946,947,949,950,952,953,955,956,958,959,961,962,964,965,967,968,970,971,973,974,976,977,979,980,982,983,985,986,988,989,991,992,994,995,997,998,1000,1001,1003,1004,1006,1007,1009,1010,1012,1013,1015,1016,1018,1019,1021,1022,1024,1025,1027,1028,1030,1031,1033,1034,1036,1037,1039,1040,1042,1043,1045,1046,1048,1049,1051,1052,1054,1055,1057,1058,1060,1061,1063,1064,1066,1067,1069,1070,1072,1073,1075,1076,1078,1079,1081,1082,1084,1085,1087,1088,1090,1091,1093,1094,1096,1097,1099,1100,1102,1103,1105,1106,1108,1109,1111,1112,1114,1115,1117,1118,1120,1121,1123,1124,1126,1127,1129,1130,1132,1133,1135,1136,1138,1139,1141,1142,1144,1145,1147,1148,1150,1151,1153,1154,1156,1157,1159,1160,1162,1163,1165,1166,1168,1169,1171,1172,1174,1175,1177,1178,1180,1181,1183,1184,1186,1187,1189,1190,1192,1193,1195,1196,1198,1199,1201,1202,1204,1205,1207,1208,1210,1211,1213,1214,1216,1217,1219,1220,1222,1223,1225,1226,1228,1229,1231,1232,1234,1235,1237,1238,1240,1241,1243,1244,1246,1247,1249,1250,1252,1253,1255,1256,1258,1259,1261,1262,1264,1265,1267,1268,1270,1271,1273,1274,1276,1277,1279,1280,1282,1283,1285,1286,1288,1289,1291,1292,1294,1295,1297,1298,1300,1301,1303,1304,1306,1307,1309,1310,1312,1313,1315,1316,1318,1319,1321,1322,1324,1325,1327,1328,1330,1331,1333,1334,1336,1337,1339,1340,1342,1343,1345,1346,1348,1349,1351,1352,1354,1355,1357,1358,1360,1361,1363,1364,1366,1367,1369,1370,1372,1373,1375,1376,1378,1379,1381,1382,1384,1385,1387,1388,1390,1391,1393,1394,1396,1397,1399,1400,1402,1403,1405,1406,1408,1409,1411,1412,1414,1415,1417,1418,1420,1421,1423,1424,1426,1427,1429,1430,1432,1433,1435,1436,1438,1439,1441,1442,1444,1445,1447,1448,1450,1451,1453,1454,1456,1457,1459,1460,1462,1463,1465,1466,1468,1469,1471,1472,1474,1475,1477,1478,1480,1481,1483,1484,1486,1487,1489,1490,1492,1493,1495,1496,1498,1499,1501,1502,1504,1505,1507,1508,1510,1511,1513,1514,1516,1517,1519,1520,1522,1523,1525,1526,1528,1529,1531,1532,1534,1535,1537,1538,1540,1541,1543,1544,1546,1547,1549,1550,1552,1553,1555,1556,1558,1559,1561,1562,1564,1565,1567,1568,1570,1571,1573,1574,1576,1577,1579,1580,1582,1583,1585,1586,1588,1589,1591,1592,1594,1595,1597,1598,1600,1601,1603,1604,1606,1607,1609,1610,1612,1613,1615,1616,1618,1619,1621,1622,1624,1625,1627,1628,1630,1631,1633,1634,1636,1637,1639,1640,1642,1643,1645,1646,1648,1649,1651,1652,1654,1655,1657,1658,1660,1661,1663,1664,1666,1667,1669,1670,1672,1673,1675,1676,1678,1679,1681,1682,1684,1685,1687,1688,1690,1691,1693,1694,1696,1697,1699,1700,1702,1703,1705,1706,1708,1709,1711,1712,1714,1715,1717,1718,1720,1721,1723,1724,1726,1727,1729,1730,1732,1733,1735,1736,1738,1739,1741,1742,1744,1745,1747,1748,1750,1751,1753,1754,1756,1757,1759,1760,1762,1763,1765,1766,1768,1769,1771,1772,1774,1775,1777,1778,1780,1781,1783,1784,1786,1787,1789,1790,1792,1793,1795,1796,1798,1799,1801,1802,1804,1805,1807,1808,1810,1811,1813,1814,1816,1817,1819,1820,1822,1823,1825,1826,1828,1829,1831,1832,1834,1835,1837,1838,1840,1841,1843,1844,1846,1847,1849,1850,1852,1853,1855,1856,1858,1859,1861,1862,1864,1865,1867,1868,1870,1871,1873,1874,1876,1877,1879,1880,1882,1883,1885,1886,1888,1889,1891,1892,1894,1895,1897,1898,1900,1901,1903,1904,1906,1907,1909,1910,1912,1913,1915,1916,1918,1919,1921,1922,1924,1925,1927,1928,1930,1931,1933,1934,1936,1937,1939,1940,1942,1943,1945,1946,1948,1949,1951,1952,1954,1955,1957,1958,1960,1961,1963,1964,1966,1967,1969,1970,1972,1973,1975,1976,1978,1979,1981,1982,1984,1985,1987,1988,1990,1991,1993,1994,1996,1997,1999,2000,2002,2003,2005,2006,2008,2009,2011,2012,2014,2015,2017,2018,2020,2021,2023,2024,2026,2027,2029,2030,2032,2033,2035,2036,2038,2039,2041,2042,2044,2045,2047,2048,2050,2051,2053,2054,2056,2057,2059,2060,2062,2063,2065,2066,2068,2069,2071,2072,2074,2075,2077,2078,2080,2081,2083,2084,2086,2087,2089,2090,2092,2093,2095,2096,2098,2099,2101,2102,2104,2105,2107,2108,2110,2111,2113,2114,2116,2117,2119,2120,2122,2123,2125,2126,2128,2129,2131,2132,2134,2135,2137,2138,2140,2141,2143,2144,2146,2147,2149,2150,2152,2153,2155,2156,2158,2159,2161,2162,2164,2165,2167,2168,2170,2171,2173,2174,2176,2177,2179,2180,2182,2183,2185,2186,2188,2189,2191,2192,2194,2195,2197,2198,2200,2201,2203,2204,2206,2207,2209,2210,2212,2213,2215,2216,2218,2219,2221,2222,2224,2225,2227,2228,2230,2231,2233,2234,2236,2237,2239,2240,2242,2243,2245,2246,2248,2249,2251,2252,2254,2255,2257,2258,2260,2261,2263,2264,2266,2267,2269,2270,2272,2273,2275,2276,2278,2279,2281,2282,2284,2285,2287,2288,2290,2291,2293,2294,2296,2297,2299,2300,2302,2303,2305,2306,2308,2309,2311,2312,2314,2315,2317,2318,2320,2321,2323,2324,2326,2327,2329,2330,2332,2333,2335,2336,2338,2339,2341,2342,2344,2345,2347,2348,2350,2351,2353,2354,2356,2357,2359,2360,2362,2363,2365,2366,2368,2369,2371,2372,2374,2375,2377,2378,2380,2381,2383,2384,2386,2387,2389,2390,2392,2393,2395,2396,2398,2399,2401,2402,2404,2405,2407,2408,2410,2411,2413,2414,2416,2417,2419,2420,2422,2423,2425,2426,2428,2429,2431,2432,2434,2435,2437,2438,2440,2441,2443,2444,2446,2447,2449,2450,2452,2453,2455,2456,2458,2459,2461,2462,2464,2465,2467,2468,2470,2471,2473,2474,2476,2477,2479,2480,2482,2483,2485,2486,2488,2489,2491,2492,2494,2495,2497,2498,2500,2501,2503,2504,2506,2507,2509,2510,2512,2513,2515,2516,2518,2519,2521,2522,2524,2525,2527,2528,2530,2531,2533,2534,2536,2537,2539,2540,2542,2543,2545,2546,2548,2549,2551,2552,2554,2555,2557,2558,2560,2561,2563,2564,2566,2567,2569,2570,2572,2573,2575,2576,2578,2579,2581,2582,2584,2585,2587,2588,2590,2591,2593,2594,2596,2597,2599,2600,2602,2603,2605,2606,2608,2609,2611,2612,2614,2615,2617,2618,2620,2621,2623,2624,2626,2627,2629,2630,2632,2633,2635,2636,2638,2639,2641,2642,2644,2645,2647,2648,2650,2651,2653,2654,2656,2657,2659,2660,2662,2663,2665,2666,2668,2669,2671,2672,2674,2675,2677,2678,2680,2681,2683,2684,2686,2687,2689,2690,2692,2693,2695,2696,2698,2699,2701,2702,2704,2705,2707,2708,2710,2711,2713,2714,2716,2717,2719,2720,2722,2723,2725,2726,2728,2729,2731,2732,2734,2735,2737,2738,2740,2741,2743,2744,2746,2747,2749,2750,2752,2753,2755,2756,2758,2759,2761,2762,2764,2765,2767,2768,2770,2771,2773,2774,2776,2777,2779,2780,2782,2783,2785,2786,2788,2789,2791,2792,2794,2795,2797,2798,2800,2801,2803,2804,2806,2807,2809,2810,2812,2813,2815,2816,2818,2819,2821,2822,2824,2825,2827,2828,2830,2831,2833,2834,2836,2837,2839,2840,2842,2843,2845,2846,2848,2849,2851,2852,2854,2855,2857,2858,2860,2861,2863,2864,2866,2867,2869,2870,2872,2873,2875,2876,2878,2879,2881,2882,2884,2885,2887,2888,2890,2891,2893,2894,2896,2897,2899,2900,2902,2903,2905,2906,2908,2909,2911,2912,2914,2915,2917,2918,2920,2921,2923,2924,2926,2927,2929,2930,2932,2933,2935,2936,2938,2939,2941,2942,2944,2945,2947,2948,2950,2951,2953,2954,2956,2957,2959,2960,2962,2963,2965,2966,2968,2969,2971,2972,2974,2975,2977,2978,2980,2981,2983,2984,2986,2987,2989,2990,2992,2993,2995,2996,2998,2999,3001,3002,3004,3005,3007,3008,3010,3011,3013,3014,3016,3017,3019,3020,3022,3023,3025,3026,3028,3029,3031,3032,3034,3035,3037,3038,3040,3041,3043,3044,3046,3047,3049,3050,3052,3053,3055,3056,3058,3059,3061,3062,3064,3065,3067,3068,3070,3071,3073,3074,3076,3077,3079,3080,3082,3083,3085,3086,3088,3089,3091,3092,3094,3095,3097,3098,3100,3101,3103,3104,3106,3107,3109,3110,3112,3113,3115,3116,3118,3119,3121,3122,3124,3125,3127,3128,3130,3131,3133,3134,3136,3137,3139,3140,3142,3143,3145,3146,3148,3149,3151,3152,3154,3155,3157,3158,3160,3161,3163,3164,3166,3167,3169,3170,3172,3173,3175,3176,3178,3179,3181,3182,3184,3185,3187,3188,3190,3191,3193,3194,3196,3197,3199,3200,3202,3203,3205,3206,3208,3209,3211,3212,3214,3215,3217,3218,3220,3221,3223,3224,3226,3227,3229,3230,3232,3233,3235,3236,3238,3239,3241,3242,3244,3245,3247,3248,3250,3251,3253,3254,3256,3257,3259,3260,3262,3263,3265,3266,3268,3269,3271,3272,3274,3275,3277,3278,3280,3281,3283,3284,3286,3287,3289,3290,3292,3293,3295,3296,3298,3299,3301,3302,3304,3305,3307,3308,3310,3311,3313,3314,3316,3317,3319,3320,3322,3323,3325,3326,3328,3329,3331,3332,3334,3335,3337,3338,3340,3341,3343,3344,3346,3347,3349,3350,3352,3353,3355,3356,3358,3359,3361,3362,3364,3365,3367,3368,3370,3371,3373,3374,3376,3377,3379,3380,3382,3383,3385,3386,3388,3389,3391,3392,3394,3395,3397,3398,3400,3401,3403,3404,3406,3407,3409,3410,3412,3413,3415,3416,3418,3419,3421,3422,3424,3425,3427,3428,3430,3431,3433,3434,3436,3437,3439,3440,3442,3443,3445,3446,3448,3449,3451,3452,3454,3455,3457,3458,3460,3461,3463,3464,3466,3467,3469,3470,3472,3473,3475,3476,3478,3479,3481,3482,3484,3485,3487,3488,3490,3491,3493,3494,3496,3497,3499,3500,3502,3503,3505,3506,3508,3509,3511,3512,3514,3515,3517,3518,3520,3521,3523,3524,3526,3527,3529,3530,3532,3533,3535,3536,3538,3539,3541,3542,3544,3545,3547,3548,3550,3551,3553,3554,3556,3557,3559,3560,3562,3563,3565,3566,3568,3569,3571,3572,3574,3575,3577,3578,3580,3581,3583,3584,3586,3587,3589,3590,3592,3593,3595,3596,3598,3599,3601,3602,3604,3605,3607,3608,3610,3611,3613,3614,3616,3617,3619,3620,3622,3623,3625,3626,3628,3629,3631,3632,3634,3635) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "BRCA (20531, 1212)\n", "gdac.broadinstitute.org_STES.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 STES\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926,928,929,931,932,934,935,937,938,940,941,943,944,946,947,949,950,952,953,955,956,958,959,961,962,964,965,967,968,970,971,973,974,976,977,979,980,982,983,985,986,988,989,991,992,994,995,997,998,1000,1001,1003,1004,1006,1007,1009,1010,1012,1013,1015,1016,1018,1019,1021,1022,1024,1025,1027,1028,1030,1031,1033,1034,1036,1037,1039,1040,1042,1043,1045,1046,1048,1049,1051,1052,1054,1055,1057,1058,1060,1061,1063,1064,1066,1067,1069,1070,1072,1073,1075,1076,1078,1079,1081,1082,1084,1085,1087,1088,1090,1091,1093,1094,1096,1097,1099,1100,1102,1103,1105,1106,1108,1109,1111,1112,1114,1115,1117,1118,1120,1121,1123,1124,1126,1127,1129,1130,1132,1133,1135,1136,1138,1139,1141,1142,1144,1145,1147,1148,1150,1151,1153,1154,1156,1157,1159,1160,1162,1163,1165,1166,1168,1169,1171,1172,1174,1175,1177,1178,1180,1181,1183,1184,1186,1187,1189,1190,1192,1193,1195,1196,1198,1199,1201,1202,1204,1205,1207,1208,1210,1211,1213,1214,1216,1217,1219,1220,1222,1223,1225,1226,1228,1229,1231,1232,1234,1235,1237,1238,1240,1241,1243,1244,1246,1247,1249,1250,1252,1253,1255,1256,1258,1259,1261,1262,1264,1265,1267,1268,1270,1271,1273,1274,1276,1277,1279,1280,1282,1283,1285,1286,1288,1289,1291,1292,1294,1295,1297,1298,1300,1301,1303,1304,1306,1307,1309,1310,1312,1313,1315,1316,1318,1319,1321,1322,1324,1325,1327,1328,1330,1331,1333,1334,1336,1337,1339,1340,1342,1343,1345,1346,1348,1349,1351,1352,1354,1355,1357,1358,1360,1361,1363,1364,1366,1367,1369,1370,1372,1373,1375,1376,1378,1379,1381,1382,1384,1385,1387,1388,1390,1391,1393,1394,1396,1397,1399,1400,1402,1403,1405,1406,1408,1409,1411,1412,1414,1415,1417,1418,1420,1421,1423,1424,1426,1427,1429,1430,1432,1433,1435,1436,1438,1439,1441,1442,1444,1445,1447,1448,1450,1451,1453,1454,1456,1457,1459,1460,1462,1463,1465,1466,1468,1469,1471,1472,1474,1475,1477,1478,1480,1481,1483,1484,1486,1487,1489,1490,1492,1493,1495,1496,1498,1499,1501,1502,1504,1505,1507,1508,1510,1511,1513,1514,1516,1517,1519,1520,1522,1523,1525,1526,1528,1529,1531,1532,1534,1535,1537,1538,1540,1541,1543,1544,1546,1547,1549,1550,1552,1553,1555,1556,1558,1559,1561,1562,1564,1565,1567,1568,1570,1571,1573,1574,1576,1577,1579,1580,1582,1583,1585,1586,1588,1589,1591,1592,1594,1595,1597,1598,1600,1601,1603,1604,1606,1607,1609,1610,1612,1613,1615,1616,1618,1619,1621,1622,1624,1625,1627,1628,1630,1631,1633,1634,1636,1637,1639,1640,1642,1643,1645,1646,1648,1649,1651,1652,1654,1655,1657,1658,1660,1661,1663,1664,1666,1667,1669,1670,1672,1673,1675,1676,1678,1679,1681,1682,1684,1685,1687,1688,1690,1691,1693,1694,1696,1697,1699,1700,1702,1703,1705,1706,1708,1709,1711,1712,1714,1715,1717,1718,1720,1721,1723,1724,1726,1727,1729,1730,1732,1733,1735,1736,1738,1739,1741,1742,1744,1745,1747,1748,1750,1751,1753,1754,1756,1757,1759,1760,1762,1763,1765,1766,1768,1769,1771,1772,1774,1775,1777,1778,1780,1781,1783,1784,1786,1787,1789,1790,1792,1793,1795,1796,1798,1799,1801,1802,1804,1805,1807,1808,1810,1811,1813,1814,1816,1817,1819,1820,1822,1823,1825,1826,1828,1829,1831,1832,1834,1835,1837,1838,1840,1841,1843,1844,1846,1847,1849,1850,1852,1853,1855,1856,1858,1859,1861,1862,1864,1865,1867,1868,1870,1871,1873,1874,1876,1877,1879,1880,1882,1883,1885,1886,1888,1889,1891,1892,1894,1895,1897,1898,1900,1901,1903,1904,1906,1907,1909,1910,1912,1913,1915,1916,1918,1919,1921,1922,1924,1925,1927,1928,1930,1931,1933,1934,1936,1937) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "STES (20531, 646)\n", "gdac.broadinstitute.org_SKCM.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 SKCM\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926,928,929,931,932,934,935,937,938,940,941,943,944,946,947,949,950,952,953,955,956,958,959,961,962,964,965,967,968,970,971,973,974,976,977,979,980,982,983,985,986,988,989,991,992,994,995,997,998,1000,1001,1003,1004,1006,1007,1009,1010,1012,1013,1015,1016,1018,1019,1021,1022,1024,1025,1027,1028,1030,1031,1033,1034,1036,1037,1039,1040,1042,1043,1045,1046,1048,1049,1051,1052,1054,1055,1057,1058,1060,1061,1063,1064,1066,1067,1069,1070,1072,1073,1075,1076,1078,1079,1081,1082,1084,1085,1087,1088,1090,1091,1093,1094,1096,1097,1099,1100,1102,1103,1105,1106,1108,1109,1111,1112,1114,1115,1117,1118,1120,1121,1123,1124,1126,1127,1129,1130,1132,1133,1135,1136,1138,1139,1141,1142,1144,1145,1147,1148,1150,1151,1153,1154,1156,1157,1159,1160,1162,1163,1165,1166,1168,1169,1171,1172,1174,1175,1177,1178,1180,1181,1183,1184,1186,1187,1189,1190,1192,1193,1195,1196,1198,1199,1201,1202,1204,1205,1207,1208,1210,1211,1213,1214,1216,1217,1219,1220,1222,1223,1225,1226,1228,1229,1231,1232,1234,1235,1237,1238,1240,1241,1243,1244,1246,1247,1249,1250,1252,1253,1255,1256,1258,1259,1261,1262,1264,1265,1267,1268,1270,1271,1273,1274,1276,1277,1279,1280,1282,1283,1285,1286,1288,1289,1291,1292,1294,1295,1297,1298,1300,1301,1303,1304,1306,1307,1309,1310,1312,1313,1315,1316,1318,1319,1321,1322,1324,1325,1327,1328,1330,1331,1333,1334,1336,1337,1339,1340,1342,1343,1345,1346,1348,1349,1351,1352,1354,1355,1357,1358,1360,1361,1363,1364,1366,1367,1369,1370,1372,1373,1375,1376,1378,1379,1381,1382,1384,1385,1387,1388,1390,1391,1393,1394,1396,1397,1399,1400,1402,1403,1405,1406,1408,1409,1411,1412,1414,1415,1417,1418) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "SKCM (20531, 473)\n", "gdac.broadinstitute.org_PAAD.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 PAAD\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "PAAD (20531, 183)\n", "gdac.broadinstitute.org_PCPG.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 PCPG\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "PCPG (20531, 187)\n", "gdac.broadinstitute.org_UCS.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 UCS\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "UCS (20531, 57)\n", "gdac.broadinstitute.org_THCA.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 THCA\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926,928,929,931,932,934,935,937,938,940,941,943,944,946,947,949,950,952,953,955,956,958,959,961,962,964,965,967,968,970,971,973,974,976,977,979,980,982,983,985,986,988,989,991,992,994,995,997,998,1000,1001,1003,1004,1006,1007,1009,1010,1012,1013,1015,1016,1018,1019,1021,1022,1024,1025,1027,1028,1030,1031,1033,1034,1036,1037,1039,1040,1042,1043,1045,1046,1048,1049,1051,1052,1054,1055,1057,1058,1060,1061,1063,1064,1066,1067,1069,1070,1072,1073,1075,1076,1078,1079,1081,1082,1084,1085,1087,1088,1090,1091,1093,1094,1096,1097,1099,1100,1102,1103,1105,1106,1108,1109,1111,1112,1114,1115,1117,1118,1120,1121,1123,1124,1126,1127,1129,1130,1132,1133,1135,1136,1138,1139,1141,1142,1144,1145,1147,1148,1150,1151,1153,1154,1156,1157,1159,1160,1162,1163,1165,1166,1168,1169,1171,1172,1174,1175,1177,1178,1180,1181,1183,1184,1186,1187,1189,1190,1192,1193,1195,1196,1198,1199,1201,1202,1204,1205,1207,1208,1210,1211,1213,1214,1216,1217,1219,1220,1222,1223,1225,1226,1228,1229,1231,1232,1234,1235,1237,1238,1240,1241,1243,1244,1246,1247,1249,1250,1252,1253,1255,1256,1258,1259,1261,1262,1264,1265,1267,1268,1270,1271,1273,1274,1276,1277,1279,1280,1282,1283,1285,1286,1288,1289,1291,1292,1294,1295,1297,1298,1300,1301,1303,1304,1306,1307,1309,1310,1312,1313,1315,1316,1318,1319,1321,1322,1324,1325,1327,1328,1330,1331,1333,1334,1336,1337,1339,1340,1342,1343,1345,1346,1348,1349,1351,1352,1354,1355,1357,1358,1360,1361,1363,1364,1366,1367,1369,1370,1372,1373,1375,1376,1378,1379,1381,1382,1384,1385,1387,1388,1390,1391,1393,1394,1396,1397,1399,1400,1402,1403,1405,1406,1408,1409,1411,1412,1414,1415,1417,1418,1420,1421,1423,1424,1426,1427,1429,1430,1432,1433,1435,1436,1438,1439,1441,1442,1444,1445,1447,1448,1450,1451,1453,1454,1456,1457,1459,1460,1462,1463,1465,1466,1468,1469,1471,1472,1474,1475,1477,1478,1480,1481,1483,1484,1486,1487,1489,1490,1492,1493,1495,1496,1498,1499,1501,1502,1504,1505,1507,1508,1510,1511,1513,1514,1516,1517,1519,1520,1522,1523,1525,1526,1528,1529,1531,1532,1534,1535,1537,1538,1540,1541,1543,1544,1546,1547,1549,1550,1552,1553,1555,1556,1558,1559,1561,1562,1564,1565,1567,1568,1570,1571,1573,1574,1576,1577,1579,1580,1582,1583,1585,1586,1588,1589,1591,1592,1594,1595,1597,1598,1600,1601,1603,1604,1606,1607,1609,1610,1612,1613,1615,1616,1618,1619,1621,1622,1624,1625,1627,1628,1630,1631,1633,1634,1636,1637,1639,1640,1642,1643,1645,1646,1648,1649,1651,1652,1654,1655,1657,1658,1660,1661,1663,1664,1666,1667,1669,1670,1672,1673,1675,1676,1678,1679,1681,1682,1684,1685,1687,1688,1690,1691,1693,1694,1696,1697,1699,1700,1702,1703) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "THCA (20531, 568)\n", "gdac.broadinstitute.org_CESC.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 CESC\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "CESC (20531, 309)\n", "gdac.broadinstitute.org_KIRP.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 KIRP\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926,928,929,931,932,934,935,937,938,940,941,943,944,946,947,949,950,952,953,955,956,958,959,961,962,964,965,967,968) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "KIRP (20531, 323)\n", "gdac.broadinstitute.org_COAD.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 COAD\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926,928,929,931,932,934,935,937,938,940,941,943,944,946,947,949,950,952,953,955,956,958,959,961,962,964,965,967,968,970,971,973,974,976,977,979,980,982,983) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "COAD (20531, 328)\n", "gdac.broadinstitute.org_KIRC.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 KIRC\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926,928,929,931,932,934,935,937,938,940,941,943,944,946,947,949,950,952,953,955,956,958,959,961,962,964,965,967,968,970,971,973,974,976,977,979,980,982,983,985,986,988,989,991,992,994,995,997,998,1000,1001,1003,1004,1006,1007,1009,1010,1012,1013,1015,1016,1018,1019,1021,1022,1024,1025,1027,1028,1030,1031,1033,1034,1036,1037,1039,1040,1042,1043,1045,1046,1048,1049,1051,1052,1054,1055,1057,1058,1060,1061,1063,1064,1066,1067,1069,1070,1072,1073,1075,1076,1078,1079,1081,1082,1084,1085,1087,1088,1090,1091,1093,1094,1096,1097,1099,1100,1102,1103,1105,1106,1108,1109,1111,1112,1114,1115,1117,1118,1120,1121,1123,1124,1126,1127,1129,1130,1132,1133,1135,1136,1138,1139,1141,1142,1144,1145,1147,1148,1150,1151,1153,1154,1156,1157,1159,1160,1162,1163,1165,1166,1168,1169,1171,1172,1174,1175,1177,1178,1180,1181,1183,1184,1186,1187,1189,1190,1192,1193,1195,1196,1198,1199,1201,1202,1204,1205,1207,1208,1210,1211,1213,1214,1216,1217,1219,1220,1222,1223,1225,1226,1228,1229,1231,1232,1234,1235,1237,1238,1240,1241,1243,1244,1246,1247,1249,1250,1252,1253,1255,1256,1258,1259,1261,1262,1264,1265,1267,1268,1270,1271,1273,1274,1276,1277,1279,1280,1282,1283,1285,1286,1288,1289,1291,1292,1294,1295,1297,1298,1300,1301,1303,1304,1306,1307,1309,1310,1312,1313,1315,1316,1318,1319,1321,1322,1324,1325,1327,1328,1330,1331,1333,1334,1336,1337,1339,1340,1342,1343,1345,1346,1348,1349,1351,1352,1354,1355,1357,1358,1360,1361,1363,1364,1366,1367,1369,1370,1372,1373,1375,1376,1378,1379,1381,1382,1384,1385,1387,1388,1390,1391,1393,1394,1396,1397,1399,1400,1402,1403,1405,1406,1408,1409,1411,1412,1414,1415,1417,1418,1420,1421,1423,1424,1426,1427,1429,1430,1432,1433,1435,1436,1438,1439,1441,1442,1444,1445,1447,1448,1450,1451,1453,1454,1456,1457,1459,1460,1462,1463,1465,1466,1468,1469,1471,1472,1474,1475,1477,1478,1480,1481,1483,1484,1486,1487,1489,1490,1492,1493,1495,1496,1498,1499,1501,1502,1504,1505,1507,1508,1510,1511,1513,1514,1516,1517,1519,1520,1522,1523,1525,1526,1528,1529,1531,1532,1534,1535,1537,1538,1540,1541,1543,1544,1546,1547,1549,1550,1552,1553,1555,1556,1558,1559,1561,1562,1564,1565,1567,1568,1570,1571,1573,1574,1576,1577,1579,1580,1582,1583,1585,1586,1588,1589,1591,1592,1594,1595,1597,1598,1600,1601,1603,1604,1606,1607,1609,1610,1612,1613,1615,1616,1618,1619,1621,1622,1624,1625,1627,1628,1630,1631,1633,1634,1636,1637,1639,1640,1642,1643,1645,1646,1648,1649,1651,1652,1654,1655,1657,1658,1660,1661,1663,1664,1666,1667,1669,1670,1672,1673,1675,1676,1678,1679,1681,1682,1684,1685,1687,1688,1690,1691,1693,1694,1696,1697,1699,1700,1702,1703,1705,1706,1708,1709,1711,1712,1714,1715,1717,1718,1720,1721,1723,1724,1726,1727,1729,1730,1732,1733,1735,1736,1738,1739,1741,1742,1744,1745,1747,1748,1750,1751,1753,1754,1756,1757,1759,1760,1762,1763,1765,1766,1768,1769,1771,1772,1774,1775,1777,1778,1780,1781,1783,1784,1786,1787,1789,1790,1792,1793,1795,1796,1798,1799,1801,1802,1804,1805,1807,1808,1810,1811,1813,1814,1816,1817) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "KIRC (20531, 606)\n", "gdac.broadinstitute.org_THYM.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 THYM\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "THYM (20531, 122)\n", "gdac.broadinstitute.org_LIHC.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 LIHC\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926,928,929,931,932,934,935,937,938,940,941,943,944,946,947,949,950,952,953,955,956,958,959,961,962,964,965,967,968,970,971,973,974,976,977,979,980,982,983,985,986,988,989,991,992,994,995,997,998,1000,1001,1003,1004,1006,1007,1009,1010,1012,1013,1015,1016,1018,1019,1021,1022,1024,1025,1027,1028,1030,1031,1033,1034,1036,1037,1039,1040,1042,1043,1045,1046,1048,1049,1051,1052,1054,1055,1057,1058,1060,1061,1063,1064,1066,1067,1069,1070,1072,1073,1075,1076,1078,1079,1081,1082,1084,1085,1087,1088,1090,1091,1093,1094,1096,1097,1099,1100,1102,1103,1105,1106,1108,1109,1111,1112,1114,1115,1117,1118,1120,1121,1123,1124,1126,1127,1129,1130,1132,1133,1135,1136,1138,1139,1141,1142,1144,1145,1147,1148,1150,1151,1153,1154,1156,1157,1159,1160,1162,1163,1165,1166,1168,1169,1171,1172,1174,1175,1177,1178,1180,1181,1183,1184,1186,1187,1189,1190,1192,1193,1195,1196,1198,1199,1201,1202,1204,1205,1207,1208,1210,1211,1213,1214,1216,1217,1219,1220,1222,1223,1225,1226,1228,1229,1231,1232,1234,1235,1237,1238,1240,1241,1243,1244,1246,1247,1249,1250,1252,1253,1255,1256,1258,1259,1261,1262,1264,1265,1267,1268) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "LIHC (20531, 423)\n", "gdac.broadinstitute.org_READ.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 READ\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "READ (20531, 105)\n", "gdac.broadinstitute.org_GBM.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 GBM\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "GBM (20531, 171)\n", "gdac.broadinstitute.org_LUAD.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 LUAD\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926,928,929,931,932,934,935,937,938,940,941,943,944,946,947,949,950,952,953,955,956,958,959,961,962,964,965,967,968,970,971,973,974,976,977,979,980,982,983,985,986,988,989,991,992,994,995,997,998,1000,1001,1003,1004,1006,1007,1009,1010,1012,1013,1015,1016,1018,1019,1021,1022,1024,1025,1027,1028,1030,1031,1033,1034,1036,1037,1039,1040,1042,1043,1045,1046,1048,1049,1051,1052,1054,1055,1057,1058,1060,1061,1063,1064,1066,1067,1069,1070,1072,1073,1075,1076,1078,1079,1081,1082,1084,1085,1087,1088,1090,1091,1093,1094,1096,1097,1099,1100,1102,1103,1105,1106,1108,1109,1111,1112,1114,1115,1117,1118,1120,1121,1123,1124,1126,1127,1129,1130,1132,1133,1135,1136,1138,1139,1141,1142,1144,1145,1147,1148,1150,1151,1153,1154,1156,1157,1159,1160,1162,1163,1165,1166,1168,1169,1171,1172,1174,1175,1177,1178,1180,1181,1183,1184,1186,1187,1189,1190,1192,1193,1195,1196,1198,1199,1201,1202,1204,1205,1207,1208,1210,1211,1213,1214,1216,1217,1219,1220,1222,1223,1225,1226,1228,1229,1231,1232,1234,1235,1237,1238,1240,1241,1243,1244,1246,1247,1249,1250,1252,1253,1255,1256,1258,1259,1261,1262,1264,1265,1267,1268,1270,1271,1273,1274,1276,1277,1279,1280,1282,1283,1285,1286,1288,1289,1291,1292,1294,1295,1297,1298,1300,1301,1303,1304,1306,1307,1309,1310,1312,1313,1315,1316,1318,1319,1321,1322,1324,1325,1327,1328,1330,1331,1333,1334,1336,1337,1339,1340,1342,1343,1345,1346,1348,1349,1351,1352,1354,1355,1357,1358,1360,1361,1363,1364,1366,1367,1369,1370,1372,1373,1375,1376,1378,1379,1381,1382,1384,1385,1387,1388,1390,1391,1393,1394,1396,1397,1399,1400,1402,1403,1405,1406,1408,1409,1411,1412,1414,1415,1417,1418,1420,1421,1423,1424,1426,1427,1429,1430,1432,1433,1435,1436,1438,1439,1441,1442,1444,1445,1447,1448,1450,1451,1453,1454,1456,1457,1459,1460,1462,1463,1465,1466,1468,1469,1471,1472,1474,1475,1477,1478,1480,1481,1483,1484,1486,1487,1489,1490,1492,1493,1495,1496,1498,1499,1501,1502,1504,1505,1507,1508,1510,1511,1513,1514,1516,1517,1519,1520,1522,1523,1525,1526,1528,1529,1531,1532,1534,1535,1537,1538,1540,1541,1543,1544,1546,1547,1549,1550,1552,1553,1555,1556,1558,1559,1561,1562,1564,1565,1567,1568,1570,1571,1573,1574,1576,1577,1579,1580,1582,1583,1585,1586,1588,1589,1591,1592,1594,1595,1597,1598,1600,1601,1603,1604,1606,1607,1609,1610,1612,1613,1615,1616,1618,1619,1621,1622,1624,1625,1627,1628,1630,1631,1633,1634,1636,1637,1639,1640,1642,1643,1645,1646,1648,1649,1651,1652,1654,1655,1657,1658,1660,1661,1663,1664,1666,1667,1669,1670,1672,1673,1675,1676,1678,1679,1681,1682,1684,1685,1687,1688,1690,1691,1693,1694,1696,1697,1699,1700,1702,1703,1705,1706,1708,1709,1711,1712,1714,1715,1717,1718,1720,1721,1723,1724,1726,1727) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "LUAD (20531, 576)\n", "gdac.broadinstitute.org_DLBC.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 DLBC\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "DLBC (20531, 48)\n", "gdac.broadinstitute.org_KICH.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 KICH\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "KICH (20531, 91)\n", "gdac.broadinstitute.org_CHOL.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 CHOL\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "CHOL (20531, 45)\n", "gdac.broadinstitute.org_UVM.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 UVM\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "UVM (20531, 80)\n", "gdac.broadinstitute.org_PRAD.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 PRAD\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926,928,929,931,932,934,935,937,938,940,941,943,944,946,947,949,950,952,953,955,956,958,959,961,962,964,965,967,968,970,971,973,974,976,977,979,980,982,983,985,986,988,989,991,992,994,995,997,998,1000,1001,1003,1004,1006,1007,1009,1010,1012,1013,1015,1016,1018,1019,1021,1022,1024,1025,1027,1028,1030,1031,1033,1034,1036,1037,1039,1040,1042,1043,1045,1046,1048,1049,1051,1052,1054,1055,1057,1058,1060,1061,1063,1064,1066,1067,1069,1070,1072,1073,1075,1076,1078,1079,1081,1082,1084,1085,1087,1088,1090,1091,1093,1094,1096,1097,1099,1100,1102,1103,1105,1106,1108,1109,1111,1112,1114,1115,1117,1118,1120,1121,1123,1124,1126,1127,1129,1130,1132,1133,1135,1136,1138,1139,1141,1142,1144,1145,1147,1148,1150,1151,1153,1154,1156,1157,1159,1160,1162,1163,1165,1166,1168,1169,1171,1172,1174,1175,1177,1178,1180,1181,1183,1184,1186,1187,1189,1190,1192,1193,1195,1196,1198,1199,1201,1202,1204,1205,1207,1208,1210,1211,1213,1214,1216,1217,1219,1220,1222,1223,1225,1226,1228,1229,1231,1232,1234,1235,1237,1238,1240,1241,1243,1244,1246,1247,1249,1250,1252,1253,1255,1256,1258,1259,1261,1262,1264,1265,1267,1268,1270,1271,1273,1274,1276,1277,1279,1280,1282,1283,1285,1286,1288,1289,1291,1292,1294,1295,1297,1298,1300,1301,1303,1304,1306,1307,1309,1310,1312,1313,1315,1316,1318,1319,1321,1322,1324,1325,1327,1328,1330,1331,1333,1334,1336,1337,1339,1340,1342,1343,1345,1346,1348,1349,1351,1352,1354,1355,1357,1358,1360,1361,1363,1364,1366,1367,1369,1370,1372,1373,1375,1376,1378,1379,1381,1382,1384,1385,1387,1388,1390,1391,1393,1394,1396,1397,1399,1400,1402,1403,1405,1406,1408,1409,1411,1412,1414,1415,1417,1418,1420,1421,1423,1424,1426,1427,1429,1430,1432,1433,1435,1436,1438,1439,1441,1442,1444,1445,1447,1448,1450,1451,1453,1454,1456,1457,1459,1460,1462,1463,1465,1466,1468,1469,1471,1472,1474,1475,1477,1478,1480,1481,1483,1484,1486,1487,1489,1490,1492,1493,1495,1496,1498,1499,1501,1502,1504,1505,1507,1508,1510,1511,1513,1514,1516,1517,1519,1520,1522,1523,1525,1526,1528,1529,1531,1532,1534,1535,1537,1538,1540,1541,1543,1544,1546,1547,1549,1550,1552,1553,1555,1556,1558,1559,1561,1562,1564,1565,1567,1568,1570,1571,1573,1574,1576,1577,1579,1580,1582,1583,1585,1586,1588,1589,1591,1592,1594,1595,1597,1598,1600,1601,1603,1604,1606,1607,1609,1610,1612,1613,1615,1616,1618,1619,1621,1622,1624,1625,1627,1628,1630,1631,1633,1634,1636,1637,1639,1640,1642,1643,1645,1646,1648,1649) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "PRAD (20531, 550)\n", "gdac.broadinstitute.org_UCEC.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 UCEC\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "UCEC (20531, 201)\n", "gdac.broadinstitute.org_SARC.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 SARC\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "SARC (20531, 265)\n", "gdac.broadinstitute.org_TGCT.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 TGCT\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "TGCT (20531, 156)\n", "gdac.broadinstitute.org_LGG.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 LGG\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926,928,929,931,932,934,935,937,938,940,941,943,944,946,947,949,950,952,953,955,956,958,959,961,962,964,965,967,968,970,971,973,974,976,977,979,980,982,983,985,986,988,989,991,992,994,995,997,998,1000,1001,1003,1004,1006,1007,1009,1010,1012,1013,1015,1016,1018,1019,1021,1022,1024,1025,1027,1028,1030,1031,1033,1034,1036,1037,1039,1040,1042,1043,1045,1046,1048,1049,1051,1052,1054,1055,1057,1058,1060,1061,1063,1064,1066,1067,1069,1070,1072,1073,1075,1076,1078,1079,1081,1082,1084,1085,1087,1088,1090,1091,1093,1094,1096,1097,1099,1100,1102,1103,1105,1106,1108,1109,1111,1112,1114,1115,1117,1118,1120,1121,1123,1124,1126,1127,1129,1130,1132,1133,1135,1136,1138,1139,1141,1142,1144,1145,1147,1148,1150,1151,1153,1154,1156,1157,1159,1160,1162,1163,1165,1166,1168,1169,1171,1172,1174,1175,1177,1178,1180,1181,1183,1184,1186,1187,1189,1190,1192,1193,1195,1196,1198,1199,1201,1202,1204,1205,1207,1208,1210,1211,1213,1214,1216,1217,1219,1220,1222,1223,1225,1226,1228,1229,1231,1232,1234,1235,1237,1238,1240,1241,1243,1244,1246,1247,1249,1250,1252,1253,1255,1256,1258,1259,1261,1262,1264,1265,1267,1268,1270,1271,1273,1274,1276,1277,1279,1280,1282,1283,1285,1286,1288,1289,1291,1292,1294,1295,1297,1298,1300,1301,1303,1304,1306,1307,1309,1310,1312,1313,1315,1316,1318,1319,1321,1322,1324,1325,1327,1328,1330,1331,1333,1334,1336,1337,1339,1340,1342,1343,1345,1346,1348,1349,1351,1352,1354,1355,1357,1358,1360,1361,1363,1364,1366,1367,1369,1370,1372,1373,1375,1376,1378,1379,1381,1382,1384,1385,1387,1388,1390,1391,1393,1394,1396,1397,1399,1400,1402,1403,1405,1406,1408,1409,1411,1412,1414,1415,1417,1418,1420,1421,1423,1424,1426,1427,1429,1430,1432,1433,1435,1436,1438,1439,1441,1442,1444,1445,1447,1448,1450,1451,1453,1454,1456,1457,1459,1460,1462,1463,1465,1466,1468,1469,1471,1472,1474,1475,1477,1478,1480,1481,1483,1484,1486,1487,1489,1490,1492,1493,1495,1496,1498,1499,1501,1502,1504,1505,1507,1508,1510,1511,1513,1514,1516,1517,1519,1520,1522,1523,1525,1526,1528,1529,1531,1532,1534,1535,1537,1538,1540,1541,1543,1544,1546,1547,1549,1550,1552,1553,1555,1556,1558,1559,1561,1562,1564,1565,1567,1568,1570,1571,1573,1574,1576,1577,1579,1580,1582,1583,1585,1586,1588,1589) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "LGG (20531, 530)\n", "gdac.broadinstitute.org_ESCA.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 ESCA\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ESCA (20531, 196)\n", "gdac.broadinstitute.org_ACC.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 ACC\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ACC (20531, 79)\n", "gdac.broadinstitute.org_LAML.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 LAML\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "LAML (20531, 173)\n", "gdac.broadinstitute.org_HNSC.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 HNSC\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926,928,929,931,932,934,935,937,938,940,941,943,944,946,947,949,950,952,953,955,956,958,959,961,962,964,965,967,968,970,971,973,974,976,977,979,980,982,983,985,986,988,989,991,992,994,995,997,998,1000,1001,1003,1004,1006,1007,1009,1010,1012,1013,1015,1016,1018,1019,1021,1022,1024,1025,1027,1028,1030,1031,1033,1034,1036,1037,1039,1040,1042,1043,1045,1046,1048,1049,1051,1052,1054,1055,1057,1058,1060,1061,1063,1064,1066,1067,1069,1070,1072,1073,1075,1076,1078,1079,1081,1082,1084,1085,1087,1088,1090,1091,1093,1094,1096,1097,1099,1100,1102,1103,1105,1106,1108,1109,1111,1112,1114,1115,1117,1118,1120,1121,1123,1124,1126,1127,1129,1130,1132,1133,1135,1136,1138,1139,1141,1142,1144,1145,1147,1148,1150,1151,1153,1154,1156,1157,1159,1160,1162,1163,1165,1166,1168,1169,1171,1172,1174,1175,1177,1178,1180,1181,1183,1184,1186,1187,1189,1190,1192,1193,1195,1196,1198,1199,1201,1202,1204,1205,1207,1208,1210,1211,1213,1214,1216,1217,1219,1220,1222,1223,1225,1226,1228,1229,1231,1232,1234,1235,1237,1238,1240,1241,1243,1244,1246,1247,1249,1250,1252,1253,1255,1256,1258,1259,1261,1262,1264,1265,1267,1268,1270,1271,1273,1274,1276,1277,1279,1280,1282,1283,1285,1286,1288,1289,1291,1292,1294,1295,1297,1298,1300,1301,1303,1304,1306,1307,1309,1310,1312,1313,1315,1316,1318,1319,1321,1322,1324,1325,1327,1328,1330,1331,1333,1334,1336,1337,1339,1340,1342,1343,1345,1346,1348,1349,1351,1352,1354,1355,1357,1358,1360,1361,1363,1364,1366,1367,1369,1370,1372,1373,1375,1376,1378,1379,1381,1382,1384,1385,1387,1388,1390,1391,1393,1394,1396,1397,1399,1400,1402,1403,1405,1406,1408,1409,1411,1412,1414,1415,1417,1418,1420,1421,1423,1424,1426,1427,1429,1430,1432,1433,1435,1436,1438,1439,1441,1442,1444,1445,1447,1448,1450,1451,1453,1454,1456,1457,1459,1460,1462,1463,1465,1466,1468,1469,1471,1472,1474,1475,1477,1478,1480,1481,1483,1484,1486,1487,1489,1490,1492,1493,1495,1496,1498,1499,1501,1502,1504,1505,1507,1508,1510,1511,1513,1514,1516,1517,1519,1520,1522,1523,1525,1526,1528,1529,1531,1532,1534,1535,1537,1538,1540,1541,1543,1544,1546,1547,1549,1550,1552,1553,1555,1556,1558,1559,1561,1562,1564,1565,1567,1568,1570,1571,1573,1574,1576,1577,1579,1580,1582,1583,1585,1586,1588,1589,1591,1592,1594,1595,1597,1598,1600,1601,1603,1604,1606,1607,1609,1610,1612,1613,1615,1616,1618,1619,1621,1622,1624,1625,1627,1628,1630,1631,1633,1634,1636,1637,1639,1640,1642,1643,1645,1646,1648,1649,1651,1652,1654,1655,1657,1658,1660,1661,1663,1664,1666,1667,1669,1670,1672,1673,1675,1676,1678,1679,1681,1682,1684,1685,1687,1688,1690,1691,1693,1694,1696,1697) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "HNSC (20531, 566)\n", "gdac.broadinstitute.org_MESO.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 MESO\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "MESO (20531, 87)\n", "gdac.broadinstitute.org_STAD.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 STAD\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926,928,929,931,932,934,935,937,938,940,941,943,944,946,947,949,950,952,953,955,956,958,959,961,962,964,965,967,968,970,971,973,974,976,977,979,980,982,983,985,986,988,989,991,992,994,995,997,998,1000,1001,1003,1004,1006,1007,1009,1010,1012,1013,1015,1016,1018,1019,1021,1022,1024,1025,1027,1028,1030,1031,1033,1034,1036,1037,1039,1040,1042,1043,1045,1046,1048,1049,1051,1052,1054,1055,1057,1058,1060,1061,1063,1064,1066,1067,1069,1070,1072,1073,1075,1076,1078,1079,1081,1082,1084,1085,1087,1088,1090,1091,1093,1094,1096,1097,1099,1100,1102,1103,1105,1106,1108,1109,1111,1112,1114,1115,1117,1118,1120,1121,1123,1124,1126,1127,1129,1130,1132,1133,1135,1136,1138,1139,1141,1142,1144,1145,1147,1148,1150,1151,1153,1154,1156,1157,1159,1160,1162,1163,1165,1166,1168,1169,1171,1172,1174,1175,1177,1178,1180,1181,1183,1184,1186,1187,1189,1190,1192,1193,1195,1196,1198,1199,1201,1202,1204,1205,1207,1208,1210,1211,1213,1214,1216,1217,1219,1220,1222,1223,1225,1226,1228,1229,1231,1232,1234,1235,1237,1238,1240,1241,1243,1244,1246,1247,1249,1250,1252,1253,1255,1256,1258,1259,1261,1262,1264,1265,1267,1268,1270,1271,1273,1274,1276,1277,1279,1280,1282,1283,1285,1286,1288,1289,1291,1292,1294,1295,1297,1298,1300,1301,1303,1304,1306,1307,1309,1310,1312,1313,1315,1316,1318,1319,1321,1322,1324,1325,1327,1328,1330,1331,1333,1334,1336,1337,1339,1340,1342,1343,1345,1346,1348,1349) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "STAD (20531, 450)\n", "gdac.broadinstitute.org_OV.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 OV\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "OV (20531, 307)\n", "gdac.broadinstitute.org_BLCA.Merge_rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.Level_3.2016012800.0.0 BLCA\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/olya/miniconda2/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2714: DtypeWarning: Columns (1,2,4,5,7,8,10,11,13,14,16,17,19,20,22,23,25,26,28,29,31,32,34,35,37,38,40,41,43,44,46,47,49,50,52,53,55,56,58,59,61,62,64,65,67,68,70,71,73,74,76,77,79,80,82,83,85,86,88,89,91,92,94,95,97,98,100,101,103,104,106,107,109,110,112,113,115,116,118,119,121,122,124,125,127,128,130,131,133,134,136,137,139,140,142,143,145,146,148,149,151,152,154,155,157,158,160,161,163,164,166,167,169,170,172,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,196,197,199,200,202,203,205,206,208,209,211,212,214,215,217,218,220,221,223,224,226,227,229,230,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,254,256,257,259,260,262,263,265,266,268,269,271,272,274,275,277,278,280,281,283,284,286,287,289,290,292,293,295,296,298,299,301,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,334,335,337,338,340,341,343,344,346,347,349,350,352,353,355,356,358,359,361,362,364,365,367,368,370,371,373,374,376,377,379,380,382,383,385,386,388,389,391,392,394,395,397,398,400,401,403,404,406,407,409,410,412,413,415,416,418,419,421,422,424,425,427,428,430,431,433,434,436,437,439,440,442,443,445,446,448,449,451,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,493,494,496,497,499,500,502,503,505,506,508,509,511,512,514,515,517,518,520,521,523,524,526,527,529,530,532,533,535,536,538,539,541,542,544,545,547,548,550,551,553,554,556,557,559,560,562,563,565,566,568,569,571,572,574,575,577,578,580,581,583,584,586,587,589,590,592,593,595,596,598,599,601,602,604,605,607,608,610,611,613,614,616,617,619,620,622,623,625,626,628,629,631,632,634,635,637,638,640,641,643,644,646,647,649,650,652,653,655,656,658,659,661,662,664,665,667,668,670,671,673,674,676,677,679,680,682,683,685,686,688,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,712,713,715,716,718,719,721,722,724,725,727,728,730,731,733,734,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,760,761,763,764,766,767,769,770,772,773,775,776,778,779,781,782,784,785,787,788,790,791,793,794,796,797,799,800,802,803,805,806,808,809,811,812,814,815,817,818,820,821,823,824,826,827,829,830,832,833,835,836,838,839,841,842,844,845,847,848,850,851,853,854,856,857,859,860,862,863,865,866,868,869,871,872,874,875,877,878,880,881,883,884,886,887,889,890,892,893,895,896,898,899,901,902,904,905,907,908,910,911,913,914,916,917,919,920,922,923,925,926,928,929,931,932,934,935,937,938,940,941,943,944,946,947,949,950,952,953,955,956,958,959,961,962,964,965,967,968,970,971,973,974,976,977,979,980,982,983,985,986,988,989,991,992,994,995,997,998,1000,1001,1003,1004,1006,1007,1009,1010,1012,1013,1015,1016,1018,1019,1021,1022,1024,1025,1027,1028,1030,1031,1033,1034,1036,1037,1039,1040,1042,1043,1045,1046,1048,1049,1051,1052,1054,1055,1057,1058,1060,1061,1063,1064,1066,1067,1069,1070,1072,1073,1075,1076,1078,1079,1081,1082,1084,1085,1087,1088,1090,1091,1093,1094,1096,1097,1099,1100,1102,1103,1105,1106,1108,1109,1111,1112,1114,1115,1117,1118,1120,1121,1123,1124,1126,1127,1129,1130,1132,1133,1135,1136,1138,1139,1141,1142,1144,1145,1147,1148,1150,1151,1153,1154,1156,1157,1159,1160,1162,1163,1165,1166,1168,1169,1171,1172,1174,1175,1177,1178,1180,1181,1183,1184,1186,1187,1189,1190,1192,1193,1195,1196,1198,1199,1201,1202,1204,1205,1207,1208,1210,1211,1213,1214,1216,1217,1219,1220,1222,1223,1225,1226,1228,1229,1231,1232,1234,1235,1237,1238,1240,1241,1243,1244,1246,1247,1249,1250,1252,1253,1255,1256,1258,1259,1261,1262,1264,1265,1267,1268,1270,1271,1273,1274,1276,1277,1279,1280) have mixed types. Specify dtype option on import or set low_memory=False.\n", " interactivity=interactivity, compiler=compiler, result=result)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "BLCA (20531, 427)\n" ] } ], "source": [ "f_ext = \".rnaseqv2__illuminahiseq_rnaseqv2__unc_edu__Level_3__RSEM_genes__data.data.txt\"\n", "for fpath in os.listdir(tcga_tmp_dir):\n", " if fpath.startswith(\"gdac.broadinstitute.org\") and not fpath.endswith(\".tar.gz\") :\n", " cohort = fpath.split(\"_\")[1].replace(\".Merge\",\"\")\n", " #print(fpath, cohort)\n", " fname = cohort + f_ext\n", " try:\n", " exprs = pd.read_csv(tcga_tmp_dir+\"/\"+fpath+\"/\"+fname,sep=\"\\t\",index_col=0)\n", " # drop \"gene_id\" and keep only \"scaled_estimate\" columns\n", " exprs = exprs.loc[:,exprs.T.loc[exprs.T[\"gene_id\"]==\"scaled_estimate\",:].index]\n", " exprs = exprs.iloc[1:,]\n", " exprs.rename(index = lambda x : int(x.split(\"|\")[1]),\n", " columns = lambda x : x.replace(\".1\",\"\"),inplace = True)\n", " exprs.index.name = \"ENTREZID\"\n", " # convert scaled_extimates to log2(TPM+1)\n", " exprs = exprs.applymap(lambda x : np.log2(float(x)*1000000+1))\n", " exprs = exprs.sort_index()\n", " exprs.to_csv(preprocessed_data_dir +\"TCGA-\"+cohort+\"_exprs.RSEMscaled_est2TPMplus1log2.tsv\",sep =\"\\t\")\n", " print(cohort,exprs.shape)\n", " except:\n", " print(cohort,\"No expression data.\")\n", "\n", "\n", " " ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
TCGA-2F-A9KO-01A-11R-A38B-07TCGA-2F-A9KP-01A-11R-A38B-07TCGA-2F-A9KQ-01A-11R-A38B-07TCGA-2F-A9KR-01A-11R-A38B-07TCGA-2F-A9KT-01A-11R-A38B-07TCGA-2F-A9KW-01A-11R-A38B-07TCGA-4Z-AA7M-01A-11R-A39I-07TCGA-4Z-AA7N-01A-11R-A39I-07TCGA-4Z-AA7O-01A-31R-A39I-07TCGA-4Z-AA7Q-01A-11R-A39I-07...TCGA-ZF-AA4X-01A-11R-A38B-07TCGA-ZF-AA51-01A-21R-A39I-07TCGA-ZF-AA52-01A-12R-A39I-07TCGA-ZF-AA53-01A-11R-A39I-07TCGA-ZF-AA54-01A-11R-A39I-07TCGA-ZF-AA56-01A-31R-A39I-07TCGA-ZF-AA58-01A-12R-A42T-07TCGA-ZF-AA5H-01A-11R-A39I-07TCGA-ZF-AA5N-01A-11R-A42T-07TCGA-ZF-AA5P-01A-11R-A39I-07
ENTREZID
11.1614940.6225320.8375361.0636920.7326670.9129911.6129742.0762370.8703372.222218...1.5234981.9449832.3726533.7928263.4790111.4056451.5720330.8021340.4203201.271811
28.0347627.7034667.7826636.9714436.0475358.6252866.2354509.7106217.2700547.775153...5.6110838.08419310.0956787.3169368.7619578.2947187.7379077.1793554.90400711.189585
92.1677112.0476252.9511531.8904931.9886672.4541692.6436223.1413162.0773571.675782...3.9494911.5482793.7225451.1320572.5681402.5228931.7253191.4614961.8473152.535479
100.0000000.1175560.0000000.2897010.0000000.0000000.0000000.3803860.0563200.637087...0.5053000.0000000.1388160.0480320.0489210.2299310.0000000.0296590.0000000.285390
122.4678302.4201120.6442984.5454850.0523731.3224900.4342964.8422910.0000000.817122...0.5511291.5557093.7749380.6610993.6249654.5139764.7059671.6819053.3565457.470335
131.6073470.6664212.1256843.4962520.2877080.2880640.2446370.0678527.3873700.506860...1.8777760.6968370.0000000.0000000.1864221.2093020.0000000.0000000.0000002.687331
146.7122066.8444826.3947407.5573876.1784326.3536666.6904446.7413657.0593966.466467...6.8425497.1542216.9306216.0042717.0798907.1596297.0051626.6911517.0006616.747745
150.0805750.0000000.2113270.1782520.0868260.0000000.0851500.1307960.0000000.478062...0.0000000.0000000.0000000.0000000.1477250.0000000.2213140.0911430.0000000.174953
166.7630916.6251506.0828275.4026235.5927327.4335635.7149085.7316135.8830475.032016...5.7664474.7903075.7078897.4243358.7095756.0864636.2347556.8770035.8775465.983488
183.9889484.2632934.3776542.9237494.0499741.3823114.8893273.9603334.5595240.999417...2.8357191.7468832.4993750.7848871.1385343.0094491.0901320.5523702.8013171.614018
192.6169041.3575532.8870982.5518793.3400534.3260133.2558793.5139931.1936023.132178...2.2675872.9916132.0915003.4615934.3099893.2398342.8659773.0396754.2484002.405480
201.9618443.0902042.7501042.6162124.8248721.8752213.0874673.4812002.4474531.753626...3.7531833.1491163.9500871.5129663.0633152.6645462.2390612.2010444.0339222.951935
210.6127012.1718501.5296680.8743370.6581703.1517411.0520422.2017560.2612641.009647...3.0215271.1133862.3481430.4157921.1468910.9733921.5740750.6099130.3564793.029807
223.9636083.5586063.2328214.0343383.0223972.9197164.3675903.6068863.1898843.521772...4.1145073.3897213.1205933.5092293.8796583.3963674.0091663.1360872.8315213.356951
235.8665985.8531145.6284005.7528645.6950036.5949646.7383335.6600175.4805345.570752...6.4307125.6046585.5900985.3129266.2852866.1866706.5491786.3339915.4422556.053878
241.9262330.0454240.0551990.0882730.0647511.1280870.8033420.9631600.5333950.066792...1.3799990.3000110.4213761.8826200.1303562.5670492.5687030.1730960.3888280.104554
254.2200494.4631623.7142274.6119584.6544954.4464634.2654165.0598793.4567013.441491...4.6091263.9305084.7119564.1388514.8642614.8143314.5355444.6809903.3573475.748911
261.5345030.4572081.6567473.6668960.4654480.3366730.3040590.5746480.4897680.309481...1.7563360.7615300.5967011.4383990.1215431.7359650.4300350.8576320.0908710.192650
273.0096722.5387022.0586772.3330972.1868953.2465052.8405253.0081151.9888891.045557...2.0600891.8889031.9851872.3703963.7362761.9903443.3466934.0487081.4761332.492175
283.5534660.0716134.0438101.9985373.6519750.9709090.0492272.9332750.0000004.048759...2.9400570.0472740.2773210.2419620.0000002.3309070.0337850.0529270.2938580.617408
294.2521145.3143714.4057734.8090104.8232283.8754544.5485575.4911184.5677895.541956...6.3061595.9835784.8410913.9855345.3950055.2274385.3522696.1533574.2723644.636339
306.2836267.0413336.9448636.6713496.9513275.9681956.5680396.4185846.0851845.676482...7.0111716.8981036.4070466.6277654.9232616.3894576.3241385.2365636.8224226.143988
314.6501814.9749864.4733195.6082565.0034864.2371284.8991724.8011964.4112864.604509...5.4898324.3612084.4997764.0997964.3104565.2875073.7894804.5935724.8104764.482980
321.2875240.5056540.7636941.8743250.7331060.7571181.8710182.6965720.6900422.033386...2.5315241.2017892.0716350.9236361.5250261.3219381.6626481.2312750.3649923.270376
330.4071680.2725360.1911930.5706300.1597840.0000000.4010750.1624400.0000000.365014...2.0827810.0518720.0237980.0704920.1185330.5132030.0000000.2695870.0000000.264252
344.6992575.4662705.6658935.4762563.9554744.0424935.0601205.3523504.3475444.789519...6.3764224.5777913.4920344.6052424.2833584.9771004.7164164.5803503.9540264.304655
354.2213154.0606925.5656214.4147424.2860864.3665364.2551443.5614333.8892484.366157...4.4550094.4155704.7467724.0566383.3470174.5848873.5799323.5067654.2488245.511854
362.5464904.1414814.0025382.4301602.2727372.4161623.0253253.6059073.0950871.872858...2.9388741.9598301.6153530.7800552.3055033.1518961.1169401.1832041.7789562.279470
378.2214698.4844318.2204267.6589847.2989567.5220567.8269617.3696238.4413567.439627...8.7819128.2478368.1928827.4389427.3629507.6599107.2553107.4874678.4037237.616378
384.2774774.8046874.1689252.9102703.4322684.9607054.2949504.4756462.6918403.959515...4.4904284.2633024.6848544.0184245.1382714.2544294.6158573.6478834.8213185.106815
..................................................................
1002717221.3818650.5593052.5071352.4197592.3305660.5274521.2901491.2006101.5849780.413451...1.8574361.0447421.6662011.1980381.4663211.1193550.9122421.3822470.2016911.844866
1002718312.8868011.3729463.4802653.5854133.7524862.6008141.5592592.8733483.1870622.483700...2.6843002.2689634.4600984.1800913.7178812.9608333.1428543.2352653.9473473.500957
1002718320.0000000.0379020.0000000.0000000.0000000.0000000.1011510.0000000.0000000.073447...0.0790840.0000000.0000000.0000000.0000000.0761560.0000000.0000000.0000000.000000
1002718351.1743980.0865160.4393860.3877160.3660271.1123132.1891071.3051990.7674360.521596...2.4344291.5785864.0788311.5376041.4421360.5602573.0703880.2901393.1154002.146352
1002718364.1847553.8004842.9663043.7086233.3455572.6288793.7310093.6736712.8791521.792119...2.7921741.9106251.5742691.4089493.1843712.9540521.7612502.3248862.2127812.272575
1002718491.3249081.7966840.3962152.0462911.2855351.6210340.4985644.3240961.4008752.327593...2.1469052.0992911.3350531.0704522.8112171.9286661.9428721.6797220.7635422.142223
1002721461.4312481.2586861.0483211.6899081.1496480.8827531.7739801.1535390.8069411.016220...2.2200020.9719650.9347670.1059450.5298380.8346840.6727561.0008930.4357650.602256
1002721474.5221544.1667294.4499164.5856804.8855393.8871285.1295464.1134614.9164633.606867...5.8783173.8762114.6754434.6710754.5995864.5718795.6627315.3205164.5889174.575929
1002722160.3171020.1864260.1439260.2280250.2247850.3582730.2486300.4900620.1962830.183147...0.0767850.2117750.1138390.0627681.8887430.5438360.4919280.0387430.1564900.027260
1002722170.8885581.0816720.5356281.8750710.9218580.5073220.8164860.3952310.3270620.488304...1.5909530.6408560.5740100.2103610.4456830.5718280.5597450.4330050.8184660.503680
1002722281.1626340.9693181.4825111.4834490.7692800.2724112.1312521.1019360.8580471.873479...2.2318220.5421951.0696360.1876330.3211100.8264130.9009130.4892850.3509190.683409
1002867933.7495443.2792432.4726834.4295263.5901672.5129244.6201992.7525062.4756644.030156...2.8992743.3633912.9319483.1694803.7793932.9415974.9044924.1984622.3366123.119572
1002868440.5776250.4856760.3874620.6648940.5097700.2698661.0275780.2933410.4203980.283191...0.9059230.2998870.2995010.2025250.3167370.3177570.1844130.4345530.2895440.728117
1002872270.4780710.1686660.1800260.2844780.1570050.4889730.3163360.1597850.2072840.164729...0.4321810.2389980.4065120.0251500.0308910.3349060.0544360.1651050.2054110.222096
1002875690.2488280.0000000.0000000.1400810.0887590.0000000.0000000.6379930.0000000.647825...0.0000000.0000000.2972100.2687631.7330560.1581220.4870280.0932470.0000000.870693
1002877040.0000000.0000000.0000000.0000000.0000000.0000000.0000000.0000000.0000000.000000...0.0000000.0000000.0000000.0000000.0000000.0000000.0000000.0000000.0000000.000000
1002877180.0000000.0000000.0000000.0000000.0000000.0000000.0000000.0000000.0000000.000000...0.0000000.0000000.0000000.0000000.0000000.0000000.0000000.0000000.0000000.000000
1002883800.2403050.0660490.0000000.3376120.0000000.0000000.0000000.3780000.1782360.186226...0.4832960.0857240.0000000.0787890.0000000.1306260.1773860.3469420.0000000.000000
1002887786.7905376.1406435.3874596.5595546.3254614.5334545.9161865.3596745.2325894.997729...6.5931974.9819286.0030785.3892325.6064505.1225585.5583304.9493916.1650336.198619
1002888010.0000000.0244950.0000000.0274280.0000000.0298850.0000000.0000000.0000000.093848...0.0512910.0320050.0000000.0000000.0000000.0000000.0000000.0180470.0000000.000000
1002893410.5546021.4198920.5868121.6186221.3002351.4451100.8098171.2997660.8081110.659194...1.8546800.5099331.4922180.8082881.1142291.5764621.4623192.0862701.2584711.926313
1002896354.0130963.7986393.9565543.8998333.3636653.4820143.8558013.1200553.6807383.217935...3.4533963.3977593.5695812.9403353.2992102.7927823.0121423.3209613.0343793.507408
1002947200.0000000.0000000.0000000.0438300.0000000.0000000.0000000.0000000.0000000.030316...0.0000000.0000000.0000000.0918620.0000000.0000000.0000000.0000000.0000000.000000
1003024010.4536960.3648040.2240080.6728640.6503171.1937131.0829080.4277540.7567250.145178...0.6529770.2490600.5814390.3626630.5337480.3879880.9079541.4477731.4645890.650250
1003026400.0000000.1049320.1072510.0000000.0000000.1076610.7938480.0760330.0000000.477775...0.0191990.0000000.6420790.1468982.4745040.0000000.9695021.0714100.0000000.912122
1003026501.9473562.1754980.8977721.9599291.1688123.3197540.8263374.7685590.7964220.823880...1.1369141.4399822.5744640.8545460.7819501.5421250.4916980.5837290.5212184.386915
1003026921.1652930.7572061.0578201.3189341.0434751.1373221.9296260.8763020.7273650.428572...1.0101321.2752800.5526970.9861760.9523330.5427300.4217000.5105510.4360141.045705
1003027361.4771440.3466271.3436560.0000001.2405771.5834280.2347480.6082180.2970750.860072...1.5708710.0000001.5943252.2142442.5031911.6367810.2501903.0239612.9300880.894343
1003034530.0459180.1242660.0366640.2275460.0668300.1056190.2172590.0000000.0000000.000000...0.0524020.0000000.0000000.0000000.0665040.0000000.0000000.0507860.1800680.000000
1003037280.5968660.7573140.5666781.5193420.8189980.6181321.1354170.8608970.4572220.802506...1.7349200.5707590.7951580.4757550.6898290.7098970.8128980.4467650.2575650.665080
\n", "

20531 rows × 427 columns

\n", "
" ], "text/plain": [ " TCGA-2F-A9KO-01A-11R-A38B-07 TCGA-2F-A9KP-01A-11R-A38B-07 \\\n", "ENTREZID \n", "1 1.161494 0.622532 \n", "2 8.034762 7.703466 \n", "9 2.167711 2.047625 \n", "10 0.000000 0.117556 \n", "12 2.467830 2.420112 \n", "13 1.607347 0.666421 \n", "14 6.712206 6.844482 \n", "15 0.080575 0.000000 \n", "16 6.763091 6.625150 \n", "18 3.988948 4.263293 \n", "19 2.616904 1.357553 \n", "20 1.961844 3.090204 \n", "21 0.612701 2.171850 \n", "22 3.963608 3.558606 \n", "23 5.866598 5.853114 \n", "24 1.926233 0.045424 \n", "25 4.220049 4.463162 \n", "26 1.534503 0.457208 \n", "27 3.009672 2.538702 \n", "28 3.553466 0.071613 \n", "29 4.252114 5.314371 \n", "30 6.283626 7.041333 \n", "31 4.650181 4.974986 \n", "32 1.287524 0.505654 \n", "33 0.407168 0.272536 \n", "34 4.699257 5.466270 \n", "35 4.221315 4.060692 \n", "36 2.546490 4.141481 \n", "37 8.221469 8.484431 \n", "38 4.277477 4.804687 \n", "... ... ... \n", "100271722 1.381865 0.559305 \n", "100271831 2.886801 1.372946 \n", "100271832 0.000000 0.037902 \n", "100271835 1.174398 0.086516 \n", "100271836 4.184755 3.800484 \n", "100271849 1.324908 1.796684 \n", "100272146 1.431248 1.258686 \n", "100272147 4.522154 4.166729 \n", "100272216 0.317102 0.186426 \n", "100272217 0.888558 1.081672 \n", "100272228 1.162634 0.969318 \n", "100286793 3.749544 3.279243 \n", "100286844 0.577625 0.485676 \n", "100287227 0.478071 0.168666 \n", "100287569 0.248828 0.000000 \n", "100287704 0.000000 0.000000 \n", "100287718 0.000000 0.000000 \n", "100288380 0.240305 0.066049 \n", "100288778 6.790537 6.140643 \n", "100288801 0.000000 0.024495 \n", "100289341 0.554602 1.419892 \n", "100289635 4.013096 3.798639 \n", "100294720 0.000000 0.000000 \n", "100302401 0.453696 0.364804 \n", "100302640 0.000000 0.104932 \n", "100302650 1.947356 2.175498 \n", "100302692 1.165293 0.757206 \n", "100302736 1.477144 0.346627 \n", "100303453 0.045918 0.124266 \n", "100303728 0.596866 0.757314 \n", "\n", " TCGA-2F-A9KQ-01A-11R-A38B-07 TCGA-2F-A9KR-01A-11R-A38B-07 \\\n", "ENTREZID \n", "1 0.837536 1.063692 \n", "2 7.782663 6.971443 \n", "9 2.951153 1.890493 \n", "10 0.000000 0.289701 \n", "12 0.644298 4.545485 \n", "13 2.125684 3.496252 \n", "14 6.394740 7.557387 \n", "15 0.211327 0.178252 \n", "16 6.082827 5.402623 \n", "18 4.377654 2.923749 \n", "19 2.887098 2.551879 \n", "20 2.750104 2.616212 \n", "21 1.529668 0.874337 \n", "22 3.232821 4.034338 \n", "23 5.628400 5.752864 \n", "24 0.055199 0.088273 \n", "25 3.714227 4.611958 \n", "26 1.656747 3.666896 \n", "27 2.058677 2.333097 \n", "28 4.043810 1.998537 \n", "29 4.405773 4.809010 \n", "30 6.944863 6.671349 \n", "31 4.473319 5.608256 \n", "32 0.763694 1.874325 \n", "33 0.191193 0.570630 \n", "34 5.665893 5.476256 \n", "35 5.565621 4.414742 \n", "36 4.002538 2.430160 \n", "37 8.220426 7.658984 \n", "38 4.168925 2.910270 \n", "... ... ... \n", "100271722 2.507135 2.419759 \n", "100271831 3.480265 3.585413 \n", "100271832 0.000000 0.000000 \n", "100271835 0.439386 0.387716 \n", "100271836 2.966304 3.708623 \n", "100271849 0.396215 2.046291 \n", "100272146 1.048321 1.689908 \n", "100272147 4.449916 4.585680 \n", "100272216 0.143926 0.228025 \n", "100272217 0.535628 1.875071 \n", "100272228 1.482511 1.483449 \n", "100286793 2.472683 4.429526 \n", "100286844 0.387462 0.664894 \n", "100287227 0.180026 0.284478 \n", "100287569 0.000000 0.140081 \n", "100287704 0.000000 0.000000 \n", "100287718 0.000000 0.000000 \n", "100288380 0.000000 0.337612 \n", "100288778 5.387459 6.559554 \n", "100288801 0.000000 0.027428 \n", "100289341 0.586812 1.618622 \n", "100289635 3.956554 3.899833 \n", "100294720 0.000000 0.043830 \n", "100302401 0.224008 0.672864 \n", "100302640 0.107251 0.000000 \n", "100302650 0.897772 1.959929 \n", "100302692 1.057820 1.318934 \n", "100302736 1.343656 0.000000 \n", "100303453 0.036664 0.227546 \n", "100303728 0.566678 1.519342 \n", "\n", " TCGA-2F-A9KT-01A-11R-A38B-07 TCGA-2F-A9KW-01A-11R-A38B-07 \\\n", "ENTREZID \n", "1 0.732667 0.912991 \n", "2 6.047535 8.625286 \n", "9 1.988667 2.454169 \n", "10 0.000000 0.000000 \n", "12 0.052373 1.322490 \n", "13 0.287708 0.288064 \n", "14 6.178432 6.353666 \n", "15 0.086826 0.000000 \n", "16 5.592732 7.433563 \n", "18 4.049974 1.382311 \n", "19 3.340053 4.326013 \n", "20 4.824872 1.875221 \n", "21 0.658170 3.151741 \n", "22 3.022397 2.919716 \n", "23 5.695003 6.594964 \n", "24 0.064751 1.128087 \n", "25 4.654495 4.446463 \n", "26 0.465448 0.336673 \n", "27 2.186895 3.246505 \n", "28 3.651975 0.970909 \n", "29 4.823228 3.875454 \n", "30 6.951327 5.968195 \n", "31 5.003486 4.237128 \n", "32 0.733106 0.757118 \n", "33 0.159784 0.000000 \n", "34 3.955474 4.042493 \n", "35 4.286086 4.366536 \n", "36 2.272737 2.416162 \n", "37 7.298956 7.522056 \n", "38 3.432268 4.960705 \n", "... ... ... \n", "100271722 2.330566 0.527452 \n", "100271831 3.752486 2.600814 \n", "100271832 0.000000 0.000000 \n", "100271835 0.366027 1.112313 \n", "100271836 3.345557 2.628879 \n", "100271849 1.285535 1.621034 \n", "100272146 1.149648 0.882753 \n", "100272147 4.885539 3.887128 \n", "100272216 0.224785 0.358273 \n", "100272217 0.921858 0.507322 \n", "100272228 0.769280 0.272411 \n", "100286793 3.590167 2.512924 \n", "100286844 0.509770 0.269866 \n", "100287227 0.157005 0.488973 \n", "100287569 0.088759 0.000000 \n", "100287704 0.000000 0.000000 \n", "100287718 0.000000 0.000000 \n", "100288380 0.000000 0.000000 \n", "100288778 6.325461 4.533454 \n", "100288801 0.000000 0.029885 \n", "100289341 1.300235 1.445110 \n", "100289635 3.363665 3.482014 \n", "100294720 0.000000 0.000000 \n", "100302401 0.650317 1.193713 \n", "100302640 0.000000 0.107661 \n", "100302650 1.168812 3.319754 \n", "100302692 1.043475 1.137322 \n", "100302736 1.240577 1.583428 \n", "100303453 0.066830 0.105619 \n", "100303728 0.818998 0.618132 \n", "\n", " TCGA-4Z-AA7M-01A-11R-A39I-07 TCGA-4Z-AA7N-01A-11R-A39I-07 \\\n", "ENTREZID \n", "1 1.612974 2.076237 \n", "2 6.235450 9.710621 \n", "9 2.643622 3.141316 \n", "10 0.000000 0.380386 \n", "12 0.434296 4.842291 \n", "13 0.244637 0.067852 \n", "14 6.690444 6.741365 \n", "15 0.085150 0.130796 \n", "16 5.714908 5.731613 \n", "18 4.889327 3.960333 \n", "19 3.255879 3.513993 \n", "20 3.087467 3.481200 \n", "21 1.052042 2.201756 \n", "22 4.367590 3.606886 \n", "23 6.738333 5.660017 \n", "24 0.803342 0.963160 \n", "25 4.265416 5.059879 \n", "26 0.304059 0.574648 \n", "27 2.840525 3.008115 \n", "28 0.049227 2.933275 \n", "29 4.548557 5.491118 \n", "30 6.568039 6.418584 \n", "31 4.899172 4.801196 \n", "32 1.871018 2.696572 \n", "33 0.401075 0.162440 \n", "34 5.060120 5.352350 \n", "35 4.255144 3.561433 \n", "36 3.025325 3.605907 \n", "37 7.826961 7.369623 \n", "38 4.294950 4.475646 \n", "... ... ... \n", "100271722 1.290149 1.200610 \n", "100271831 1.559259 2.873348 \n", "100271832 0.101151 0.000000 \n", "100271835 2.189107 1.305199 \n", "100271836 3.731009 3.673671 \n", "100271849 0.498564 4.324096 \n", "100272146 1.773980 1.153539 \n", "100272147 5.129546 4.113461 \n", "100272216 0.248630 0.490062 \n", "100272217 0.816486 0.395231 \n", "100272228 2.131252 1.101936 \n", "100286793 4.620199 2.752506 \n", "100286844 1.027578 0.293341 \n", "100287227 0.316336 0.159785 \n", "100287569 0.000000 0.637993 \n", "100287704 0.000000 0.000000 \n", "100287718 0.000000 0.000000 \n", "100288380 0.000000 0.378000 \n", "100288778 5.916186 5.359674 \n", "100288801 0.000000 0.000000 \n", "100289341 0.809817 1.299766 \n", "100289635 3.855801 3.120055 \n", "100294720 0.000000 0.000000 \n", "100302401 1.082908 0.427754 \n", "100302640 0.793848 0.076033 \n", "100302650 0.826337 4.768559 \n", "100302692 1.929626 0.876302 \n", "100302736 0.234748 0.608218 \n", "100303453 0.217259 0.000000 \n", "100303728 1.135417 0.860897 \n", "\n", " TCGA-4Z-AA7O-01A-31R-A39I-07 TCGA-4Z-AA7Q-01A-11R-A39I-07 \\\n", "ENTREZID \n", "1 0.870337 2.222218 \n", "2 7.270054 7.775153 \n", "9 2.077357 1.675782 \n", "10 0.056320 0.637087 \n", "12 0.000000 0.817122 \n", "13 7.387370 0.506860 \n", "14 7.059396 6.466467 \n", "15 0.000000 0.478062 \n", "16 5.883047 5.032016 \n", "18 4.559524 0.999417 \n", "19 1.193602 3.132178 \n", "20 2.447453 1.753626 \n", "21 0.261264 1.009647 \n", "22 3.189884 3.521772 \n", "23 5.480534 5.570752 \n", "24 0.533395 0.066792 \n", "25 3.456701 3.441491 \n", "26 0.489768 0.309481 \n", "27 1.988889 1.045557 \n", "28 0.000000 4.048759 \n", "29 4.567789 5.541956 \n", "30 6.085184 5.676482 \n", "31 4.411286 4.604509 \n", "32 0.690042 2.033386 \n", "33 0.000000 0.365014 \n", "34 4.347544 4.789519 \n", "35 3.889248 4.366157 \n", "36 3.095087 1.872858 \n", "37 8.441356 7.439627 \n", "38 2.691840 3.959515 \n", "... ... ... \n", "100271722 1.584978 0.413451 \n", "100271831 3.187062 2.483700 \n", "100271832 0.000000 0.073447 \n", "100271835 0.767436 0.521596 \n", "100271836 2.879152 1.792119 \n", "100271849 1.400875 2.327593 \n", "100272146 0.806941 1.016220 \n", "100272147 4.916463 3.606867 \n", "100272216 0.196283 0.183147 \n", "100272217 0.327062 0.488304 \n", "100272228 0.858047 1.873479 \n", "100286793 2.475664 4.030156 \n", "100286844 0.420398 0.283191 \n", "100287227 0.207284 0.164729 \n", "100287569 0.000000 0.647825 \n", "100287704 0.000000 0.000000 \n", "100287718 0.000000 0.000000 \n", "100288380 0.178236 0.186226 \n", "100288778 5.232589 4.997729 \n", "100288801 0.000000 0.093848 \n", "100289341 0.808111 0.659194 \n", "100289635 3.680738 3.217935 \n", "100294720 0.000000 0.030316 \n", "100302401 0.756725 0.145178 \n", "100302640 0.000000 0.477775 \n", "100302650 0.796422 0.823880 \n", "100302692 0.727365 0.428572 \n", "100302736 0.297075 0.860072 \n", "100303453 0.000000 0.000000 \n", "100303728 0.457222 0.802506 \n", "\n", " ... TCGA-ZF-AA4X-01A-11R-A38B-07 \\\n", "ENTREZID ... \n", "1 ... 1.523498 \n", "2 ... 5.611083 \n", "9 ... 3.949491 \n", "10 ... 0.505300 \n", "12 ... 0.551129 \n", "13 ... 1.877776 \n", "14 ... 6.842549 \n", "15 ... 0.000000 \n", "16 ... 5.766447 \n", "18 ... 2.835719 \n", "19 ... 2.267587 \n", "20 ... 3.753183 \n", "21 ... 3.021527 \n", "22 ... 4.114507 \n", "23 ... 6.430712 \n", "24 ... 1.379999 \n", "25 ... 4.609126 \n", "26 ... 1.756336 \n", "27 ... 2.060089 \n", "28 ... 2.940057 \n", "29 ... 6.306159 \n", "30 ... 7.011171 \n", "31 ... 5.489832 \n", "32 ... 2.531524 \n", "33 ... 2.082781 \n", "34 ... 6.376422 \n", "35 ... 4.455009 \n", "36 ... 2.938874 \n", "37 ... 8.781912 \n", "38 ... 4.490428 \n", "... ... ... \n", "100271722 ... 1.857436 \n", "100271831 ... 2.684300 \n", "100271832 ... 0.079084 \n", "100271835 ... 2.434429 \n", "100271836 ... 2.792174 \n", "100271849 ... 2.146905 \n", "100272146 ... 2.220002 \n", "100272147 ... 5.878317 \n", "100272216 ... 0.076785 \n", "100272217 ... 1.590953 \n", "100272228 ... 2.231822 \n", "100286793 ... 2.899274 \n", "100286844 ... 0.905923 \n", "100287227 ... 0.432181 \n", "100287569 ... 0.000000 \n", "100287704 ... 0.000000 \n", "100287718 ... 0.000000 \n", "100288380 ... 0.483296 \n", "100288778 ... 6.593197 \n", "100288801 ... 0.051291 \n", "100289341 ... 1.854680 \n", "100289635 ... 3.453396 \n", "100294720 ... 0.000000 \n", "100302401 ... 0.652977 \n", "100302640 ... 0.019199 \n", "100302650 ... 1.136914 \n", "100302692 ... 1.010132 \n", "100302736 ... 1.570871 \n", "100303453 ... 0.052402 \n", "100303728 ... 1.734920 \n", "\n", " TCGA-ZF-AA51-01A-21R-A39I-07 TCGA-ZF-AA52-01A-12R-A39I-07 \\\n", "ENTREZID \n", "1 1.944983 2.372653 \n", "2 8.084193 10.095678 \n", "9 1.548279 3.722545 \n", "10 0.000000 0.138816 \n", "12 1.555709 3.774938 \n", "13 0.696837 0.000000 \n", "14 7.154221 6.930621 \n", "15 0.000000 0.000000 \n", "16 4.790307 5.707889 \n", "18 1.746883 2.499375 \n", "19 2.991613 2.091500 \n", "20 3.149116 3.950087 \n", "21 1.113386 2.348143 \n", "22 3.389721 3.120593 \n", "23 5.604658 5.590098 \n", "24 0.300011 0.421376 \n", "25 3.930508 4.711956 \n", "26 0.761530 0.596701 \n", "27 1.888903 1.985187 \n", "28 0.047274 0.277321 \n", "29 5.983578 4.841091 \n", "30 6.898103 6.407046 \n", "31 4.361208 4.499776 \n", "32 1.201789 2.071635 \n", "33 0.051872 0.023798 \n", "34 4.577791 3.492034 \n", "35 4.415570 4.746772 \n", "36 1.959830 1.615353 \n", "37 8.247836 8.192882 \n", "38 4.263302 4.684854 \n", "... ... ... \n", "100271722 1.044742 1.666201 \n", "100271831 2.268963 4.460098 \n", "100271832 0.000000 0.000000 \n", "100271835 1.578586 4.078831 \n", "100271836 1.910625 1.574269 \n", "100271849 2.099291 1.335053 \n", "100272146 0.971965 0.934767 \n", "100272147 3.876211 4.675443 \n", "100272216 0.211775 0.113839 \n", "100272217 0.640856 0.574010 \n", "100272228 0.542195 1.069636 \n", "100286793 3.363391 2.931948 \n", "100286844 0.299887 0.299501 \n", "100287227 0.238998 0.406512 \n", "100287569 0.000000 0.297210 \n", "100287704 0.000000 0.000000 \n", "100287718 0.000000 0.000000 \n", "100288380 0.085724 0.000000 \n", "100288778 4.981928 6.003078 \n", "100288801 0.032005 0.000000 \n", "100289341 0.509933 1.492218 \n", "100289635 3.397759 3.569581 \n", "100294720 0.000000 0.000000 \n", "100302401 0.249060 0.581439 \n", "100302640 0.000000 0.642079 \n", "100302650 1.439982 2.574464 \n", "100302692 1.275280 0.552697 \n", "100302736 0.000000 1.594325 \n", "100303453 0.000000 0.000000 \n", "100303728 0.570759 0.795158 \n", "\n", " TCGA-ZF-AA53-01A-11R-A39I-07 TCGA-ZF-AA54-01A-11R-A39I-07 \\\n", "ENTREZID \n", "1 3.792826 3.479011 \n", "2 7.316936 8.761957 \n", "9 1.132057 2.568140 \n", "10 0.048032 0.048921 \n", "12 0.661099 3.624965 \n", "13 0.000000 0.186422 \n", "14 6.004271 7.079890 \n", "15 0.000000 0.147725 \n", "16 7.424335 8.709575 \n", "18 0.784887 1.138534 \n", "19 3.461593 4.309989 \n", "20 1.512966 3.063315 \n", "21 0.415792 1.146891 \n", "22 3.509229 3.879658 \n", "23 5.312926 6.285286 \n", "24 1.882620 0.130356 \n", "25 4.138851 4.864261 \n", "26 1.438399 0.121543 \n", "27 2.370396 3.736276 \n", "28 0.241962 0.000000 \n", "29 3.985534 5.395005 \n", "30 6.627765 4.923261 \n", "31 4.099796 4.310456 \n", "32 0.923636 1.525026 \n", "33 0.070492 0.118533 \n", "34 4.605242 4.283358 \n", "35 4.056638 3.347017 \n", "36 0.780055 2.305503 \n", "37 7.438942 7.362950 \n", "38 4.018424 5.138271 \n", "... ... ... \n", "100271722 1.198038 1.466321 \n", "100271831 4.180091 3.717881 \n", "100271832 0.000000 0.000000 \n", "100271835 1.537604 1.442136 \n", "100271836 1.408949 3.184371 \n", "100271849 1.070452 2.811217 \n", "100272146 0.105945 0.529838 \n", "100272147 4.671075 4.599586 \n", "100272216 0.062768 1.888743 \n", "100272217 0.210361 0.445683 \n", "100272228 0.187633 0.321110 \n", "100286793 3.169480 3.779393 \n", "100286844 0.202525 0.316737 \n", "100287227 0.025150 0.030891 \n", "100287569 0.268763 1.733056 \n", "100287704 0.000000 0.000000 \n", "100287718 0.000000 0.000000 \n", "100288380 0.078789 0.000000 \n", "100288778 5.389232 5.606450 \n", "100288801 0.000000 0.000000 \n", "100289341 0.808288 1.114229 \n", "100289635 2.940335 3.299210 \n", "100294720 0.091862 0.000000 \n", "100302401 0.362663 0.533748 \n", "100302640 0.146898 2.474504 \n", "100302650 0.854546 0.781950 \n", "100302692 0.986176 0.952333 \n", "100302736 2.214244 2.503191 \n", "100303453 0.000000 0.066504 \n", "100303728 0.475755 0.689829 \n", "\n", " TCGA-ZF-AA56-01A-31R-A39I-07 TCGA-ZF-AA58-01A-12R-A42T-07 \\\n", "ENTREZID \n", "1 1.405645 1.572033 \n", "2 8.294718 7.737907 \n", "9 2.522893 1.725319 \n", "10 0.229931 0.000000 \n", "12 4.513976 4.705967 \n", "13 1.209302 0.000000 \n", "14 7.159629 7.005162 \n", "15 0.000000 0.221314 \n", "16 6.086463 6.234755 \n", "18 3.009449 1.090132 \n", "19 3.239834 2.865977 \n", "20 2.664546 2.239061 \n", "21 0.973392 1.574075 \n", "22 3.396367 4.009166 \n", "23 6.186670 6.549178 \n", "24 2.567049 2.568703 \n", "25 4.814331 4.535544 \n", "26 1.735965 0.430035 \n", "27 1.990344 3.346693 \n", "28 2.330907 0.033785 \n", "29 5.227438 5.352269 \n", "30 6.389457 6.324138 \n", "31 5.287507 3.789480 \n", "32 1.321938 1.662648 \n", "33 0.513203 0.000000 \n", "34 4.977100 4.716416 \n", "35 4.584887 3.579932 \n", "36 3.151896 1.116940 \n", "37 7.659910 7.255310 \n", "38 4.254429 4.615857 \n", "... ... ... \n", "100271722 1.119355 0.912242 \n", "100271831 2.960833 3.142854 \n", "100271832 0.076156 0.000000 \n", "100271835 0.560257 3.070388 \n", "100271836 2.954052 1.761250 \n", "100271849 1.928666 1.942872 \n", "100272146 0.834684 0.672756 \n", "100272147 4.571879 5.662731 \n", "100272216 0.543836 0.491928 \n", "100272217 0.571828 0.559745 \n", "100272228 0.826413 0.900913 \n", "100286793 2.941597 4.904492 \n", "100286844 0.317757 0.184413 \n", "100287227 0.334906 0.054436 \n", "100287569 0.158122 0.487028 \n", "100287704 0.000000 0.000000 \n", "100287718 0.000000 0.000000 \n", "100288380 0.130626 0.177386 \n", "100288778 5.122558 5.558330 \n", "100288801 0.000000 0.000000 \n", "100289341 1.576462 1.462319 \n", "100289635 2.792782 3.012142 \n", "100294720 0.000000 0.000000 \n", "100302401 0.387988 0.907954 \n", "100302640 0.000000 0.969502 \n", "100302650 1.542125 0.491698 \n", "100302692 0.542730 0.421700 \n", "100302736 1.636781 0.250190 \n", "100303453 0.000000 0.000000 \n", "100303728 0.709897 0.812898 \n", "\n", " TCGA-ZF-AA5H-01A-11R-A39I-07 TCGA-ZF-AA5N-01A-11R-A42T-07 \\\n", "ENTREZID \n", "1 0.802134 0.420320 \n", "2 7.179355 4.904007 \n", "9 1.461496 1.847315 \n", "10 0.029659 0.000000 \n", "12 1.681905 3.356545 \n", "13 0.000000 0.000000 \n", "14 6.691151 7.000661 \n", "15 0.091143 0.000000 \n", "16 6.877003 5.877546 \n", "18 0.552370 2.801317 \n", "19 3.039675 4.248400 \n", "20 2.201044 4.033922 \n", "21 0.609913 0.356479 \n", "22 3.136087 2.831521 \n", "23 6.333991 5.442255 \n", "24 0.173096 0.388828 \n", "25 4.680990 3.357347 \n", "26 0.857632 0.090871 \n", "27 4.048708 1.476133 \n", "28 0.052927 0.293858 \n", "29 6.153357 4.272364 \n", "30 5.236563 6.822422 \n", "31 4.593572 4.810476 \n", "32 1.231275 0.364992 \n", "33 0.269587 0.000000 \n", "34 4.580350 3.954026 \n", "35 3.506765 4.248824 \n", "36 1.183204 1.778956 \n", "37 7.487467 8.403723 \n", "38 3.647883 4.821318 \n", "... ... ... \n", "100271722 1.382247 0.201691 \n", "100271831 3.235265 3.947347 \n", "100271832 0.000000 0.000000 \n", "100271835 0.290139 3.115400 \n", "100271836 2.324886 2.212781 \n", "100271849 1.679722 0.763542 \n", "100272146 1.000893 0.435765 \n", "100272147 5.320516 4.588917 \n", "100272216 0.038743 0.156490 \n", "100272217 0.433005 0.818466 \n", "100272228 0.489285 0.350919 \n", "100286793 4.198462 2.336612 \n", "100286844 0.434553 0.289544 \n", "100287227 0.165105 0.205411 \n", "100287569 0.093247 0.000000 \n", "100287704 0.000000 0.000000 \n", "100287718 0.000000 0.000000 \n", "100288380 0.346942 0.000000 \n", "100288778 4.949391 6.165033 \n", "100288801 0.018047 0.000000 \n", "100289341 2.086270 1.258471 \n", "100289635 3.320961 3.034379 \n", "100294720 0.000000 0.000000 \n", "100302401 1.447773 1.464589 \n", "100302640 1.071410 0.000000 \n", "100302650 0.583729 0.521218 \n", "100302692 0.510551 0.436014 \n", "100302736 3.023961 2.930088 \n", "100303453 0.050786 0.180068 \n", "100303728 0.446765 0.257565 \n", "\n", " TCGA-ZF-AA5P-01A-11R-A39I-07 \n", "ENTREZID \n", "1 1.271811 \n", "2 11.189585 \n", "9 2.535479 \n", "10 0.285390 \n", "12 7.470335 \n", "13 2.687331 \n", "14 6.747745 \n", "15 0.174953 \n", "16 5.983488 \n", "18 1.614018 \n", "19 2.405480 \n", "20 2.951935 \n", "21 3.029807 \n", "22 3.356951 \n", "23 6.053878 \n", "24 0.104554 \n", "25 5.748911 \n", "26 0.192650 \n", "27 2.492175 \n", "28 0.617408 \n", "29 4.636339 \n", "30 6.143988 \n", "31 4.482980 \n", "32 3.270376 \n", "33 0.264252 \n", "34 4.304655 \n", "35 5.511854 \n", "36 2.279470 \n", "37 7.616378 \n", "38 5.106815 \n", "... ... \n", "100271722 1.844866 \n", "100271831 3.500957 \n", "100271832 0.000000 \n", "100271835 2.146352 \n", "100271836 2.272575 \n", "100271849 2.142223 \n", "100272146 0.602256 \n", "100272147 4.575929 \n", "100272216 0.027260 \n", "100272217 0.503680 \n", "100272228 0.683409 \n", "100286793 3.119572 \n", "100286844 0.728117 \n", "100287227 0.222096 \n", "100287569 0.870693 \n", "100287704 0.000000 \n", "100287718 0.000000 \n", "100288380 0.000000 \n", "100288778 6.198619 \n", "100288801 0.000000 \n", "100289341 1.926313 \n", "100289635 3.507408 \n", "100294720 0.000000 \n", "100302401 0.650250 \n", "100302640 0.912122 \n", "100302650 4.386915 \n", "100302692 1.045705 \n", "100302736 0.894343 \n", "100303453 0.000000 \n", "100303728 0.665080 \n", "\n", "[20531 rows x 427 columns]" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "exprs" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 2", "language": "python", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.15" } }, "nbformat": 4, "nbformat_minor": 2 }