<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Related items]]></title>
	<link>https://bioinformaticsonline.com/related/42923?offset=140</link>
	<atom:link href="https://bioinformaticsonline.com/related/42923?offset=140" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/44722/step-by-step-guide-to-running-genome-assembly</guid>
	<pubDate>Fri, 13 Dec 2024 11:35:55 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/44722/step-by-step-guide-to-running-genome-assembly</link>
	<title><![CDATA[Step-by-Step Guide to Running Genome Assembly]]></title>
	<description><![CDATA[<p>Genome assembly is a critical process in bioinformatics, enabling the reconstruction of an organism's genome from short DNA sequence reads. Whether you&rsquo;re working on a new microbial genome or a complex eukaryotic organism, this guide will walk you through the steps of genome assembly using state-of-the-art tools and best practices.</p><h4><strong>What is Genome Assembly?</strong></h4><p>Genome assembly involves piecing together short DNA sequence reads generated by sequencing platforms (e.g., Illumina, PacBio, Oxford Nanopore) into longer, contiguous sequences called contigs. This can be performed as:</p><ul>
<li><strong>De Novo Assembly</strong>: Without a reference genome.</li>
<li><strong>Reference-Guided Assembly</strong>: Using a reference genome to guide the assembly process.</li>
</ul><h4><strong>Step 1: Preparing Your Data</strong></h4><p>Before starting the assembly, ensure that your raw sequencing data is high quality.</p><ol>
<li>
<p><strong>Input Data</strong></p>
<ul>
<li><strong>Short Reads</strong>: Illumina sequencing generates short, accurate reads ideal for scaffolding.</li>
<li><strong>Long Reads</strong>: PacBio and Nanopore sequencing provide long reads for resolving repetitive regions.</li>
</ul>
</li>
<li>
<p><strong>Quality Control (QC)</strong><br />Use tools like <strong>FastQC</strong> or <strong>MultiQC</strong> to assess the quality of your reads:</p>
<div>
<div dir="ltr"><code>fastqc reads.fastq multiqc . </code></div>
</div>
<p>Look for issues like low-quality bases, adapter contamination, or overrepresented sequences.</p>
</li>
<li>
<p><strong>Read Trimming and Filtering</strong><br />Trim low-quality bases and adapters using <strong>Trimmomatic</strong> or <strong>Cutadapt</strong>:</p>
<div>
<div dir="ltr"><code>trimmomatic PE reads_R1.fastq reads_R2.fastq trimmed_R1.fastq trimmed_R2.fastq \ ILLUMINACLIP:adapters.fa:2:30:10 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:20 MINLEN:36 </code></div>
</div>
</li>
</ol><h4><strong>Step 2: Choosing an Assembly Strategy</strong></h4><p>Select an assembly strategy based on your data type:</p><ul>
<li>
<p><strong>Short-Read Assemblers</strong>:</p>
<ul>
<li>SPAdes: Popular for microbial genomes.</li>
<li>Velvet: Fast for smaller genomes.</li>
</ul>
</li>
<li>
<p><strong>Long-Read Assemblers</strong>:</p>
<ul>
<li>Canu: Ideal for long-read datasets.</li>
<li>Flye: Versatile for small and large genomes.</li>
</ul>
</li>
<li>
<p><strong>Hybrid Assemblers</strong>:</p>
<ul>
<li>MaSuRCA: Combines short and long reads.</li>
<li>Unicycler: Optimized for bacterial genomes.</li>
</ul>
</li>
</ul><h4><strong>Step 3: Running the Assembly</strong></h4><h5><strong>3.1. SPAdes (Short-Read Assembly)</strong></h5><p>SPAdes is an excellent choice for small genomes, such as bacteria.</p><div><div dir="ltr"><code>spades.py -1 trimmed_R1.fastq -2 trimmed_R2.fastq -o spades_output </code></div></div><p>The output includes assembled contigs (<code>contigs.fasta</code>) and scaffolds (<code>scaffolds.fasta</code>).</p><h5><strong>3.2. Canu (Long-Read Assembly)</strong></h5><p>Canu is designed for high-error long reads from PacBio or Nanopore.</p><div><div dir="ltr"><code>canu -p genome -d canu_output genomeSize=4.7m -nanopore-raw reads.fastq </code></div></div><p>The output will be in <code>canu_output/genome.contigs.fasta</code>.</p><h5><strong>3.3. Hybrid Assembly with Unicycler</strong></h5><p>Unicycler combines short and long reads for improved assemblies.</p><div><div dir="ltr"><code>unicycler -1 trimmed_R1.fastq -2 trimmed_R2.fastq -l long_reads.fastq -o unicycler_output </code></div></div><h4><strong>Step 4: Assessing Assembly Quality</strong></h4><p>After assembly, evaluate its quality using the following tools:</p><ol>
<li>
<p><strong>QUAST</strong><br />QUAST generates assembly statistics, such as N50, genome size, and GC content:</p>
<div>
<div dir="ltr"><code>quast contigs.fasta -o quast_output </code></div>
</div>
</li>
<li>
<p><strong>BUSCO</strong><br />BUSCO checks genome completeness by identifying conserved genes:</p>
<div>
<div dir="ltr"><code>busco -i contigs.fasta -o busco_output -l fungi_odb10 -m genome </code></div>
</div>
</li>
<li>
<p><strong>Assembly Graph Visualization</strong><br />Visualize assembly graphs with <strong>Bandage</strong>:</p>
<div>
<div dir="ltr"><code>Bandage load assembly_graph.gfa </code></div>
</div>
</li>
</ol><hr><h4><strong>Step 5: Post-Assembly Steps</strong></h4><ol>
<li>
<p><strong>Polishing</strong><br />Improve assembly accuracy using tools like <strong>Pilon</strong> (for short reads) or <strong>Racon</strong> (for long reads).</p>
<div>
<div dir="ltr"><code>racon long_reads.fasta mapped_reads.sam contigs.fasta &gt; polished_contigs.fasta </code></div>
</div>
</li>
<li>
<p><strong>Scaffolding</strong><br />Link contigs into scaffolds using tools like <strong>SSPACE</strong> or <strong>Opera-LG</strong> if required.</p>
</li>
<li>
<p><strong>Annotation</strong><br />Annotate the assembled genome using <strong>Prokka</strong> for prokaryotes or <strong>Maker</strong> for eukaryotes.</p>
<div>
<div dir="ltr"><code>prokka --outdir annotation_output --prefix genome contigs.fasta </code></div>
</div>
</li>
</ol><h4><strong>Step 6: Sharing and Archiving</strong></h4><ol>
<li>
<p><strong>Submit to Public Repositories</strong><br />Share your assembly in databases like <strong>NCBI GenBank</strong>, <strong>ENA</strong>, or <strong>DDBJ</strong>.</p>
</li>
<li>
<p><strong>Metadata Preparation</strong><br />Include detailed metadata for your submission, such as organism name, sequencing platform, and coverage.</p>
</li>
</ol><h4><strong>Best Practices</strong></h4><ul>
<li>Always perform quality checks at each stage to ensure data integrity.</li>
<li>Use multiple tools to cross-validate results when working with complex genomes.</li>
<li>Document parameters and software versions for reproducibility.</li>
</ul><h4><strong>Conclusion</strong></h4><p>Genome assembly is a powerful process that transforms raw sequencing data into a coherent representation of an organism&rsquo;s genome. By following this step-by-step guide, you can successfully assemble genomes and uncover valuable biological insights. Whether you&rsquo;re assembling a microbial genome or tackling the complexities of a eukaryotic genome, these tools and strategies will set you on the path to success.</p>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/44775/genomic-architecture-surrounding-the-fusion-site-of-human-chromosome-2</guid>
	<pubDate>Tue, 04 Mar 2025 12:26:29 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/44775/genomic-architecture-surrounding-the-fusion-site-of-human-chromosome-2</link>
	<title><![CDATA[Genomic architecture surrounding the fusion site of human chromosome 2]]></title>
	<description><![CDATA[<p>The article <strong>"Genomic Structure and Evolution of the Ancestral Chromosome Fusion Site in 2q13&ndash;2q14.1 and Paralogous Regions on Other Human Chromosomes (https://pmc.ncbi.nlm.nih.gov/articles/PMC187548/)"</strong> explores the genomic architecture surrounding the fusion site of human chromosome 2. This fusion event is a key evolutionary marker distinguishing humans from other great apes, as humans have 46 chromosomes while chimpanzees, gorillas, and orangutans possess 48. The fusion occurred through an end-to-end joining of two ancestral chromosomes, which remain separate in nonhuman primates.</p><h3><strong>Key Findings:</strong></h3><ol>
<li>
<p><strong>Chromosomal Fusion and Its Molecular Signature:</strong></p>
<ul>
<li>The fusion site is located at <strong>2q13&ndash;2q14.1</strong> and is characterized by <strong>degenerate telomeric sequences</strong> appearing interstitially, indicating the historical head-to-head joining of ancestral chromosomes.</li>
<li>Despite being a signature of a past fusion event, these telomeric repeats are no longer functional and have undergone sequence degradation over time.</li>
</ul>
</li>
<li>
<p><strong>Extensive Duplications in the Surrounding Genomic Region:</strong></p>
<ul>
<li>The study identifies <strong>large-scale segmental duplications</strong> flanking the fusion site, with several of these regions duplicated and scattered across multiple chromosomes.</li>
<li>These duplications are predominantly located in <strong>subtelomeric and pericentromeric regions</strong>, suggesting their role in genomic instability and chromosomal evolution.</li>
</ul>
</li>
<li>
<p><strong>Paralogous Regions and Their Evolutionary Relationships:</strong></p>
<ul>
<li>A <strong>168-kilobase (kb) segment</strong> near the fusion site has <strong>98%&ndash;99% sequence identity</strong> with three regions on <strong>chromosome 9 (9pter, 9p11.2, and 9q13)</strong>.</li>
<li>Another <strong>67-kb region distal to the fusion site</strong> shows a high degree of homology to sequences in <strong>chromosome 22qter</strong>.</li>
<li>Additionally, a <strong>100-kb segment</strong> exhibits <strong>96% sequence identity</strong> with a region in <strong>chromosome 2q11.2</strong>.</li>
</ul>
</li>
<li>
<p><strong>Comparative Genomics and Evolutionary Implications:</strong></p>
<ul>
<li>By comparing the duplicated sequences and their arrangement in primates, the researchers traced the order of duplication events leading to their present distribution.</li>
<li>The presence of specific repetitive elements within these duplicated segments serves as <strong>evolutionary markers</strong> that help infer their historical rearrangements.</li>
<li>Some of these <strong>duplicated regions are associated with chromosomal inversion breakpoints</strong>, potentially contributing to evolutionary changes in primates.</li>
<li>Recurrent <strong>structural rearrangements</strong> in these regions have been linked to human chromosomal disorders.</li>
</ul>
</li>
</ol><h3><strong>Conclusions and Implications:</strong></h3><ul>
<li>The findings provide valuable insights into <strong>the structural evolution of human chromosome 2</strong>, which played a crucial role in human speciation.</li>
<li>Understanding these <strong>segmental duplications</strong> and their evolutionary trajectories sheds light on <strong>genomic instability</strong>, which may contribute to <strong>human genetic diseases</strong>.</li>
<li>The study highlights how large-scale chromosomal rearrangements, such as fusion and duplication, have influenced the <strong>evolutionary divergence of humans</strong> from other primates.</li>
</ul><p>This research advances our understanding of <strong>human genome evolution</strong> and offers a foundation for studying the effects of <strong>structural variants in genetic disorders</strong>.</p>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/39913/twinblast-when-two-is-better-than-one</guid>
	<pubDate>Sat, 07 Sep 2019 08:50:08 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/39913/twinblast-when-two-is-better-than-one</link>
	<title><![CDATA[TwinBLAST: When Two Is Better than One]]></title>
	<description><![CDATA[<p>TwinBLAST is a web-based tool for viewing 2 BLAST reports simultaneouslyside-by-side. It uses ExtJS (www.sencha.com/products/extjs/) to provide 2independently scrollable panels. BioPerl (www.bioperl.org) is used to indexraw BLAST reports and Bio::Graphics is used to draw pictograms of the BLASThits.</p>
<p><a href="https://github.com/IGS/twinblast">https://github.com/IGS/twinblast</a></p>
<p><a href="https://mra.asm.org/content/8/35/e00842-19">https://mra.asm.org/content/8/35/e00842-19</a></p><p>Address of the bookmark: <a href="https://github.com/IGS/twinblast" rel="nofollow">https://github.com/IGS/twinblast</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/140/python-education-material</guid>
	<pubDate>Wed, 10 Jul 2013 16:38:23 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/140/python-education-material</link>
	<title><![CDATA[Python Education Material]]></title>
	<description><![CDATA[<p><span>Google provide free class for people with a little bit of programming experience who want to learn Python. The google python class includes written materials, lecture videos, and lots of code exercises to practice Python coding. These materials are used within Google to introduce Python to people who have just a little programming experience.</span></p><p><span>Find more @&nbsp;<a href="https://developers.google.com/edu/python/">https://developers.google.com/edu/python/</a></span></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/12963/cosmos-our-workflow-management-system-for-ngs-data</guid>
	<pubDate>Wed, 23 Jul 2014 07:29:14 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/12963/cosmos-our-workflow-management-system-for-ngs-data</link>
	<title><![CDATA[COSMOS, our workflow management system for NGS data]]></title>
	<description><![CDATA[<p><strong>COSMOS</strong>, our Python-based management system for implementing large-scale parallel workflows focusing on, but not restricted to, large-scale short-read "NGS" sequencing data is open-access published via <a href="http://bioinformatics.oxfordjournals.org/content/early/2014/06/29/bioinformatics.btu385.abstract">Advance Access</a> in <em>Bioinformatics</em> (<a href="http://scholar.harvard.edu/lancaster/publications/cosmos-python-library-massively-parallel-workflows">Gafni et al. 2014</a>).&nbsp; It is also available for download for non-commercial academic and research purposes at:</p>
<p><strong>&nbsp;<a href="http://cosmos.hms.harvard.edu/">http://cosmos.hms.harvard.edu/</a></strong>.</p><p>Address of the bookmark: <a href="https://cosmos.hms.harvard.edu/" rel="nofollow">https://cosmos.hms.harvard.edu/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/20471/bioinformatics-scripts</guid>
	<pubDate>Thu, 22 Jan 2015 22:29:39 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/20471/bioinformatics-scripts</link>
	<title><![CDATA[Bioinformatics Scripts]]></title>
	<description><![CDATA[<p>Some of the useful bioinformatics scripts.</p>
<p>For example ... contig-stats.pl is a Perl script that will automatically describe features of a sequence assembly.</p>
<p>http://milkweedgenome.org/?q=scripts</p><p>Address of the bookmark: <a href="http://milkweedgenome.org/?q=scripts" rel="nofollow">http://milkweedgenome.org/?q=scripts</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/30018/bipype</guid>
	<pubDate>Thu, 01 Dec 2016 08:47:38 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/30018/bipype</link>
	<title><![CDATA[bipype]]></title>
	<description><![CDATA[<p><span>Bipype is a very useful program, which prepare a lot of types of bioinformatics analyses. There are three input options: amplicons, WGS (whole genome sequences) and metatranscriptomic data. If amplicons are input data, then bipype does reconstruction and pairs merging. After that biodiversity is searching. There are two types of searching depending on the amplicons types (ITS or 16S). If WGS are chosen, then bipype finds the SA coordinates of the input reads and generates alignments in the SAM format given single-end reads, aligns reads to reference sequence(s). All of these analyses will be shown with Krona program, which allows to show hierarchical data with pie charts.</span></p><p>Address of the bookmark: <a href="https://readthedocs.org/projects/bipype/" rel="nofollow">https://readthedocs.org/projects/bipype/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/36497/installing-python-numpy</guid>
	<pubDate>Mon, 07 May 2018 04:31:25 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/36497/installing-python-numpy</link>
	<title><![CDATA[Installing  python-numpy !]]></title>
	<description><![CDATA[<p>$ sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose<br />[sudo] password for urbe: <br />Reading package lists... Done<br />Building dependency tree <br />Reading state information... Done<br />The following packages were automatically installed and are no longer required:<br /> bridge-utils containerd linux-headers-4.4.0-116 linux-headers-4.4.0-116-generic linux-headers-4.4.0-21 linux-headers-4.4.0-21-generic<br /> linux-image-4.4.0-116-generic linux-image-4.4.0-21-generic linux-image-extra-4.4.0-116-generic linux-image-extra-4.4.0-21-generic<br /> linux-signed-image-4.4.0-116-generic runc ubuntu-fan<br />Use 'sudo apt autoremove' to remove them.<br />The following additional packages will be installed:<br /> blt fonts-lyx fonts-mathjax ipython-notebook-common isympy libaec0 libamd2.4.1 libdsdp-5.8gf libglpk36 libgsl2 libhdf5-10 libjs-highlight<br /> libjs-highlight.js libjs-jquery-ui libjs-marked libjs-mathjax libjs-underscore libsz2 python-antlr python-bs4 python-chardet python-cvxopt<br /> python-cycler python-dateutil python-decorator python-glade2 python-gmpy python-html5lib python-imaging python-jdcal python-jinja2 python-joblib<br /> python-lxml python-markupsafe python-matplotlib-data python-mpmath python-numexpr python-openpyxl python-pandas-lib python-patsy python-pexpect<br /> python-pil python-ptyprocess python-py python-pycurl python-pyglet python-pymysql python-pyparsing python-pytest python-simplegeneric<br /> python-simplejson python-statsmodels python-statsmodels-lib python-sympy-doc python-tables python-tables-data python-tables-lib python-tk<br /> python-tornado python-tz python-xlrd python-xlwt python-zmq tk8.6-blt2.5 ttf-bitstream-vera<br />Suggested packages:<br /> blt-demo ipython-doc ipython-qtconsole python-pygments nodejs pandoc libiodbc2-dev libmysqlclient-dev gsl-ref-psdoc | gsl-doc-pdf | gsl-doc-info<br /> | gsl-ref-html libjs-jquery-ui-docs fonts-mathjax-extras libjs-mathjax-doc python-gtk2-doc python-genshi python-jinja2-doc python-lxml-dbg<br /> python-lxml-doc ffmpeg inkscape python-cairocffi python-configobj python-excelerator python-matplotlib-doc python-qt4 python-sip python-traits<br /> python-wxgtk3.0 ttf-staypuft python-gmpy2 python-mpmath-doc python-coverage python-nose-doc python-numpy-dbg python-numpy-doc python-pandas-doc<br /> python-patsy-doc python-pexpect-doc python-pil-doc python-pil-dbg subversion python-pytest-xdist libcurl4-gnutls-dev python-pycurl-dbg<br /> python-pycurl-doc python-pymysql-doc python-mock python-scipy-doc python-statsmodels-doc python-tables-doc python-netcdf vitables tix<br /> python-tk-dbg<br />The following NEW packages will be installed:<br /> blt fonts-lyx fonts-mathjax ipython ipython-notebook ipython-notebook-common isympy libaec0 libamd2.4.1 libdsdp-5.8gf libglpk36 libgsl2<br /> libhdf5-10 libjs-highlight libjs-highlight.js libjs-jquery-ui libjs-marked libjs-mathjax libjs-underscore libsz2 python-antlr python-bs4<br /> python-chardet python-cvxopt python-cycler python-dateutil python-decorator python-glade2 python-gmpy python-html5lib python-imaging<br /> python-jdcal python-jinja2 python-joblib python-lxml python-markupsafe python-matplotlib python-matplotlib-data python-mpmath python-nose<br /> python-numexpr python-numpy python-openpyxl python-pandas python-pandas-lib python-patsy python-pexpect python-pil python-ptyprocess python-py<br /> python-pycurl python-pyglet python-pymysql python-pyparsing python-pytest python-scipy python-simplegeneric python-simplejson python-statsmodels<br /> python-statsmodels-lib python-sympy python-sympy-doc python-tables python-tables-data python-tables-lib python-tk python-tornado python-tz<br /> python-xlrd python-xlwt python-zmq tk8.6-blt2.5 ttf-bitstream-vera<br />0 upgraded, 73 newly installed, 0 to remove and 35 not upgraded.<br />Need to get 49,5 MB of archives.<br />After this operation, 271 MB of additional disk space will be used.<br />Do you want to continue? [Y/n] Y<br />Get:1 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-pymysql all 0.7.2-1ubuntu1 [56,4 kB]<br />Get:2 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 tk8.6-blt2.5 amd64 2.5.3+dfsg-3 [574 kB]<br />Get:3 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 blt amd64 2.5.3+dfsg-3 [4.852 B]<br />Get:4 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 fonts-lyx all 2.1.4-2 [161 kB]<br />Get:5 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 fonts-mathjax all 2.6.1-1 [960 kB]<br />Get:6 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 python-decorator all 4.0.6-1 [9.326 B]<br />Get:7 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-ptyprocess all 0.5-1 [12,9 kB]<br />Get:8 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-pexpect all 4.0.1-1 [40,5 kB]<br />Get:9 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 python-simplegeneric all 0.8.1-1 [11,5 kB]<br />Get:10 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 ipython all 2.4.1-1 [610 kB]<br />Get:11 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 libjs-highlight.js all 8.2+ds-4build1 [151 kB]<br />Get:12 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 libjs-highlight all 8.2+ds-4build1 [7.032 B]<br />Get:13 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 libjs-jquery-ui all 1.10.1+dfsg-1 [458 kB]<br />Get:14 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 libjs-marked all 0.3.2+dfsg-1 [12,7 kB]<br />Get:15 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 libjs-mathjax all 2.6.1-1 [5.601 kB]<br />Get:16 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libjs-underscore all 1.7.0~dfsg-1ubuntu1 [46,7 kB]<br />Get:17 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 ipython-notebook-common all 2.4.1-1 [712 kB]<br />Get:18 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 python-markupsafe amd64 0.23-2build2 [15,5 kB]<br />Get:19 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 python-jinja2 all 2.8-1 [109 kB]<br />Get:20 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 python-pycurl amd64 7.43.0-1ubuntu1 [43,3 kB]<br />Get:21 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-tornado amd64 4.2.1-1ubuntu3 [273 kB]<br />Get:22 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-zmq amd64 15.2.0-0ubuntu4 [200 kB]<br />Get:23 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 ipython-notebook all 2.4.1-1 [48,4 kB]<br />Get:24 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 isympy all 0.7.6.1-1 [82,5 kB]<br />Get:25 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 libaec0 amd64 0.3.2-1 [18,0 kB]<br />Get:26 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libamd2.4.1 amd64 1:4.4.6-1 [21,3 kB]<br />Get:27 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 libglpk36 amd64 4.57-1build3 [386 kB]<br />Get:28 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libgsl2 amd64 2.1+dfsg-2 [840 kB]<br />Get:29 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 libsz2 amd64 0.3.2-1 [5.048 B]<br />Get:30 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 libhdf5-10 amd64 1.8.16+docs-4ubuntu1 [995 kB]<br />Get:31 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-antlr all 2.7.7+dfsg-6ubuntu1 [19,0 kB]<br />Get:32 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 python-bs4 all 4.4.1-1 [64,2 kB]<br />Get:33 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 python-chardet all 2.3.0-2 [96,3 kB]<br />Get:34 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 libdsdp-5.8gf amd64 5.8-9.1ubuntu2 [192 kB]<br />Get:35 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-cvxopt amd64 1.1.4-1.4 [1.344 kB]<br />Get:36 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-cycler all 0.9.0-1 [5.426 B]<br />Get:37 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 python-dateutil all 2.4.2-1 [42,5 kB]<br />Get:38 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 python-glade2 amd64 2.24.0-4ubuntu1 [9.078 B]<br />Get:39 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-gmpy amd64 1.17-1 [91,1 kB]<br />Get:40 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 python-html5lib all 0.999-4 [83,1 kB]<br />Get:41 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-pil amd64 3.1.2-0ubuntu1.1 [312 kB]<br />Get:42 http://be.archive.ubuntu.com/ubuntu xenial-updates/universe amd64 python-imaging all 3.1.2-0ubuntu1.1 [4.596 B]<br />Get:43 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-jdcal all 1.0-1build1 [7.702 B]<br />Get:44 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-joblib all 0.9.4-1 [74,6 kB]<br />Get:45 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 python-lxml amd64 3.5.0-1build1 [819 kB]<br />Get:46 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 ttf-bitstream-vera all 1.10-8 [352 kB]<br />Get:47 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-matplotlib-data all 1.5.1-1ubuntu1 [2.414 kB]<br />Get:48 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-pyparsing all 2.0.3+dfsg1-1ubuntu0.1 [35,4 kB]<br />Get:49 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 python-tz all 2014.10~dfsg1-0ubuntu2 [31,5 kB]<br />Get:50 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 python-numpy amd64 1:1.11.0-1ubuntu1 [1.763 kB]<br />Get:51 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-matplotlib amd64 1.5.1-1ubuntu1 [3.888 kB]<br />Get:52 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-mpmath all 0.19-3 [387 kB]<br />Get:53 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-nose all 1.3.7-1 [116 kB]<br />Get:54 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-numexpr amd64 2.4.3-1ubuntu1 [129 kB]<br />Get:55 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-openpyxl all 2.3.0-1 [193 kB]<br />Get:56 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-pandas-lib amd64 0.17.1-3ubuntu2 [1.538 kB]<br />Get:57 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-pandas all 0.17.1-3ubuntu2 [2.386 kB]<br />Get:58 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-patsy all 0.4.1-2 [169 kB]<br />Get:59 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-py all 1.4.31-1 [62,5 kB]<br />Get:60 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-pyglet all 1.1.4.dfsg-3 [726 kB]<br />Get:61 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-pytest all 2.8.7-4 [119 kB]<br />Get:62 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 python-simplejson amd64 3.8.1-1ubuntu2 [60,4 kB]<br />Get:63 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-sympy all 0.7.6.1-1 [2.252 kB]<br />Get:64 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-sympy-doc all 0.7.6.1-1 [4.774 kB]<br />Get:65 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-tables-lib amd64 3.2.2-2 [353 kB]<br />Get:66 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-tables-data all 3.2.2-2 [45,3 kB]<br />Get:67 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-tables all 3.2.2-2 [335 kB]<br />Get:68 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-tk amd64 2.7.12-1~16.04 [26,3 kB]<br />Get:69 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-xlrd all 0.9.4-1 [107 kB]<br />Get:70 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-xlwt all 0.7.5+debian1-1 [83,5 kB]<br />Get:71 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-scipy amd64 0.17.0-1 [8.733 kB]<br />Get:72 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-statsmodels-lib amd64 0.6.1-4 [173 kB]<br />Get:73 http://be.archive.ubuntu.com/ubuntu xenial/universe amd64 python-statsmodels all 0.6.1-4 [2.581 kB]<br />Fetched 49,5 MB in 0s (52,8 MB/s) <br />Extracting templates from packages: 100%<br />Selecting previously unselected package python-pymysql.<br />(Reading database ... 435155 files and directories currently installed.)<br />Preparing to unpack .../python-pymysql_0.7.2-1ubuntu1_all.deb ...<br />Unpacking python-pymysql (0.7.2-1ubuntu1) ...<br />Selecting previously unselected package tk8.6-blt2.5.<br />Preparing to unpack .../tk8.6-blt2.5_2.5.3+dfsg-3_amd64.deb ...<br />Unpacking tk8.6-blt2.5 (2.5.3+dfsg-3) ...<br />Selecting previously unselected package blt.<br />Preparing to unpack .../blt_2.5.3+dfsg-3_amd64.deb ...<br />Unpacking blt (2.5.3+dfsg-3) ...<br />Selecting previously unselected package fonts-lyx.<br />Preparing to unpack .../fonts-lyx_2.1.4-2_all.deb ...<br />Unpacking fonts-lyx (2.1.4-2) ...<br />Selecting previously unselected package fonts-mathjax.<br />Preparing to unpack .../fonts-mathjax_2.6.1-1_all.deb ...<br />Unpacking fonts-mathjax (2.6.1-1) ...<br />Selecting previously unselected package python-decorator.<br />Preparing to unpack .../python-decorator_4.0.6-1_all.deb ...<br />Unpacking python-decorator (4.0.6-1) ...<br />Selecting previously unselected package python-ptyprocess.<br />Preparing to unpack .../python-ptyprocess_0.5-1_all.deb ...<br />Unpacking python-ptyprocess (0.5-1) ...<br />Selecting previously unselected package python-pexpect.<br />Preparing to unpack .../python-pexpect_4.0.1-1_all.deb ...<br />Unpacking python-pexpect (4.0.1-1) ...<br />Selecting previously unselected package python-simplegeneric.<br />Preparing to unpack .../python-simplegeneric_0.8.1-1_all.deb ...<br />Unpacking python-simplegeneric (0.8.1-1) ...<br />Selecting previously unselected package ipython.<br />Preparing to unpack .../ipython_2.4.1-1_all.deb ...<br />Unpacking ipython (2.4.1-1) ...<br />Selecting previously unselected package libjs-highlight.js.<br />Preparing to unpack .../libjs-highlight.js_8.2+ds-4build1_all.deb ...<br />Unpacking libjs-highlight.js (8.2+ds-4build1) ...<br />Selecting previously unselected package libjs-highlight.<br />Preparing to unpack .../libjs-highlight_8.2+ds-4build1_all.deb ...<br />Unpacking libjs-highlight (8.2+ds-4build1) ...<br />Selecting previously unselected package libjs-jquery-ui.<br />Preparing to unpack .../libjs-jquery-ui_1.10.1+dfsg-1_all.deb ...<br />Unpacking libjs-jquery-ui (1.10.1+dfsg-1) ...<br />Selecting previously unselected package libjs-marked.<br />Preparing to unpack .../libjs-marked_0.3.2+dfsg-1_all.deb ...<br />Unpacking libjs-marked (0.3.2+dfsg-1) ...<br />Selecting previously unselected package libjs-mathjax.<br />Preparing to unpack .../libjs-mathjax_2.6.1-1_all.deb ...<br />Unpacking libjs-mathjax (2.6.1-1) ...<br />Selecting previously unselected package libjs-underscore.<br />Preparing to unpack .../libjs-underscore_1.7.0~dfsg-1ubuntu1_all.deb ...<br />Unpacking libjs-underscore (1.7.0~dfsg-1ubuntu1) ...<br />Selecting previously unselected package ipython-notebook-common.<br />Preparing to unpack .../ipython-notebook-common_2.4.1-1_all.deb ...<br />Unpacking ipython-notebook-common (2.4.1-1) ...<br />Selecting previously unselected package python-markupsafe.<br />Preparing to unpack .../python-markupsafe_0.23-2build2_amd64.deb ...<br />Unpacking python-markupsafe (0.23-2build2) ...<br />Selecting previously unselected package python-jinja2.<br />Preparing to unpack .../python-jinja2_2.8-1_all.deb ...<br />Unpacking python-jinja2 (2.8-1) ...<br />Selecting previously unselected package python-pycurl.<br />Preparing to unpack .../python-pycurl_7.43.0-1ubuntu1_amd64.deb ...<br />Unpacking python-pycurl (7.43.0-1ubuntu1) ...<br />Selecting previously unselected package python-tornado.<br />Preparing to unpack .../python-tornado_4.2.1-1ubuntu3_amd64.deb ...<br />Unpacking python-tornado (4.2.1-1ubuntu3) ...<br />Selecting previously unselected package python-zmq.<br />Preparing to unpack .../python-zmq_15.2.0-0ubuntu4_amd64.deb ...<br />Unpacking python-zmq (15.2.0-0ubuntu4) ...<br />Selecting previously unselected package ipython-notebook.<br />Preparing to unpack .../ipython-notebook_2.4.1-1_all.deb ...<br />Unpacking ipython-notebook (2.4.1-1) ...<br />Selecting previously unselected package isympy.<br />Preparing to unpack .../isympy_0.7.6.1-1_all.deb ...<br />Unpacking isympy (0.7.6.1-1) ...<br />Selecting previously unselected package libaec0:amd64.<br />Preparing to unpack .../libaec0_0.3.2-1_amd64.deb ...<br />Unpacking libaec0:amd64 (0.3.2-1) ...<br />Selecting previously unselected package libamd2.4.1:amd64.<br />Preparing to unpack .../libamd2.4.1_1%3a4.4.6-1_amd64.deb ...<br />Unpacking libamd2.4.1:amd64 (1:4.4.6-1) ...<br />Selecting previously unselected package libglpk36:amd64.<br />Preparing to unpack .../libglpk36_4.57-1build3_amd64.deb ...<br />Unpacking libglpk36:amd64 (4.57-1build3) ...<br />Selecting previously unselected package libgsl2:amd64.<br />Preparing to unpack .../libgsl2_2.1+dfsg-2_amd64.deb ...<br />Unpacking libgsl2:amd64 (2.1+dfsg-2) ...<br />Selecting previously unselected package libsz2:amd64.<br />Preparing to unpack .../libsz2_0.3.2-1_amd64.deb ...<br />Unpacking libsz2:amd64 (0.3.2-1) ...<br />Selecting previously unselected package libhdf5-10:amd64.<br />Preparing to unpack .../libhdf5-10_1.8.16+docs-4ubuntu1_amd64.deb ...<br />Unpacking libhdf5-10:amd64 (1.8.16+docs-4ubuntu1) ...<br />Selecting previously unselected package python-antlr.<br />Preparing to unpack .../python-antlr_2.7.7+dfsg-6ubuntu1_all.deb ...<br />Unpacking python-antlr (2.7.7+dfsg-6ubuntu1) ...<br />Selecting previously unselected package python-bs4.<br />Preparing to unpack .../python-bs4_4.4.1-1_all.deb ...<br />Unpacking python-bs4 (4.4.1-1) ...<br />Selecting previously unselected package python-chardet.<br />Preparing to unpack .../python-chardet_2.3.0-2_all.deb ...<br />Unpacking python-chardet (2.3.0-2) ...<br />Selecting previously unselected package libdsdp-5.8gf.<br />Preparing to unpack .../libdsdp-5.8gf_5.8-9.1ubuntu2_amd64.deb ...<br />Unpacking libdsdp-5.8gf (5.8-9.1ubuntu2) ...<br />Selecting previously unselected package python-cvxopt.<br />Preparing to unpack .../python-cvxopt_1.1.4-1.4_amd64.deb ...<br />Unpacking python-cvxopt (1.1.4-1.4) ...<br />Selecting previously unselected package python-cycler.<br />Preparing to unpack .../python-cycler_0.9.0-1_all.deb ...<br />Unpacking python-cycler (0.9.0-1) ...<br />Selecting previously unselected package python-dateutil.<br />Preparing to unpack .../python-dateutil_2.4.2-1_all.deb ...<br />Unpacking python-dateutil (2.4.2-1) ...<br />Selecting previously unselected package python-glade2.<br />Preparing to unpack .../python-glade2_2.24.0-4ubuntu1_amd64.deb ...<br />Unpacking python-glade2 (2.24.0-4ubuntu1) ...<br />Selecting previously unselected package python-gmpy.<br />Preparing to unpack .../python-gmpy_1.17-1_amd64.deb ...<br />Unpacking python-gmpy (1.17-1) ...<br />Selecting previously unselected package python-html5lib.<br />Preparing to unpack .../python-html5lib_0.999-4_all.deb ...<br />Unpacking python-html5lib (0.999-4) ...<br />Selecting previously unselected package python-pil:amd64.<br />Preparing to unpack .../python-pil_3.1.2-0ubuntu1.1_amd64.deb ...<br />Unpacking python-pil:amd64 (3.1.2-0ubuntu1.1) ...<br />Selecting previously unselected package python-imaging.<br />Preparing to unpack .../python-imaging_3.1.2-0ubuntu1.1_all.deb ...<br />Unpacking python-imaging (3.1.2-0ubuntu1.1) ...<br />Selecting previously unselected package python-jdcal.<br />Preparing to unpack .../python-jdcal_1.0-1build1_all.deb ...<br />Unpacking python-jdcal (1.0-1build1) ...<br />Selecting previously unselected package python-joblib.<br />Preparing to unpack .../python-joblib_0.9.4-1_all.deb ...<br />Unpacking python-joblib (0.9.4-1) ...<br />Selecting previously unselected package python-lxml.<br />Preparing to unpack .../python-lxml_3.5.0-1build1_amd64.deb ...<br />Unpacking python-lxml (3.5.0-1build1) ...<br />Selecting previously unselected package ttf-bitstream-vera.<br />Preparing to unpack .../ttf-bitstream-vera_1.10-8_all.deb ...<br />Unpacking ttf-bitstream-vera (1.10-8) ...<br />Selecting previously unselected package python-matplotlib-data.<br />Preparing to unpack .../python-matplotlib-data_1.5.1-1ubuntu1_all.deb ...<br />Unpacking python-matplotlib-data (1.5.1-1ubuntu1) ...<br />Selecting previously unselected package python-pyparsing.<br />Preparing to unpack .../python-pyparsing_2.0.3+dfsg1-1ubuntu0.1_all.deb ...<br />Unpacking python-pyparsing (2.0.3+dfsg1-1ubuntu0.1) ...<br />Selecting previously unselected package python-tz.<br />Preparing to unpack .../python-tz_2014.10~dfsg1-0ubuntu2_all.deb ...<br />Unpacking python-tz (2014.10~dfsg1-0ubuntu2) ...<br />Selecting previously unselected package python-numpy.<br />Preparing to unpack .../python-numpy_1%3a1.11.0-1ubuntu1_amd64.deb ...<br />Unpacking python-numpy (1:1.11.0-1ubuntu1) ...<br />Selecting previously unselected package python-matplotlib.<br />Preparing to unpack .../python-matplotlib_1.5.1-1ubuntu1_amd64.deb ...<br />Unpacking python-matplotlib (1.5.1-1ubuntu1) ...<br />Selecting previously unselected package python-mpmath.<br />Preparing to unpack .../python-mpmath_0.19-3_all.deb ...<br />Unpacking python-mpmath (0.19-3) ...<br />Selecting previously unselected package python-nose.<br />Preparing to unpack .../python-nose_1.3.7-1_all.deb ...<br />Unpacking python-nose (1.3.7-1) ...<br />Selecting previously unselected package python-numexpr.<br />Preparing to unpack .../python-numexpr_2.4.3-1ubuntu1_amd64.deb ...<br />Unpacking python-numexpr (2.4.3-1ubuntu1) ...<br />Selecting previously unselected package python-openpyxl.<br />Preparing to unpack .../python-openpyxl_2.3.0-1_all.deb ...<br />Unpacking python-openpyxl (2.3.0-1) ...<br />Selecting previously unselected package python-pandas-lib.<br />Preparing to unpack .../python-pandas-lib_0.17.1-3ubuntu2_amd64.deb ...<br />Unpacking python-pandas-lib (0.17.1-3ubuntu2) ...<br />Selecting previously unselected package python-pandas.<br />Preparing to unpack .../python-pandas_0.17.1-3ubuntu2_all.deb ...<br />Unpacking python-pandas (0.17.1-3ubuntu2) ...<br />Selecting previously unselected package python-patsy.<br />Preparing to unpack .../python-patsy_0.4.1-2_all.deb ...<br />Unpacking python-patsy (0.4.1-2) ...<br />Selecting previously unselected package python-py.<br />Preparing to unpack .../python-py_1.4.31-1_all.deb ...<br />Unpacking python-py (1.4.31-1) ...<br />Selecting previously unselected package python-pyglet.<br />Preparing to unpack .../python-pyglet_1.1.4.dfsg-3_all.deb ...<br />Unpacking python-pyglet (1.1.4.dfsg-3) ...<br />Selecting previously unselected package python-pytest.<br />Preparing to unpack .../python-pytest_2.8.7-4_all.deb ...<br />Unpacking python-pytest (2.8.7-4) ...<br />Selecting previously unselected package python-simplejson.<br />Preparing to unpack .../python-simplejson_3.8.1-1ubuntu2_amd64.deb ...<br />Unpacking python-simplejson (3.8.1-1ubuntu2) ...<br />Selecting previously unselected package python-sympy.<br />Preparing to unpack .../python-sympy_0.7.6.1-1_all.deb ...<br />Unpacking python-sympy (0.7.6.1-1) ...<br />Selecting previously unselected package python-sympy-doc.<br />Preparing to unpack .../python-sympy-doc_0.7.6.1-1_all.deb ...<br />Unpacking python-sympy-doc (0.7.6.1-1) ...<br />Selecting previously unselected package python-tables-lib.<br />Preparing to unpack .../python-tables-lib_3.2.2-2_amd64.deb ...<br />Unpacking python-tables-lib (3.2.2-2) ...<br />Selecting previously unselected package python-tables-data.<br />Preparing to unpack .../python-tables-data_3.2.2-2_all.deb ...<br />Unpacking python-tables-data (3.2.2-2) ...<br />Selecting previously unselected package python-tables.<br />Preparing to unpack .../python-tables_3.2.2-2_all.deb ...<br />Unpacking python-tables (3.2.2-2) ...<br />Selecting previously unselected package python-tk.<br />Preparing to unpack .../python-tk_2.7.12-1~16.04_amd64.deb ...<br />Unpacking python-tk (2.7.12-1~16.04) ...<br />Selecting previously unselected package python-xlrd.<br />Preparing to unpack .../python-xlrd_0.9.4-1_all.deb ...<br />Unpacking python-xlrd (0.9.4-1) ...<br />Selecting previously unselected package python-xlwt.<br />Preparing to unpack .../python-xlwt_0.7.5+debian1-1_all.deb ...<br />Unpacking python-xlwt (0.7.5+debian1-1) ...<br />Selecting previously unselected package python-scipy.<br />Preparing to unpack .../python-scipy_0.17.0-1_amd64.deb ...<br />Unpacking python-scipy (0.17.0-1) ...<br />Selecting previously unselected package python-statsmodels-lib.<br />Preparing to unpack .../python-statsmodels-lib_0.6.1-4_amd64.deb ...<br />Unpacking python-statsmodels-lib (0.6.1-4) ...<br />Selecting previously unselected package python-statsmodels.<br />Preparing to unpack .../python-statsmodels_0.6.1-4_all.deb ...<br />Unpacking python-statsmodels (0.6.1-4) ...<br />Processing triggers for libc-bin (2.23-0ubuntu10) ...<br />Processing triggers for fontconfig (2.11.94-0ubuntu1.1) ...<br />Processing triggers for man-db (2.7.5-1) ...<br />Processing triggers for hicolor-icon-theme (0.15-0ubuntu1) ...<br />Processing triggers for gnome-menus (3.13.3-6ubuntu3.1) ...<br />Processing triggers for desktop-file-utils (0.22-1ubuntu5.1) ...<br />Processing triggers for mime-support (3.59ubuntu1) ...<br />Processing triggers for doc-base (0.10.7) ...<br />Processing 5 added doc-base files...<br />Setting up python-pymysql (0.7.2-1ubuntu1) ...<br />Setting up tk8.6-blt2.5 (2.5.3+dfsg-3) ...<br />Setting up blt (2.5.3+dfsg-3) ...<br />Setting up fonts-lyx (2.1.4-2) ...<br />Setting up fonts-mathjax (2.6.1-1) ...<br />Setting up python-decorator (4.0.6-1) ...<br />Setting up python-ptyprocess (0.5-1) ...<br />Setting up python-pexpect (4.0.1-1) ...<br />Setting up python-simplegeneric (0.8.1-1) ...<br />Setting up ipython (2.4.1-1) ...<br />Setting up libjs-highlight.js (8.2+ds-4build1) ...<br />Setting up libjs-highlight (8.2+ds-4build1) ...<br />Setting up libjs-jquery-ui (1.10.1+dfsg-1) ...<br />Setting up libjs-marked (0.3.2+dfsg-1) ...<br />Setting up libjs-mathjax (2.6.1-1) ...<br />Setting up libjs-underscore (1.7.0~dfsg-1ubuntu1) ...<br />Setting up ipython-notebook-common (2.4.1-1) ...<br />Setting up python-markupsafe (0.23-2build2) ...<br />Setting up python-jinja2 (2.8-1) ...<br />Setting up python-pycurl (7.43.0-1ubuntu1) ...<br />Setting up python-tornado (4.2.1-1ubuntu3) ...<br />Setting up python-zmq (15.2.0-0ubuntu4) ...<br />Setting up ipython-notebook (2.4.1-1) ...<br />Setting up isympy (0.7.6.1-1) ...<br />Setting up libaec0:amd64 (0.3.2-1) ...<br />Setting up libamd2.4.1:amd64 (1:4.4.6-1) ...<br />Setting up libglpk36:amd64 (4.57-1build3) ...<br />Setting up libgsl2:amd64 (2.1+dfsg-2) ...<br />Setting up libsz2:amd64 (0.3.2-1) ...<br />Setting up libhdf5-10:amd64 (1.8.16+docs-4ubuntu1) ...<br />Setting up python-antlr (2.7.7+dfsg-6ubuntu1) ...<br />Setting up python-bs4 (4.4.1-1) ...<br />Setting up python-chardet (2.3.0-2) ...<br />Setting up libdsdp-5.8gf (5.8-9.1ubuntu2) ...<br />Setting up python-cvxopt (1.1.4-1.4) ...<br />Setting up python-cycler (0.9.0-1) ...<br />Setting up python-dateutil (2.4.2-1) ...<br />Setting up python-glade2 (2.24.0-4ubuntu1) ...<br />Setting up python-gmpy (1.17-1) ...<br />Setting up python-html5lib (0.999-4) ...<br />Setting up python-pil:amd64 (3.1.2-0ubuntu1.1) ...<br />Setting up python-imaging (3.1.2-0ubuntu1.1) ...<br />Setting up python-jdcal (1.0-1build1) ...<br />Setting up python-joblib (0.9.4-1) ...<br />Setting up python-lxml (3.5.0-1build1) ...<br />Setting up ttf-bitstream-vera (1.10-8) ...<br />Setting up python-matplotlib-data (1.5.1-1ubuntu1) ...<br />Setting up python-pyparsing (2.0.3+dfsg1-1ubuntu0.1) ...<br />Setting up python-tz (2014.10~dfsg1-0ubuntu2) ...<br />Setting up python-numpy (1:1.11.0-1ubuntu1) ...<br />Setting up python-matplotlib (1.5.1-1ubuntu1) ...<br />Setting up python-mpmath (0.19-3) ...<br />Setting up python-nose (1.3.7-1) ...<br />Setting up python-numexpr (2.4.3-1ubuntu1) ...<br />Setting up python-openpyxl (2.3.0-1) ...<br />Setting up python-pandas-lib (0.17.1-3ubuntu2) ...<br />Setting up python-pandas (0.17.1-3ubuntu2) ...<br />Setting up python-patsy (0.4.1-2) ...<br />Setting up python-py (1.4.31-1) ...<br />Setting up python-pyglet (1.1.4.dfsg-3) ...<br />Setting up python-pytest (2.8.7-4) ...<br />Setting up python-simplejson (3.8.1-1ubuntu2) ...<br />Setting up python-sympy (0.7.6.1-1) ...<br />Setting up python-sympy-doc (0.7.6.1-1) ...<br />Setting up python-tables-lib (3.2.2-2) ...<br />Setting up python-tables-data (3.2.2-2) ...<br />Setting up python-tables (3.2.2-2) ...<br />Setting up python-tk (2.7.12-1~16.04) ...<br />Setting up python-xlrd (0.9.4-1) ...<br />Setting up python-xlwt (0.7.5+debian1-1) ...<br />Setting up python-scipy (0.17.0-1) ...<br />Setting up python-statsmodels-lib (0.6.1-4) ...<br />Setting up python-statsmodels (0.6.1-4) ...<br />Processing triggers for libc-bin (2.23-0ubuntu10) ...<br />➜ redundans git:(master) ✗ python2 redundans.py -v -i test/*_?.fq.gz -f test/contigs.fa -o test/run1<br />Options: Namespace(fasta='test/contigs.fa', fastq=['test/5000_1.fq.gz', 'test/5000_2.fq.gz', 'test/600_1.fq.gz', 'test/600_2.fq.gz'], identity=0.51, iters=2, joins=5, limit=0.2, linkratio=0.7, log=', mode 'w' at 0x7f85d1de31e0&gt;, longreads=[], mapq=10, mem=16, minLength=200, nocleaning=True, nogapclosing=True, norearrangements=False, noreduction=True, noscaffolding=True, outdir='test/run1', overlap=0.8, reference='', resume=False, threads=4, tmp='/tmp', usebwa=False, verbose=True)</p><p>##################################################<br />[Mon May 7 11:29:18 2018] Reduction...<br />#file name genome size contigs heterozygous size [%] heterozygous contigs [%] identity [%] possible joins homozygous size [%] homozygous contigs [%]<br />/usr/lib/python2.7/dist-packages/matplotlib/font_manager.py:273: UserWarning: Matplotlib is building the font cache using fc-list. This may take a moment.<br /> warnings.warn('Matplotlib is building the font cache using fc-list. This may take a moment.')<br />test/run1/contigs.fa 163897 245 66377 40.50 221 90.20 94.854 0 97520 59.50 24 9.80</p><p>##################################################<br />[Mon May 7 11:29:29 2018] Estimating parameters of libraries...<br /> Aligning 19504 mates per library...<br />Insert size statistics Mates orientation stats<br />FastQ files read length median mean stdev FF FR RF RR<br />test/5000_1.fq.gz test/5000_2.fq.gz 50 4998 4990.20 721.47 0 4674 0 0<br />test/600_1.fq.gz test/600_2.fq.gz 100 599 598.63 47.68 0 10000 0 0</p><p>##################################################<br />[Mon May 7 11:29:29 2018] Scaffolding...<br /> iteration 1.1: test/run1/contigs.reduced.fa 24 97520 39.355 17 94157 7321 2195 0 29603<br /> 19505 pairs. 17302 passed filtering [88.71%]. 1627 in different contigs [8.34%].<br /> 1526 pairs. 558 in different contigs [36.57%].<br /> iteration 1.2: test/run1/_sspace.1.1.fa 3 97626 39.344 3 97626 87536 6063 821 87536<br /> 19505 pairs. 17607 passed filtering [90.27%]. 182 in different contigs [0.93%].<br /> 1077 pairs. 124 in different contigs [11.51%].<br /> iteration 2.1: test/run1/_sspace.1.2.fa 3 97626 39.344 3 97626 87536 6063 821 87536<br /> 19505 pairs. 15112 passed filtering [77.48%]. 1295 in different contigs [6.64%].<br /> 3417 pairs. 396 in different contigs [11.59%].<br /> iteration 2.2: test/run1/_sspace.2.1.fa 1 99133 39.344 1 99133 99133 99133 2328 99133<br /> 19505 pairs. 15152 passed filtering [77.68%]. 0 in different contigs [0.00%].<br /> 3398 pairs. 0 in different contigs [0.00%].</p><p>##################################################<br />[Mon May 7 11:29:34 2018] Gap closing...<br /> iteration 1.1: test/run1/scaffolds.fa 1 99133 39.344 1 99133 99133 99133 2328 99133</p><p>##################################################<br />[Mon May 7 11:29:35 2018] Final reduction...<br />#file name genome size contigs heterozygous size [%] heterozygous contigs [%] identity [%] possible joins homozygous size [%] homozygous contigs [%]<br />[WARNING] Nothing reduced!<br />test/run1/scaffolds.filled.fa 99390 1 0 0.00 0 0.00 0.000 0 99390 100.00 1 100.00</p><p>##################################################<br />[Mon May 7 11:29:35 2018] Reporting statistics...<br />#fname contigs bases GC [%] contigs &gt;1kb bases in contigs &gt;1kb N50 N90 Ns longest<br />test/contigs.fa 245 163897 40.298 24 117391 3975 233 0 29603<br />test/run1/contigs.fa 245 163897 40.298 24 117391 3975 233 0 29603<br />test/run1/contigs.reduced.fa 24 97520 39.355 17 94157 7321 2195 0 29603<br />test/run1/_sspace.1.1.fa 3 97626 39.344 3 97626 87536 6063 821 87536<br />test/run1/_sspace.1.2.fa 3 97626 39.344 3 97626 87536 6063 821 87536<br />test/run1/_sspace.2.1.fa 1 99133 39.344 1 99133 99133 99133 2328 99133<br />test/run1/_sspace.2.2.fa 1 99133 39.344 1 99133 99133 99133 2328 99133<br />test/run1/scaffolds.fa 1 99133 39.344 1 99133 99133 99133 2328 99133<br />test/run1/_gapcloser.1.1.fa 1 99390 39.689 1 99390 99390 99390 2 99390<br />test/run1/scaffolds.filled.fa 1 99390 39.689 1 99390 99390 99390 2 99390<br />test/run1/scaffolds.reduced.fa 1 99390 39.689 1 99390 99390 99390 2 99390</p><p>##################################################<br />[Mon May 7 11:29:35 2018] Cleaning-up...<br />#Time elapsed: 0:00:17.376924</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/37627/setting-python-version-as-default-on-linux</guid>
	<pubDate>Tue, 04 Sep 2018 10:15:47 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/37627/setting-python-version-as-default-on-linux</link>
	<title><![CDATA[Setting python version as default on Linux]]></title>
	<description><![CDATA[<p>If you have a later version than 2.6 you'll need to set 2.6 as the default Python. Later versions would be 2.7 and 3.1; see what you have by typing</p><pre>python -V
</pre><p><span>at the terminal. For purposes of this example we'll assume you have 3.1 installed. You'll next need to execute the following commands:</span></p><p>&nbsp;</p><pre>sudo apt-get install python2.6 idle-python2.6
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.1 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.6 10
sudo update-alternatives --config python
</pre><p>This last command will allow you to choose which version of python to use by default. If you have done everything above correctly, python2.6 should already be set as the default. If it is not, choose it to be the default. From now on, running python should start version 2.6.</p><div><p>Undoing These Changes</p><p>In some cases (e.g., installing or updating certain packages), you'll get an error message if you've run the commands above. To update these packages, you'll have to temporarily undo these changes. Here's how to do that:</p><pre>sudo update-alternatives --remove-all python
sudo ln -s python3.1 /usr/bin/python
</pre><p>Once you're done updating these packages, execute the commands at the top to set python2.6 as the default again.</p></div>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/40834/nucleus-python-and-c-code-for-reading-and-writing-genomics-data</guid>
	<pubDate>Sun, 02 Feb 2020 08:14:19 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/40834/nucleus-python-and-c-code-for-reading-and-writing-genomics-data</link>
	<title><![CDATA[Nucleus: Python and C++ code for reading and writing genomics data.]]></title>
	<description><![CDATA[<p>Nucleus is a library of Python and C++ code designed to make it easy to read, write and analyze data in common genomics file formats like SAM and VCF. In addition, Nucleus enables painless integration with the TensorFlow machine learning framework, as anywhere a genomics file is consumed or produced, a TensorFlow tfrecords file may be used instead.</p><p>Address of the bookmark: <a href="https://github.com/google/nucleus" rel="nofollow">https://github.com/google/nucleus</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

</channel>
</rss>