{ "metadata": { "name": "", "signature": "sha256:14562dd98124ccc1b2c6c1aaeebd7dfb0540432751c05a49b7e6fa000defe67c" }, "nbformat": 3, "nbformat_minor": 0, "worksheets": [ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "

Initialization Download and process all of the data fom Firehose

" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Style-Sheet\n", "\n", "" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "####Notebook Summary\n", "\n", "Here we are downloading and processing most of the necissary data to run this analysis pipeline. I have set up a series of scripts to do this in an automated fashon in order to allow for reproduction of this study by others as well as for updating the results obtained here as more TCGA data is collected and reseased. \n", "\n", "Downloading this data can take a considerable amount of time (~5 hours) and disk space (~45GB), be prepared. \n", "\n", "We use the firehose_get script provided by the Broad to download the data, please see the [firehose_get documentation](ttps://confluence.broadinstitute.org/display/GDAC/Download) for troubleshooting. As we are making using the Broad's initial processing pipeline and data formats we can not promise this initial code will not break upon future update that they make. " ] }, { "cell_type": "code", "collapsed": false, "input": [ "%pylab inline" ], "language": "python", "metadata": {}, "outputs": [ { "output_type": "stream", "stream": "stdout", "text": [ "Populating the interactive namespace from numpy and matplotlib\n" ] } ], "prompt_number": 1 }, { "cell_type": "code", "collapsed": false, "input": [ "cd ../src/" ], "language": "python", "metadata": {}, "outputs": [ { "output_type": "stream", "stream": "stdout", "text": [ "/cellar/users/agross/TCGA_Code/TCGA/src\n" ] } ], "prompt_number": 2 }, { "cell_type": "heading", "level": 1, "metadata": {}, "source": [ "Parameters" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Change __OUT_PATH__ to directory on your machine where you want to store the data" ] }, { "cell_type": "code", "collapsed": false, "input": [ "OUT_PATH = '../Data'" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 3 }, { "cell_type": "code", "collapsed": false, "input": [ "RUN_DATE = '2014_01_15'\n", "CANCER = 'HNSC'\n", "VERSION = 'all'\n", "DESCRIPTION = '''Updating analysis for updated dataset.'''\n", "\n", "PARAMETERS = {'min_patients' : 12,\n", " 'pathway_file' : '../Extra_Data/c2.cp.v3.0.symbols_edit.csv'\n", " }" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 4 }, { "cell_type": "code", "collapsed": false, "input": [ "global_params = 'OUT_PATH\\t{}\\n'.format(OUT_PATH)\n", "global_params += 'RUN_DATE\\t{}\\n'.format(RUN_DATE)\n", "global_params += 'VERSION\\t{}\\n'.format(VERSION)\n", "global_params += 'CANCER\\t{}'.format(CANCER)\n", "f = open('../global_params.txt', 'wb')\n", "f.write(global_params)\n", "f.close()" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 5 }, { "cell_type": "heading", "level": 1, "metadata": {}, "source": [ "Initialization" ] }, { "cell_type": "code", "collapsed": false, "input": [ "import pickle as pickle\n", "import pandas as pd\n", "import os as os \n", "\n", "from Data.Containers import Run\n", "\n", "from Data.Containers import get_run\n", "from Data.Containers import Cancer\n", "from Initialization.InitializeCN import initialize_cn\n", "from Initialization.InitializeReal import initialize_real\n", "from Initialization.InitializeMut import initialize_mut\n", "from Initialization.PreprocessMethylation import process_meth" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 6 }, { "cell_type": "code", "collapsed": false, "input": [ "!curl http://gdac.broadinstitute.org/runs/code/firehose_get_latest.zip -o fh_get.zip\n", "!unzip fh_get.zip" ], "language": "python", "metadata": {}, "outputs": [ { "output_type": "stream", "stream": "stdout", "text": [ " % Total % Received % Xferd Average Speed Time Time Time Current\r\n", " Dload Upload Total Spent Left Speed\r\n", "\r", " 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\r", " 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\r", "100 6542 100 6542 0 0 22697 0 --:--:-- --:--:-- --:--:-- 22715\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "Archive: fh_get.zip\r\n", " inflating: firehose_get \r\n" ] } ], "prompt_number": 7 }, { "cell_type": "heading", "level": 1, "metadata": {}, "source": [ "Download data" ] }, { "cell_type": "code", "collapsed": false, "input": [ "d = 'http://gdac.broadinstitute.org/runs/analyses__{}/ingested_data.tsv'.format(RUN_DATE)\n", "tab = pd.read_table(d, sep='\\n', header=None)\n", "skip = tab[0].dropna().apply(lambda s: s.startswith('#'))\n", "skip = list(skip[skip==True].index)\n", "tab = pd.read_table(d, skiprows=skip, index_col=0).dropna()" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 7 }, { "cell_type": "code", "collapsed": false, "input": [ "cancers = tab[tab.Clinical>0].index[:-1]" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 8 }, { "cell_type": "markdown", "metadata": {}, "source": [ "Takes about 5 min to download data." ] }, { "cell_type": "code", "collapsed": false, "input": [ "cancer_string = ' '.join(cancers)" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 9 }, { "cell_type": "code", "collapsed": false, "input": [ "!firehose_get -b analyses $RUN_DATE $cancer_string > tmp" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 10 }, { "cell_type": "code", "collapsed": false, "input": [ "!firehose_get -b -o miR_gene_expression stddata $RUN_DATE $cancer_string > tmp" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 11 }, { "cell_type": "code", "collapsed": false, "input": [ "!firehose_get -b -o RSEM_genes_normalized stddata $RUN_DATE $cancer_string > tmp" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 12 }, { "cell_type": "code", "collapsed": false, "input": [ "!firehose_get -b -o rppa stddata $RUN_DATE $cancer_string > tmp" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 13 }, { "cell_type": "code", "collapsed": false, "input": [ "!firehose_get -b -o clinical stddata $RUN_DATE $cancer_string > tmp" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 14 }, { "cell_type": "markdown", "metadata": {}, "source": [ "Takes about 25 min to download methylation data." ] }, { "cell_type": "code", "collapsed": false, "input": [ "!firehose_get -b -o humanmethylation450 stddata $RUN_DATE HNSC" ], "language": "python", "metadata": {}, "outputs": [ { "output_type": "stream", "stream": "stdout", "text": [ "Validating run selection against Broad Institute website ...\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "You've asked to download archives for the following tasks\r\n", "\r\n", " humanmethylation450\r\n", "\r\n", "run against the disease cohorts\r\n", "\r\n", " HNSC\r\n", "\r\n", "from the stddata__2014_01_15 Firehose run. \r\n", "Attempting to retrieve data for Broad GDAC run stddata__2014_01_15 ...\r\n", "--2014-02-12 19:57:42-- http://gdac.broadinstitute.org/runs/stddata__2014_01_15/data/HNSC/\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 0K 100% 28.2M=0s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "2014-02-12 19:57:42 ERROR 404: Not Found.\r\n", "--2014-02-12 19:57:42-- http://gdac.broadinstitute.org/runs/stddata__2014_01_15/data/HNSC/20140115/\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 0K 101K=0.4s\r\n", "--2014-02-12 19:57:42-- http://gdac.broadinstitute.org/runs/stddata__2014_01_15/data/HNSC/20140115/gdac.broadinstitute.org_HNSC.Merge_methylation__humanmethylation450__jhu_usc_edu__Level_3__within_bioassay_data_set_function__data.Level_3.2014011500.0.0.tar.gz\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "Saving to: `stddata__2014_01_15/HNSC/20140115/gdac.broadinstitute.org_HNSC.Merge_methylation__humanmethylation450__jhu_usc_edu__Level_3__within_bioassay_data_set_function__data.Level_3.2014011500.0.0.tar.gz'\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 0K ........ ........ ........ ........ ........ ........ 0% 858K 38m12s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 3072K ........ ........ ........ ........ ........ ........ 0% 994K 35m31s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 6144K ........ ........ ........ ........ ........ ........ 0% 1011K 34m25s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 9216K ........ ........ ........ ........ ........ ........ 0% 1023K 33m44s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 12288K ........ ........ ........ ........ ........ ........ 0% 1022K 33m19s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 15360K ........ ........ ........ ........ ........ ........ 0% 994K 33m10s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 18432K ........ ........ ........ ........ ........ ........ 1% 1001K 33m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 21504K ........ ........ ........ ........ ........ ........ 1% 996K 32m55s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 24576K ........ ........ ........ ........ ........ ........ 1% 996K 32m49s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 27648K ........ ........ ........ ........ ........ ........ 1% 965K 32m50s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 30720K ........ ........ ........ ........ ........ ........ 1% 994K 32m45s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 33792K ........ ........ ........ ........ ........ ........ 1% 996K 32m40s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 36864K ........ ........ ........ ........ ........ ........ 2% 996K 32m36s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 39936K ........ ........ ........ ........ ........ ........ 2% 972K 32m35s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 43008K ........ ........ ........ ........ ........ ........ 2% 996K 32m30s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 46080K ........ ........ ........ ........ ........ ........ 2% 1.00M 32m23s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 49152K ........ ........ ........ ........ ........ ........ 2% 997K 32m19s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 52224K ........ ........ ........ ........ ........ ........ 2% 1024K 32m12s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 55296K ........ ........ ........ ........ ........ ........ 2% 997K 32m8s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 58368K ........ ........ ........ ........ ........ ........ 3% 996K 32m5s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 61440K ........ ........ ........ ........ ........ ........ 3% 997K 32m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 64512K ........ ........ ........ ........ ........ ........ 3% 984K 31m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 67584K ........ ........ ........ ........ ........ ........ 3% 971K 31m57s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 70656K ........ ........ ........ ........ ........ ........ 3% 996K 31m54s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 73728K ........ ........ ........ ........ ........ ........ 3% 972K 31m52s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 76800K ........ ........ ........ ........ ........ ........ 4% 784K 32m8s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 79872K ........ ........ ........ ........ ........ ........ 4% 925K 32m9s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 82944K ........ ........ ........ ........ ........ ........ 4% 998K 32m5s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 86016K ........ ........ ........ ........ ........ ........ 4% 995K 32m0s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 89088K ........ ........ ........ ........ ........ ........ 4% 1000K 31m56s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 92160K ........ ........ ........ ........ ........ ........ 4% 1018K 31m50s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 95232K ........ ........ ........ ........ ........ ........ 4% 1004K 31m46s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ " 98304K ........ ........ ........ ........ ........ ........ 5% 992K 31m42s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "101376K ........ ........ ........ ........ ........ ........ 5% 997K 31m38s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "104448K ........ ........ ........ ........ ........ ........ 5% 994K 31m34s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "107520K ........ ........ ........ ........ ........ ........ 5% 996K 31m31s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "110592K ........ ........ ........ ........ ........ ........ 5% 996K 31m27s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "113664K ........ ........ ........ ........ ........ ........ 5% 997K 31m23s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "116736K ........ ........ ........ ........ ........ ........ 6% 1007K 31m19s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "119808K ........ ........ ........ ........ ........ ........ 6% 997K 31m15s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "122880K ........ ........ ........ ........ ........ ........ 6% 996K 31m11s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "125952K ........ ........ ........ ........ ........ ........ 6% 997K 31m8s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "129024K ........ ........ ........ ........ ........ ........ 6% 994K 31m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "132096K ........ ........ ........ ........ ........ ........ 6% 973K 31m2s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "135168K ........ ........ ........ ........ ........ ........ 7% 995K 30m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "138240K ........ ........ ........ ........ ........ ........ 7% 1022K 30m54s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "141312K ........ ........ ........ ........ ........ ........ 7% 1022K 30m49s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "144384K ........ ........ ........ ........ ........ ........ 7% 1001K 30m46s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "147456K ........ ........ ........ ........ ........ ........ 7% 997K 30m42s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "150528K ........ ........ ........ ........ ........ ........ 7% 997K 30m39s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "153600K ........ ........ ........ ........ ........ ........ 7% 1023K 30m34s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "156672K ........ ........ ........ ........ ........ ........ 8% 967K 30m32s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "159744K ........ ........ ........ ........ ........ ........ 8% 985K 30m29s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "162816K ........ ........ ........ ........ ........ ........ 8% 1020K 30m25s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "165888K ........ ........ ........ ........ ........ ........ 8% 1014K 30m21s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "168960K ........ ........ ........ ........ ........ ........ 8% 1023K 30m17s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "172032K ........ ........ ........ ........ ........ ........ 8% 979K 30m14s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "175104K ........ ........ ........ ........ ........ ........ 9% 1023K 30m10s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "178176K ........ ........ ........ ........ ........ ........ 9% 997K 30m6s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "181248K ........ ........ ........ ........ ........ ........ 9% 1.01M 30m2s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "184320K ........ ........ ........ ........ ........ ........ 9% 1011K 29m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "187392K ........ ........ ........ ........ ........ ........ 9% 996K 29m55s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "190464K ........ ........ ........ ........ ........ ........ 9% 1024K 29m51s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "193536K ........ ........ ........ ........ ........ ........ 9% 996K 29m48s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "196608K ........ ........ ........ ........ ........ ........ 10% 1023K 29m44s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "199680K ........ ........ ........ ........ ........ ........ 10% 1022K 29m40s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "202752K ........ ........ ........ ........ ........ ........ 10% 971K 29m37s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "205824K ........ ........ ........ ........ ........ ........ 10% 972K 29m35s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "208896K ........ ........ ........ ........ ........ ........ 10% 996K 29m32s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "211968K ........ ........ ........ ........ ........ ........ 10% 997K 29m28s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "215040K ........ ........ ........ ........ ........ ........ 11% 998K 29m25s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "218112K ........ ........ ........ ........ ........ ........ 11% 971K 29m22s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "221184K ........ ........ ........ ........ ........ ........ 11% 942K 29m21s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "224256K ........ ........ ........ ........ ........ ........ 11% 1.03M 29m16s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "227328K ........ ........ ........ ........ ........ ........ 11% 995K 29m13s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "230400K ........ ........ ........ ........ ........ ........ 11% 972K 29m10s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "233472K ........ ........ ........ ........ ........ ........ 12% 998K 29m7s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "236544K ........ ........ ........ ........ ........ ........ 12% 1021K 29m3s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "239616K ........ ........ ........ ........ ........ ........ 12% 997K 29m0s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "242688K ........ ........ ........ ........ ........ ........ 12% 996K 28m57s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "245760K ........ ........ ........ ........ ........ ........ 12% 1.00M 28m53s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "248832K ........ ........ ........ ........ ........ ........ 12% 1.00M 28m49s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "251904K ........ ........ ........ ........ ........ ........ 12% 991K 28m46s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "254976K ........ ........ ........ ........ ........ ........ 13% 994K 28m43s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "258048K ........ ........ ........ ........ ........ ........ 13% 995K 28m40s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "261120K ........ ........ ........ ........ ........ ........ 13% 995K 28m37s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "264192K ........ ........ ........ ........ ........ ........ 13% 1.02M 28m33s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "267264K ........ ........ ........ ........ ........ ........ 13% 995K 28m30s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "270336K ........ ........ ........ ........ ........ ........ 13% 1021K 28m26s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "273408K ........ ........ ........ ........ ........ ........ 14% 1021K 28m23s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "276480K ........ ........ ........ ........ ........ ........ 14% 969K 28m20s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "279552K ........ ........ ........ ........ ........ ........ 14% 1023K 28m16s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "282624K ........ ........ ........ ........ ........ ........ 14% 990K 28m13s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "285696K ........ ........ ........ ........ ........ ........ 14% 1020K 28m10s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "288768K ........ ........ ........ ........ ........ ........ 14% 1022K 28m6s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "291840K ........ ........ ........ ........ ........ ........ 14% 998K 28m3s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "294912K ........ ........ ........ ........ ........ ........ 15% 1.00M 27m59s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "297984K ........ ........ ........ ........ ........ ........ 15% 1019K 27m56s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "301056K ........ ........ ........ ........ ........ ........ 15% 995K 27m53s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "304128K ........ ........ ........ ........ ........ ........ 15% 1.00M 27m49s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "307200K ........ ........ ........ ........ ........ ........ 15% 1019K 27m46s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "310272K ........ ........ ........ ........ ........ ........ 15% 996K 27m43s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "313344K ........ ........ ........ ........ ........ ........ 16% 963K 27m40s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "316416K ........ ........ ........ ........ ........ ........ 16% 993K 27m37s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "319488K ........ ........ ........ ........ ........ ........ 16% 1015K 27m34s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "322560K ........ ........ ........ ........ ........ ........ 16% 996K 27m31s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "325632K ........ ........ ........ ........ ........ ........ 16% 997K 27m28s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "328704K ........ ........ ........ ........ ........ ........ 16% 1023K 27m24s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "331776K ........ ........ ........ ........ ........ ........ 17% 1022K 27m21s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "334848K ........ ........ ........ ........ ........ ........ 17% 995K 27m18s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "337920K ........ ........ ........ ........ ........ ........ 17% 1023K 27m14s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "340992K ........ ........ ........ ........ ........ ........ 17% 1023K 27m11s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "344064K ........ ........ ........ ........ ........ ........ 17% 1022K 27m7s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "347136K ........ ........ ........ ........ ........ ........ 17% 979K 27m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "350208K ........ ........ ........ ........ ........ ........ 17% 971K 27m2s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "353280K ........ ........ ........ ........ ........ ........ 18% 1015K 26m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "356352K ........ ........ ........ ........ ........ ........ 18% 997K 26m55s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "359424K ........ ........ ........ ........ ........ ........ 18% 1.00M 26m52s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "362496K ........ ........ ........ ........ ........ ........ 18% 1009K 26m49s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "365568K ........ ........ ........ ........ ........ ........ 18% 1023K 26m45s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "368640K ........ ........ ........ ........ ........ ........ 18% 1023K 26m42s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "371712K ........ ........ ........ ........ ........ ........ 19% 954K 26m39s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "374784K ........ ........ ........ ........ ........ ........ 19% 1020K 26m36s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "377856K ........ ........ ........ ........ ........ ........ 19% 1021K 26m32s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "380928K ........ ........ ........ ........ ........ ........ 19% 995K 26m29s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "384000K ........ ........ ........ ........ ........ ........ 19% 991K 26m26s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "387072K ........ ........ ........ ........ ........ ........ 19% 1008K 26m23s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "390144K ........ ........ ........ ........ ........ ........ 19% 996K 26m20s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "393216K ........ ........ ........ ........ ........ ........ 20% 1022K 26m17s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "396288K ........ ........ ........ ........ ........ ........ 20% 995K 26m14s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "399360K ........ ........ ........ ........ ........ ........ 20% 996K 26m11s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "402432K ........ ........ ........ ........ ........ ........ 20% 994K 26m8s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "405504K ........ ........ ........ ........ ........ ........ 20% 1020K 26m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "408576K ........ ........ ........ ........ ........ ........ 20% 997K 26m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "411648K ........ ........ ........ ........ ........ ........ 21% 1022K 25m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "414720K ........ ........ ........ ........ ........ ........ 21% 1022K 25m54s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "417792K ........ ........ ........ ........ ........ ........ 21% 1020K 25m51s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "420864K ........ ........ ........ ........ ........ ........ 21% 994K 25m48s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "423936K ........ ........ ........ ........ ........ ........ 21% 981K 25m45s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "427008K ........ ........ ........ ........ ........ ........ 21% 1.03M 25m42s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "430080K ........ ........ ........ ........ ........ ........ 21% 997K 25m39s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "433152K ........ ........ ........ ........ ........ ........ 22% 1023K 25m35s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "436224K ........ ........ ........ ........ ........ ........ 22% 998K 25m32s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "439296K ........ ........ ........ ........ ........ ........ 22% 997K 25m29s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "442368K ........ ........ ........ ........ ........ ........ 22% 1024K 25m26s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "445440K ........ ........ ........ ........ ........ ........ 22% 995K 25m23s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "448512K ........ ........ ........ ........ ........ ........ 22% 1021K 25m19s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "451584K ........ ........ ........ ........ ........ ........ 23% 995K 25m16s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "454656K ........ ........ ........ ........ ........ ........ 23% 968K 25m14s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "457728K ........ ........ ........ ........ ........ ........ 23% 1009K 25m10s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "460800K ........ ........ ........ ........ ........ ........ 23% 1006K 25m7s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "463872K ........ ........ ........ ........ ........ ........ 23% 1015K 25m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "466944K ........ ........ ........ ........ ........ ........ 23% 1021K 25m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "470016K ........ ........ ........ ........ ........ ........ 24% 1007K 24m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "473088K ........ ........ ........ ........ ........ ........ 24% 1013K 24m54s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "476160K ........ ........ ........ ........ ........ ........ 24% 1002K 24m51s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "479232K ........ ........ ........ ........ ........ ........ 24% 1017K 24m48s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "482304K ........ ........ ........ ........ ........ ........ 24% 1001K 24m45s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "485376K ........ ........ ........ ........ ........ ........ 24% 1.02M 24m41s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "488448K ........ ........ ........ ........ ........ ........ 24% 989K 24m38s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "491520K ........ ........ ........ ........ ........ ........ 25% 971K 24m36s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "494592K ........ ........ ........ ........ ........ ........ 25% 1021K 24m32s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "497664K ........ ........ ........ ........ ........ ........ 25% 957K 24m30s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "500736K ........ ........ ........ ........ ........ ........ 25% 997K 24m27s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "503808K ........ ........ ........ ........ ........ ........ 25% 992K 24m24s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "506880K ........ ........ ........ ........ ........ ........ 25% 1023K 24m20s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "509952K ........ ........ ........ ........ ........ ........ 26% 1022K 24m17s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "513024K ........ ........ ........ ........ ........ ........ 26% 1022K 24m14s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "516096K ........ ........ ........ ........ ........ ........ 26% 1021K 24m11s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "519168K ........ ........ ........ ........ ........ ........ 26% 996K 24m8s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "522240K ........ ........ ........ ........ ........ ........ 26% 1023K 24m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "525312K ........ ........ ........ ........ ........ ........ 26% 1021K 24m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "528384K ........ ........ ........ ........ ........ ........ 26% 988K 23m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "531456K ........ ........ ........ ........ ........ ........ 27% 1.00M 23m55s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "534528K ........ ........ ........ ........ ........ ........ 27% 1013K 23m52s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "537600K ........ ........ ........ ........ ........ ........ 27% 995K 23m49s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "540672K ........ ........ ........ ........ ........ ........ 27% 1016K 23m45s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "543744K ........ ........ ........ ........ ........ ........ 27% 997K 23m42s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "546816K ........ ........ ........ ........ ........ ........ 27% 1003K 23m39s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "549888K ........ ........ ........ ........ ........ ........ 28% 993K 23m36s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "552960K ........ ........ ........ ........ ........ ........ 28% 974K 23m33s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "556032K ........ ........ ........ ........ ........ ........ 28% 994K 23m30s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "559104K ........ ........ ........ ........ ........ ........ 28% 997K 23m27s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "562176K ........ ........ ........ ........ ........ ........ 28% 993K 23m24s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "565248K ........ ........ ........ ........ ........ ........ 28% 1024K 23m21s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "568320K ........ ........ ........ ........ ........ ........ 29% 996K 23m18s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "571392K ........ ........ ........ ........ ........ ........ 29% 1.00M 23m15s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "574464K ........ ........ ........ ........ ........ ........ 29% 998K 23m12s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "577536K ........ ........ ........ ........ ........ ........ 29% 1018K 23m8s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "580608K ........ ........ ........ ........ ........ ........ 29% 968K 23m6s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "583680K ........ ........ ........ ........ ........ ........ 29% 1023K 23m2s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "586752K ........ ........ ........ ........ ........ ........ 29% 999K 22m59s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "589824K ........ ........ ........ ........ ........ ........ 30% 1.02M 22m56s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "592896K ........ ........ ........ ........ ........ ........ 30% 996K 22m53s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "595968K ........ ........ ........ ........ ........ ........ 30% 1001K 22m50s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "599040K ........ ........ ........ ........ ........ ........ 30% 990K 22m47s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "602112K ........ ........ ........ ........ ........ ........ 30% 995K 22m44s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "605184K ........ ........ ........ ........ ........ ........ 30% 997K 22m41s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "608256K ........ ........ ........ ........ ........ ........ 31% 918K 22m38s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "611328K ........ ........ ........ ........ ........ ........ 31% 1.03M 22m35s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "614400K ........ ........ ........ ........ ........ ........ 31% 1.00M 22m32s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "617472K ........ ........ ........ ........ ........ ........ 31% 997K 22m29s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "620544K ........ ........ ........ ........ ........ ........ 31% 978K 22m26s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "623616K ........ ........ ........ ........ ........ ........ 31% 1018K 22m22s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "626688K ........ ........ ........ ........ ........ ........ 31% 970K 22m20s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "629760K ........ ........ ........ ........ ........ ........ 32% 1.01M 22m16s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "632832K ........ ........ ........ ........ ........ ........ 32% 1.00M 22m13s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "635904K ........ ........ ........ ........ ........ ........ 32% 1008K 22m10s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "638976K ........ ........ ........ ........ ........ ........ 32% 1013K 22m7s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "642048K ........ ........ ........ ........ ........ ........ 32% 1008K 22m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "645120K ........ ........ ........ ........ ........ ........ 32% 1011K 22m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "648192K ........ ........ ........ ........ ........ ........ 33% 970K 21m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "651264K ........ ........ ........ ........ ........ ........ 33% 1015K 21m54s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "654336K ........ ........ ........ ........ ........ ........ 33% 1012K 21m51s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "657408K ........ ........ ........ ........ ........ ........ 33% 984K 21m48s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "660480K ........ ........ ........ ........ ........ ........ 33% 1010K 21m45s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "663552K ........ ........ ........ ........ ........ ........ 33% 1009K 21m42s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "666624K ........ ........ ........ ........ ........ ........ 34% 998K 21m39s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "669696K ........ ........ ........ ........ ........ ........ 34% 971K 21m36s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "672768K ........ ........ ........ ........ ........ ........ 34% 996K 21m33s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "675840K ........ ........ ........ ........ ........ ........ 34% 972K 21m30s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "678912K ........ ........ ........ ........ ........ ........ 34% 990K 21m27s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "681984K ........ ........ ........ ........ ........ ........ 34% 1023K 21m24s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "685056K ........ ........ ........ ........ ........ ........ 34% 1014K 21m21s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "688128K ........ ........ ........ ........ ........ ........ 35% 996K 21m18s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "691200K ........ ........ ........ ........ ........ ........ 35% 992K 21m15s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "694272K ........ ........ ........ ........ ........ ........ 35% 995K 21m12s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "697344K ........ ........ ........ ........ ........ ........ 35% 996K 21m9s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "700416K ........ ........ ........ ........ ........ ........ 35% 996K 21m6s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "703488K ........ ........ ........ ........ ........ ........ 35% 1023K 21m2s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "706560K ........ ........ ........ ........ ........ ........ 36% 985K 20m59s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "709632K ........ ........ ........ ........ ........ ........ 36% 1.00M 20m56s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "712704K ........ ........ ........ ........ ........ ........ 36% 985K 20m53s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "715776K ........ ........ ........ ........ ........ ........ 36% 968K 20m50s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "718848K ........ ........ ........ ........ ........ ........ 36% 995K 20m47s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "721920K ........ ........ ........ ........ ........ ........ 36% 1007K 20m44s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "724992K ........ ........ ........ ........ ........ ........ 36% 986K 20m41s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "728064K ........ ........ ........ ........ ........ ........ 37% 1.01M 20m38s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "731136K ........ ........ ........ ........ ........ ........ 37% 996K 20m35s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "734208K ........ ........ ........ ........ ........ ........ 37% 1.00M 20m32s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "737280K ........ ........ ........ ........ ........ ........ 37% 984K 20m29s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "740352K ........ ........ ........ ........ ........ ........ 37% 1010K 20m26s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "743424K ........ ........ ........ ........ ........ ........ 37% 1023K 20m22s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "746496K ........ ........ ........ ........ ........ ........ 38% 1011K 20m19s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "749568K ........ ........ ........ ........ ........ ........ 38% 998K 20m16s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "752640K ........ ........ ........ ........ ........ ........ 38% 1023K 20m13s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "755712K ........ ........ ........ ........ ........ ........ 38% 991K 20m10s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "758784K ........ ........ ........ ........ ........ ........ 38% 1009K 20m7s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "761856K ........ ........ ........ ........ ........ ........ 38% 981K 20m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "764928K ........ ........ ........ ........ ........ ........ 39% 996K 20m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "768000K ........ ........ ........ ........ ........ ........ 39% 1011K 19m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "771072K ........ ........ ........ ........ ........ ........ 39% 1005K 19m55s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "774144K ........ ........ ........ ........ ........ ........ 39% 1.00M 19m51s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "777216K ........ ........ ........ ........ ........ ........ 39% 970K 19m49s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "780288K ........ ........ ........ ........ ........ ........ 39% 1012K 19m45s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "783360K ........ ........ ........ ........ ........ ........ 39% 1021K 19m42s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "786432K ........ ........ ........ ........ ........ ........ 40% 954K 19m39s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "789504K ........ ........ ........ ........ ........ ........ 40% 969K 19m36s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "792576K ........ ........ ........ ........ ........ ........ 40% 998K 19m33s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "795648K ........ ........ ........ ........ ........ ........ 40% 996K 19m30s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "798720K ........ ........ ........ ........ ........ ........ 40% 1019K 19m27s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "801792K ........ ........ ........ ........ ........ ........ 40% 978K 19m24s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "804864K ........ ........ ........ ........ ........ ........ 41% 1000K 19m21s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "807936K ........ ........ ........ ........ ........ ........ 41% 1009K 19m18s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "811008K ........ ........ ........ ........ ........ ........ 41% 972K 19m15s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "814080K ........ ........ ........ ........ ........ ........ 41% 957K 19m12s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "817152K ........ ........ ........ ........ ........ ........ 41% 985K 19m9s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "820224K ........ ........ ........ ........ ........ ........ 41% 1008K 19m6s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "823296K ........ ........ ........ ........ ........ ........ 41% 989K 19m3s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "826368K ........ ........ ........ ........ ........ ........ 42% 998K 19m0s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "829440K ........ ........ ........ ........ ........ ........ 42% 1021K 18m57s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "832512K ........ ........ ........ ........ ........ ........ 42% 999K 18m54s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "835584K ........ ........ ........ ........ ........ ........ 42% 989K 18m51s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "838656K ........ ........ ........ ........ ........ ........ 42% 1012K 18m48s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "841728K ........ ........ ........ ........ ........ ........ 42% 1006K 18m45s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "844800K ........ ........ ........ ........ ........ ........ 43% 979K 18m42s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "847872K ........ ........ ........ ........ ........ ........ 43% 1012K 18m38s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "850944K ........ ........ ........ ........ ........ ........ 43% 1010K 18m35s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "854016K ........ ........ ........ ........ ........ ........ 43% 998K 18m32s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "857088K ........ ........ ........ ........ ........ ........ 43% 998K 18m29s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "860160K ........ ........ ........ ........ ........ ........ 43% 1008K 18m26s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "863232K ........ ........ ........ ........ ........ ........ 43% 1012K 18m23s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "866304K ........ ........ ........ ........ ........ ........ 44% 1008K 18m20s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "869376K ........ ........ ........ ........ ........ ........ 44% 1.02M 18m17s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "872448K ........ ........ ........ ........ ........ ........ 44% 1023K 18m14s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "875520K ........ ........ ........ ........ ........ ........ 44% 1006K 18m10s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "878592K ........ ........ ........ ........ ........ ........ 44% 1009K 18m7s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "881664K ........ ........ ........ ........ ........ ........ 44% 997K 18m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "884736K ........ ........ ........ ........ ........ ........ 45% 1008K 18m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "887808K ........ ........ ........ ........ ........ ........ 45% 971K 17m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "890880K ........ ........ ........ ........ ........ ........ 45% 1021K 17m55s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "893952K ........ ........ ........ ........ ........ ........ 45% 1000K 17m52s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "897024K ........ ........ ........ ........ ........ ........ 45% 1023K 17m49s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "900096K ........ ........ ........ ........ ........ ........ 45% 999K 17m46s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "903168K ........ ........ ........ ........ ........ ........ 46% 1023K 17m43s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "906240K ........ ........ ........ ........ ........ ........ 46% 960K 17m40s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "909312K ........ ........ ........ ........ ........ ........ 46% 997K 17m37s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "912384K ........ ........ ........ ........ ........ ........ 46% 1.01M 17m33s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "915456K ........ ........ ........ ........ ........ ........ 46% 997K 17m30s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "918528K ........ ........ ........ ........ ........ ........ 46% 1009K 17m27s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "921600K ........ ........ ........ ........ ........ ........ 46% 999K 17m24s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "924672K ........ ........ ........ ........ ........ ........ 47% 1009K 17m21s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "927744K ........ ........ ........ ........ ........ ........ 47% 995K 17m18s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "930816K ........ ........ ........ ........ ........ ........ 47% 1021K 17m15s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "933888K ........ ........ ........ ........ ........ ........ 47% 953K 17m12s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "936960K ........ ........ ........ ........ ........ ........ 47% 1000K 17m9s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "940032K ........ ........ ........ ........ ........ ........ 47% 1024K 17m6s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "943104K ........ ........ ........ ........ ........ ........ 48% 995K 17m3s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "946176K ........ ........ ........ ........ ........ ........ 48% 997K 17m0s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "949248K ........ ........ ........ ........ ........ ........ 48% 1021K 16m57s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "952320K ........ ........ ........ ........ ........ ........ 48% 998K 16m53s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "955392K ........ ........ ........ ........ ........ ........ 48% 992K 16m50s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "958464K ........ ........ ........ ........ ........ ........ 48% 1022K 16m47s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "961536K ........ ........ ........ ........ ........ ........ 48% 1024K 16m44s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "964608K ........ ........ ........ ........ ........ ........ 49% 979K 16m41s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "967680K ........ ........ ........ ........ ........ ........ 49% 996K 16m38s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "970752K ........ ........ ........ ........ ........ ........ 49% 995K 16m35s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "973824K ........ ........ ........ ........ ........ ........ 49% 1.00M 16m32s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "976896K ........ ........ ........ ........ ........ ........ 49% 1023K 16m29s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "979968K ........ ........ ........ ........ ........ ........ 49% 994K 16m26s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "983040K ........ ........ ........ ........ ........ ........ 50% 972K 16m23s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "986112K ........ ........ ........ ........ ........ ........ 50% 997K 16m20s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "989184K ........ ........ ........ ........ ........ ........ 50% 970K 16m17s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "992256K ........ ........ ........ ........ ........ ........ 50% 1.03M 16m13s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "995328K ........ ........ ........ ........ ........ ........ 50% 997K 16m10s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "998400K ........ ........ ........ ........ ........ ........ 50% 996K 16m7s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1001472K ........ ........ ........ ........ ........ ........ 51% 945K 16m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1004544K ........ ........ ........ ........ ........ ........ 51% 985K 16m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1007616K ........ ........ ........ ........ ........ ........ 51% 996K 15m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1010688K ........ ........ ........ ........ ........ ........ 51% 1010K 15m55s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1013760K ........ ........ ........ ........ ........ ........ 51% 1008K 15m52s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1016832K ........ ........ ........ ........ ........ ........ 51% 973K 15m49s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1019904K ........ ........ ........ ........ ........ ........ 51% 1023K 15m46s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1022976K ........ ........ ........ ........ ........ ........ 52% 972K 15m43s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1026048K ........ ........ ........ ........ ........ ........ 52% 1020K 15m40s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1029120K ........ ........ ........ ........ ........ ........ 52% 1000K 15m37s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1032192K ........ ........ ........ ........ ........ ........ 52% 992K 15m34s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1035264K ........ ........ ........ ........ ........ ........ 52% 996K 15m31s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1038336K ........ ........ ........ ........ ........ ........ 52% 1021K 15m28s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1041408K ........ ........ ........ ........ ........ ........ 53% 1018K 15m25s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1044480K ........ ........ ........ ........ ........ ........ 53% 1.00M 15m21s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1047552K ........ ........ ........ ........ ........ ........ 53% 997K 15m18s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1050624K ........ ........ ........ ........ ........ ........ 53% 1.02M 15m15s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1053696K ........ ........ ........ ........ ........ ........ 53% 1.00M 15m12s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1056768K ........ ........ ........ ........ ........ ........ 53% 1013K 15m9s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1059840K ........ ........ ........ ........ ........ ........ 53% 1.01M 15m6s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1062912K ........ ........ ........ ........ ........ ........ 54% 1.00M 15m3s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1065984K ........ ........ ........ ........ ........ ........ 54% 1012K 14m59s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1069056K ........ ........ ........ ........ ........ ........ 54% 1022K 14m56s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1072128K ........ ........ ........ ........ ........ ........ 54% 990K 14m53s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1075200K ........ ........ ........ ........ ........ ........ 54% 1000K 14m50s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1078272K ........ ........ ........ ........ ........ ........ 54% 1017K 14m47s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1081344K ........ ........ ........ ........ ........ ........ 55% 993K 14m44s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1084416K ........ ........ ........ ........ ........ ........ 55% 1022K 14m41s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1087488K ........ ........ ........ ........ ........ ........ 55% 996K 14m38s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1090560K ........ ........ ........ ........ ........ ........ 55% 1.02M 14m35s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1093632K ........ ........ ........ ........ ........ ........ 55% 997K 14m32s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1096704K ........ ........ ........ ........ ........ ........ 55% 996K 14m29s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1099776K ........ ........ ........ ........ ........ ........ 56% 995K 14m26s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1102848K ........ ........ ........ ........ ........ ........ 56% 994K 14m23s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1105920K ........ ........ ........ ........ ........ ........ 56% 1021K 14m19s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1108992K ........ ........ ........ ........ ........ ........ 56% 998K 14m16s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1112064K ........ ........ ........ ........ ........ ........ 56% 1021K 14m13s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1115136K ........ ........ ........ ........ ........ ........ 56% 996K 14m10s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1118208K ........ ........ ........ ........ ........ ........ 56% 1022K 14m7s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1121280K ........ ........ ........ ........ ........ ........ 57% 994K 14m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1124352K ........ ........ ........ ........ ........ ........ 57% 1023K 14m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1127424K ........ ........ ........ ........ ........ ........ 57% 996K 13m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1130496K ........ ........ ........ ........ ........ ........ 57% 991K 13m55s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1133568K ........ ........ ........ ........ ........ ........ 57% 994K 13m52s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1136640K ........ ........ ........ ........ ........ ........ 57% 1022K 13m49s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1139712K ........ ........ ........ ........ ........ ........ 58% 1022K 13m45s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1142784K ........ ........ ........ ........ ........ ........ 58% 1022K 13m42s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1145856K ........ ........ ........ ........ ........ ........ 58% 1006K 13m39s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1148928K ........ ........ ........ ........ ........ ........ 58% 1.02M 13m36s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1152000K ........ ........ ........ ........ ........ ........ 58% 1023K 13m33s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1155072K ........ ........ ........ ........ ........ ........ 58% 1002K 13m30s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1158144K ........ ........ ........ ........ ........ ........ 58% 1018K 13m27s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1161216K ........ ........ ........ ........ ........ ........ 59% 997K 13m24s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1164288K ........ ........ ........ ........ ........ ........ 59% 1004K 13m21s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1167360K ........ ........ ........ ........ ........ ........ 59% 1015K 13m18s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1170432K ........ ........ ........ ........ ........ ........ 59% 983K 13m15s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1173504K ........ ........ ........ ........ ........ ........ 59% 1008K 13m12s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1176576K ........ ........ ........ ........ ........ ........ 59% 1022K 13m8s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1179648K ........ ........ ........ ........ ........ ........ 60% 1023K 13m5s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1182720K ........ ........ ........ ........ ........ ........ 60% 1021K 13m2s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1185792K ........ ........ ........ ........ ........ ........ 60% 1.01M 12m59s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1188864K ........ ........ ........ ........ ........ ........ 60% 1007K 12m56s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1191936K ........ ........ ........ ........ ........ ........ 60% 980K 12m53s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1195008K ........ ........ ........ ........ ........ ........ 60% 990K 12m50s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1198080K ........ ........ ........ ........ ........ ........ 60% 1019K 12m47s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1201152K ........ ........ ........ ........ ........ ........ 61% 1005K 12m44s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1204224K ........ ........ ........ ........ ........ ........ 61% 1.01M 12m41s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1207296K ........ ........ ........ ........ ........ ........ 61% 1009K 12m38s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1210368K ........ ........ ........ ........ ........ ........ 61% 1010K 12m34s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1213440K ........ ........ ........ ........ ........ ........ 61% 994K 12m31s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1216512K ........ ........ ........ ........ ........ ........ 61% 1.00M 12m28s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1219584K ........ ........ ........ ........ ........ ........ 62% 1023K 12m25s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1222656K ........ ........ ........ ........ ........ ........ 62% 1021K 12m22s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1225728K ........ ........ ........ ........ ........ ........ 62% 998K 12m19s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1228800K ........ ........ ........ ........ ........ ........ 62% 1022K 12m16s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1231872K ........ ........ ........ ........ ........ ........ 62% 999K 12m13s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1234944K ........ ........ ........ ........ ........ ........ 62% 968K 12m10s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1238016K ........ ........ ........ ........ ........ ........ 63% 991K 12m7s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1241088K ........ ........ ........ ........ ........ ........ 63% 1011K 12m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1244160K ........ ........ ........ ........ ........ ........ 63% 975K 12m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1247232K ........ ........ ........ ........ ........ ........ 63% 1023K 11m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1250304K ........ ........ ........ ........ ........ ........ 63% 1023K 11m55s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1253376K ........ ........ ........ ........ ........ ........ 63% 1022K 11m51s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1256448K ........ ........ ........ ........ ........ ........ 63% 964K 11m48s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1259520K ........ ........ ........ ........ ........ ........ 64% 995K 11m45s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1262592K ........ ........ ........ ........ ........ ........ 64% 1020K 11m42s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1265664K ........ ........ ........ ........ ........ ........ 64% 993K 11m39s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1268736K ........ ........ ........ ........ ........ ........ 64% 970K 11m36s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1271808K ........ ........ ........ ........ ........ ........ 64% 995K 11m33s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1274880K ........ ........ ........ ........ ........ ........ 64% 1.02M 11m30s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1277952K ........ ........ ........ ........ ........ ........ 65% 977K 11m27s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1281024K ........ ........ ........ ........ ........ ........ 65% 1014K 11m24s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1284096K ........ ........ ........ ........ ........ ........ 65% 1022K 11m21s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1287168K ........ ........ ........ ........ ........ ........ 65% 1007K 11m18s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1290240K ........ ........ ........ ........ ........ ........ 65% 985K 11m15s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1293312K ........ ........ ........ ........ ........ ........ 65% 1.03M 11m12s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1296384K ........ ........ ........ ........ ........ ........ 65% 1008K 11m8s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1299456K ........ ........ ........ ........ ........ ........ 66% 1013K 11m5s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1302528K ........ ........ ........ ........ ........ ........ 66% 977K 11m2s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1305600K ........ ........ ........ ........ ........ ........ 66% 971K 10m59s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1308672K ........ ........ ........ ........ ........ ........ 66% 1013K 10m56s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1311744K ........ ........ ........ ........ ........ ........ 66% 1022K 10m53s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1314816K ........ ........ ........ ........ ........ ........ 66% 1021K 10m50s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1317888K ........ ........ ........ ........ ........ ........ 67% 971K 10m47s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1320960K ........ ........ ........ ........ ........ ........ 67% 1009K 10m44s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1324032K ........ ........ ........ ........ ........ ........ 67% 1024K 10m41s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1327104K ........ ........ ........ ........ ........ ........ 67% 1007K 10m38s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1330176K ........ ........ ........ ........ ........ ........ 67% 1010K 10m35s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1333248K ........ ........ ........ ........ ........ ........ 67% 995K 10m32s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1336320K ........ ........ ........ ........ ........ ........ 68% 968K 10m29s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1339392K ........ ........ ........ ........ ........ ........ 68% 1022K 10m26s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1342464K ........ ........ ........ ........ ........ ........ 68% 1019K 10m22s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1345536K ........ ........ ........ ........ ........ ........ 68% 996K 10m19s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1348608K ........ ........ ........ ........ ........ ........ 68% 1017K 10m16s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1351680K ........ ........ ........ ........ ........ ........ 68% 1020K 10m13s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1354752K ........ ........ ........ ........ ........ ........ 68% 995K 10m10s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1357824K ........ ........ ........ ........ ........ ........ 69% 967K 10m7s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1360896K ........ ........ ........ ........ ........ ........ 69% 1018K 10m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1363968K ........ ........ ........ ........ ........ ........ 69% 994K 10m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1367040K ........ ........ ........ ........ ........ ........ 69% 972K 9m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1370112K ........ ........ ........ ........ ........ ........ 69% 1021K 9m55s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1373184K ........ ........ ........ ........ ........ ........ 69% 964K 9m52s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1376256K ........ ........ ........ ........ ........ ........ 70% 996K 9m49s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1379328K ........ ........ ........ ........ ........ ........ 70% 1022K 9m46s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1382400K ........ ........ ........ ........ ........ ........ 70% 996K 9m43s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1385472K ........ ........ ........ ........ ........ ........ 70% 991K 9m40s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1388544K ........ ........ ........ ........ ........ ........ 70% 997K 9m37s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1391616K ........ ........ ........ ........ ........ ........ 70% 995K 9m33s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1394688K ........ ........ ........ ........ ........ ........ 70% 1022K 9m30s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1397760K ........ ........ ........ ........ ........ ........ 71% 1021K 9m27s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1400832K ........ ........ ........ ........ ........ ........ 71% 994K 9m24s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1403904K ........ ........ ........ ........ ........ ........ 71% 1020K 9m21s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1406976K ........ ........ ........ ........ ........ ........ 71% 970K 9m18s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1410048K ........ ........ ........ ........ ........ ........ 71% 971K 9m15s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1413120K ........ ........ ........ ........ ........ ........ 71% 1009K 9m12s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1416192K ........ ........ ........ ........ ........ ........ 72% 968K 9m9s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1419264K ........ ........ ........ ........ ........ ........ 72% 1021K 9m6s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1422336K ........ ........ ........ ........ ........ ........ 72% 993K 9m3s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1425408K ........ ........ ........ ........ ........ ........ 72% 985K 9m0s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1428480K ........ ........ ........ ........ ........ ........ 72% 984K 8m57s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1431552K ........ ........ ........ ........ ........ ........ 72% 994K 8m54s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1434624K ........ ........ ........ ........ ........ ........ 73% 968K 8m51s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1437696K ........ ........ ........ ........ ........ ........ 73% 997K 8m48s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1440768K ........ ........ ........ ........ ........ ........ 73% 993K 8m45s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1443840K ........ ........ ........ ........ ........ ........ 73% 995K 8m42s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1446912K ........ ........ ........ ........ ........ ........ 73% 1021K 8m38s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1449984K ........ ........ ........ ........ ........ ........ 73% 995K 8m35s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1453056K ........ ........ ........ ........ ........ ........ 73% 972K 8m32s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1456128K ........ ........ ........ ........ ........ ........ 74% 1021K 8m29s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1459200K ........ ........ ........ ........ ........ ........ 74% 1022K 8m26s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1462272K ........ ........ ........ ........ ........ ........ 74% 980K 8m23s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1465344K ........ ........ ........ ........ ........ ........ 74% 1010K 8m20s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1468416K ........ ........ ........ ........ ........ ........ 74% 970K 8m17s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1471488K ........ ........ ........ ........ ........ ........ 74% 997K 8m14s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1474560K ........ ........ ........ ........ ........ ........ 75% 971K 8m11s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1477632K ........ ........ ........ ........ ........ ........ 75% 1010K 8m8s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1480704K ........ ........ ........ ........ ........ ........ 75% 997K 8m5s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1483776K ........ ........ ........ ........ ........ ........ 75% 1007K 8m2s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1486848K ........ ........ ........ ........ ........ ........ 75% 1022K 7m59s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1489920K ........ ........ ........ ........ ........ ........ 75% 971K 7m56s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1492992K ........ ........ ........ ........ ........ ........ 75% 997K 7m52s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1496064K ........ ........ ........ ........ ........ ........ 76% 921K 7m50s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1499136K ........ ........ ........ ........ ........ ........ 76% 972K 7m46s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1502208K ........ ........ ........ ........ ........ ........ 76% 1019K 7m43s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1505280K ........ ........ ........ ........ ........ ........ 76% 997K 7m40s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1508352K ........ ........ ........ ........ ........ ........ 76% 996K 7m37s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1511424K ........ ........ ........ ........ ........ ........ 76% 996K 7m34s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1514496K ........ ........ ........ ........ ........ ........ 77% 969K 7m31s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1517568K ........ ........ ........ ........ ........ ........ 77% 1022K 7m28s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1520640K ........ ........ ........ ........ ........ ........ 77% 969K 7m25s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1523712K ........ ........ ........ ........ ........ ........ 77% 971K 7m22s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1526784K ........ ........ ........ ........ ........ ........ 77% 996K 7m19s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1529856K ........ ........ ........ ........ ........ ........ 77% 997K 7m16s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1532928K ........ ........ ........ ........ ........ ........ 78% 980K 7m13s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1536000K ........ ........ ........ ........ ........ ........ 78% 984K 7m10s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1539072K ........ ........ ........ ........ ........ ........ 78% 1001K 7m7s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1542144K ........ ........ ........ ........ ........ ........ 78% 993K 7m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1545216K ........ ........ ........ ........ ........ ........ 78% 998K 7m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1548288K ........ ........ ........ ........ ........ ........ 78% 972K 6m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1551360K ........ ........ ........ ........ ........ ........ 78% 1.00M 6m54s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1554432K ........ ........ ........ ........ ........ ........ 79% 996K 6m51s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1557504K ........ ........ ........ ........ ........ ........ 79% 998K 6m48s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1560576K ........ ........ ........ ........ ........ ........ 79% 979K 6m45s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1563648K ........ ........ ........ ........ ........ ........ 79% 989K 6m42s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1566720K ........ ........ ........ ........ ........ ........ 79% 708K 6m39s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1569792K ........ ........ ........ ........ ........ ........ 79% 919K 6m36s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1572864K ........ ........ ........ ........ ........ ........ 80% 998K 6m33s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1575936K ........ ........ ........ ........ ........ ........ 80% 994K 6m30s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1579008K ........ ........ ........ ........ ........ ........ 80% 997K 6m27s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1582080K ........ ........ ........ ........ ........ ........ 80% 997K 6m24s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1585152K ........ ........ ........ ........ ........ ........ 80% 1.00M 6m21s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1588224K ........ ........ ........ ........ ........ ........ 80% 1023K 6m18s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1591296K ........ ........ ........ ........ ........ ........ 80% 994K 6m15s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1594368K ........ ........ ........ ........ ........ ........ 81% 995K 6m12s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1597440K ........ ........ ........ ........ ........ ........ 81% 1014K 6m9s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1600512K ........ ........ ........ ........ ........ ........ 81% 971K 6m6s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1603584K ........ ........ ........ ........ ........ ........ 81% 985K 6m3s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1606656K ........ ........ ........ ........ ........ ........ 81% 1000K 6m0s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1609728K ........ ........ ........ ........ ........ ........ 81% 1012K 5m56s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1612800K ........ ........ ........ ........ ........ ........ 82% 994K 5m53s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1615872K ........ ........ ........ ........ ........ ........ 82% 971K 5m50s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1618944K ........ ........ ........ ........ ........ ........ 82% 1013K 5m47s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1622016K ........ ........ ........ ........ ........ ........ 82% 1015K 5m44s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1625088K ........ ........ ........ ........ ........ ........ 82% 1008K 5m41s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1628160K ........ ........ ........ ........ ........ ........ 82% 994K 5m38s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1631232K ........ ........ ........ ........ ........ ........ 82% 1013K 5m35s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1634304K ........ ........ ........ ........ ........ ........ 83% 967K 5m32s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1637376K ........ ........ ........ ........ ........ ........ 83% 1020K 5m29s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1640448K ........ ........ ........ ........ ........ ........ 83% 1024K 5m26s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1643520K ........ ........ ........ ........ ........ ........ 83% 997K 5m23s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1646592K ........ ........ ........ ........ ........ ........ 83% 998K 5m20s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1649664K ........ ........ ........ ........ ........ ........ 83% 982K 5m17s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1652736K ........ ........ ........ ........ ........ ........ 84% 993K 5m13s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1655808K ........ ........ ........ ........ ........ ........ 84% 997K 5m10s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1658880K ........ ........ ........ ........ ........ ........ 84% 1015K 5m7s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1661952K ........ ........ ........ ........ ........ ........ 84% 1006K 5m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1665024K ........ ........ ........ ........ ........ ........ 84% 972K 5m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1668096K ........ ........ ........ ........ ........ ........ 84% 1016K 4m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1671168K ........ ........ ........ ........ ........ ........ 85% 986K 4m55s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1674240K ........ ........ ........ ........ ........ ........ 85% 997K 4m52s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1677312K ........ ........ ........ ........ ........ ........ 85% 997K 4m49s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1680384K ........ ........ ........ ........ ........ ........ 85% 997K 4m46s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1683456K ........ ........ ........ ........ ........ ........ 85% 1015K 4m43s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1686528K ........ ........ ........ ........ ........ ........ 85% 999K 4m40s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1689600K ........ ........ ........ ........ ........ ........ 85% 996K 4m37s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1692672K ........ ........ ........ ........ ........ ........ 86% 1014K 4m34s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1695744K ........ ........ ........ ........ ........ ........ 86% 1004K 4m30s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1698816K ........ ........ ........ ........ ........ ........ 86% 986K 4m27s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1701888K ........ ........ ........ ........ ........ ........ 86% 971K 4m24s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1704960K ........ ........ ........ ........ ........ ........ 86% 995K 4m21s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1708032K ........ ........ ........ ........ ........ ........ 86% 1024K 4m18s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1711104K ........ ........ ........ ........ ........ ........ 87% 1014K 4m15s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1714176K ........ ........ ........ ........ ........ ........ 87% 997K 4m12s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1717248K ........ ........ ........ ........ ........ ........ 87% 1020K 4m9s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1720320K ........ ........ ........ ........ ........ ........ 87% 995K 4m6s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1723392K ........ ........ ........ ........ ........ ........ 87% 1.00M 4m3s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1726464K ........ ........ ........ ........ ........ ........ 87% 997K 4m0s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1729536K ........ ........ ........ ........ ........ ........ 87% 988K 3m57s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1732608K ........ ........ ........ ........ ........ ........ 88% 1018K 3m54s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1735680K ........ ........ ........ ........ ........ ........ 88% 1010K 3m50s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1738752K ........ ........ ........ ........ ........ ........ 88% 992K 3m47s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1741824K ........ ........ ........ ........ ........ ........ 88% 1012K 3m44s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1744896K ........ ........ ........ ........ ........ ........ 88% 990K 3m41s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1747968K ........ ........ ........ ........ ........ ........ 88% 1005K 3m38s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1751040K ........ ........ ........ ........ ........ ........ 89% 999K 3m35s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1754112K ........ ........ ........ ........ ........ ........ 89% 1021K 3m32s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1757184K ........ ........ ........ ........ ........ ........ 89% 994K 3m29s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1760256K ........ ........ ........ ........ ........ ........ 89% 966K 3m26s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1763328K ........ ........ ........ ........ ........ ........ 89% 990K 3m23s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1766400K ........ ........ ........ ........ ........ ........ 89% 996K 3m20s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1769472K ........ ........ ........ ........ ........ ........ 90% 998K 3m17s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1772544K ........ ........ ........ ........ ........ ........ 90% 996K 3m14s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1775616K ........ ........ ........ ........ ........ ........ 90% 971K 3m11s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1778688K ........ ........ ........ ........ ........ ........ 90% 1024K 3m7s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1781760K ........ ........ ........ ........ ........ ........ 90% 972K 3m4s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1784832K ........ ........ ........ ........ ........ ........ 90% 970K 3m1s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1787904K ........ ........ ........ ........ ........ ........ 90% 971K 2m58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1790976K ........ ........ ........ ........ ........ ........ 91% 966K 2m55s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1794048K ........ ........ ........ ........ ........ ........ 91% 996K 2m52s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1797120K ........ ........ ........ ........ ........ ........ 91% 996K 2m49s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1800192K ........ ........ ........ ........ ........ ........ 91% 995K 2m46s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1803264K ........ ........ ........ ........ ........ ........ 91% 997K 2m43s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1806336K ........ ........ ........ ........ ........ ........ 91% 998K 2m40s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1809408K ........ ........ ........ ........ ........ ........ 92% 997K 2m37s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1812480K ........ ........ ........ ........ ........ ........ 92% 1023K 2m34s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1815552K ........ ........ ........ ........ ........ ........ 92% 998K 2m31s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1818624K ........ ........ ........ ........ ........ ........ 92% 995K 2m28s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1821696K ........ ........ ........ ........ ........ ........ 92% 997K 2m24s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1824768K ........ ........ ........ ........ ........ ........ 92% 975K 2m21s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1827840K ........ ........ ........ ........ ........ ........ 92% 997K 2m18s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1830912K ........ ........ ........ ........ ........ ........ 93% 995K 2m15s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1833984K ........ ........ ........ ........ ........ ........ 93% 996K 2m12s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1837056K ........ ........ ........ ........ ........ ........ 93% 1001K 2m9s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1840128K ........ ........ ........ ........ ........ ........ 93% 1023K 2m6s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1843200K ........ ........ ........ ........ ........ ........ 93% 1.00M 2m3s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1846272K ........ ........ ........ ........ ........ ........ 93% 1020K 2m0s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1849344K ........ ........ ........ ........ ........ ........ 94% 1.00M 1m57s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1852416K ........ ........ ........ ........ ........ ........ 94% 1001K 1m54s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1855488K ........ ........ ........ ........ ........ ........ 94% 964K 1m51s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1858560K ........ ........ ........ ........ ........ ........ 94% 1018K 1m48s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1861632K ........ ........ ........ ........ ........ ........ 94% 1.00M 1m45s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1864704K ........ ........ ........ ........ ........ ........ 94% 1020K 1m41s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1867776K ........ ........ ........ ........ ........ ........ 95% 1023K 98s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1870848K ........ ........ ........ ........ ........ ........ 95% 996K 95s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1873920K ........ ........ ........ ........ ........ ........ 95% 1019K 92s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1876992K ........ ........ ........ ........ ........ ........ 95% 1001K 89s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1880064K ........ ........ ........ ........ ........ ........ 95% 1020K 86s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1883136K ........ ........ ........ ........ ........ ........ 95% 997K 83s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1886208K ........ ........ ........ ........ ........ ........ 95% 974K 80s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1889280K ........ ........ ........ ........ ........ ........ 96% 973K 77s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1892352K ........ ........ ........ ........ ........ ........ 96% 998K 74s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1895424K ........ ........ ........ ........ ........ ........ 96% 987K 71s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1898496K ........ ........ ........ ........ ........ ........ 96% 1021K 68s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1901568K ........ ........ ........ ........ ........ ........ 96% 973K 65s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1904640K ........ ........ ........ ........ ........ ........ 96% 1.00M 61s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1907712K ........ ........ ........ ........ ........ ........ 97% 1.03M 58s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1910784K ........ ........ ........ ........ ........ ........ 97% 947K 55s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1913856K ........ ........ ........ ........ ........ ........ 97% 710K 52s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1916928K ........ ........ ........ ........ ........ ........ 97% 987K 49s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1920000K ........ ........ ........ ........ ........ ........ 97% 1019K 46s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1923072K ........ ........ ........ ........ ........ ........ 97% 969K 43s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1926144K ........ ........ ........ ........ ........ ........ 97% 996K 40s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1929216K ........ ........ ........ ........ ........ ........ 98% 986K 37s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1932288K ........ ........ ........ ........ ........ ........ 98% 996K 34s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1935360K ........ ........ ........ ........ ........ ........ 98% 1.01M 31s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1938432K ........ ........ ........ ........ ........ ........ 98% 997K 28s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1941504K ........ ........ ........ ........ ........ ........ 98% 998K 25s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1944576K ........ ........ ........ ........ ........ ........ 98% 1019K 22s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1947648K ........ ........ ........ ........ ........ ........ 99% 999K 18s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1950720K ........ ........ ........ ........ ........ ........ 99% 971K 15s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1953792K ........ ........ ........ ........ ........ ........ 99% 1004K 12s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1956864K ........ ........ ........ ........ ........ ........ 99% 995K 9s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1959936K ........ ........ ........ ........ ........ ........ 99% 994K 6s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1963008K ........ ........ ........ ........ ........ ........ 99% 997K 3s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "1966080K ........ ........ ........ ........ ........ ........ 99% 997K 0s\r\n", "1969152K 100% 7.69M=32m51s\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "--2014-02-12 20:30:34-- http://gdac.broadinstitute.org/runs/stddata__2014_01_15/data/HNSC/20140115/gdac.broadinstitute.org_HNSC.Merge_methylation__humanmethylation450__jhu_usc_edu__Level_3__within_bioassay_data_set_function__data.Level_3.2014011500.0.0.tar.gz.md5\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "Saving to: `stddata__2014_01_15/HNSC/20140115/gdac.broadinstitute.org_HNSC.Merge_methylation__humanmethylation450__jhu_usc_edu__Level_3__within_bioassay_data_set_function__data.Level_3.2014011500.0.0.tar.gz.md5'\r\n", " 0K 100% 18.8M=0s\r\n", "--2014-02-12 20:30:34-- http://gdac.broadinstitute.org/runs/stddata__2014_01_15/data/HNSC/20140115/gdac.broadinstitute.org_HNSC.Merge_methylation__humanmethylation450__jhu_usc_edu__Level_3__within_bioassay_data_set_function__data.aux.2014011500.0.0.tar.gz\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "Saving to: `stddata__2014_01_15/HNSC/20140115/gdac.broadinstitute.org_HNSC.Merge_methylation__humanmethylation450__jhu_usc_edu__Level_3__within_bioassay_data_set_function__data.aux.2014011500.0.0.tar.gz'\r\n", " 0K 100% 131M=0s\r\n", "--2014-02-12 20:30:34-- http://gdac.broadinstitute.org/runs/stddata__2014_01_15/data/HNSC/20140115/gdac.broadinstitute.org_HNSC.Merge_methylation__humanmethylation450__jhu_usc_edu__Level_3__within_bioassay_data_set_function__data.aux.2014011500.0.0.tar.gz.md5\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "Saving to: `stddata__2014_01_15/HNSC/20140115/gdac.broadinstitute.org_HNSC.Merge_methylation__humanmethylation450__jhu_usc_edu__Level_3__within_bioassay_data_set_function__data.aux.2014011500.0.0.tar.gz.md5'\r\n", " 0K 100% 28.0M=0s\r\n", "--2014-02-12 20:30:34-- http://gdac.broadinstitute.org/runs/stddata__2014_01_15/data/HNSC/20140115/gdac.broadinstitute.org_HNSC.Merge_methylation__humanmethylation450__jhu_usc_edu__Level_3__within_bioassay_data_set_function__data.mage-tab.2014011500.0.0.tar.gz\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "Saving to: `stddata__2014_01_15/HNSC/20140115/gdac.broadinstitute.org_HNSC.Merge_methylation__humanmethylation450__jhu_usc_edu__Level_3__within_bioassay_data_set_function__data.mage-tab.2014011500.0.0.tar.gz'\r\n", " 0K 100% 548M=0s\r\n", "--2014-02-12 20:30:34-- http://gdac.broadinstitute.org/runs/stddata__2014_01_15/data/HNSC/20140115/gdac.broadinstitute.org_HNSC.Merge_methylation__humanmethylation450__jhu_usc_edu__Level_3__within_bioassay_data_set_function__data.mage-tab.2014011500.0.0.tar.gz.md5\r\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "Saving to: `stddata__2014_01_15/HNSC/20140115/gdac.broadinstitute.org_HNSC.Merge_methylation__humanmethylation450__jhu_usc_edu__Level_3__within_bioassay_data_set_function__data.mage-tab.2014011500.0.0.tar.gz.md5'\r\n", " 0K 100% 15.5M=0s\r\n", "FINISHED --2014-02-12 20:30:34--\r\n", "Total wall clock time: 32m 53s\r\n", "Downloaded: 8 files, 1.9G in 32m 52s (999 KB/s)\r\n", "\r\n", "\r\n", "Now performing post-processing on retrieved files ...\r\n" ] } ], "prompt_number": 15 }, { "cell_type": "heading", "level": 1, "metadata": {}, "source": [ "Clean Up Downloads" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "No going back from here, so I would check your data to make sure everything got downloaded correctly." ] }, { "cell_type": "code", "collapsed": false, "input": [ "!rm fh_get.zip\n", "!rm firehose_get" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 16 }, { "cell_type": "code", "collapsed": false, "input": [ "if not os.path.isdir(OUT_PATH):\n", " os.makedirs(OUT_PATH)" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 17 }, { "cell_type": "code", "collapsed": false, "input": [ "analyses_folder = 'analyses__' + RUN_DATE\n", "!mv $analyses_folder {OUT_PATH + '/' + analyses_folder}" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 18 }, { "cell_type": "code", "collapsed": false, "input": [ "stddata_folder = 'stddata__' + RUN_DATE\n", "!mv $stddata_folder {OUT_PATH + '/' + stddata_folder}" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 19 }, { "cell_type": "heading", "level": 1, "metadata": {}, "source": [ "Exctract data and set up file hierarchy for downstream analysis" ] }, { "cell_type": "code", "collapsed": true, "input": [ "from Initialization.ProcessFirehose import process_all_cancers\n", "\n", "process_all_cancers(OUT_PATH, RUN_DATE)" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 20 }, { "cell_type": "markdown", "metadata": {}, "source": [ "Get rid of all of the downloaded zip files that we processed" ] }, { "cell_type": "code", "collapsed": false, "input": [ "!rm -rf {OUT_PATH + '/' + stddata_folder}\n", "!rm -rf {OUT_PATH + '/' + analyses_folder}" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 22 }, { "cell_type": "code", "collapsed": false, "input": [ "ls" ], "language": "python", "metadata": {}, "outputs": [ { "output_type": "stream", "stream": "stdout", "text": [ "\u001b[0m\u001b[01;34mData\u001b[0m/ \u001b[01;34mFigures\u001b[0m/ \u001b[01;34mInitialization\u001b[0m/ \u001b[01;34mProcessing\u001b[0m/ \u001b[01;34mStats\u001b[0m/ tmp\r\n" ] } ], "prompt_number": 21 }, { "cell_type": "heading", "level": 1, "metadata": {}, "source": [ "Create Run Object for Firehose Download" ] }, { "cell_type": "code", "collapsed": false, "input": [ "data_path = '{}/Firehose__{}/'.format(OUT_PATH, RUN_DATE)\n", "result_path = data_path + 'ucsd_analyses/'" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 7 }, { "cell_type": "code", "collapsed": false, "input": [ "cancer_codes = pd.read_table('../Extra_Data/diseaseStudy.txt',\n", " index_col=0, squeeze=True)\n", "run_dir = 'http://gdac.broadinstitute.org/runs'\n", "f = '{}/analyses__{}/ingested_data.tsv'.format(run_dir, RUN_DATE)\n", "sample_matrix = pd.read_table(f, index_col=0).dropna()\n", "sample_matrix = sample_matrix.ix[[c for c in sample_matrix.index if \n", " c not in ['PANCAN12', 'COADREAD','Totals']]]" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 101 }, { "cell_type": "code", "collapsed": false, "input": [ "run = Run(RUN_DATE, VERSION, data_path, result_path, PARAMETERS, \n", " cancer_codes, sample_matrix, DESCRIPTION)\n", "run.save()\n", "run" ], "language": "python", "metadata": {}, "outputs": [ { "metadata": {}, "output_type": "pyout", "prompt_number": 119, "text": [ "Run object for TCGA Analysis\n", "Firehose run date: 2014_01_15\n", "Code version: all\n", "Comment: Updating analysis for updated dataset." ] } ], "prompt_number": 119 }, { "cell_type": "heading", "level": 1, "metadata": {}, "source": [ "Initialize Data Objects into the File Hierarchy" ] }, { "cell_type": "code", "collapsed": false, "input": [ "def init(c, run):\n", " try:\n", " cancer_obj = Cancer(c, run) \n", " cancer_obj.initialize_data(run, save=True)\n", " except:\n", " print c + '\\t' + 'all'\n", " try:\n", " initialize_real(c, run.report_path, 'mRNASeq', \n", " create_meta_features=True)\n", " except:\n", " print c + '\\t' + 'mRNASeq'\n", " try:\n", " initialize_real(c, run.report_path, 'RPPA', \n", " create_meta_features=True, create_real_features=False)\n", " except:\n", " print c + '\\t' + 'RPPA'\n", " try:\n", " initialize_real(c, run.report_path, 'miRNASeq', \n", " create_meta_features=False)\n", " except:\n", " print c + '\\t' + 'miRNASeq'\n", " try:\n", " initialize_cn(c, run.report_path, 'CN_broad')\n", " except:\n", " print c + '\\t' + 'CN' \n", " try:\n", " initialize_mut(c, run.report_path, create_meta_features=True);\n", " except:\n", " print c + '\\t' + 'mut' " ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 123 }, { "cell_type": "code", "collapsed": true, "input": [ "for cancer in run.cancers:\n", " init(cancer, run)" ], "language": "python", "metadata": {}, "outputs": [ { "output_type": "stream", "stream": "stdout", "text": [ "ACC\tmRNASeq\n", "ACC\tRPPA" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "ACC\tmiRNASeq" ] }, { "output_type": "stream", "stream": "stderr", "text": [ "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n", "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "CESC\tRPPA" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "DLBC\tmRNASeq" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "DLBC\tRPPA" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "DLBC\tmiRNASeq" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "DLBC\tmut" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "ESCA\tmRNASeq" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "ESCA\tRPPA" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "ESCA\tmut" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "GBM\tmiRNASeq" ] }, { "output_type": "stream", "stream": "stderr", "text": [ "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n", "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "KICH\tRPPA" ] }, { "output_type": "stream", "stream": "stderr", "text": [ "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n", "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "KIRP\tRPPA" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "LAML\tmRNASeq" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "LAML\tRPPA" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "LAML\tmiRNASeq" ] }, { "output_type": "stream", "stream": "stderr", "text": [ "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n", "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "LIHC\tRPPA" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "LIHC\tmut" ] }, { "output_type": "stream", "stream": "stderr", "text": [ "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n", "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n" ] }, { "output_type": "stream", "stream": "stderr", "text": [ "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n", "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "PAAD\tRPPA" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "SARC\tRPPA" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "SARC\tmut" ] }, { "output_type": "stream", "stream": "stderr", "text": [ "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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", " data = self._reader.read(nrows)\n", "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "STAD\tmRNASeq" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n", "STAD\tRPPA" ] }, { "output_type": "stream", "stream": "stderr", "text": [ "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n", "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n" ] }, { "output_type": "stream", "stream": "stdout", "text": [ "\n" ] }, { "output_type": "stream", "stream": "stderr", "text": [ "/cellar/users/agross/anaconda2/lib/python2.7/site-packages/pandas-0.13.0_247_g82bcbb8-py2.7-linux-x86_64.egg/pandas/io/parsers.py:1059: 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) have mixed types. Specify dtype option on import or set low_memory=False.\n", " data = self._reader.read(nrows)\n" ] } ], "prompt_number": 124 } ], "metadata": {} } ] }