{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "Embedded Figure 1 from \"Deblur rapidly resolves single-nucleotide community sequence patterns\" showing merged _de novo_ OTU picking runs. " ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import pandas as pd\n", "import skbio\n", "from emperor import Emperor, nbinstall\n", "nbinstall()" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "
\n", "
Emperor resources missing. Expected them to be found in https://cdn.rawgit.com/biocore/emperor/1.0.0-beta.7/emperor/support_files
\n", "
\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/plain": [ "" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "md = pd.read_csv('embedded_figure_1_mapping_file.txt', sep='\\t', dtype=object).set_index('#SampleID')\n", "pc = skbio.OrdinationResults.read('embedded_figure_1_ordination.txt')\n", "Emperor(pc, md, remote=True)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.5.1" }, "widgets": { "state": {}, "version": "1.1.2" } }, "nbformat": 4, "nbformat_minor": 1 }