<?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/36185?</link>
	<atom:link href="https://bioinformaticsonline.com/related/36185?" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/783/perl-module-installation</guid>
	<pubDate>Fri, 12 Jul 2013 11:19:41 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/783/perl-module-installation</link>
	<title><![CDATA[Perl Module Installation]]></title>
	<description><![CDATA[<p>Nice step wide information on perl module installation.</p><p>Address of the bookmark: <a href="http://bioinformaticsonline.com/blog/view/710/how-to-install-perl-modules-manually-using-cpan-command-and-other-quick-ways" rel="nofollow">http://bioinformaticsonline.com/blog/view/710/how-to-install-perl-modules-manually-using-cpan-command-and-other-quick-ways</a></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/42921/run-bash-script-in-perl-program</guid>
	<pubDate>Sat, 27 Feb 2021 01:42:23 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/42921/run-bash-script-in-perl-program</link>
	<title><![CDATA[Run bash script in Perl program !]]></title>
	<description><![CDATA[<p>BioPerl is a compilation of Perl modules that can be used to build bioinformatics-related Perl scripts. It is used, for example, in the development of source codes, standalone software/tools, and algorithms in bioinformatics programmes. Different modules are easy to instal and include, making it easier to perform different functions. Despite the fact that Python is commonly favoured over Perl, some bioinformatics software, such as the standalone version of 'alienomics', is written in Perl. Often it's a major problem for beginners to execute certain Unix/shell commands in Perl script, so it's hard to determine which feature is unique to a situation.</p><div style="background-color: white;">Perl provides various features and operators for the execution of external commands (described as follows), which are unique in their own way.</div><div style="background-color: white;">&nbsp;</div><div style="background-color: white;">They vary slightly from one another, making it difficult for Perl beginners to choose between them.</div><div style="background-color: white;">&nbsp;</div><div style="background-color: white;"><strong>1. IPC::Open2</strong></div><p>More at https://bioinformaticsonline.com/snippets/view/42919/perl-ipcopen2-module</p><p><strong>2. exec&rdquo;&rdquo;</strong></p><p><em>&nbsp;syntax:&nbsp;</em><code>exec "command";</code></p><div style="background-color: #edfbff;">It's a Perl function (perlfunc) that executes a command but never returns, similar to a function's return statement.</div><div style="background-color: white;">While running the command, it keeps processing the script and does not wait until it finishes first, returns false when the command is not found, but never returns true.</div><p><strong>3. Backticks &ldquo; or qx//</strong></p><p><em>syntax:&nbsp;</em><code>`command`;</code></p><p><em>syntax:&nbsp;</em><code>qx/command/;</code></p><div style="background-color: white;">It's a Perl operator (perlop) that executes a command and then resumes the Perl script once the command has ended, but the return value is the command's STDOUT.</div><p><strong>4. IPC::Open3</strong></p><p><em>syntax:&nbsp;</em><code>$output =&nbsp;open3(\*CHLD_IN, \*CHLD_OUT, \*CHLD_ERR,&nbsp;'command arg1 arg2', 'optarg',...);</code></p><p style="text-align: justify;"><code></code>It is very similar to <code>IPC::Open2</code> with the capability to capture all three file handles of the process, i.e., STDIN, STDOUT, and STDERR. It can also be used with or without the shell. You can read about it more in the documentation: <a href="https://perldoc.perl.org/IPC/Open3.html" target="_blank">IPC::Open3</a>.</p><p><code>$output = open3(my $o ut,&nbsp;my $in, 'command arg1 arg2');</code></p><p>OR without using the shell</p><p><code>$output = open3(my $out,&nbsp;my $in, 'command', 'arg1', 'arg2');</code></p><p><strong>5.a2p</strong></p><p><em>syntax:&nbsp;</em><code>a2p [options] [awkscript]</code></p><p>There is a Perl utility known as <code>a2p</code> which translates <code>awk</code> command to Perl. It takes awk script as input and generates a comparable Perl script as the output. Suppose, you want to execute the following <code>awk</code> statement</p><p><code>awk '{$1 = ""; $2 = ""; print}' f1.txt</code></p><p>This statement gives error sometimes even after escaping the variables (\$1, \$2) but by using <code>a2p</code> it can be easily converted to Perl script:</p><p>For further information, you can read it&rsquo;s documentation: <code><a href="https://perldoc.perl.org/a2p.html" target="_blank">a2p</a></code></p><p>More help at https://bioinformaticsonline.com/snippets/view/42920/perl-script-to-run-awk-inside-perl</p><p><strong>6. system()</strong></p><p><em>syntax:&nbsp;</em><code>system( "command" );</code></p><p>It is also a Perl function (<a href="https://perldoc.perl.org/functions/system.html" target="_blank">perlfunc</a>) that executes a command and waits for it to get finished first and then resume the Perl script. The return value is the exit status of the command. It can be called in two ways:</p><p><code>system( "command arg1 arg2" );</code></p><p>OR</p><p><code>system( "command", "arg1", "arg2" );</code></p><p>HELP</p><p>Here are some useful Perl cheat sheets that can be used as a quick reference guide.--&nbsp;<a href="https://www.pcwdld.com/perl-cheat-sheet" target="_blank">https://www.pcwdld.com/perl-cheat-sheet</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/37509/vcftools-perform-common-tasks-with-vcf-files-such-as-file-validation-file-merging-intersecting-complements</guid>
	<pubDate>Tue, 07 Aug 2018 10:01:46 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/37509/vcftools-perform-common-tasks-with-vcf-files-such-as-file-validation-file-merging-intersecting-complements</link>
	<title><![CDATA[VCFtools: perform common tasks with VCF files such as file validation, file merging, intersecting, complements]]></title>
	<description><![CDATA[<p>VCFtools contains a Perl API (<a href="http://vcftools.sourceforge.net/perl_module.html#Vcf.pm">Vcf.pm</a>) and a number of Perl scripts that can be used to perform common tasks with VCF files such as file validation, file merging, intersecting, complements, etc. The Perl tools support all versions of the VCF specification (3.2, 3.3, 4.0, 4.1 and 4.2), nevertheless, the users are encouraged to use the latest versions VCFv4.1 or VCFv4.2. The VCFtools in general have been used mainly with diploid data, but the Perl tools aim to support polyploid data as well. Run any of the Perl scripts with the&nbsp;<strong>--help</strong>&nbsp;switch to obtain more help.</p>
<p>Many of the&nbsp;<strong>Perl scripts require that the VCF files are compressed by&nbsp;<span>bgzip</span>&nbsp;and indexed by&nbsp;<span>tabix</span></strong>&nbsp;(both tools are part of the tabix package, available for&nbsp;<a href="https://sourceforge.net/projects/samtools/files/tabix/">download here</a>). The VCF files can be compressed and indexed using the following commands</p>
<p>bgzip my_file.vcf<br>tabix -p vcf my_file.vcf.gz</p>
<p>&nbsp;</p>
<p>http://vcftools.sourceforge.net/perl_module.html</p><p>Address of the bookmark: <a href="http://vcftools.sourceforge.net/perl_module.html" rel="nofollow">http://vcftools.sourceforge.net/perl_module.html</a></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/29479/how-to-install-perl-modules-on-mac-os-x-in-easy-steps</guid>
	<pubDate>Thu, 20 Oct 2016 07:26:29 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/29479/how-to-install-perl-modules-on-mac-os-x-in-easy-steps</link>
	<title><![CDATA[How to install Perl modules on Mac OS X in easy steps !!]]></title>
	<description><![CDATA[<p>Today at work, I learned how to install Perl modules using&nbsp;<a href="http://en.wikipedia.org/wiki/CPAN">CPAN</a>. It&rsquo;s a lot easier than I thought.</p><p>You see, for the past couple of years, I&rsquo;ve been a bit frustrated because OS X does not come with a whole lot of Perl modules pre-installed, and for all I googled, I couldn&rsquo;t find an &ldquo;idiot&rsquo;s&rdquo; guide for moderately-savvy-but-not-expert users like myself to install modules and dependencies on demand.</p><p>The only instructions I could find point to&nbsp;<a href="http://fink.sourceforge.net/">Fink</a>, which basically installs modules in a path that isn&rsquo;t included in the Perl @INC variable, meaning you have to manually specify the full path to the modules in every script &mdash; which is not a lot of fun if you&rsquo;re developing on OS X and deploying on Red Hat, for instance.</p><p>Moreover, Fink doesn&rsquo;t seem to make every module available, and it&rsquo;s not very easy to determine which Fink package you need to install if you need a particular module.</p><p>So, with a script that called on several apparently unavailable modules, and a deadline looming, I finally decided to suck it up and figure out how to use CPAN to install them:</p><h4>1) Make sure you have the Apple Developer Tools (XCode) installed.</h4><p>These are on one of your install discs, or available as a huge but free download from the&nbsp;<a href="https://developer.apple.com/xcode/">Apple Developer Connection</a>&nbsp;[free registration required] or the Mac App Store. I thought I had them, but apparently when we upgraded that computer to Tiger, they went missing.</p><p>If you don&rsquo;t have this stuff installed, your installation will fail with errors about unavailable commands.</p><h4>1.5) Install Command Line Tools (Recent XCode versions only)</h4><p>(Thank you to Tom Marchioro for informing me about this step.)</p><p>Older versions of XCode installed the command line tools (which are required to properly install CPAN modules) by default, but apparently newer ones do not. To check whether you have the command line tools already installed, run the following from the Terminal:</p><p><code>$ which make</code></p><p>This command checks the system for the &ldquo;<code>make</code>&rdquo; tool. If it spits out something like&nbsp;<code>/usr/bin/make</code>&nbsp;you&rsquo;re golden and can skip ahead to Step 2. If you just get a new prompt and no output, you&rsquo;ll need to install the tools:</p><ol>
<li>Launch XCode and bring up the Preferences panel.</li>
<li>Click on the Downloads tab</li>
<li>Click to install the Command Line Tools</li>
</ol><p>If you like, you can run&nbsp;<code>which make</code>&nbsp;again to confirm that everything&rsquo;s installed correctly.</p><h4>2) Configure CPAN.</h4><p><code>$ sudo perl -MCPAN -e shell</code></p><p><code>perl&gt; o conf init</code></p><p>This will prompt you for some settings. You can accept the defaults for almost everything (just hit &ldquo;return&rdquo;). The two things you must fill in are the path to&nbsp;<code>make</code>&nbsp;(which should be&nbsp;<code>/usr/bin/make</code>&nbsp;or the value returned when you run&nbsp;<code>which make</code>&nbsp;from the command line) and your choice of CPAN mirrors (which you actually choose don&rsquo;t really matter, but it won&rsquo;t let you finish until you select at least one). If you use a proxy or a very restrictive firewall, you may have to configure those settings as well.</p><p>If you skip Step 2, you may get errors about&nbsp;<code>make</code>&nbsp;being unavailable.</p><h4>3) Upgrade CPAN</h4><p><code>$ sudo perl -MCPAN -e 'install Bundle::CPAN'</code></p><p>Don&rsquo;t forget the&nbsp;<code>sudo</code>, or it&rsquo;ll fail with permissions errors, probably when doing something relatively unimportant like installing&nbsp;<code>man</code>&nbsp;files.</p><p>This will spend a long time downloading, testing, and compiling various files and dependencies. Bear with it. It will prompt you a few times about dependencies. You probably want to enter &ldquo;yes&rdquo;. I agreed to everything it asked me, and everything turned out fine. YMMV of course. If everything installs properly, it&rsquo;ll give you an &ldquo;OK&rdquo; at the end.</p><h4>4) Install your modules. For each module&hellip;.</h4><p><code>$ sudo perl -MCPAN -e 'install Bundle::Name'</code></p><p>or</p><p><code>$ sudo perl -MCPAN -e 'install Module::Name'</code></p><p>This will install the module&nbsp;<em>and</em>&nbsp;its dependencies. Nice, eh? Again, don&rsquo;t forget the&nbsp;<code>sudo</code>.</p><p>The first time you run this after upgrading CPAN, it may prompt you to configure again (see Step 2). If you accept its offer to try to configure itself automatically, it may just run through everything without a problem.</p><p>There are a couple of potential pitfalls with specific modules (such as the<code>LWP::UserAgent</code>&nbsp;/&nbsp;<code>HEAD</code>&nbsp;issue), but most have workarounds, and I haven&rsquo;t run into anything that wasn&rsquo;t easily recoverable.</p><p>And that&rsquo;s it!</p><p>Did you find this useful? Is there anything I missed?</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/19792/irishgrid-irish-grid-mapping-system</guid>
	<pubDate>Fri, 26 Dec 2014 07:53:24 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/19792/irishgrid-irish-grid-mapping-system</link>
	<title><![CDATA[irishgrid: Irish Grid Mapping System]]></title>
	<description><![CDATA[<p>Perl module for creating geographic 10km-square maps using either SVG or PNG (with GD library) output format.</p>
<p>Originally design to map the location of objects in a 10 km map IrishGrid includes:</p>
<ul>
<li>native support of the Irish Grid System (see <a href="http://www.osi.ie/">http://www.osi.ie/</a>)</li>
<li>optimize for speed (there's as less as possible data to conversion)</li>
<li>customized color functions</li>
</ul>
<p>https://code.google.com/p/irishgrid/downloads/detail?name=irishgrid.pl</p><p>Address of the bookmark: <a href="https://code.google.com/p/irishgrid/" rel="nofollow">https://code.google.com/p/irishgrid/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/36927/restrictiondigest-a-powerful-perl-module-for-simulating-genomic-restriction-digests</guid>
	<pubDate>Tue, 12 Jun 2018 13:17:13 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/36927/restrictiondigest-a-powerful-perl-module-for-simulating-genomic-restriction-digests</link>
	<title><![CDATA[RestrictionDigest: A powerful Perl module for simulating genomic restriction digests]]></title>
	<description><![CDATA[RestrictionDigest can simulate the reference genome digestion and generate comprehensive information of the simulation. It can simulate single-enzyme digestion, double-enzyme digestion and size selection process. It can also analyze multiple genomes at one run and generates concise comparison of enzyme(s) performance across the genomes.

For more information, please see the academic paper published online (http://www.sciencedirect.com/science/article/pii/S071734581630001X).<p>Address of the bookmark: <a href="https://github.com/JINPENG-WANG/RestrictionDigest" rel="nofollow">https://github.com/JINPENG-WANG/RestrictionDigest</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/34864/installing-perl-environment-on-linux</guid>
	<pubDate>Tue, 26 Dec 2017 21:21:50 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/34864/installing-perl-environment-on-linux</link>
	<title><![CDATA[Installing Perl environment on Linux]]></title>
	<description><![CDATA[<p>By using&nbsp;<code>plenv</code>, you can easily install and switch among different version of Perl. This will be installed under your home directory in<code>~/.plenv</code>.</p><h4>Install latest Perl (with supporting multithreading) and CPANMinus.</h4><pre><code> $ cd
 $ git clone git://github.com/tokuhirom/plenv.git ~/.plenv
 $ git clone git://github.com/tokuhirom/Perl-Build.git ~/.plenv/plugins/perl-build/
 $ echo 'export PATH="$HOME/.plenv/bin:$PATH"' &gt;&gt; ~/.bashrc
 $ echo 'eval "$(plenv init -)"' &gt;&gt; ~/.bashrc
 $ source ~/.bashrc
 $ plenv install 5.18.1 -Dusethreads
 $ plenv rehash
 $ plenv global 5.18.1
 $ plenv install-cpanm
</code></pre><ul>
<li><code>git</code>&nbsp;is a distributed revision control and source code management software which can help you to download files from GitHub server.</li>
<li><code>echo</code>&nbsp;means "print".</li>
<li><code>&gt;&gt;</code>&nbsp;means adding the output into the end of the file, while&nbsp;<code>&gt;</code>&nbsp;means adding the output by overwriting the whole file. Please use<code>&gt;</code>&nbsp;with additional cares.</li>
<li>In Linux system, there are two types of outputs when you execute a command. One is called standard output (or sometimes STDOUT for short), and the other is a standard error (STDERR).&nbsp;<code>1&gt;</code>&nbsp;is for STDOUT only,&nbsp;<code>2&gt;</code>&nbsp;is for STDERR only, and&nbsp;<code>&amp;&gt;</code>means for both. In default&nbsp;<code>&gt;</code>&nbsp;is the same to&nbsp;<code>1&gt;</code>.</li>
<li><code>exec</code>&nbsp;is execution.</li>
<li>Remember to install Perl in supporting multithreading (with option&nbsp;<code>-Dusethreads</code>), which is important for many NGS analysis packages (e.g. Trinity). In this setting, you can use multiple CPU for Perl software.</li>
<li>Install the CPAN (Comprehensive Perl Archive Network) manager software, CPANMinus, by&nbsp;<code>install-cpanm</code>.</li>
</ul><p>You can use&nbsp;<code>plenv global</code>&nbsp;and&nbsp;<code>plenv local</code>&nbsp;to change the different version of Perl to fulfil different needs of your Perl software.</p><p>For example, if the&nbsp;specific version of Perl is not compatible with your script, you can switch to the different version by:</p><pre><code> $ plenv local 
</code></pre><ul>
<li>It is similar to set the local version of your script language when you use&nbsp;<code>pyenv</code>&nbsp;and&nbsp;<code>rbenv</code>&nbsp;as the following.</li>
</ul><p>Put the following path into&nbsp;<code>~/.bashrc file</code>.</p><pre><code>export PERL5LIB="$HOME/.plenv/build/perl-5.18.1/lib"
</code></pre><h4>Install BioPerl and PerlIO::gzip</h4><p>CPANMinus is a very good Perl module manager, use&nbsp;<code>cpanm</code>&nbsp;to install BioPerl can save you a lot of time. Here are some useful modules:</p><pre><code>$ cpanm Bio::Perl
$ cpanm Bio::SearchIO
$ cpanm PerlIO::gzip<br /></code></pre><p><span>For more information, please visit:&nbsp;</span><a href="https://github.com/tokuhirom/plenv">https://github.com/tokuhirom/plenv</a></p><pre><code>&nbsp;</code></pre>]]></description>
	<dc:creator>biogeek</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/37592/benchmarking-perl-module</guid>
	<pubDate>Sat, 25 Aug 2018 11:40:42 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/37592/benchmarking-perl-module</link>
	<title><![CDATA[Benchmarking Perl Module !]]></title>
	<description><![CDATA[<p>The benchmark module is a great tool to know the time the code takes to run. The output is usually in terms of CPU time. This module provides us with a way to optimize our code. With the advent of petascale computing and other multicore processor it is becoming a neccesity to know about the CPU time taken by our perl program.</p><p>This is the simple way to use the module</p><blockquote><p>Example1:</p><p>use Benchmark;</p><p>$first_time = Benchmark-&gt;new;</p><p>our code&hellip;&hellip;</p><p>$second_time = Benchmark-&gt;new;</p><p>$final_difference = timediff($first_time,$second_time);</p><p>print &ldquo;the code took, timestr($final_difference),&rdquo;\n&rdquo;;</p></blockquote><p>that was a very simple way to know the time diff , we can use it to know the time taken by some part of the code in the program.</p><blockquote><p>More sophisticated way:</p><p>use Benchmark;<br />sub first {</p><p>my(arguments) = @_;</p><p>}</p><p>timethese(100, { first =&gt; &lsquo;first_sub(arguments)&rsquo;});</p><p>The first argument to timethese is 100 (evaluate 100 times).</p></blockquote><p>Hope this very small tutorial with Benchmark will help people get started.</p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/21444/a-guide-for-complete-r-beginners-installing-r-packages</guid>
	<pubDate>Tue, 24 Feb 2015 20:23:34 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/21444/a-guide-for-complete-r-beginners-installing-r-packages</link>
	<title><![CDATA[A guide for complete R beginners :- Installing R packages]]></title>
	<description><![CDATA[<p>Part of the reason R has become so popular is the vast array of packages available at the <a href="http://cran.r-project.org/" target="_blank">cran</a> and <a href="http://www.bioconductor.org/" target="_blank">bioconductor</a> repositories. In the last few years, the number of packages has grown <a href="http://blog.revolutionanalytics.com/2010/09/what-can-other-languages-learn-from-r.html" target="_blank">exponentially</a>!</p><p>This is a short post giving steps on how to actually install R packages. Let&rsquo;s suppose you want to install the <a href="http://had.co.nz/ggplot2/" target="_blank">ggplot2</a> package. Well nothing could be easier. We just fire up an R shell and type:<br /><code><br />&gt; install.packages("ggplot2")</code></p><p>In theory the package should just install, however:</p><ul>
<li>if you are using Linux and don&rsquo;t have root access, this command won&rsquo;t work.</li>
<li>you will be asked to select your local mirror, i.e. which server should you use to download the package.</li>
</ul><h4>Installing packages without root access</h4><p>First, you need to designate a directory where you will store the downloaded packages. On my machine, I use the directory <code>/data/Rpackages/</code> After creating a package directory, to install a package we use the command:<br /><code><br />&gt; install.packages("ggplot2"</code><code>, lib="/data/Rpackages/")<br />&gt; library(ggplot2, lib.loc="/data/Rpackages/")<br /></code></p><p>It&rsquo;s a bit of a pain having to type <code>/data/Rpackages/</code> all the time. To avoid this burden,&nbsp; we create a file <code>.Renviron</code> in our home area, and add the line <code>R_LIBS=/data/Rpackages/</code> to it. This means that whenever you start R, the directory <code>/data/Rpackages/</code> is added to the list of places to look for R packages and so:</p><p><code>&gt; install.packages("ggplot2"</code><code>)<br />&gt; library(ggplot2)</code></p><p>just works!</p><h4>Setting the repository</h4><p>Every time you install a R package, you are asked which repository R should use. To set the repository and avoid having to specify this at every package install, simply:</p><ul>
<li>create a file <code>.Rprofile</code> in your home area.</li>
<li>Add the following piece of code to it:</li>
</ul><p><code><br />cat(".Rprofile: Setting UK repositoryn")<br />r = getOption("repos") # hard code the UK repo for CRAN<br />r["CRAN"] = "http://cran.uk.r-project.org"<br />options(repos = r)<br />rm(r)<br /></code></p><p>I found this tip in a stackoverflow <a href="http://stackoverflow.com/questions/1189759/expert-r-users-whats-in-your-rprofile/1189826#1189826" target="_blank">answer </a>.</p>]]></description>
	<dc:creator>Archana Malhotra</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/36525/installing-bandage-on-ubunty</guid>
	<pubDate>Tue, 08 May 2018 08:03:21 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/36525/installing-bandage-on-ubunty</link>
	<title><![CDATA[Installing Bandage on Ubunty !]]></title>
	<description><![CDATA[<p>The following instructions successfully build Bandage (https://github.com/rrwick/Bandage ) on a fresh installation of Ubuntu 14.04:</p><ol>
<li>Ensure the package lists are up-to-date:&nbsp;<code>sudo apt-get update</code></li>
<li>Install prerequisite packages:&nbsp;<code>sudo apt-get install build-essential git qtbase5-dev libqt5svg5-dev</code></li>
<li>Download the Bandage code from GitHub:&nbsp;<code>git clone https://github.com/rrwick/Bandage.git</code></li>
<li>Open a terminal in the Bandage directory.</li>
<li>Set the environment variable to specify that you will be using Qt 5, not Qt 4:&nbsp;<code>export QT_SELECT=5</code></li>
<li>Run qmake to generate a Makefile:&nbsp;<code>qmake</code></li>
<li>Build the program:&nbsp;<code>make</code></li>
<li><code>Bandage</code>&nbsp;should now be an executable file.</li>
<li>Optionally, copy the program into /usr/local/bin:&nbsp;<code>sudo make install</code>. The Bandage build directory can then be deleted.</li>
</ol><p>➜ Tools git:(master) ✗ sudo apt-get update<br />[sudo] password for urbe:&nbsp;<br />Hit:1 http://ppa.launchpad.net/webupd8team/atom/ubuntu xenial InRelease<br />Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]&nbsp;<br />Hit:3 http://ppa.launchpad.net/webupd8team/java/ubuntu xenial InRelease&nbsp;<br />Hit:4 http://be.archive.ubuntu.com/ubuntu xenial InRelease&nbsp;<br />Get:5 http://be.archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]<br />Get:6 http://be.archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]&nbsp;<br />Get:7 https://cran.rstudio.com/bin/linux/ubuntu xenial/ InRelease [3.590 B]&nbsp;<br />Hit:8 https://download.docker.com/linux/ubuntu xenial InRelease&nbsp;<br />Ign:9 http://download.opensuse.org/repositories/home:/sionescu/Debian ./ InRelease&nbsp;<br />Hit:10 http://download.opensuse.org/repositories/home:/sionescu/Debian ./ Release&nbsp;<br />Get:11 http://packages.cloud.google.com/apt cloud-sdk-xenial InRelease [6.372 B]<br />Get:12 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [484 kB]<br />Get:13 http://security.ubuntu.com/ubuntu xenial-security/main i386 Packages [433 kB]<br />Get:14 http://security.ubuntu.com/ubuntu xenial-security/main Translation-en [209 kB]<br />Get:15 http://security.ubuntu.com/ubuntu xenial-security/main amd64 DEP-11 Metadata [67,5 kB]<br />Get:16 http://security.ubuntu.com/ubuntu xenial-security/main DEP-11 64x64 Icons [68,0 kB]&nbsp;<br />Get:17 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 DEP-11 Metadata [107 kB]<br />Get:18 http://security.ubuntu.com/ubuntu xenial-security/universe DEP-11 64x64 Icons [147 kB]<br />Get:19 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [769 kB]&nbsp;<br />Get:20 http://be.archive.ubuntu.com/ubuntu xenial-updates/main i386 Packages [710 kB]&nbsp;<br />Get:21 http://be.archive.ubuntu.com/ubuntu xenial-updates/main Translation-en [319 kB]<br />Get:22 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 DEP-11 Metadata [319 kB]<br />Get:24 http://be.archive.ubuntu.com/ubuntu xenial-updates/main DEP-11 64x64 Icons [228 kB]&nbsp;<br />Get:25 http://be.archive.ubuntu.com/ubuntu xenial-updates/universe amd64 DEP-11 Metadata [246 kB]<br />Err:11 http://packages.cloud.google.com/apt cloud-sdk-xenial InRelease&nbsp;<br />The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 6A030B21BA07F4FB<br />Get:26 http://be.archive.ubuntu.com/ubuntu xenial-updates/universe DEP-11 64x64 Icons [331 kB]<br />Get:27 http://be.archive.ubuntu.com/ubuntu xenial-updates/multiverse amd64 DEP-11 Metadata [5.964 B]<br />Get:28 http://be.archive.ubuntu.com/ubuntu xenial-backports/main amd64 DEP-11 Metadata [3.328 B]<br />Get:29 http://be.archive.ubuntu.com/ubuntu xenial-backports/universe amd64 DEP-11 Metadata [5.088 B]<br />Fetched 4.779 kB in 2s (1.606 kB/s)&nbsp;<br />Reading package lists... Done<br />W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://packages.cloud.google.com/apt cloud-sdk-xenial InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 6A030B21BA07F4FB<br />W: Failed to fetch http://packages.cloud.google.com/apt/dists/cloud-sdk-xenial/InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 6A030B21BA07F4FB<br />W: Some index files failed to download. They have been ignored, or old ones used instead.<br />➜ Tools git:(master) ✗ sudo apt-get install build-essential git qtbase5-dev libqt5svg5-dev<br />Reading package lists... Done<br />Building dependency tree&nbsp;<br />Reading state information... Done<br />build-essential is already the newest version (12.1ubuntu2).<br />git is already the newest version (1:2.7.4-0ubuntu1.3).<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 linux-image-4.4.0-116-generic linux-image-4.4.0-21-generic<br />linux-image-extra-4.4.0-116-generic linux-image-extra-4.4.0-21-generic 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 />libdrm-dev libegl1-mesa-dev libgl1-mesa-dev libgles2-mesa libgles2-mesa-dev libglu1-mesa-dev libmirclient-dev libmircommon-dev libmircookie-dev libmircookie2 libmircore-dev libprotobuf-dev libprotobuf9v5<br />libqt5concurrent5 libqt5core5a libqt5dbus5 libqt5gui5 libqt5network5 libqt5opengl5 libqt5opengl5-dev libqt5printsupport5 libqt5sql5 libqt5sql5-sqlite libqt5svg5 libqt5test5 libqt5widgets5 libqt5xml5 libwayland-bin<br />libwayland-dev libx11-xcb-dev libxcb-dri2-0-dev libxcb-dri3-dev libxcb-glx0-dev libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present-dev libxcb-randr0 libxcb-randr0-dev libxcb-render-util0 libxcb-render0-dev<br />libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xkb1 libxdamage-dev libxext-dev libxfixes-dev libxkbcommon-dev libxkbcommon-x11-0 libxshmfence-dev libxxf86vm-dev mesa-common-dev qt5-qmake<br />qtbase5-dev-tools qttranslations5-l10n x11proto-damage-dev x11proto-dri2-dev x11proto-fixes-dev x11proto-gl-dev x11proto-xext-dev x11proto-xf86vidmode-dev<br />Suggested packages:<br />libqt5libqgtk2 qt5-image-formats-plugins qtwayland5 libxext-doc libmysqlclient-dev libpq-dev libsqlite3-dev unixodbc-dev<br />The following NEW packages will be installed:<br />libdrm-dev libegl1-mesa-dev libgl1-mesa-dev libgles2-mesa libgles2-mesa-dev libglu1-mesa-dev libmirclient-dev libmircommon-dev libmircookie-dev libmircookie2 libmircore-dev libprotobuf-dev libprotobuf9v5<br />libqt5concurrent5 libqt5core5a libqt5dbus5 libqt5gui5 libqt5network5 libqt5opengl5 libqt5opengl5-dev libqt5printsupport5 libqt5sql5 libqt5sql5-sqlite libqt5svg5 libqt5svg5-dev libqt5test5 libqt5widgets5 libqt5xml5<br />libwayland-bin libwayland-dev libx11-xcb-dev libxcb-dri2-0-dev libxcb-dri3-dev libxcb-glx0-dev libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present-dev libxcb-randr0 libxcb-randr0-dev libxcb-render-util0<br />libxcb-render0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xkb1 libxdamage-dev libxext-dev libxfixes-dev libxkbcommon-dev libxkbcommon-x11-0 libxshmfence-dev libxxf86vm-dev mesa-common-dev<br />qt5-qmake qtbase5-dev qtbase5-dev-tools qttranslations5-l10n x11proto-damage-dev x11proto-dri2-dev x11proto-fixes-dev x11proto-gl-dev x11proto-xext-dev x11proto-xf86vidmode-dev<br />0 upgraded, 64 newly installed, 0 to remove and 11 not upgraded.<br />Need to get 15,2 MB of archives.<br />After this operation, 78,5 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 libqt5core5a amd64 5.5.1+dfsg-16ubuntu7.5 [1.817 kB]<br />Get:2 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5dbus5 amd64 5.5.1+dfsg-16ubuntu7.5 [175 kB]<br />Get:3 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5network5 amd64 5.5.1+dfsg-16ubuntu7.5 [540 kB]<br />Get:4 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-icccm4 amd64 0.4.1-1ubuntu1 [10,4 kB]<br />Get:5 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-image0 amd64 0.4.0-1build1 [12,3 kB]<br />Get:6 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-keysyms1 amd64 0.4.0-1 [8.406 B]<br />Get:7 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-randr0 amd64 1.11.1-1ubuntu1 [14,4 kB]<br />Get:8 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-render-util0 amd64 0.3.9-1 [9.638 B]<br />Get:9 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-xkb1 amd64 1.11.1-1ubuntu1 [29,2 kB]<br />Get:10 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxkbcommon-x11-0 amd64 0.5.0-1ubuntu2 [13,5 kB]<br />Get:11 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5gui5 amd64 5.5.1+dfsg-16ubuntu7.5 [2.290 kB]<br />Get:12 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5widgets5 amd64 5.5.1+dfsg-16ubuntu7.5 [2.252 kB]<br />Get:13 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libqt5svg5 amd64 5.5.1-2build1 [128 kB]<br />Get:14 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libqt5svg5-dev amd64 5.5.1-2build1 [9.724 B]<br />Get:15 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdrm-dev amd64 2.4.83-1~16.04.1 [229 kB]<br />Get:16 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 x11proto-dri2-dev all 2.8-2 [12,6 kB]<br />Get:17 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 x11proto-gl-dev all 1.4.17-1 [17,9 kB]<br />Get:18 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 x11proto-xext-dev all 7.3.0-1 [212 kB]<br />Get:19 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxext-dev amd64 2:1.3.3-1 [82,1 kB]<br />Get:20 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 x11proto-xf86vidmode-dev all 2.3.1-2 [6.116 B]<br />Get:21 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxxf86vm-dev amd64 1:1.1.4-1 [13,3 kB]<br />Get:22 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 x11proto-fixes-dev all 1:5.0-2ubuntu2 [14,2 kB]<br />Get:23 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxfixes-dev amd64 1:5.0.1-2 [10,9 kB]<br />Get:24 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 x11proto-damage-dev all 1:1.2.1-2 [8.286 B]<br />Get:25 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxdamage-dev amd64 1:1.1.4-2 [5.028 B]<br />Get:26 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-glx0-dev amd64 1.11.1-1ubuntu1 [26,9 kB]<br />Get:27 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-dri2-0-dev amd64 1.11.1-1ubuntu1 [8.384 B]<br />Get:28 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-dri3-dev amd64 1.11.1-1ubuntu1 [5.752 B]<br />Get:29 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-render0-dev amd64 1.11.1-1ubuntu1 [15,3 kB]<br />Get:30 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-randr0-dev amd64 1.11.1-1ubuntu1 [18,2 kB]<br />Get:31 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-shape0-dev amd64 1.11.1-1ubuntu1 [6.900 B]<br />Get:32 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-xfixes0-dev amd64 1.11.1-1ubuntu1 [11,2 kB]<br />Get:33 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-sync-dev amd64 1.11.1-1ubuntu1 [10,1 kB]<br />Get:34 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-present-dev amd64 1.11.1-1ubuntu1 [6.618 B]<br />Get:35 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxshmfence-dev amd64 1.2-1 [3.676 B]<br />Get:36 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libx11-xcb-dev amd64 2:1.6.3-1ubuntu2 [9.730 B]<br />Get:37 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libwayland-bin amd64 1.12.0-1~ubuntu16.04.3 [18,4 kB]<br />Get:38 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libwayland-dev amd64 1.12.0-1~ubuntu16.04.3 [92,4 kB]<br />Get:39 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libmircore-dev amd64 0.26.3+16.04.20170605-0ubuntu1.1 [23,7 kB]<br />Get:40 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libprotobuf9v5 amd64 2.6.1-1.3 [326 kB]<br />Get:41 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libprotobuf-dev amd64 2.6.1-1.3 [473 kB]<br />Get:42 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxkbcommon-dev amd64 0.5.0-1ubuntu2 [231 kB]<br />Get:43 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libmircommon-dev amd64 0.26.3+16.04.20170605-0ubuntu1.1 [14,9 kB]<br />Get:44 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libmircookie2 amd64 0.26.3+16.04.20170605-0ubuntu1.1 [22,5 kB]<br />Get:45 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libmircookie-dev amd64 0.26.3+16.04.20170605-0ubuntu1.1 [5.152 B]<br />Get:46 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libmirclient-dev amd64 0.26.3+16.04.20170605-0ubuntu1.1 [42,6 kB]<br />Get:47 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libegl1-mesa-dev amd64 17.2.8-0ubuntu0~16.04.1 [19,9 kB]<br />Get:48 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgles2-mesa amd64 17.2.8-0ubuntu0~16.04.1 [13,4 kB]<br />Get:49 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgles2-mesa-dev amd64 17.2.8-0ubuntu0~16.04.1 [40,2 kB]<br />Get:50 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 mesa-common-dev amd64 17.2.8-0ubuntu0~16.04.1 [525 kB]<br />Get:51 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgl1-mesa-dev amd64 17.2.8-0ubuntu0~16.04.1 [4.456 B]<br />Get:52 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libglu1-mesa-dev amd64 9.0.0-2.1 [202 kB]<br />Get:53 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5concurrent5 amd64 5.5.1+dfsg-16ubuntu7.5 [24,3 kB]<br />Get:54 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5opengl5 amd64 5.5.1+dfsg-16ubuntu7.5 [128 kB]<br />Get:55 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5printsupport5 amd64 5.5.1+dfsg-16ubuntu7.5 [174 kB]<br />Get:56 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5sql5 amd64 5.5.1+dfsg-16ubuntu7.5 [104 kB]<br />Get:57 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5test5 amd64 5.5.1+dfsg-16ubuntu7.5 [84,5 kB]<br />Get:58 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5xml5 amd64 5.5.1+dfsg-16ubuntu7.5 [91,8 kB]<br />Get:59 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 qt5-qmake amd64 5.5.1+dfsg-16ubuntu7.5 [1.192 kB]<br />Get:60 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 qtbase5-dev-tools amd64 5.5.1+dfsg-16ubuntu7.5 [1.056 kB]<br />Get:61 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 qtbase5-dev amd64 5.5.1+dfsg-16ubuntu7.5 [931 kB]<br />Get:62 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5opengl5-dev amd64 5.5.1+dfsg-16ubuntu7.5 [31,5 kB]<br />Get:63 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5sql5-sqlite amd64 5.5.1+dfsg-16ubuntu7.5 [33,0 kB]<br />Get:64 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 qttranslations5-l10n all 5.5.1-2build1 [1.210 kB]<br />Fetched 15,2 MB in 4s (3.099 kB/s)&nbsp;<br />Extracting templates from packages: 100%<br />Selecting previously unselected package libqt5core5a:amd64.<br />(Reading database ... 480949 files and directories currently installed.)<br />Preparing to unpack .../libqt5core5a_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5core5a:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5dbus5:amd64.<br />Preparing to unpack .../libqt5dbus5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5dbus5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5network5:amd64.<br />Preparing to unpack .../libqt5network5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5network5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libxcb-icccm4:amd64.<br />Preparing to unpack .../libxcb-icccm4_0.4.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-icccm4:amd64 (0.4.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-image0:amd64.<br />Preparing to unpack .../libxcb-image0_0.4.0-1build1_amd64.deb ...<br />Unpacking libxcb-image0:amd64 (0.4.0-1build1) ...<br />Selecting previously unselected package libxcb-keysyms1:amd64.<br />Preparing to unpack .../libxcb-keysyms1_0.4.0-1_amd64.deb ...<br />Unpacking libxcb-keysyms1:amd64 (0.4.0-1) ...<br />Selecting previously unselected package libxcb-randr0:amd64.<br />Preparing to unpack .../libxcb-randr0_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-randr0:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-render-util0:amd64.<br />Preparing to unpack .../libxcb-render-util0_0.3.9-1_amd64.deb ...<br />Unpacking libxcb-render-util0:amd64 (0.3.9-1) ...<br />Selecting previously unselected package libxcb-xkb1:amd64.<br />Preparing to unpack .../libxcb-xkb1_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-xkb1:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxkbcommon-x11-0:amd64.<br />Preparing to unpack .../libxkbcommon-x11-0_0.5.0-1ubuntu2_amd64.deb ...<br />Unpacking libxkbcommon-x11-0:amd64 (0.5.0-1ubuntu2) ...<br />Selecting previously unselected package libqt5gui5:amd64.<br />Preparing to unpack .../libqt5gui5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5gui5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5widgets5:amd64.<br />Preparing to unpack .../libqt5widgets5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5widgets5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5svg5:amd64.<br />Preparing to unpack .../libqt5svg5_5.5.1-2build1_amd64.deb ...<br />Unpacking libqt5svg5:amd64 (5.5.1-2build1) ...<br />Selecting previously unselected package libqt5svg5-dev:amd64.<br />Preparing to unpack .../libqt5svg5-dev_5.5.1-2build1_amd64.deb ...<br />Unpacking libqt5svg5-dev:amd64 (5.5.1-2build1) ...<br />Selecting previously unselected package libdrm-dev:amd64.<br />Preparing to unpack .../libdrm-dev_2.4.83-1~16.04.1_amd64.deb ...<br />Unpacking libdrm-dev:amd64 (2.4.83-1~16.04.1) ...<br />Selecting previously unselected package x11proto-dri2-dev.<br />Preparing to unpack .../x11proto-dri2-dev_2.8-2_all.deb ...<br />Unpacking x11proto-dri2-dev (2.8-2) ...<br />Selecting previously unselected package x11proto-gl-dev.<br />Preparing to unpack .../x11proto-gl-dev_1.4.17-1_all.deb ...<br />Unpacking x11proto-gl-dev (1.4.17-1) ...<br />Selecting previously unselected package x11proto-xext-dev.<br />Preparing to unpack .../x11proto-xext-dev_7.3.0-1_all.deb ...<br />Unpacking x11proto-xext-dev (7.3.0-1) ...<br />Selecting previously unselected package libxext-dev:amd64.<br />Preparing to unpack .../libxext-dev_2%3a1.3.3-1_amd64.deb ...<br />Unpacking libxext-dev:amd64 (2:1.3.3-1) ...<br />Selecting previously unselected package x11proto-xf86vidmode-dev.<br />Preparing to unpack .../x11proto-xf86vidmode-dev_2.3.1-2_all.deb ...<br />Unpacking x11proto-xf86vidmode-dev (2.3.1-2) ...<br />Selecting previously unselected package libxxf86vm-dev:amd64.<br />Preparing to unpack .../libxxf86vm-dev_1%3a1.1.4-1_amd64.deb ...<br />Unpacking libxxf86vm-dev:amd64 (1:1.1.4-1) ...<br />Selecting previously unselected package x11proto-fixes-dev.<br />Preparing to unpack .../x11proto-fixes-dev_1%3a5.0-2ubuntu2_all.deb ...<br />Unpacking x11proto-fixes-dev (1:5.0-2ubuntu2) ...<br />Selecting previously unselected package libxfixes-dev:amd64.<br />Preparing to unpack .../libxfixes-dev_1%3a5.0.1-2_amd64.deb ...<br />Unpacking libxfixes-dev:amd64 (1:5.0.1-2) ...<br />Selecting previously unselected package x11proto-damage-dev.<br />Preparing to unpack .../x11proto-damage-dev_1%3a1.2.1-2_all.deb ...<br />Unpacking x11proto-damage-dev (1:1.2.1-2) ...<br />Selecting previously unselected package libxdamage-dev:amd64.<br />Preparing to unpack .../libxdamage-dev_1%3a1.1.4-2_amd64.deb ...<br />Unpacking libxdamage-dev:amd64 (1:1.1.4-2) ...<br />Selecting previously unselected package libxcb-glx0-dev:amd64.<br />Preparing to unpack .../libxcb-glx0-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-glx0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-dri2-0-dev:amd64.<br />Preparing to unpack .../libxcb-dri2-0-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-dri2-0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-dri3-dev:amd64.<br />Preparing to unpack .../libxcb-dri3-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-dri3-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-render0-dev:amd64.<br />Preparing to unpack .../libxcb-render0-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-render0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-randr0-dev:amd64.<br />Preparing to unpack .../libxcb-randr0-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-randr0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-shape0-dev:amd64.<br />Preparing to unpack .../libxcb-shape0-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-shape0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-xfixes0-dev:amd64.<br />Preparing to unpack .../libxcb-xfixes0-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-xfixes0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-sync-dev:amd64.<br />Preparing to unpack .../libxcb-sync-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-sync-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-present-dev:amd64.<br />Preparing to unpack .../libxcb-present-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-present-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxshmfence-dev:amd64.<br />Preparing to unpack .../libxshmfence-dev_1.2-1_amd64.deb ...<br />Unpacking libxshmfence-dev:amd64 (1.2-1) ...<br />Selecting previously unselected package libx11-xcb-dev:amd64.<br />Preparing to unpack .../libx11-xcb-dev_2%3a1.6.3-1ubuntu2_amd64.deb ...<br />Unpacking libx11-xcb-dev:amd64 (2:1.6.3-1ubuntu2) ...<br />Selecting previously unselected package libwayland-bin.<br />Preparing to unpack .../libwayland-bin_1.12.0-1~ubuntu16.04.3_amd64.deb ...<br />Unpacking libwayland-bin (1.12.0-1~ubuntu16.04.3) ...<br />Selecting previously unselected package libwayland-dev:amd64.<br />Preparing to unpack .../libwayland-dev_1.12.0-1~ubuntu16.04.3_amd64.deb ...<br />Unpacking libwayland-dev:amd64 (1.12.0-1~ubuntu16.04.3) ...<br />Selecting previously unselected package libmircore-dev:amd64.<br />Preparing to unpack .../libmircore-dev_0.26.3+16.04.20170605-0ubuntu1.1_amd64.deb ...<br />Unpacking libmircore-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Selecting previously unselected package libprotobuf9v5:amd64.<br />Preparing to unpack .../libprotobuf9v5_2.6.1-1.3_amd64.deb ...<br />Unpacking libprotobuf9v5:amd64 (2.6.1-1.3) ...<br />Selecting previously unselected package libprotobuf-dev:amd64.<br />Preparing to unpack .../libprotobuf-dev_2.6.1-1.3_amd64.deb ...<br />Unpacking libprotobuf-dev:amd64 (2.6.1-1.3) ...<br />Selecting previously unselected package libxkbcommon-dev.<br />Preparing to unpack .../libxkbcommon-dev_0.5.0-1ubuntu2_amd64.deb ...<br />Unpacking libxkbcommon-dev (0.5.0-1ubuntu2) ...<br />Selecting previously unselected package libmircommon-dev:amd64.<br />Preparing to unpack .../libmircommon-dev_0.26.3+16.04.20170605-0ubuntu1.1_amd64.deb ...<br />Unpacking libmircommon-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Selecting previously unselected package libmircookie2:amd64.<br />Preparing to unpack .../libmircookie2_0.26.3+16.04.20170605-0ubuntu1.1_amd64.deb ...<br />Unpacking libmircookie2:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Selecting previously unselected package libmircookie-dev:amd64.<br />Preparing to unpack .../libmircookie-dev_0.26.3+16.04.20170605-0ubuntu1.1_amd64.deb ...<br />Unpacking libmircookie-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Selecting previously unselected package libmirclient-dev:amd64.<br />Preparing to unpack .../libmirclient-dev_0.26.3+16.04.20170605-0ubuntu1.1_amd64.deb ...<br />Unpacking libmirclient-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Selecting previously unselected package libegl1-mesa-dev:amd64.<br />Preparing to unpack .../libegl1-mesa-dev_17.2.8-0ubuntu0~16.04.1_amd64.deb ...<br />Unpacking libegl1-mesa-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Selecting previously unselected package libgles2-mesa:amd64.<br />Preparing to unpack .../libgles2-mesa_17.2.8-0ubuntu0~16.04.1_amd64.deb ...<br />Unpacking libgles2-mesa:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Selecting previously unselected package libgles2-mesa-dev:amd64.<br />Preparing to unpack .../libgles2-mesa-dev_17.2.8-0ubuntu0~16.04.1_amd64.deb ...<br />Unpacking libgles2-mesa-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Selecting previously unselected package mesa-common-dev:amd64.<br />Preparing to unpack .../mesa-common-dev_17.2.8-0ubuntu0~16.04.1_amd64.deb ...<br />Unpacking mesa-common-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Selecting previously unselected package libgl1-mesa-dev:amd64.<br />Preparing to unpack .../libgl1-mesa-dev_17.2.8-0ubuntu0~16.04.1_amd64.deb ...<br />Unpacking libgl1-mesa-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Selecting previously unselected package libglu1-mesa-dev:amd64.<br />Preparing to unpack .../libglu1-mesa-dev_9.0.0-2.1_amd64.deb ...<br />Unpacking libglu1-mesa-dev:amd64 (9.0.0-2.1) ...<br />Selecting previously unselected package libqt5concurrent5:amd64.<br />Preparing to unpack .../libqt5concurrent5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5concurrent5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5opengl5:amd64.<br />Preparing to unpack .../libqt5opengl5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5opengl5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5printsupport5:amd64.<br />Preparing to unpack .../libqt5printsupport5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5printsupport5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5sql5:amd64.<br />Preparing to unpack .../libqt5sql5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5sql5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5test5:amd64.<br />Preparing to unpack .../libqt5test5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5test5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5xml5:amd64.<br />Preparing to unpack .../libqt5xml5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5xml5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package qt5-qmake:amd64.<br />Preparing to unpack .../qt5-qmake_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking qt5-qmake:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package qtbase5-dev-tools.<br />Preparing to unpack .../qtbase5-dev-tools_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking qtbase5-dev-tools (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package qtbase5-dev:amd64.<br />Preparing to unpack .../qtbase5-dev_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking qtbase5-dev:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5opengl5-dev:amd64.<br />Preparing to unpack .../libqt5opengl5-dev_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5opengl5-dev:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5sql5-sqlite:amd64.<br />Preparing to unpack .../libqt5sql5-sqlite_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5sql5-sqlite:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package qttranslations5-l10n.<br />Preparing to unpack .../qttranslations5-l10n_5.5.1-2build1_all.deb ...<br />Unpacking qttranslations5-l10n (5.5.1-2build1) ...<br />Processing triggers for libc-bin (2.23-0ubuntu10) ...<br />Processing triggers for man-db (2.7.5-1) ...<br />Setting up libqt5core5a:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5dbus5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5network5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libxcb-icccm4:amd64 (0.4.1-1ubuntu1) ...<br />Setting up libxcb-image0:amd64 (0.4.0-1build1) ...<br />Setting up libxcb-keysyms1:amd64 (0.4.0-1) ...<br />Setting up libxcb-randr0:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-render-util0:amd64 (0.3.9-1) ...<br />Setting up libxcb-xkb1:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxkbcommon-x11-0:amd64 (0.5.0-1ubuntu2) ...<br />Setting up libqt5gui5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5widgets5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5svg5:amd64 (5.5.1-2build1) ...<br />Setting up libqt5svg5-dev:amd64 (5.5.1-2build1) ...<br />Setting up libdrm-dev:amd64 (2.4.83-1~16.04.1) ...<br />Setting up x11proto-dri2-dev (2.8-2) ...<br />Setting up x11proto-gl-dev (1.4.17-1) ...<br />Setting up x11proto-xext-dev (7.3.0-1) ...<br />Setting up libxext-dev:amd64 (2:1.3.3-1) ...<br />Setting up x11proto-xf86vidmode-dev (2.3.1-2) ...<br />Setting up libxxf86vm-dev:amd64 (1:1.1.4-1) ...<br />Setting up x11proto-fixes-dev (1:5.0-2ubuntu2) ...<br />Setting up libxfixes-dev:amd64 (1:5.0.1-2) ...<br />Setting up x11proto-damage-dev (1:1.2.1-2) ...<br />Setting up libxdamage-dev:amd64 (1:1.1.4-2) ...<br />Setting up libxcb-glx0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-dri2-0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-dri3-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-render0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-randr0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-shape0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-xfixes0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-sync-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-present-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxshmfence-dev:amd64 (1.2-1) ...<br />Setting up libx11-xcb-dev:amd64 (2:1.6.3-1ubuntu2) ...<br />Setting up libwayland-bin (1.12.0-1~ubuntu16.04.3) ...<br />Setting up libwayland-dev:amd64 (1.12.0-1~ubuntu16.04.3) ...<br />Setting up libmircore-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Setting up libprotobuf9v5:amd64 (2.6.1-1.3) ...<br />Setting up libprotobuf-dev:amd64 (2.6.1-1.3) ...<br />Setting up libxkbcommon-dev (0.5.0-1ubuntu2) ...<br />Setting up libmircommon-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Setting up libmircookie2:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Setting up libmircookie-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Setting up libmirclient-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Setting up libegl1-mesa-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Setting up libgles2-mesa:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Setting up libgles2-mesa-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Setting up mesa-common-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Setting up libgl1-mesa-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Setting up libglu1-mesa-dev:amd64 (9.0.0-2.1) ...<br />Setting up libqt5concurrent5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5opengl5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5printsupport5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5sql5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5test5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5xml5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up qt5-qmake:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up qtbase5-dev-tools (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up qtbase5-dev:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5opengl5-dev:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5sql5-sqlite:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up qttranslations5-l10n (5.5.1-2build1) ...<br />Processing triggers for libc-bin (2.23-0ubuntu10) ...<br />➜ Tools git:(master) ✗ git clone https://github.com/rrwick/Bandage.git<br />Cloning into 'Bandage'...<br />remote: Counting objects: 7813, done.<br />remote: Total 7813 (delta 0), reused 0 (delta 0), pack-reused 7813<br />Receiving objects: 100% (7813/7813), 27.43 MiB | 16.33 MiB/s, done.<br />Resolving deltas: 100% (5973/5973), done.<br />Checking connectivity... done.<br />➜ Tools git:(master) ✗ cd Bandage&nbsp;<br />➜ Bandage git:(master) ls<br />Bandage.pro BandageTests.pro blast build_scripts command_line COPYING graph images ogdf program README.md tests ui<br />➜ Bandage git:(master) export QT_SELECT=5<br />➜ Bandage git:(master) qmake<br />➜ Bandage git:(master) ✗ make<br />/home/urbe/anaconda3/bin/uic ui/mainwindow.ui -o ui_mainwindow.h<br />/home/urbe/anaconda3/bin/uic ui/settingsdialog.ui -o ui_settingsdialog.h<br />/home/urbe/anaconda3/bin/uic ui/aboutdialog.ui -o ui_aboutdialog.h<br />/home/urbe/anaconda3/bin/uic ui/enteroneblastquerydialog.ui -o ui_enteroneblastquerydialog.h<br />/home/urbe/anaconda3/bin/uic ui/blastsearchdialog.ui -o ui_blastsearchdialog.h<br />/home/urbe/anaconda3/bin/uic ui/myprogressdialog.ui -o ui_myprogressdialog.h<br />/home/urbe/anaconda3/bin/uic ui/pathspecifydialog.ui -o ui_pathspecifydialog.h<br />/home/urbe/anaconda3/bin/uic ui/querypathsdialog.ui -o ui_querypathsdialog.h<br />/home/urbe/anaconda3/bin/uic ui/blasthitfiltersdialog.ui -o ui_blasthitfiltersdialog.h<br />/home/urbe/anaconda3/bin/uic ui/changenodenamedialog.ui -o ui_changenodenamedialog.h<br />/home/urbe/anaconda3/bin/uic ui/graphinfodialog.ui -o ui_graphinfodialog.h<br />/home/urbe/anaconda3/bin/uic ui/changenodedepthdialog.ui -o ui_changenodedepthdialog.h<br />g++ -c -pipe -O2 -std=gnu++0x -Wall -W -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -Iui -I/usr/include -I../../anaconda3/include/qt -I../../anaconda3/include/qt/QtSvg -I../../anaconda3/include/qt/QtWidgets -I../../anaconda3/include/qt/QtGui -I../../anaconda3/include/qt/QtCore -I. -I. -I../../anaconda3/mkspecs/linux-g++ -o main.o program/main.cpp<br />g++ -c -pipe -O2 -std=gnu++0x -Wall -W -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -Iui -I/usr/include -I../../anaconda3/include/qt -I../../anaconda3/include/qt/QtSvg -I../../anaconda3/include/qt/QtWidgets -I../../anaconda3/include/qt/QtGui -I../../anaconda3/include/qt/QtCore -I. -I. -I../../anaconda3/mkspecs/linux-g++ -o settings.o program/settings.cpp<br />....</p><p>...<br />g++ -Wl,-O1 -Wl,-rpath,/home/urbe/anaconda3/lib -o Bandage main.o settings.o globals.o graphlayoutworker.o debruijnnode.o debruijnedge.o graphicsitemnode.o graphicsitemedge.o mainwindow.o graphicsviewzoom.o settingsdialog.o mygraphicsview.o mygraphicsscene.o aboutdialog.o enteroneblastquerydialog.o blasthit.o blastqueries.o blastsearchdialog.o infotextwidget.o assemblygraph.o verticalscrollarea.o myprogressdialog.o nodewidthvisualaid.o verticallabel.o load.o image.o commoncommandlinefunctions.o mytablewidget.o buildblastdatabaseworker.o colourbutton.o blastquery.o runblastsearchworker.o blastsearch.o path.o pathspecifydialog.o graphlocation.o tablewidgetitemint.o tablewidgetitemdouble.o tablewidgetitemshown.o memory.o querypathspushbutton.o querypathsdialog.o blastquerypath.o blasthitfiltersdialog.o scinot.o changenodenamedialog.o querypathsequencecopybutton.o querypaths.o info.o reduce.o Graph.o GraphAttributes.o FMMMLayout.o geometry.o ClusterGraphAttributes.o FruchtermanReingold.o NMM.o GmlParser.o simple_graph_alg.o basic.o XmlParser.o String.o Hashing.o PoolMemoryAllocator.o GraphCopy.o CombinatorialEmbedding.o OgmlParser.o ClusterGraph.o Math.o EdgeAttributes.o NodeAttributes.o MAARPacking.o Multilevel.o numexcept.o Set.o Ogml.o DinoXmlParser.o DinoXmlScanner.o DinoTools.o DinoLineBuffer.o System.o QuadTreeNM.o QuadTreeNodeNM.o Constraint.o MultilevelGraph.o graphinfodialog.o tablewidgetitemname.o changenodedepthdialog.o qrc_images.o moc_graphlayoutworker.o moc_mainwindow.o moc_graphicsviewzoom.o moc_settingsdialog.o moc_mygraphicsview.o moc_mygraphicsscene.o moc_aboutdialog.o moc_enteroneblastquerydialog.o moc_blastquery.o moc_blastsearchdialog.o moc_infotextwidget.o moc_assemblygraph.o moc_verticalscrollarea.o moc_myprogressdialog.o moc_nodewidthvisualaid.o moc_verticallabel.o moc_mytablewidget.o moc_buildblastdatabaseworker.o moc_colourbutton.o moc_runblastsearchworker.o moc_pathspecifydialog.o moc_querypathspushbutton.o moc_querypathsdialog.o moc_blasthitfiltersdialog.o moc_changenodenamedialog.o moc_querypathsequencecopybutton.o moc_graphinfodialog.o moc_changenodedepthdialog.o -L/usr/lib -L/home/urbe/anaconda3/lib -lQt5Svg -lQt5Widgets -lQt5Gui -lQt5Core -lGL -lpthread&nbsp;<br />➜ Bandage git:(master) ✗ ls&nbsp;<br />aboutdialog.o DinoTools.o Makefile moc_infotextwidget.cpp moc_verticalscrollarea.o scinot.o<br />assemblygraph.o DinoXmlParser.o Math.o moc_infotextwidget.o MultilevelGraph.o Set.o<br />Bandage DinoXmlScanner.o memory.o moc_mainwindow.cpp Multilevel.o settingsdialog.o<br />Bandage.pro EdgeAttributes.o moc_aboutdialog.cpp moc_mainwindow.o mygraphicsscene.o settings.o<br />BandageTests.pro enteroneblastquerydialog.o moc_aboutdialog.o moc_mygraphicsscene.cpp mygraphicsview.o simple_graph_alg.o<br />basic.o FMMMLayout.o moc_assemblygraph.cpp moc_mygraphicsscene.o myprogressdialog.o String.o<br />blast FruchtermanReingold.o moc_assemblygraph.o moc_mygraphicsview.cpp mytablewidget.o System.o<br />blasthitfiltersdialog.o geometry.o moc_blasthitfiltersdialog.cpp moc_mygraphicsview.o NMM.o tablewidgetitemdouble.o<br />blasthit.o globals.o moc_blasthitfiltersdialog.o moc_myprogressdialog.cpp NodeAttributes.o tablewidgetitemint.o<br />blastqueries.o GmlParser.o moc_blastquery.cpp moc_myprogressdialog.o nodewidthvisualaid.o tablewidgetitemname.o<br />blastquery.o graph moc_blastquery.o moc_mytablewidget.cpp numexcept.o tablewidgetitemshown.o<br />blastquerypath.o GraphAttributes.o moc_blastsearchdialog.cpp moc_mytablewidget.o ogdf tests<br />blastsearchdialog.o GraphCopy.o moc_blastsearchdialog.o moc_nodewidthvisualaid.cpp Ogml.o ui<br />blastsearch.o graphicsitemedge.o moc_buildblastdatabaseworker.cpp moc_nodewidthvisualaid.o OgmlParser.o ui_aboutdialog.h<br />buildblastdatabaseworker.o graphicsitemnode.o moc_buildblastdatabaseworker.o moc_pathspecifydialog.cpp path.o ui_blasthitfiltersdialog.h<br />build_scripts graphicsviewzoom.o moc_changenodedepthdialog.cpp moc_pathspecifydialog.o pathspecifydialog.o ui_blastsearchdialog.h<br />changenodedepthdialog.o graphinfodialog.o moc_changenodedepthdialog.o moc_querypathsdialog.cpp PoolMemoryAllocator.o ui_changenodedepthdialog.h<br />changenodenamedialog.o graphlayoutworker.o moc_changenodenamedialog.cpp moc_querypathsdialog.o program ui_changenodenamedialog.h<br />ClusterGraphAttributes.o graphlocation.o moc_changenodenamedialog.o moc_querypathsequencecopybutton.cpp qrc_images.cpp ui_enteroneblastquerydialog.h<br />ClusterGraph.o Graph.o moc_colourbutton.cpp moc_querypathsequencecopybutton.o qrc_images.o ui_graphinfodialog.h<br />colourbutton.o Hashing.o moc_colourbutton.o moc_querypathspushbutton.cpp QuadTreeNM.o ui_mainwindow.h<br />CombinatorialEmbedding.o image.o moc_enteroneblastquerydialog.cpp moc_querypathspushbutton.o QuadTreeNodeNM.o ui_myprogressdialog.h<br />command_line images moc_enteroneblastquerydialog.o moc_runblastsearchworker.cpp querypathsdialog.o ui_pathspecifydialog.h<br />commoncommandlinefunctions.o info.o moc_graphicsviewzoom.cpp moc_runblastsearchworker.o querypathsequencecopybutton.o ui_querypathsdialog.h<br />Constraint.o infotextwidget.o moc_graphicsviewzoom.o moc_settingsdialog.cpp querypaths.o ui_settingsdialog.h<br />COPYING load.o moc_graphinfodialog.cpp moc_settingsdialog.o querypathspushbutton.o verticallabel.o<br />debruijnedge.o MAARPacking.o moc_graphinfodialog.o moc_verticallabel.cpp README.md verticalscrollarea.o<br />debruijnnode.o main.o moc_graphlayoutworker.cpp moc_verticallabel.o reduce.o XmlParser.o<br />DinoLineBuffer.o mainwindow.o moc_graphlayoutworker.o moc_verticalscrollarea.cpp runblastsearchworker.o<br />➜ Bandage git:(master) ✗ ./Bandage</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

</channel>
</rss>