<?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/42003?offset=50</link>
	<atom:link href="https://bioinformaticsonline.com/related/42003?offset=50" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/view/2379</guid>
	<pubDate>Wed, 14 Aug 2013 15:43:06 -0500</pubDate>
	<link>https://bioinformaticsonline.com/view/2379</link>
	<title><![CDATA[Which Perl distribution should I choose for bioinformatics study : ActivePerl, Strawberry Perl, DWIM Perl, Citrus Perl ?]]></title>
	<description><![CDATA[<p>I'm new to bioinformatics and recently started learning Perl. I found several rival distributions available for Windows platform, which confuse me at the begining.</p><p>I google it and found that Strawberry comes with additional dev tools to compile CPAN modules if necessary. Whereas&nbsp;ActivePerl has a lot of prepackaged modules which are easier to install with PPM. In addition,&nbsp;DWIM Perl contains the standard Perl and a lot of extension and Citrus Perl is a binary distribution of Perl created for GUI application developers.&nbsp;</p><p>Now, I wonder what should I pick to get started?&nbsp;</p><p>Note: I am going to use BioPerl in near future.</p><p>http://dwimperl.com/</p><p>http://www.activestate.com/activeperl</p><p>http://www.citrusperl.com/</p><p>http://strawberryperl.com/</p>]]></description>
	<dc:creator>Manshi Raghubanshi</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/file/view/5307/clean-the-fasta-file</guid>
	<pubDate>Thu, 03 Oct 2013 14:19:14 -0500</pubDate>
	<link>https://bioinformaticsonline.com/file/view/5307/clean-the-fasta-file</link>
	<title><![CDATA[Clean the FASTA file]]></title>
	<description><![CDATA[<p>Mostly FASTA file contain NNN characters, which can be replace by random A T G C character with this perl script. It also print the FASTA sequence name, N's counts, nucleotide count and percentage details at command prompt/standard output.</p><p>&nbsp;</p>]]></description>
	<dc:creator>Jit</dc:creator>
	<enclosure url="https://bioinformaticsonline.com/file/download/5307" length="1408" type="text/x-perl" />
</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/33586/genetic-mapper-svg-genetic-map-drawer</guid>
	<pubDate>Sun, 18 Jun 2017 14:11:10 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/33586/genetic-mapper-svg-genetic-map-drawer</link>
	<title><![CDATA[Genetic-mapper: SVG Genetic Map Drawer]]></title>
	<description><![CDATA[<p><span>Genetic-mapper is a perl script able to draw publication-ready vectorial genetic maps.</span></p>
<p>Perl script for creating a publication-ready vectorial genetic/linkage map in Scalable Vector Graphics (SVG) format. The resulting file can either be submitted for publication and edited with any vectorial drawing software like&nbsp;<a href="https://inkscape.org/">Inkscape</a>&nbsp;and&nbsp;<a href="http://www.adobe.com/uk/products/illustrator.html">Abobe Illustrator(R)</a>.</p>
<p>The input file must be a text file with at least the marker name (ID), linkage group (LG) and the position (POS) separeted by tabulations. Additionally a logarithm of odds (LOD score) can be provided. Any extra parameter will be ignored.</p>
<pre><code>map.tsv

ID&lt;tab&gt;LG&lt;tab&gt;POS&lt;tab&gt;LOD
13519  12     0       0.250840894
2718   12     1.0     0.250840893
11040  12     1.6     0.252843341
...</code></pre>
<p>https://github.com/pseudogene/genetic-mapper</p><p>Address of the bookmark: <a href="https://github.com/pseudogene/genetic-mapper" rel="nofollow">https://github.com/pseudogene/genetic-mapper</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/34814/bioinformatics-web-application-development-with-perl</guid>
	<pubDate>Tue, 26 Dec 2017 18:14:11 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/34814/bioinformatics-web-application-development-with-perl</link>
	<title><![CDATA[Bioinformatics Web Application Development with Perl]]></title>
	<description><![CDATA[<div><p>Perl's second wave of adoption came from the growth of the world wide web. Dynamic web pages&mdash;the precursor to modern web applications&mdash;were easy to create with Perl and CGI. Thanks to Perl's ubiquity as a language for system administrators and its power to manipulate text, it was the default choice for web programming. Its presence everywhere made it popular and, in some ways, the duct tape of the Internet.</p><h4>Web Application Development</h4><p>The old days of CGI programs and the simple development style that represented seem clunky. Web pages have become web applications. Development has moved from generating static HTML to both client and server side programming, with rich client interfaces and powerful backends.</p><p>Perl is still well suited for developing modern web apps. The language grows more powerful and easier to use every year, the available libraries are wonderful and keep getting better, and the inventions and discoveries available in modern Perl are unsurpassed.</p><p>In particular, a modern Perl developer can do amazing things with modern Perl tools. If you still think of Perl web development as a&nbsp;<em>cgi-bin</em>&nbsp;directory full of messy scripts that spew warnings to STDERR, you're a decade out of date. Better yet, you can replace that mess piecemeal, thanks to the new tools and techniques of modern Perl. See, for example, the ever-growing list of technologies&nbsp;<a href="http://www.builtinperl.com/">Built in Perl</a>.</p><h4>Modern Perl Web Frameworks</h4><p>While the old wave of web development may have made the CGI.pm module central, modern Perl web programming follows a stricter separation of business logic, URL and request routing, and output. The days of slinging a string here, an array there, a Perl hash yonder, declaring every variable at the top of the program, and maybe making a subroutine are gone. The Perl world has seen the value of abstraction and ways to mechanize away boilerplate. Perl has dozens of frameworks and toolkits designed to make web development and deployment simpler.</p><p>Any of a dozen of these frameworks will help you do great things, but three in particular stand out. You can build web sites and web applications of tremendous value with all three. These are neither the only good possibilities (think of POE or Jifty or Continuity or...) nor the only mechanisms for web programming with Perl (see Mechanize or LWP or Mojo::UserAgent for more). Yet if you want three good options to choose between, start here.</p><h4>Catalyst</h4><p>The&nbsp;<a href="http://catalystframework.org/">Catalyst</a>&nbsp;framework is a flexible and powerful system for building small to large web apps. It uses the&nbsp;<a href="http://moose.perl.org/">Moose</a>&nbsp;object system to provide great APIs for extension and further development. It's the most mature of the modern top Perl web frameworks, yet it retains its flexibility and vibrancy. In particular, its plugin and extension ecosystem allows it to evolve to provide new and essential features.</p><p>Catalyst has embraced the Plack/PSGI standard for Perl web deployment and recent versions are exploring high-scalability, event-based request handling models.</p><h4>Dancer</h4><p>The&nbsp;<a href="http://perldancer.org/">Dancer</a>&nbsp;framework is deliberately minimal in syntax and scope, but it also has a vibrant plugin ecosystem. Dancer particularly excels for smaller sites and applications, though good programmers can build larger things with it.</p><p>The first version of Dancer was easy to use. Dancer 2 continues that ease while improving the internals and robustness of applications.</p><h4>Mojolicious</h4><p>The&nbsp;<a href="http://mojolicio.us/">Mojolicious</a>&nbsp;(Mojo) framework has a real-time design based on high performance event handling. Its focus is solving new and interesting problems in simple and effective ways, and the project has produced a lot of new code that does old things in better ways.</p><p>In particular, Mojolicious goes to great lengths to support new web standards, such as CSS 3, web sockets, and HTTP 2.</p><p>Where Catalyst embraces the CPAN fully, Mojolicious by design provides most of what an average app might need in a single download. It's still fully compatible with the CPAN, but the intention is to provide good working defaults in a package that's easy to start with. Mojo's fans are quick to praise it as fun to develop.</p><p>A modern Perl web developer should be familiar with at least one of these frameworks.</p><h4>Modern Perl Storage Mechanisms</h4><p>Perl's venerable&nbsp;<a href="http://search.cpan.org/perldoc?DBI">DBI</a>&nbsp;module has been the focal point of database access since its invention. Its design allows it to provide the same interface to huge relational databases and flat files alike through its DBD extension mechanism. Yet the DBI by itself isn't the be-all, end-all of data storage and access in Perl.</p><h4>DBIx::Class</h4><p><a href="http://search.cpan.org/perldoc?DBIx::Class">DBIx::Class</a>&nbsp;sits on top of DBI to provide an API to your database based on the concept of queries and results. This is often sufficient to remove all but the most complicated of SQL from your code, leaving you to manipulate your business models instead of the small details of how a relational database works. The power and maintainability you receive is well the small cost of the learning curve.</p><p>Even better, DBIC can manage (and even generate) your database schema for you.</p><p>Recent versions of DBIC have demonstrated that a well-written ORM can perform much better than even clever hand-written code. Because it builds on the Perl DBI, it scales everywhere from SQLite to PostgreSQL, MySQL, Oracle, and more.</p><h3>Rose::DB</h3><p>The lesser-known but no less powerful&nbsp;<a href="http://search.cpan.org/perldoc?Rose::DB::Object">Rose::DB::Object</a>&nbsp;builds on&nbsp;<a href="http://search.cpan.org/perldoc?Rose::DB">Rose::DB</a>&nbsp;to provide an object-relational mapper for Perl. While its high level features most directly compare to those of DBIx::Class, it's often measurably faster.</p><h4>NoSQL on the CPAN</h4><p>Of course the&nbsp;<a href="http://search.cpan.org/">CPAN</a>&nbsp;has modules for almost any NoSQL database or job queue or persistence mechanism you could name, and several you have never heard of. Everything you need is a quick CPAN or cpanm away!</p><h4>Modern Perl Deployment Strategies</h4><p>In the early days of the web, deploying a Perl web application meant putting one or more&nbsp;<em>.cgi</em>&nbsp;or&nbsp;<em>.pl</em>&nbsp;files in a special directory and hoping that your system administrator had everything configured correctly. The execution model was often slow and cumbersome, and accessing shared resources such as databases was often tricky.</p><p>Modern Perl has better choices. While deployment strategies are the source of many arguments, the return on your investment from learning the modern way is impressive.</p><h4>Plack/PSGI</h4><p>The PSGI specification (as exemplified by&nbsp;<a href="http://plackperl.org/">Plack</a>) describes a strategy for building Perl web apps independent of server and with the possibility to share custom processing behaviors.</p><p>In other words, it's a standard for writing Perl apps to take advantage of the huge ecosystem of Perl development available on the CPAN without tying yourself to a server like Apache, Apache 2, nginx, or anything else.</p><p>Any good modern Perl web framework (including those listed here) supports PSGI. Several deployment mechanisms exist to meet various business needs which also support PSGI. In particular, you can deploy the same application with a local testing server on your own machine as you can to your production server or servers without changing your application at all.</p><h4>mod_perl</h4><p>The older but still viable mod_perl Apache httpd module embeds Perl into the web server. This was the first widespread persistence mechanism for Perl web applications themselves and it's still popular to this day, though PSGI compliance is often the choice for new development. (PSGI handlers to use mod_perl as the backend are available.)</p><p>Modern Perl developers should familiarize themselves with PSGI and the wealth of available Plack middleware.</p><h4>Perl Web Development</h4><p>Of course no discussion of Perl web development would be complete without mentioning the strength of the CPAN. Almost any project will benefit from the wealth of freely available libraries built to solve real problems. These distributions run the gamut from full-blown web frameworks and content management systems to APIs for web services, development tools, testing systems, and interfaces to document formats and external resources.</p><p>For example, if you need to write a web service which accepts JSON data and produces Excel spreadsheets, you can glue together a few CPAN distributions and get the job done early. If you need to consume XML from a remote service and emit a PDF, you're in luck.</p><p>Perl's prowess as a general purpose programming language as well as its flexibility and power in managing text and gluing systems together make it a wonderful fit for web development. The community's adoption of modern Perl standards such as PSGI and Plack only enhance your power.</p><p>Web application development in Perl is still viable, and modern Perl tools and techniques and libraries make it more powerful and pleasant than ever.</p></div>]]></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/bookmarks/view/41107/machine-learning-in-perl</guid>
	<pubDate>Sun, 16 Feb 2020 15:32:03 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/41107/machine-learning-in-perl</link>
	<title><![CDATA[Machine learning in Perl]]></title>
	<description><![CDATA[<p>this is a fourth blog post in the Machine learning in Perl series, focusing on the&nbsp;<a href="https://metacpan.org/pod/AI::MXNet">AI::MXNet</a>, a Perl interface to Apache MXNet, a modern and powerful machine learning library.</p>
<p>If you're interested in refreshing your memory or just new to the series, please check previous entries over here:&nbsp;<a href="http://blogs.perl.org/users/sergey_kolychev/2017/02/machine-learning-in-perl.html">1</a>&nbsp;<a href="http://blogs.perl.org/users/sergey_kolychev/2017/04/machine-learning-in-perl-part2-a-calculator-handwritten-digits-and-roboshakespeare.html">2</a>&nbsp;<a href="http://blogs.perl.org/users/sergey_kolychev/2017/10/machine-learning-in-perl-part3-deep-convolutional-generative-adversarial-network.html">3</a></p>
<p><a href="https://metacpan.org/pod/AI::MXNet">https://metacpan.org/pod/AI::MXNet</a></p><p>Address of the bookmark: <a href="http://blogs.perl.org/users/sergey_kolychev/2018/07/machine-learning-in-perl-kyuubi-goes-to-a-modelzoo-during-the-starry-night.html" rel="nofollow">http://blogs.perl.org/users/sergey_kolychev/2018/07/machine-learning-in-perl-kyuubi-goes-to-a-modelzoo-during-the-starry-night.html</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/33837/awesome-perl-frameworks-libraries-and-software-part-1</guid>
	<pubDate>Fri, 07 Jul 2017 04:06:59 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/33837/awesome-perl-frameworks-libraries-and-software-part-1</link>
	<title><![CDATA[Awesome perl frameworks, libraries and software - PART 1]]></title>
	<description><![CDATA[<p>A curated list of awesome Perl frameworks, libraries and software.</p><ul>
<li><a href="https://github.com/major/MySQLTuner-perl">major/MySQLTuner-perl</a>&nbsp;- MySQLTuner is a script written in Perl that will assist you with your MySQL configuration and make recommendations for increased performance and stability.</li>
<li><a href="https://github.com/kraih/mojo">kraih/mojo</a>&nbsp;-&nbsp;Mojolicious - Perl real-time web framework</li>
<li><a href="https://github.com/petdance/ack2">petdance/ack2</a>&nbsp;- ack 2.0 is a greplike tool optimized for programmers searching large heterogeneous trees of source code.</li>
<li><a href="https://github.com/rsnapshot/rsnapshot">rsnapshot/rsnapshot</a>&nbsp;- a tool for backing up your data using rsync (if you want to get help, use&nbsp;<a href="https://lists.sourceforge.net/lists/listinfo/rsnapshot-discuss">https://lists.sourceforge.net/lists/listinfo/rsnapshot-discuss</a>)</li>
<li><a href="https://github.com/fletcher/MultiMarkdown">fletcher/MultiMarkdown</a>&nbsp;- Expanded perl version of John Gruber's original Markdown --- No longer under active development since MMD 3</li>
<li><a href="https://github.com/PerlDancer/Dancer">PerlDancer/Dancer</a>&nbsp;- The easiest way to write web applications with Perl (Perl web micro-framework)</li>
<li><a href="https://github.com/duckduckgo/zeroclickinfo-goodies">duckduckgo/zeroclickinfo-goodies</a>&nbsp;- DuckDuckGo Instant Answers based on Perl &amp; JavaScript</li>
<li><a href="https://github.com/sjdy521/Mojo-Webqq">sjdy521/Mojo-Webqq</a>&nbsp;- 使用Perl语言（不会没关系）编写的smartqq/webqq客户端框架（非GUI），可通过插件提供基于HTTP协议的api接口供其他语言或系统调用</li>
<li><a href="https://github.com/chromatic/modern_perl_book">chromatic/modern_perl_book</a>&nbsp;- Modern Perl: the book</li>
<li><a href="https://github.com/gugod/App-perlbrew">gugod/App-perlbrew</a>&nbsp;- Manage perl installations in your $HOME</li>
<li><a href="https://github.com/muennich/urxvt-perls">muennich/urxvt-perls</a>&nbsp;- Perl extensions for the rxvt-unicode terminal emulator</li>
<li><a href="https://github.com/sjdy521/Mojo-Weixin">sjdy521/Mojo-Weixin</a>&nbsp;- 使用Perl语言（不会没关系）编写的微信/weixin/wechat客户端框架（非GUI），可通过插件提供基于HTTP协议的api接口供其他语言或系统调用</li>
<li><a href="https://github.com/Nordaaker/convos">Nordaaker/convos</a>&nbsp;- Better group chat</li>
<li><a href="https://github.com/mikaku/Monitorix">mikaku/Monitorix</a>&nbsp;- Monitorix is a free, open source, lightweight system monitoring tool.</li>
<li><a href="https://github.com/vsespb/mt-aws-glacier">vsespb/mt-aws-glacier</a>&nbsp;- Perl Multithreaded Multipart sync to Amazon Glacier</li>
<li><a href="https://github.com/skx/sysadmin-util">skx/sysadmin-util</a>&nbsp;- Tools for Linux/Unix sysadmins.</li>
<li><a href="https://github.com/perl-carton/carton">perl-carton/carton</a>&nbsp;- Bundler or pip freeze for Perl</li>
<li><a href="https://github.com/PerlDancer/Dancer2">PerlDancer/Dancer2</a>&nbsp;- Perl Dancer Next Generation (rewrite of Perl Dancer)</li>
<li><a href="https://github.com/OpenKore/openkore">OpenKore/openkore</a>&nbsp;- A free/open source client and automation tool for Ragnarok Online</li>
<li><a href="https://github.com/hachiojipm/awesome-perl">hachiojipm/awesome-perl</a>&nbsp;- A curated list of awesome Perl frameworks and libraries. Come on Pull Requests!</li>
<li><a href="https://github.com/Perl/perl5">Perl/perl5</a>&nbsp;- The Perl 5 language interpreter (MIRROR ONLY)</li>
<li><a href="https://github.com/fglock/Perlito">fglock/Perlito</a>&nbsp;- Perl 5 and Perl 6 compilers</li>
<li><a href="https://github.com/miyagawa/Starman">miyagawa/Starman</a>&nbsp;- Starman is a high-performance preforking Perl PSGI web server</li>
<li><a href="https://github.com/ronilaukkarinen/weed">ronilaukkarinen/weed</a>&nbsp;- Heavily Xchat inspired beautiful irssi theme.</li>
<li><a href="https://github.com/trizen/youtube-viewer">trizen/youtube-viewer</a>&nbsp;- A lightweight application for searching and streaming videos from YouTube.</li>
<li><a href="https://github.com/rakudo/star">rakudo/star</a>&nbsp;- Rakudo Star Perl 6 distribution</li>
<li><a href="https://github.com/GouveaHeitor/nipe">GouveaHeitor/nipe</a>&nbsp;- Nipe is a script to make Tor Network your default gateway.</li>
<li><a href="https://github.com/yuvi/gas-preprocessor">yuvi/gas-preprocessor</a>&nbsp;- Perl script that implements a subset of the GNU as preprocessor that Apple's as doesn't</li>
<li><a href="https://github.com/mongodb/mongo-perl-driver">mongodb/mongo-perl-driver</a>&nbsp;- Perl driver for the MongoDB</li>
<li><a href="https://github.com/wireghoul/dotdotpwn">wireghoul/dotdotpwn</a>&nbsp;- DotDotPwn - The Directory Traversal Fuzzer</li>
<li><a href="https://github.com/oysttyer/oysttyer">oysttyer/oysttyer</a>&nbsp;- An interactive console text-based command-line Twitter client written in Perl</li>
<li><a href="https://github.com/bioperl/bioperl-live">bioperl/bioperl-live</a>&nbsp;- Core BioPerl 1.x code</li>
<li><a href="https://github.com/tadzik/rakudobrew">tadzik/rakudobrew</a>&nbsp;- Perl 6 installation manager</li>
<li><a href="https://github.com/fwaeytens/dnsenum">fwaeytens/dnsenum</a>&nbsp;- dnsenum is a perl script that enumerates DNS information</li>
<li><a href="https://github.com/evalEmpire/perl5i">evalEmpire/perl5i</a>&nbsp;- A single module to fix as much of Perl 5 as possible in one go</li>
<li><a href="https://github.com/shirkdog/pulledpork">shirkdog/pulledpork</a>&nbsp;- Pulled Pork for Snort and Suricata rule management (from Google code)</li>
<li><a href="https://github.com/hollie/misterhouse">hollie/misterhouse</a>&nbsp;- Perl open source home automation program. It's fun, it's free, and it's entirely geeky.</li>
<li><a href="https://github.com/stevan/p5-mop-redux">stevan/p5-mop-redux</a>&nbsp;- A(nother) MOP for Perl 5</li>
<li><a href="https://github.com/stevan/p5-mop-original">stevan/p5-mop-original</a>&nbsp;- A MOP for Perl 5</li>
<li><a href="https://github.com/pgbackrest/pgbackrest">pgbackrest/pgbackrest</a>&nbsp;- Reliable PostgreSQL Backup &amp; Restore</li>
<li><a href="https://github.com/gempesaw/Selenium-Remote-Driver">gempesaw/Selenium-Remote-Driver</a>&nbsp;- Perl Bindings to the Selenium Webdriver server</li>
<li><a href="https://github.com/libwww-perl/libwww-perl">libwww-perl/libwww-perl</a>&nbsp;- The libwww-perl collection is a set of Perl modules which provides a simple and consistent application programming interface to the World-Wide Web. The main focus of the library is to provide classes and functions that allow you to write WWW clients. The library also contain modules that are of more general use and even classes that help you implement simple HTTP servers.</li>
<li><a href="https://github.com/andk/pause">andk/pause</a>&nbsp;- Perl authors upload server</li>
<li><a href="https://github.com/miyagawa/remedie">miyagawa/remedie</a>&nbsp;- perl based pluggable media center application</li>
<li><a href="https://github.com/mojomojo/mojomojo">mojomojo/mojomojo</a>&nbsp;- A Catalyst &amp; DBIx::Class powered Wiki.</li>
<li><a href="https://github.com/xslate/p5-Text-Xslate">xslate/p5-Text-Xslate</a>&nbsp;- Scalable template engine for Perl5</li>
<li><a href="https://github.com/moose/Moose">moose/Moose</a>&nbsp;- Official repository for Moose</li>
<li><a href="https://github.com/llaera/slowloris.pl">llaera/slowloris.pl</a>&nbsp;- A new DOS&nbsp;Perl Programm</li>
<li><a href="https://github.com/colorgcc/colorgcc">colorgcc/colorgcc</a>&nbsp;- colorgcc is a perl script to colorize gcc output. I'm collecting random patches and changes</li>
<li><a href="https://github.com/bbusschots/hsxkpasswd">bbusschots/hsxkpasswd</a>&nbsp;- A Perl module and terminal command for generating secure memorable passwords inspired by the fabulous XKCD web comic and Steve Gibson's Password Hay Stacks. This is the library that powers&nbsp;<a href="http://www.xkpasswd.net/">www.xkpasswd.net</a></li>
<li><a href="https://github.com/Test-More/test-more">Test-More/test-more</a>&nbsp;- Test2, Test::More, Test::Simple and Test::Builder Perl modules for writing tests</li>
<li><a href="https://github.com/smtpd/qpsmtpd">smtpd/qpsmtpd</a>&nbsp;- qpsmtpd is a flexible smtpd daemon written in Perl</li>
<li><a href="https://github.com/perseo22/pacmanager">perseo22/pacmanager</a>&nbsp;- Perl/GTK Gnome SSH GUI on steroids. Configure SSH/Telnet connections: users, passwords, EXPECT regular expressions, macros, ...</li>
<li><a href="https://github.com/noxxi/p5-ssl-tools">noxxi/p5-ssl-tools</a>&nbsp;- various standalone perl scripts</li>
<li><a href="https://github.com/chromatic/little_plack_book">chromatic/little_plack_book</a>&nbsp;- Using Plack and PSGI in Modern Perl Web Applications</li>
<li><a href="https://github.com/mschilli/log4perl">mschilli/log4perl</a>&nbsp;- Log4j Implementation For Perl</li>
<li><a href="https://github.com/centreon/centreon-plugins">centreon/centreon-plugins</a>&nbsp;- Collection of plugins for softwares compatible with Nagios plugins</li>
<li><a href="https://github.com/fayland/perl-net-github">fayland/perl-net-github</a>&nbsp;- Perl interface to GitHub</li>
<li><a href="https://github.com/Perl-Critic/Perl-Critic">Perl-Critic/Perl-Critic</a>&nbsp;- The leading static analyzer for Perl. Configurable, extensible, powerful.</li>
<li><a href="https://github.com/abw/Template2">abw/Template2</a>&nbsp;- Perl Template Toolkit v2</li>
<li><a href="https://github.com/stf-storage/stf">stf-storage/stf</a>&nbsp;- STF - Distributed Object Storage (Perl/MySQL/(Q4M|TheSchwartz|Resque|Redis)/Memcached)</li>
<li><a href="https://github.com/PerlRedis/perl-redis">PerlRedis/perl-redis</a>&nbsp;- Perl binding for Redis database</li>
<li><a href="https://github.com/pplu/aws-sdk-perl">pplu/aws-sdk-perl</a>&nbsp;- A community AWS SDK for Perl Programmers</li>
<li><a href="https://github.com/sveinbjornt/Data-URL-Toolkit">sveinbjornt/Data-URL-Toolkit</a>&nbsp;- Various tools for working with Data URLs, incl. web application (<a href="http://dataurl.net/">http://dataurl.net</a>), Mac OS X GUI app, command line tool, Perl modules and Apache module.</li>
<li><a href="https://github.com/perl6/ecosystem">perl6/ecosystem</a>&nbsp;- Perl 6 ecosystem -- modules and more</li>
<li><a href="https://github.com/moznion/Perl-Lint">moznion/Perl-Lint</a>&nbsp;- Yet Another Perl Source Code Linter</li>
<li><a href="https://github.com/briandfoy/PerlPowerTools">briandfoy/PerlPowerTools</a>&nbsp;- Perl Power Tools</li>
<li><a href="https://github.com/gshank/html-formhandler">gshank/html-formhandler</a>&nbsp;- a Perl Moose HTML form handler</li>
<li><a href="https://github.com/mskcc/vcf2maf">mskcc/vcf2maf</a>&nbsp;- Convert a VCF into a MAF, where each variant is annotated to only one of all possible gene isoforms</li>
<li><a href="https://github.com/miyagawa/web-scraper">miyagawa/web-scraper</a>&nbsp;- Perl web scraping toolkit</li>
<li><a href="https://github.com/semifor/Net-Twitter">semifor/Net-Twitter</a>&nbsp;- A Perl interface to the Twitter APIs</li>
<li><a href="https://github.com/kraih/minion">kraih/minion</a>&nbsp;-&nbsp;Perl job queue</li>
<li><a href="https://github.com/fletcher/MultiMarkdown-CMS">fletcher/MultiMarkdown-CMS</a>&nbsp;- Package to assist with publishing a web site using MMD and a few perl scripts</li>
<li><a href="https://github.com/rcaputo/poe">rcaputo/poe</a>&nbsp;- POE is a portable perl multitasking and networking framework for any event loop.</li>
<li><a href="https://github.com/kraih/mango">kraih/mango</a>&nbsp;-&nbsp;Pure-Perl non-blocking I/O MongoDB driver</li>
<li><a href="https://github.com/dreamwidth/dw-free">dreamwidth/dw-free</a>&nbsp;- Dreamwidth's open source repository</li>
<li><a href="https://github.com/garu/Data-Printer">garu/Data-Printer</a>&nbsp;- colored pretty-print of Perl data structures and objects</li>
<li><a href="https://github.com/PerlGameDev/SDL">PerlGameDev/SDL</a>&nbsp;- Rehashing the old perl SDL binding on cpan.org</li>
<li><a href="https://github.com/yanick/Template-Mustache">yanick/Template-Mustache</a>&nbsp;- Drawing Mustaches on Perl, for fun and profit</li>
<li><a href="https://github.com/pjcj/Devel--Cover">pjcj/Devel--Cover</a>&nbsp;- Code coverage metrics for Perl</li>
<li><a href="https://github.com/sebthebert/Octopussy">sebthebert/Octopussy</a>&nbsp;- Octopussy - Open Source Log Management Solution</li>
<li><a href="https://github.com/gphat/chart-clicker">gphat/chart-clicker</a>&nbsp;- Extensible, Beautiful Charts for Perl</li>
<li><a href="https://github.com/audreyt/lingua-sinica-perlyuyan">audreyt/lingua-sinica-perlyuyan</a>&nbsp;- Perl in Classical Chinese in Perl</li>
<li><a href="https://github.com/book/perlsecret">book/perlsecret</a>&nbsp;- The perl secret operators</li>
<li><a href="https://github.com/OCSInventory-NG/OCSInventory-Server">OCSInventory-NG/OCSInventory-Server</a>&nbsp;- Communication server of OCS Inventory</li>
<li><a href="https://github.com/jmapio/jmap-perl">jmapio/jmap-perl</a>&nbsp;- JMAP Proxy implemented in Perl</li>
<li><a href="https://github.com/fusioninventory/fusioninventory-agent">fusioninventory/fusioninventory-agent</a>&nbsp;- FusionInventory Agent</li>
<li><a href="https://github.com/samm-git/jvpn">samm-git/jvpn</a>&nbsp;- Perl script to connect to the Juniper VPN with Host Checker enabled</li>
<li><a href="https://github.com/perl11/cperl">perl11/cperl</a>&nbsp;- a perl5 with classes, types, compilable, company friendly, security</li>
<li><a href="https://github.com/kbh3rd/shptosvg">kbh3rd/shptosvg</a>&nbsp;- Shapefile to SVG renderer in Perl</li>
<li><a href="https://github.com/famzah/langs-performance">famzah/langs-performance</a>&nbsp;- C++ vs. Python vs. Perl vs. PHP vs. Java vs. NodeJS vs. Go vs. Ruby performance benchmark</li>
<li><a href="https://github.com/agentzh/old-openresty">agentzh/old-openresty</a>&nbsp;- Obsolete 1st generation of OpenResty written mostly in Perl. Please check out the new OpenResty based on Nginx and Lua instead.</li>
<li><a href="https://github.com/kraih/mojo-pg">kraih/mojo-pg</a>&nbsp;- Mojolicious&nbsp;PostgreSQL</li>
<li><a href="https://github.com/jmcnamara/excel-writer-xlsx">jmcnamara/excel-writer-xlsx</a>&nbsp;- Perl module to create Excel XLSX files.</li>
<li><a href="https://github.com/plainblack/webgui">plainblack/webgui</a>&nbsp;- A free open source content management system and web application framework. The most widely deployed mod_perl application on the planet.</li>
<li><a href="https://github.com/mharsch/arcstat">mharsch/arcstat</a>&nbsp;- uses Perl to extract, format, and display kstats from the ZFS ARC</li>
<li><a href="https://github.com/thaljef/Pinto">thaljef/Pinto</a>&nbsp;- Curate your own repository of Perl modules</li>
<li><a href="https://github.com/rcaputo/reflex">rcaputo/reflex</a>&nbsp;- Reflex is a class library for writing reactive Perl programs. It provides base classes for reactive objects, and specific subclasses for various tasks.</li>
<li><a href="https://github.com/memowe/contenticious">memowe/contenticious</a>&nbsp;- A simple file based "CMS" on Mojo steroids!</li>
<li><a href="https://github.com/rjust/defects4j">rjust/defects4j</a>&nbsp;- A Database of Existing Faults to Enable Controlled Testing Studies for Java</li>
<li><a href="https://github.com/elastic/elasticsearch-perl">elastic/elasticsearch-perl</a>&nbsp;- New Perl low-level client</li>
<li><a href="https://github.com/blogs-perl-org/blogs.perl.org">blogs-perl-org/blogs.perl.org</a>&nbsp;- Templates and stuff for the blogs.perl.org web site</li>
<li><a href="https://github.com/agordon/dancer_bootstrap_fontawesome_template">agordon/dancer_bootstrap_fontawesome_template</a>&nbsp;- A template for quick-starting applications using Perl's Dancer, Twitter's Bootstrap and Font-Awesome.</li>
<li><a href="https://github.com/fletcher/SimplenoteSync">fletcher/SimplenoteSync</a>&nbsp;- perl routine to sync folder of text files with your notes on Simplenote</li>
<li><a href="https://github.com/tobert/perl-ssh-tools">tobert/perl-ssh-tools</a>&nbsp;- A more capable DSH / cluster ssh suite</li>
<li><a href="https://github.com/skx/dhcp.io">skx/dhcp.io</a>&nbsp;- Dynamic DNS - Via Redis, Perl, and Amazon Route53.</li>
<li><a href="https://github.com/perl6/mu">perl6/mu</a>&nbsp;- Universal Perl 6 repository (formerly called "pugs repository")</li>
<li><a href="https://github.com/perl5-dbi/dbi">perl5-dbi/dbi</a>&nbsp;- DBI - The Perl 5 Database Interface</li>
<li><a href="https://github.com/masterzen/mysql-snmp">masterzen/mysql-snmp</a>&nbsp;- Net-SNMP perl agent for monitoring MySQL servers</li>
<li><a href="https://github.com/rizen/Facebook-Graph">rizen/Facebook-Graph</a>&nbsp;- A perl module to help navigate the intricacies of the Facebook Graph API.</li>
<li><a href="https://github.com/lhost/sendxmpp">lhost/sendxmpp</a>&nbsp;- perl-script to send xmpp (jabber), similar to what mail(1) does for mail.</li>
<li><a href="https://github.com/Real-Gecko/Filemin">Real-Gecko/Filemin</a>&nbsp;- File manager for Webmin written completely in perl</li>
<li><a href="https://github.com/preaction/Statocles">preaction/Statocles</a>&nbsp;- Static website CMS</li>
<li><a href="https://github.com/jonswar/perl-mason">jonswar/perl-mason</a>&nbsp;- Mason 2</li>
<li><a href="https://github.com/davorg/perlwebbook">davorg/perlwebbook</a>&nbsp;- A book. About Perl. And the Web.</li>
<li><a href="https://github.com/plu/Pithub">plu/Pithub</a>&nbsp;- Perl Github v3 API</li>
<li><a href="https://github.com/motemen/Wight">motemen/Wight</a>&nbsp;- Communicate with PhantomJS in Perl (Capybara+Poltergeist to Perl)</li>
<li><a href="https://github.com/ingydotnet/pegex-pm">ingydotnet/pegex-pm</a>&nbsp;- Pegex Parser for Perl</li>
<li><a href="https://github.com/ewels/ClusterFlow">ewels/ClusterFlow</a>&nbsp;- A pipelining tool to automate and standardise bioinformatics analyses on cluster environments.</li>
<li><a href="https://github.com/denny/ShinyCMS">denny/ShinyCMS</a>&nbsp;- ShinyCMS is an open source CMS built in Perl using the Catalyst framework.</li>
<li><a href="https://github.com/nassosoassos/sail_align">nassosoassos/sail_align</a>&nbsp;- SailAlign is an open-source software toolkit for robust long speech-text alignment implementing an adaptive, iterative speech recognition and text alignment scheme that allows for the processing of very long (and possibly noisy) audio and is robust to transcription errors. It is mainly written as a perl library but its functionality also depends on freely available software, namely HTK, srilm and sclite.</li>
<li><a href="https://github.com/masak/web">masak/web</a>&nbsp;- A Perl 6 web framework</li>
<li><a href="https://github.com/agentzh/perl-systemtap-toolkit">agentzh/perl-systemtap-toolkit</a>&nbsp;- Real-time analyzing and diagnosing tools for perl 5 based on SystemTap</li>
<li><a href="https://github.com/vti/showmethedesktop">vti/showmethedesktop</a>&nbsp;- Perl + VNC + WebSockets + HTML5 Canvas</li>
<li><a href="https://github.com/vmbrasseur/Perl_Companies">vmbrasseur/Perl_Companies</a>&nbsp;- A list of companies which use Perl. Initially generated from postings to jobs.perl.org.</li>
<li><a href="https://github.com/perlorg/perlweb">perlorg/perlweb</a>&nbsp;- Various perl.org websites</li>
<li><a href="https://github.com/norbu09/Net--Dropbox">norbu09/Net--Dropbox</a>&nbsp;- perl interface to the Dropbox API</li>
<li><a href="https://github.com/line/line-bot-sdk-perl">line/line-bot-sdk-perl</a>&nbsp;- LINE::Bot::API - SDK of the LINE Messaging API for Perl</li>
<li><a href="https://github.com/ericblue/Perl-FitBit-API">ericblue/Perl-FitBit-API</a>&nbsp;- Provides an OO API for fetching fitness data from fitbit.com. Currently there is no official API, however data is retrieved using XML feeds that populate the flash-based charts.</li>
<li><a href="https://github.com/ericblue/Perl-Belkin-WeMo-API">ericblue/Perl-Belkin-WeMo-API</a>&nbsp;- Perl-Belkin-WeMo-API</li>
<li><a href="https://github.com/EnlightenedPerlOrganisation/task-kensho">EnlightenedPerlOrganisation/task-kensho</a>&nbsp;- A Glimpse at an Enlightned Perl Distribution</li>
<li><a href="https://github.com/dasdom/CreateAppStoreBill">dasdom/CreateAppStoreBill</a>&nbsp;- A perl script and tex files to create bills for the German tax office from Apple's financial reports.</li>
<li><a href="https://github.com/plicease/FFI-Platypus">plicease/FFI-Platypus</a>&nbsp;- Write Perl bindings to non-Perl libraries with FFI. No XS required.</li>
<li><a href="https://github.com/ido50/Svsh">ido50/Svsh</a>&nbsp;- Process supervision shell for daemontools, perp, s6 and runit</li>
<li><a href="https://github.com/skx/templer">skx/templer</a>&nbsp;- A modular extensible static-site-generator written in perl.</li>
<li><a href="https://github.com/lestrrat/p5-ZMQ">lestrrat/p5-ZMQ</a>&nbsp;- libzmq Perl binding</li>
<li><a href="https://github.com/jpoliv/wakeonlan">jpoliv/wakeonlan</a>&nbsp;- Perl script for waking up computers via Wake-On-LAN magic packets</li>
<li><a href="https://github.com/dod38fr/config-model">dod38fr/config-model</a>&nbsp;- Perl module to create configuration editor wtih semantic validation</li>
<li><a href="https://github.com/pjlsergeant/test-bdd-cucumber-perl">pjlsergeant/test-bdd-cucumber-perl</a>&nbsp;- Test::BDD::Cucumber - Cucumber in Perl</li>
<li><a href="https://github.com/onishi/perl5-devel-kytprof">onishi/perl5-devel-kytprof</a>&nbsp;- Devel::KYTProf - Simple Perl code profiler</li>
<li><a href="https://github.com/finance-quote/finance-quote">finance-quote/finance-quote</a>&nbsp;- Finance::Quote module for Perl</li>
<li><a href="https://github.com/fcuny/net-http-spore">fcuny/net-http-spore</a>&nbsp;- Perl implementation for SPORE</li>
<li><a href="https://github.com/dpavlin/perl-cwmp">dpavlin/perl-cwmp</a>&nbsp;- Perl ACS server implementing CWMP protocol to manage CPE clients</li>
<li><a href="https://github.com/abh/pgeodns">abh/pgeodns</a>&nbsp;- Geographic Perl Nameserver</li>
<li><a href="https://github.com/timbunce/devel-nytprof">timbunce/devel-nytprof</a>&nbsp;- Perl Devel::NYTProf</li>
<li><a href="https://github.com/symkat/Daemon-Control">symkat/Daemon-Control</a>&nbsp;- Daemon::Control - Create init scripts in Perl</li>
<li><a href="https://github.com/sartak/webmachine-perl">sartak/webmachine-perl</a>&nbsp;- A Perl port of Webmachine</li>
<li><a href="https://github.com/rhuss/jmx4perl">rhuss/jmx4perl</a>&nbsp;- JMX access tools and modules</li>
<li><a href="https://github.com/Perl/docker-perl">Perl/docker-perl</a>&nbsp;- Dockerfiles for index.docker.io (official Perl Docker image)</li>
<li><a href="https://github.com/duckduckgo/p5-app-duckpan">duckduckgo/p5-app-duckpan</a>&nbsp;- DuckDuckHack OpenSource Development Application</li>
<li><a href="https://github.com/CaptTofu/DBD-mysql">CaptTofu/DBD-mysql</a>&nbsp;- DBD::mysql Perl client driver for the MySQL and MariaDB databases</li>
<li><a href="https://github.com/beide/Bootimg-scripts">beide/Bootimg-scripts</a>&nbsp;- Perl scripts for unpacking and repackaging Android boot.img's. I did not write these, just sharing.</li>
<li><a href="https://github.com/spezifanta/SteamCalculator-Scripts">spezifanta/SteamCalculator-Scripts</a>&nbsp;- Perl scripts, which parses the Valve's Steam store.</li>
<li><a href="https://github.com/rurban/perl-compiler">rurban/perl-compiler</a>&nbsp;- B::C - Moved over from googlecode</li>
<li><a href="https://github.com/pkrumins/perl-tcp-proxy">pkrumins/perl-tcp-proxy</a>&nbsp;- A simple TCP proxy written in Perl. Uses IO::Socket::INET and IO::Select for multiplexing.</li>
<li><a href="https://github.com/perl-users-jp/perl-advent-calendar">perl-users-jp/perl-advent-calendar</a>&nbsp;- japanese perl advent calendar - fork 禁止</li>
<li><a href="https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker">Perl-Toolchain-Gang/ExtUtils-MakeMaker</a>&nbsp;- Perl module to make Makefiles and build modules (what backs Makefile.PL)</li>
<li><a href="https://github.com/msgpack/msgpack-perl">msgpack/msgpack-perl</a>&nbsp;- MessagePack serializer implementation for Perl / msgpack.org[Perl]</li>
<li><a href="https://github.com/kablamo/git-spark">kablamo/git-spark</a>&nbsp;- Plot your commit history on the command line with sparklines. A mash up of git and spark and Perl.</li>
<li><a href="https://github.com/Aralhach/bashobfus">Aralhach/bashobfus</a>&nbsp;- A small bash minifier/obfuscator written in Perl.</li>
<li><a href="https://github.com/aesuli/Amazon-downloader">aesuli/Amazon-downloader</a>&nbsp;- Two perl scripts to download and parse Amazon's reviews</li>
<li><a href="https://github.com/sjdy521/pfqq">sjdy521/pfqq</a>&nbsp;- 【该项目已停止维护，请关注重构项目: Mojo-Webqq】使用Perl语言编写的webqq客户端框架（非GUI），支持旧版webqq的多重md5带盐登录密码算法以及新版smartqq的md5+rsa+tea+base64组合登录密码算法</li>
<li><a href="https://github.com/raszi/colorize">raszi/colorize</a>&nbsp;- Log colorizer perl script</li>
<li><a href="https://github.com/iinteractive/OX">iinteractive/OX</a>&nbsp;- the hardest working two letters in Perl</li>
<li><a href="https://github.com/ap/perldoc-complete">ap/perldoc-complete</a>&nbsp;- A bash completion helper for perldoc</li>
<li><a href="https://github.com/xsawyerx/perl-android-scripts">xsawyerx/perl-android-scripts</a>&nbsp;- Collection of Perl scripts (examples, programs) that run on Android using ASE</li>
<li><a href="https://github.com/typester/kamaitachi">typester/kamaitachi</a>&nbsp;- perl flash media server</li>
<li><a href="https://github.com/szabgab/perlmaven.com">szabgab/perlmaven.com</a>&nbsp;- The source files of the Perl Maven articles</li>
<li><a href="https://github.com/petdance/perl101">petdance/perl101</a>&nbsp;- The source for perl101.org</li>
<li><a href="https://github.com/acme/git-pureperl">acme/git-pureperl</a>&nbsp;- A Pure Perl interface to Git repositories</li>
<li><a href="https://github.com/vti/text-haml">vti/text-haml</a>&nbsp;- Haml parser in Perl</li>
<li><a href="https://github.com/jploski/epic-ide">jploski/epic-ide</a>&nbsp;- EPIC - Eclipse Perl Integration (new official repository!)</li>
<li><a href="https://github.com/jnthn/blizkost">jnthn/blizkost</a>&nbsp;- Makes Perl 5 available as if it were just another Parrot language by embedding the Perl 5 interpreter.</li>
<li><a href="https://github.com/jeroennijhof/pam_script">jeroennijhof/pam_script</a>&nbsp;- PAM script module will allow you to execute scripts during authorization, password changes and sessions. This is very handy if your current security application has no pam support but is accessable with perl or other scripts.</li>
<li><a href="https://github.com/jberger/Zoidberg">jberger/Zoidberg</a>&nbsp;- A modular perl shell</li>
<li><a href="https://github.com/hitode909/App-PRT">hitode909/App-PRT</a>&nbsp;- Command line tool for Perl code refactoring</li>
<li><a href="https://github.com/fluent/fluent-logger-perl">fluent/fluent-logger-perl</a>&nbsp;- A structured logger for Fluentd (Perl)</li>
<li><a href="https://github.com/dann/p5-cpan-packager">dann/p5-cpan-packager</a>&nbsp;- CPAN::Packager is a tool to help you make packages from perl modules on CPAN.</li>
<li><a href="https://github.com/cotto/www-workflowy">cotto/www-workflowy</a>&nbsp;- unofficial reverse-engineered Perl 5 interface to Workflowy</li>
<li><a href="https://github.com/Corion/www-mechanize-firefox">Corion/www-mechanize-firefox</a>&nbsp;- The API of WWW::Mechanize, combined with the Javascript-power of Firefox</li>
<li><a href="https://github.com/cooldaemon/RabbitFoot">cooldaemon/RabbitFoot</a>&nbsp;- An asynchronous and multi channel Perl AMQP client. It uses Coro and AnyEvent::RabbitMQ.</li>
<li><a href="https://github.com/perlpilot/perl6-docs">perlpilot/perl6-docs</a>&nbsp;- Documents relating to Perl 6</li>
<li><a href="https://github.com/ingydotnet/mo-pm">ingydotnet/mo-pm</a>&nbsp;- Perl Micro Objects</li>
<li><a href="https://github.com/gnp/psh">gnp/psh</a>&nbsp;- Perl Shell (psh) &mdash; Aspiring to be your primary login shell</li>
<li><a href="https://github.com/comewalk/google-api-perl-client">comewalk/google-api-perl-client</a>&nbsp;- Google APIs Client Library for Perl</li>
<li><a href="https://github.com/CiderWebmail/CiderWebmail">CiderWebmail/CiderWebmail</a>&nbsp;- Perl/Catalyst/AJAX based Webmail</li>
<li><a href="https://github.com/barbie/perl-jam">barbie/perl-jam</a>&nbsp;- Perl Jam - a book about organising conferences</li>
<li><a href="https://github.com/typester/perldojo">typester/perldojo</a>&nbsp;- online perl testing!</li>
<li><a href="https://github.com/tsee/ZeroMQ-Perl">tsee/ZeroMQ-Perl</a>&nbsp;- Perl interface to 0MQ2</li>
<li><a href="https://github.com/trizen/obmenu-generator">trizen/obmenu-generator</a>&nbsp;- A fast menu generator for the Openbox Window Manager.</li>
<li><a href="https://github.com/rjbs/App-Cmd">rjbs/App-Cmd</a>&nbsp;- perl framework for testable, extensible command line apps</li>
<li><a href="https://github.com/grampajoe/Autodatamosh">grampajoe/Autodatamosh</a>&nbsp;- Perl script that automatically datamoshes MPEG4-encoded AVI videos.</li>
<li><a href="https://github.com/xtaran/unburden-home-dir">xtaran/unburden-home-dir</a>&nbsp;- Automatically unburden $HOME from caches, etc. Useful for $HOME on SSDs, small disks or slow NFS homes. Can be triggered via an hook in /etc/X11/Xsession.d/.</li>
<li><a href="https://github.com/rjbs/Email-Sender">rjbs/Email-Sender</a>&nbsp;- a perl library for sending email</li>
<li><a href="https://github.com/kruser/atbat-mongodb">kruser/atbat-mongodb</a>&nbsp;- A Perl project that pulls data from MLB's AtBat servers and shoves them into a local MongoDB</li>
<li><a href="https://github.com/jonswar/perl-chi">jonswar/perl-chi</a>&nbsp;- Perl CHI distribution</li>
<li><a href="https://github.com/andrewcmyers/civs">andrewcmyers/civs</a>&nbsp;- Condorcet Internet Voting System</li>
<li><a href="https://github.com/sjdy521/Mojo-SinaWeibo">sjdy521/Mojo-SinaWeibo</a>&nbsp;- 使用Perl语言编写的新浪微博客户端SDK，通过微博私信和微软小冰进行问答，提供小冰API接口，其他微博功能敬请期待</li>
<li><a href="https://github.com/perigrin/blawd">perigrin/blawd</a>&nbsp;- Simple Blogging Software in Perl, similar to blosxome or Jekyll</li>
<li><a href="https://github.com/jacquesg/p5-Git-Raw">jacquesg/p5-Git-Raw</a>&nbsp;- Perl bindings to the Git linkable library (libgit2)</li>
<li><a href="https://github.com/ingydotnet/io-all-pm">ingydotnet/io-all-pm</a>&nbsp;- All in One Perl IO</li>
<li><a href="https://github.com/dagolden/Capture-Tiny">dagolden/Capture-Tiny</a>&nbsp;- (Perl) Capture STDOUT and STDERR from Perl, XS or external programs</li>
<li><a href="https://github.com/beppu/squatting">beppu/squatting</a>&nbsp;- A Camping-inspired Web Microframework for Perl</li>
<li><a href="https://github.com/tempire/perl-google-voice">tempire/perl-google-voice</a>&nbsp;- Perl module to interact with Google::Voice</li>
<li><a href="https://github.com/njh/perl-net-sdp">njh/perl-net-sdp</a>&nbsp;- Perl Module : Session Description Protocol (rfc2327)</li>
<li><a href="https://github.com/songzan/perl5-doc">songzan/perl5-doc</a>&nbsp;- Perldoc Help Chinese Planning</li>
<li><a href="https://github.com/sisimai/p5-Sisimai">sisimai/p5-Sisimai</a>&nbsp;- Mail Analyzing Interface for email bounce: A Perl module to parse RFC5322 bounce mails and generating structured data as JSON from parsed results. Formerly known as bounceHammer 4: an error mail analyzer.</li>
<li><a href="https://github.com/shenwei356/bio_scripts">shenwei356/bio_scripts</a>&nbsp;- Practical, reusable scripts for bioinformatics</li>
<li><a href="https://github.com/mozilla-bteam/bmo">mozilla-bteam/bmo</a>&nbsp;- bugzilla.mozilla.org source</li>
<li><a href="https://github.com/jamadam/mojo-legacy">jamadam/mojo-legacy</a>&nbsp;- mojo for Perl-5.8.7</li>
<li><a href="https://github.com/briandfoy/Learning-Perl-Sample-Files">briandfoy/Learning-Perl-Sample-Files</a>&nbsp;- Extra files for use with Learning Perl</li>
<li><a href="https://github.com/theory/uri-db">theory/uri-db</a>&nbsp;- Perl module representing database URIs</li>
<li><a href="https://github.com/semifor/twirc">semifor/twirc</a>&nbsp;- Twitter / IRC gateway in perl</li>
<li><a href="https://github.com/makamaka/JSON">makamaka/JSON</a>&nbsp;- perl implementation of JSON encoder/decoder</li>
<li><a href="https://github.com/lukec/cpan-selenium-rc-perl">lukec/cpan-selenium-rc-perl</a>&nbsp;- Test-WWW-Selenium Perl Selenium RC Driver</li>
<li><a href="https://github.com/keeth/Net-OAuth2">keeth/Net-OAuth2</a>&nbsp;- OAuth 2.0 for Perl</li>
<li><a href="https://github.com/wireghoul/doona">wireghoul/doona</a>&nbsp;- Fork of Bruteforce Exploit Detector</li>
<li><a href="https://github.com/pjf/autodie">pjf/autodie</a>&nbsp;- Make functions succeed or die in Perl, with lexical scope.</li>
<li><a href="https://github.com/PDLPorters/pdl">PDLPorters/pdl</a>&nbsp;- Scientific computing with Perl</li>
<li><a href="https://github.com/ewaters/net-amqp">ewaters/net-amqp</a>&nbsp;- Implementation of the AMQ Protocol in Perl</li>
<li><a href="https://github.com/demanuel/NewsUP">demanuel/NewsUP</a>&nbsp;- NewsUP a binary usenet uploader/poster (multiple connections, SSL and NZB).</li>
<li><a href="https://github.com/ati/ljsm">ati/ljsm</a>&nbsp;- perl script for LiveJournal blog backup</li>
<li><a href="https://github.com/vti/underscore-perl">vti/underscore-perl</a>&nbsp;- Underscore-perl is a Perl clone of Underscore.js</li>
<li><a href="https://github.com/techsneeze/dmarcts-report-parser">techsneeze/dmarcts-report-parser</a>&nbsp;- A Perl based tool to parse DMARC reports from an IMAP mailbox or from the filesystem, and insert the information into a database. ( Formerly known as imap-dmarcts )</li>
<li><a href="https://github.com/prepan-developers/prepan">prepan-developers/prepan</a>&nbsp;- Social Reviewing for Perl Modules</li>
<li><a href="https://github.com/portcullislabs/rdp-sec-check">portcullislabs/rdp-sec-check</a>&nbsp;- PERL script to enumerate security settings of an RDP Service (AKA Terminal Services)</li>
<li><a href="https://github.com/mlawren/githook-perltidy">mlawren/githook-perltidy</a>&nbsp;- Run perltidy as a Git pre-commit hook</li>
<li><a href="https://github.com/miyagawa/xml-atom">miyagawa/xml-atom</a>&nbsp;- XML::Atom perl module</li>
<li><a href="https://github.com/jric/epubtohtml">jric/epubtohtml</a>&nbsp;- A simple perl script to convert epub documents to documents that browsers can natively browse.</li>
<li><a href="https://github.com/jmcnamara/spreadsheet-writeexcel">jmcnamara/spreadsheet-writeexcel</a>&nbsp;- Perl module to write Excel binary files</li>
<li><a href="https://github.com/FormFu/HTML-FormFu">FormFu/HTML-FormFu</a>&nbsp;- HTML Form Creation, Rendering and Validation Framework. Just define the form, and let FormFu do the all heavy lifting.</li>
<li><a href="https://github.com/cbbrowne/autodoc">cbbrowne/autodoc</a>&nbsp;- PostgreSQL Autodoc - dumps a Postgres schema in several useful documentary forms</li>
<li><a href="https://github.com/xen-tools/xen-tools">xen-tools/xen-tools</a>&nbsp;- xen-tools is a collection of simple perl scripts which allow you to easily create new Xen guest domains upon your Xen host server.</li>
<li><a href="https://github.com/tokuhirom/Test-TCP">tokuhirom/Test-TCP</a>&nbsp;- Test::TCP for perl</li>
<li><a href="https://github.com/timbunce/java2perl6">timbunce/java2perl6</a>&nbsp;- Parse Java class files and generate corresponding Perl6 Class and Role files</li>
<li><a href="https://github.com/stoned/pll">stoned/pll</a>&nbsp;- Yet another Perl local::lib+cpanm helper script</li>
<li><a href="https://github.com/stevan/promises-perl">stevan/promises-perl</a>&nbsp;- An implementation of Promises in Perl</li>
<li><a href="https://github.com/oetiker/mrtg">oetiker/mrtg</a>&nbsp;- MRTG - Multi Router Traffic Grapher</li>
<li><a href="https://github.com/monitoring-plugins/monitoring-plugin-perl">monitoring-plugins/monitoring-plugin-perl</a>&nbsp;- Perl module Monitoring::Plugin - Nagios::Plugin</li>
<li><a href="https://github.com/mirod/xmltwig">mirod/xmltwig</a>&nbsp;- XML, the Perl way</li>
<li><a href="https://github.com/kraih/perl-raptor">kraih/perl-raptor</a>&nbsp;-&nbsp;Perl 5 Raptor</li>
<li><a href="https://github.com/KKBOX/mpdnsd-perl">KKBOX/mpdnsd-perl</a>&nbsp;- Marco Polo DNS Daemon</li>
<li><a href="https://github.com/kevinphilp/Perl-gtk3-Tutorial">kevinphilp/Perl-gtk3-Tutorial</a>&nbsp;- Some notes on using Gtk3 with Perl</li>
<li><a href="https://github.com/kesor/p5-cucumber">kesor/p5-cucumber</a>&nbsp;- Cucumber for Perl 5</li>
<li><a href="https://github.com/Ensembl/ensembl">Ensembl/ensembl</a>&nbsp;- The Ensembl Core Perl API and SQL schema</li>
<li><a href="https://github.com/dankogai/p5-encode">dankogai/p5-encode</a>&nbsp;- Encode - character encodings (for Perl 5.8 or better)</li>
<li><a href="https://github.com/rocky/Perl-Devel-Trepan">rocky/Perl-Devel-Trepan</a>&nbsp;- Perl port of trepanning debugger</li>
<li><a href="https://github.com/rafl/devel-declare">rafl/devel-declare</a>&nbsp;- Adding keywords to perl, in perl</li>
<li><a href="https://github.com/petdance/html-tidy">petdance/html-tidy</a>&nbsp;- HTML::Tidy, a Perl wrapper about libtidy</li>
<li><a href="https://github.com/libwww-perl/URI">libwww-perl/URI</a>&nbsp;- The Perl URI module</li>
<li><a href="https://github.com/leto/math--gsl">leto/math--gsl</a>&nbsp;- Perl interface to the GNU Scientific Library</li>
<li><a href="https://github.com/jensenja/graphite-snmp-collector">jensenja/graphite-snmp-collector</a>&nbsp;- Asynchronous Perl to collect SNMP data to feed into Graphite</li>
<li><a href="https://github.com/hachi/Perlbal">hachi/Perlbal</a>&nbsp;- Perl HTTP Load Balancer</li>
<li><a href="https://github.com/bucardo/dbdpg">bucardo/dbdpg</a>&nbsp;- Perl Postgres driver DBD::Pg aka dbdpg</li>
<li><a href="https://github.com/aki2o/plsense">aki2o/plsense</a>&nbsp;- Omni completion tool for Perl</li>
<li><a href="https://github.com/zigorou/perl-JSV">zigorou/perl-JSV</a>&nbsp;- JSON Schema implementation for Perl</li>
<li><a href="https://github.com/worldmind/perlqual">worldmind/perlqual</a>&nbsp;- Wrapper for some tests for Perl code quality</li>
<li><a href="https://github.com/trizen/trizen">trizen/trizen</a>&nbsp;- Lightweight AUR Package Manager</li>
<li><a href="https://github.com/tokuhirom/optimize-perl-doc">tokuhirom/optimize-perl-doc</a>&nbsp;- how to optimize your perl code?</li>
<li><a href="https://github.com/peterkeen/proclaunch">peterkeen/proclaunch</a>&nbsp;- A pure-perl process management system</li>
<li><a href="https://github.com/Ovid/DB--Color">Ovid/DB--Color</a>&nbsp;- Syntax highlighting the Perl debugger</li>
<li><a href="https://github.com/jpa/Moose-Doc-JA">jpa/Moose-Doc-JA</a>&nbsp;- Perl Moose Documentation In Japanese</li>
<li><a href="https://github.com/hakobe/Guita">hakobe/Guita</a>&nbsp;- Gist clone for private use written in Perl</li>
<li><a href="https://github.com/gonzoua/EBook-EPUB">gonzoua/EBook-EPUB</a>&nbsp;- EBook::EPUB perl module for generating EPUB document</li>
<li><a href="https://github.com/geuma/pDLNA">geuma/pDLNA</a>&nbsp;- perl DLNA MediaServer</li>
<li><a href="https://github.com/dequis/tmux-url-select">dequis/tmux-url-select</a>&nbsp;- Keyboard based URL selector that integrates with tmux</li>
<li><a href="https://github.com/Blaizer/ModernPerl-sublime">Blaizer/ModernPerl-sublime</a>&nbsp;- Perl syntax highlighting for Sublime Text that isn't outdated</li>
<li><a href="https://github.com/aleex42/netapp-cdot-nagios">aleex42/netapp-cdot-nagios</a>&nbsp;- Nagios-Checks for monitoring NetApp cDOT-Systems via NetApp Perl API</li>
<li><a href="https://github.com/simmel/urxvt-resize-font">simmel/urxvt-resize-font</a>&nbsp;- URxvt Perl extension for resizing the font</li>
<li><a href="https://github.com/pkrumins/social-scraper">pkrumins/social-scraper</a>&nbsp;- Social scraper is a Perl program that scrapes reddit, digg, stumbleupon, delicious, furl, flickr, simpy, boingboing, wired for content that matches the given patterns.</li>
<li><a href="https://github.com/metomi/fcm">metomi/fcm</a>&nbsp;- FCM: a modern Fortran build system + wrappers to Subversion for scientific software development</li>
<li><a href="https://github.com/khrt/Raisin">khrt/Raisin</a>&nbsp;- Raisin - a REST API micro framework for Perl&nbsp;</li>
<li><a href="https://github.com/joshua-hull/Reddit-Image-Scraper">joshua-hull/Reddit-Image-Scraper</a>&nbsp;- Perl script to download imaged hosted at imgur.com linked from a subreddit at reddit.com</li>
<li><a href="https://github.com/dpavlin/perl-Redis-obsolete">dpavlin/perl-Redis-obsolete</a>&nbsp;- perl binding for Redis database - latest development is in melo's repository</li>
<li><a href="https://github.com/cho45/Niro">cho45/Niro</a>&nbsp;- Blogging System for personal use written in Perl.</li>
<li><a href="https://github.com/acme/net-amazon-s3">acme/net-amazon-s3</a>&nbsp;- Use the Amazon S3 - Simple Storage Service from Perl</li>
<li><a href="https://github.com/vti/plack-middleware-socketio">vti/plack-middleware-socketio</a>&nbsp;- Socket.IO Perl/Plack implementation DEPRECATED USE PocketIO INSTEAD</li>
<li><a href="https://github.com/textmate/perl.tmbundle">textmate/perl.tmbundle</a>&nbsp;- TextMate support for Perl</li>
<li><a href="https://github.com/sourceperl/mbtget">sourceperl/mbtget</a>&nbsp;- A simple modbus/TCP client write in pure Perl.</li>
<li><a href="https://github.com/semifor/net-twitter-lite">semifor/net-twitter-lite</a>&nbsp;- A lighter weight (non-Moose) Perl interface to the Twitter API</li>
<li><a href="https://github.com/kasei/perlrdf">kasei/perlrdf</a>&nbsp;- Official releases of RDF::Query may be found on CPAN:&nbsp;<a href="http://search.cpan.org/dist/RDF-Query/">http://search.cpan.org/dist/RDF-Query/</a></li>
<li><a href="https://github.com/danaj/Math-Prime-Util">danaj/Math-Prime-Util</a>&nbsp;- Perl (XS) module implementing prime number utilities, including sieves</li>
<li><a href="https://github.com/AndyA/Test-Harness">AndyA/Test-Harness</a>&nbsp;- Run Perl standard test scripts with statistics</li>
<li><a href="https://github.com/sni/Monitoring-Livestatus">sni/Monitoring-Livestatus</a>&nbsp;- Livestatus Perl API to access runtime data from Nagios, Icinga and Shinken.</li>
<li><a href="https://github.com/skx/markdownshare.com">skx/markdownshare.com</a>&nbsp;- The code behind&nbsp;<a href="http://markdownshare.com/">http://markdownshare.com/</a></li>
<li><a href="https://github.com/Perl-Toolchain-Gang/Module-Build">Perl-Toolchain-Gang/Module-Build</a>&nbsp;- Perl module to configure and build modules (what backs most Build.PLs)</li>
<li><a href="https://github.com/markstos/CGI--Application">markstos/CGI--Application</a>&nbsp;- A Perl framework for building reusable web-applications</li>
<li><a href="https://github.com/lyokato/p5-oauth-lite2">lyokato/p5-oauth-lite2</a>&nbsp;- Perl Library for OAuth 2.0</li>
<li><a href="https://github.com/KTamas/pflogsumm">KTamas/pflogsumm</a>&nbsp;- postfix stats</li>
<li><a href="https://github.com/karupanerura/Aniki">karupanerura/Aniki</a>&nbsp;- The ORM as our great brother.</li>
<li><a href="https://github.com/jonswar/perl-poet">jonswar/perl-poet</a>&nbsp;- Perl Poet distribution</li>
<li><a href="https://github.com/hzhou/MyDef">hzhou/MyDef</a>&nbsp;- Programming in the next paradigm -- your way</li>
<li><a href="https://github.com/houseabsolute/DateTime.pm">houseabsolute/DateTime.pm</a>&nbsp;- A date and time object for Perl</li>
<li><a href="https://github.com/fayland/perl-lingua-han">fayland/perl-lingua-han</a>&nbsp;- all Lingua::Han:: CPAN modules</li>
<li><a href="https://github.com/eilara/Rx.pl">eilara/Rx.pl</a>&nbsp;- Microsoft Reactive Extensions clone for Perl</li>
<li><a href="https://github.com/dams/curses-toolkit">dams/curses-toolkit</a>&nbsp;- Curses::Toolkit perl module</li>
<li><a href="https://github.com/adriaandens/fagrant">adriaandens/fagrant</a>&nbsp;- Vagrant in 100 lines of (Perl) code</li>
<li><a href="https://github.com/xsawyerx/module-starter">xsawyerx/module-starter</a>&nbsp;- Module::Starter, a tool to help create solid Perl modules from scratch</li>
<li><a href="https://github.com/Tux/speedtest">Tux/speedtest</a>&nbsp;- Perl CLI for speedtest.net</li>
<li><a href="https://github.com/tanjiti/perl_tools">tanjiti/perl_tools</a>&nbsp;- perl小工具</li>
<li><a href="https://github.com/stevan/BreadBoard">stevan/BreadBoard</a>&nbsp;- Inversion of Control and Dependency Injection for Perl</li>
<li><a href="https://github.com/salva/p5-Net-OpenSSH">salva/p5-Net-OpenSSH</a>&nbsp;- Perl SSH client built on top of OpenSSH</li>
<li><a href="https://github.com/rudism/NetAuthority">rudism/NetAuthority</a>&nbsp;- Historical perl code that ran the original NetAuthority.org site</li>
<li><a href="https://github.com/pssc/squeezy">pssc/squeezy</a>&nbsp;- A command-line utility for controlling squeezebox network audio players via their squeezeserver.</li>
<li><a href="https://github.com/portcullislabs/udp-proto-scanner">portcullislabs/udp-proto-scanner</a>&nbsp;- udp-proto-scanner is a Perl script which discovers UDP services by sending triggers to a list of hosts</li>
<li><a href="https://github.com/perl5-dbi/DBD-mysql">perl5-dbi/DBD-mysql</a>&nbsp;- MySQL driver for the Perl5 Database Interface (DBI)</li>
<li><a href="https://github.com/Ovid/hop">Ovid/hop</a>&nbsp;- Higher Order Perl modules on the CPAN</li>
<li><a href="https://github.com/noxxi/p5-io-socket-ssl">noxxi/p5-io-socket-ssl</a>&nbsp;- IO::Socket::SSL Perl Module</li>
<li><a href="https://github.com/kingpong/perl-Test-Spec">kingpong/perl-Test-Spec</a>&nbsp;- rSpec-like test system for Perl</li>
<li><a href="https://github.com/kensanata/oddmuse">kensanata/oddmuse</a>&nbsp;- A simple wiki engine written in Perl. No database required.</li>
<li><a href="https://github.com/gugod/Test-Continuous">gugod/Test-Continuous</a>&nbsp;- (Perl) Run your tests suite continusouly when developing.</li>
<li><a href="https://github.com/grickit/Gambot">grickit/Gambot</a>&nbsp;- Gambot is a modular IRC bot written in Perl.</li>
<li><a href="https://github.com/grantm/Algorithm-CouponCode">grantm/Algorithm-CouponCode</a>&nbsp;- Perl library to generate and validate 'CouponCode' strings</li>
<li><a href="https://github.com/eserte/bbbike">eserte/bbbike</a>&nbsp;- BBBike</li>
<li><a href="https://github.com/book/Git-Repository">book/Git-Repository</a>&nbsp;- Perl interface to Git repositories</li>
<li><a href="https://github.com/tokuhirom/FormValidator-Lite">tokuhirom/FormValidator-Lite</a>&nbsp;- very lite and fast validation library for perl</li>
<li><a href="https://github.com/szbalint/WWW--Curl">szbalint/WWW--Curl</a>&nbsp;- Perl binding for libcurl</li>
<li><a href="https://github.com/stevan/p5-MOP">stevan/p5-MOP</a>&nbsp;- A Meta Object Protocol for Perl 5</li>
<li><a href="https://github.com/sludin/Protocol-ACME">sludin/Protocol-ACME</a>&nbsp;- A perl library that provides a simple interface to writing scripts for cert provisioning with Let's Encrypt.</li>
<li><a href="https://github.com/rurban/App-perlall">rurban/App-perlall</a>&nbsp;- create and work with /usr/local/bin/perl5.*</li>
<li><a href="https://github.com/Robertof/perl-www-telegram-botapi">Robertof/perl-www-telegram-botapi</a>&nbsp;- Perl implementation of the Telegram Bot API</li>
<li><a href="https://github.com/ReneNyffenegger/PerlModules">ReneNyffenegger/PerlModules</a>&nbsp;- (Very) simple scripts for some Perl modules, intended as copy paste templates.</li>
<li><a href="https://github.com/Ovid/Role-Basic">Ovid/Role-Basic</a>&nbsp;- Roles in Perl. Nothing else.</li>
<li><a href="https://github.com/njlg/perl-rethinkdb">njlg/perl-rethinkdb</a>&nbsp;- A Pure Perl RethinkDB Driver</li>
<li><a href="https://github.com/naoya/perl-Text-LTSV">naoya/perl-Text-LTSV</a>&nbsp;- Text::LTSV - Labeled Tab Separated Value manipulator</li>
<li><a href="https://github.com/memcached/perl-Cache-Memcached">memcached/perl-Cache-Memcached</a>&nbsp;- Cache::Memcached</li>
<li><a href="https://github.com/KD8EYF/TRBO-NET">KD8EYF/TRBO-NET</a>&nbsp;- mototrbo perl modules for ARS TMS and LRRP</li>
<li><a href="https://github.com/holbertonschool/Betty">holbertonschool/Betty</a>&nbsp;- Holberton-style C code checker written in Perl</li>
<li><a href="https://github.com/gnustavo/Git-Hooks">gnustavo/Git-Hooks</a>&nbsp;- Framework for implementing Git (and Gerrit) hooks</li>
<li><a href="https://github.com/fayland/perl-www-contact">fayland/perl-www-contact</a>&nbsp;- WWW::Contact - Get contacts/addressbook from Web</li>
<li><a href="https://github.com/do-know/Crypt-LE">do-know/Crypt-LE</a>&nbsp;- Crypt::LE (ZeroSSL project) - Let's Encrypt client and library in Perl for getting free SSL certificates (inc. generating RSA/ECC keys and CSRs). HTTP/DNS verification is supported out of the box, easily extended with plugins.</li>
<li><a href="https://github.com/briandfoy/cpan-script">briandfoy/cpan-script</a>&nbsp;- (Perl) Interact with CPAN from the command line</li>
<li><a href="https://github.com/beppu/anyevent-couchdb">beppu/anyevent-couchdb</a>&nbsp;- a non-blocking CouchDB client for Perl based on jquery.couch.js</li>
<li><a href="https://github.com/yannk/ControlFreak">yannk/ControlFreak</a>&nbsp;- a process supervisor in Perl</li>
<li><a href="https://github.com/typester/object-container-perl">typester/object-container-perl</a>&nbsp;- simple object container</li>
<li><a href="https://github.com/trizen/menutray">trizen/menutray</a>&nbsp;- An application menu through a GTK+ tray status icon.</li>
<li><a href="https://github.com/TrackingSoft/Kafka">TrackingSoft/Kafka</a>&nbsp;- Perl implementation of Kafka API (official CPAN module)</li>
<li><a href="https://github.com/sushdm/git_svn_externals">sushdm/git_svn_externals</a>&nbsp;- A perl script to clone an SVN repository with externals, using git-svn</li>
<li><a href="https://github.com/Perl-Toolchain-Gang/Test-Harness">Perl-Toolchain-Gang/Test-Harness</a>&nbsp;- Run Perl standard test scripts with statistics</li>
<li><a href="https://github.com/openresty/lemplate">openresty/lemplate</a>&nbsp;- OpenResty/Lua template framework implementing Perl's TT2 templating language</li>
<li><a href="https://github.com/mkjellman/perlcassa">mkjellman/perlcassa</a>&nbsp;- a Perl client for Apache Cassandra</li>
<li><a href="https://github.com/LudovicRousseau/pcsc-tools">LudovicRousseau/pcsc-tools</a>&nbsp;- Some tools to be used with smart cards and PC/SC</li>
<li><a href="https://github.com/liyanage/build-entropy-php">liyanage/build-entropy-php</a>&nbsp;- The Perl-based build system used to build the Entropy PHP distribution</li>
<li><a href="https://github.com/lixmal/keepass4web">lixmal/keepass4web</a>&nbsp;- An application that serves KeePass database entries on a web frontend</li>
<li><a href="https://github.com/hakobe/p5-Fiber">hakobe/p5-Fiber</a>&nbsp;- Ruby like Fiber on Perl</li>
<li><a href="https://github.com/gray/webservice-google-reader">gray/webservice-google-reader</a>&nbsp;- Perl interface to the Google Reader API</li>
<li><a href="https://github.com/fayland/chinese-perl-book">fayland/chinese-perl-book</a>&nbsp;- free book in Chinese "Master Perl Today"</li>
<li><a href="https://github.com/bruceravel/demeter">bruceravel/demeter</a>&nbsp;- Process and analyze X-ray Absorption Spectroscopy data using Feff and either Larch or Ifeffit.</li>
<li><a href="https://github.com/beanz/xpl-perl">beanz/xpl-perl</a>&nbsp;- Perl modules for the xPL Home Automation Protocol</li>
<li><a href="https://github.com/atom/language-perl">atom/language-perl</a>&nbsp;- Perl package for Atom</li>
<li><a href="https://github.com/ewels/clusterflow">ewels/clusterflow</a>&nbsp;- A pipelining tool to automate and standardise bioinformatics analyses on cluster environments.</li>
<li><a href="https://github.com/diegok/resque-perl">diegok/resque-perl</a>&nbsp;- Perl port of the original Ruby library. It's intended to work using the same backend to share tasks and be able to manage the system using ruby's resque-server webapp. Resque is a Redis-backed library for creating background jobs, placing them on multiple queues, and processing them later.</li>
<li><a href="https://github.com/perl6/specs">perl6/specs</a>&nbsp;- Perl 6 language design documents</li>
<li><a href="https://github.com/trizen/sidef">trizen/sidef</a>&nbsp;- A modern object-oriented programming language, implemented in Perl.</li>
<li><a href="https://github.com/audreyt/pugs">audreyt/pugs</a>&nbsp;- A Perl 6 Implementation</li>
<li><a href="https://github.com/jlord/git-it-electron">jlord/git-it-electron</a>&nbsp;-&nbsp;A Git-it Desktop App (A Node.js app, not Perl as GH suggests)</li>
<li><a href="https://github.com/PerlGameDev/SDL_Manual">PerlGameDev/SDL_Manual</a>&nbsp;- The Manual for writing Games in Perl using SDL. Part of TPF grant.</li>
<li><a href="https://github.com/franckcuny/net-http-spore">franckcuny/net-http-spore</a>&nbsp;- Perl implementation for SPORE</li>
<li><a href="https://github.com/houseabsolute/webmachine-perl">houseabsolute/webmachine-perl</a>&nbsp;- A Perl port of Webmachine</li>
<li><a href="https://github.com/willemdh/check_netapp_ontap">willemdh/check_netapp_ontap</a>&nbsp;-&nbsp;Check NetApp Ontap&nbsp;</li>
<li><a href="https://github.com/unobe/perl-wfa">unobe/perl-wfa</a>&nbsp;- Perl's WWW::Facebook::API Module</li>
<li><a href="https://github.com/vti/sockjs-perl">vti/sockjs-perl</a>&nbsp;- SockJS Perl Plack/PSGI implementation</li>
<li><a href="https://github.com/schwern/Sex">schwern/Sex</a>&nbsp;- Perl teaches the birds and the bees</li>
<li><a href="https://github.com/rjray/rpc-xml">rjray/rpc-xml</a>&nbsp;- A Perl implementation of the XML-RPC specification</li>
<li><a href="https://github.com/naoya/mapreduce-lite">naoya/mapreduce-lite</a>&nbsp;- An experimental implementation of MapReduce for perl</li>
<li><a href="https://github.com/miyagawa/perl-app-builder">miyagawa/perl-app-builder</a>&nbsp;- Turns your perl script into .app using Platypus</li>
<li><a href="https://github.com/leejo/CGI.pm">leejo/CGI.pm</a>&nbsp;- The CGI.pm perl module</li>
<li><a href="https://github.com/kngenie/ias3upload">kngenie/ias3upload</a>&nbsp;- simple Perl script for uploading files to Internet Archive through its S3-like interface</li>
<li><a href="https://github.com/jsober/Reddit-API">jsober/Reddit-API</a>&nbsp;- Reddit API for perl</li>
<li><a href="https://github.com/jizhang/perl-virtualenv">jizhang/perl-virtualenv</a>&nbsp;- Virtual Environment for Perl</li>
<li><a href="https://github.com/Ensembl/ensembl-compara">Ensembl/ensembl-compara</a>&nbsp;- The Ensembl Compara Perl API and SQL schema</li>
<li><a href="https://github.com/drforr/Perl-Mogrify">drforr/Perl-Mogrify</a>&nbsp;- Transmogrify Perl5 code to Perl6 with a plugin system</li>
<li><a href="https://github.com/cooldaemon/AnyEvent-RabbitMQ">cooldaemon/AnyEvent-RabbitMQ</a>&nbsp;- An asynchronous and multi channel Perl AMQP client.</li>
<li><a href="https://github.com/braintree/braintree_perl">braintree/braintree_perl</a>&nbsp;- Braintree Perl library</li>
<li><a href="https://github.com/yuki-kimoto/gitweblite">yuki-kimoto/gitweblite</a>&nbsp;- Git repository browser. This is gtiweb.cgi clone to modern perl.</li>
<li><a href="https://github.com/yanick/Vim-X">yanick/Vim-X</a>&nbsp;- Write Perl functions within Vim</li>
<li><a href="https://github.com/typester/sniffer-rtmp-perl">typester/sniffer-rtmp-perl</a>&nbsp;- rtmp sniffer framework</li>
<li><a href="https://github.com/tonycoz/imager">tonycoz/imager</a>&nbsp;- Imager - image manipulation from perl. This is a mirror only, pull requests will be closed without comment if I ever notice them. Please submit patches (or bugs) via bug-Imager [at] rt.cpan.org</li>
<li><a href="https://github.com/tobeychris/hipchat-room-message-APIv2">tobeychris/hipchat-room-message-APIv2</a>&nbsp;- This is a simple perl script that will use Hipchat's API v2 to message a room after passing in the room name, authentication token and a message. Also includes features for selecting the colour, notifying the room, passing in an html message, using a proxy and using API v1 should you so choose.</li>
<li><a href="https://github.com/sass/perl-libsass">sass/perl-libsass</a>&nbsp;- Perl bindings for libsass (CSS::Sass)</li>
<li><a href="https://github.com/ranguard/text-vcard">ranguard/text-vcard</a>&nbsp;- Perl package to edit and create vCard(s) (RFC 2426)</li>
<li><a href="https://github.com/pkrumins/perl-tcp-proxy2">pkrumins/perl-tcp-proxy2</a>&nbsp;- Program for my "A TCP Proxy in Perl" article</li>
<li><a href="https://github.com/PeterMartini/go-perl">PeterMartini/go-perl</a>&nbsp;- Linking in Go code via XS</li>
<li><a href="https://github.com/petdance/test-www-mechanize">petdance/test-www-mechanize</a>&nbsp;- Test::WWW::Mechanize, a Perl object for testing web pages</li>
<li><a href="https://github.com/perl-ldap/perl-ldap">perl-ldap/perl-ldap</a>&nbsp;- Perl LDAP client library</li>
<li><a href="https://github.com/ntruchsess/perl-firmata">ntruchsess/perl-firmata</a>&nbsp;- Perl implementation of the firmata client. Originally authored by Aki Mimoto (amimoto) this repository was transfered to Norbert Truchsess (ntruchsess) in 02/2013. Anybody willing to contribute is very wellcome! Please submitt pull-requests against branch 'dev'</li>
<li><a href="https://github.com/mtw/Bio-ViennaNGS">mtw/Bio-ViennaNGS</a>&nbsp;- A Perl extension and collection of utilities for Next-Generation Sequencing (NGS) data analysis</li>
<li><a href="https://github.com/masukomi/jsonpath-perl">masukomi/jsonpath-perl</a>&nbsp;- Perl port of JSONPath</li>
<li><a href="https://github.com/livedoor/Sledge">livedoor/Sledge</a>&nbsp;- ancient Perl Web Application Framework.</li>
<li><a href="https://github.com/kernevil/libfilesys-smbclient-perl">kernevil/libfilesys-smbclient-perl</a>&nbsp;- Zentyal packaging of libfilesys-smbclient-perl</li>
<li><a href="https://github.com/ironcamel/App-p">ironcamel/App-p</a>&nbsp;- Steroids for your perl one-liners. Does that mean steroids for your steroids? Is that even possible?</li>
<li><a href="https://github.com/genoo/GenOO">genoo/GenOO</a>&nbsp;- A Modern Perl Framework for High Throughput Sequencing analysis</li>
<li><a href="https://github.com/gbarr/perl-libnet">gbarr/perl-libnet</a>&nbsp;- perl libnet library</li>
<li><a href="https://github.com/evernote/evernote-sdk-perl">evernote/evernote-sdk-perl</a>&nbsp;- Evernote SDK for Perl</li>
<li><a href="https://github.com/elmex/Construder">elmex/Construder</a>&nbsp;- A 3D Game written in Perl - inspired by Minecraft</li>
<li><a href="https://github.com/dsully/perl-crypt-openssl-x509">dsully/perl-crypt-openssl-x509</a>&nbsp;- Perl interface to OpenSSL's X509 module.</li>
<li><a href="https://github.com/davorg/perlanet">davorg/perlanet</a>&nbsp;- Simple Planet Clone in Perl</li>
<li><a href="https://github.com/cosimo/TicketServer">cosimo/TicketServer</a>&nbsp;- Flickr-like Ticket Server implemented with Perl + DBI + MySQL</li>
<li><a href="https://github.com/robin13/mediathekp">robin13/mediathekp</a>&nbsp;- Perl clone of Mediathek</li>
<li><a href="https://github.com/rjbs/Mail-DeliveryStatus-BounceParser">rjbs/Mail-DeliveryStatus-BounceParser</a>&nbsp;- perl library to parse email bounce messages</li>
<li><a href="https://github.com/rjbs/Email-MIME">rjbs/Email-MIME</a>&nbsp;- perl library for parsing MIME messages</li>
<li><a href="https://github.com/Perl-Toolchain-Gang/Software-License">Perl-Toolchain-Gang/Software-License</a>&nbsp;- perl representation of common software licenses</li>
<li><a href="https://github.com/Perl-Toolchain-Gang/ExtUtils-CBuilder">Perl-Toolchain-Gang/ExtUtils-CBuilder</a>&nbsp;- Compile and link C code for Perl modules</li>
<li><a href="https://github.com/nothingmuch/git-site-perl">nothingmuch/git-site-perl</a>&nbsp;- Hooks to keep site_perl in git</li>
<li><a href="https://github.com/miyagawa/cpanmetadb-perl">miyagawa/cpanmetadb-perl</a>&nbsp;- CPANMetaDB in Starman and Plack with Carmel</li>
<li><a href="https://github.com/maxmind/MaxMind-DB-Writer-perl">maxmind/MaxMind-DB-Writer-perl</a>&nbsp;- Create MaxMind DB database files</li>
<li><a href="https://github.com/mattn/p5-Growl-Any">mattn/p5-Growl-Any</a>&nbsp;- perl module that provide any growl application</li>
<li><a href="https://github.com/LyonsLab/coge">LyonsLab/coge</a>&nbsp;- CoGe (Comparative Genomics) Platform</li>
<li><a href="https://github.com/hirose31/inspect-perl-proc">hirose31/inspect-perl-proc</a>&nbsp;- get %INC and dump into file</li>
<li><a href="https://github.com/formalin14/Transformer">formalin14/Transformer</a>&nbsp;- A translation system for static websites. It is used to translate the perl.org website.</li>
<li><a href="https://github.com/duncs/perl-nagios-object">duncs/perl-nagios-object</a>&nbsp;- A group of modules for parsing a Nagios configuration and representing it as objects in perl.</li>
<li><a href="https://github.com/cyberisltd/ProxyDetect">cyberisltd/ProxyDetect</a>&nbsp;- Perl script to detect the existence of transparent proxies</li>
<li><a href="https://github.com/ct/net-twitter">ct/net-twitter</a>&nbsp;- Net::Twitter, perl interface to twitter.com</li>
<li><a href="https://github.com/CpanelInc/cPanel-PublicAPI">CpanelInc/cPanel-PublicAPI</a>&nbsp;- A perl module for interfacing with cPanel's various APIs</li>
<li><a href="https://github.com/bingos/poe">bingos/poe</a>&nbsp;- (perl) portable multitasking and networking framework for Perl (mirror of the svn repository)</li>
<li><a href="https://github.com/xsawyerx/gitflux">xsawyerx/gitflux</a>&nbsp;- A Perl port of gitflow. Really? Yes, really!</li>
<li><a href="https://github.com/wehu/CljPerl">wehu/CljPerl</a>&nbsp;- CljPerl is a lisp on Perl.</li>
<li><a href="https://github.com/tomill/Acme-Perlingual">tomill/Acme-Perlingual</a>&nbsp;- Acme::Perlingual - Convert perl code to php or something.</li>
<li><a href="https://github.com/TJC/Flickr-API2">TJC/Flickr-API2</a>&nbsp;- A fork of Flickr::API from Perl's CPAN</li>
<li><a href="https://github.com/soarpenguin/perl-scripts">soarpenguin/perl-scripts</a>&nbsp;- useful perl script and snippets of code.</li>
<li><a href="https://github.com/shogo82148/Redis-Fast">shogo82148/Redis-Fast</a>&nbsp;- fast perl binding for Redis database</li>
<li><a href="https://github.com/shlomif/catable">shlomif/catable</a>&nbsp;- CATAlyst BLog Engine - written by perl cats</li>
<li><a href="https://github.com/rjbs/Perl-PrereqScanner">rjbs/Perl-PrereqScanner</a>&nbsp;- scan a set of Perl libraries to figure out prereqs, without loading the code</li>
<li><a href="https://github.com/reyjrar/DreamCatcher">reyjrar/DreamCatcher</a>&nbsp;- DNS Monitoring Suite</li>
<li><a href="https://github.com/petdance/file-next">petdance/file-next</a>&nbsp;- File::Next, a file finding module for Perl 5</li>
<li><a href="https://github.com/Perl-Email-Project/Email-Valid">Perl-Email-Project/Email-Valid</a>&nbsp;- perl library to validate email addresses</li>
<li><a href="https://github.com/perl6/evalbot">perl6/evalbot</a>&nbsp;- IRC bot for executing Perl 6 code</li>
</ul>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/33866/perlbrew-admin-free-perl-installation-management-tool</guid>
	<pubDate>Wed, 12 Jul 2017 03:53:08 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/33866/perlbrew-admin-free-perl-installation-management-tool</link>
	<title><![CDATA[Perlbrew: admin-free perl installation management tool.]]></title>
	<description><![CDATA[<p>perlbrew is an admin-free perl installation management tool. The latest version is 0.79, read the release note:&nbsp;<a href="https://perlbrew.pl/Release-0.79.html">Release 0.79</a>.&nbsp;</p>
<p>Copy &amp; Paste this line into your terminal:</p>
<pre><code>\curl -L https://install.perlbrew.pl | bash
</code></pre>
<p>Or, if your system does not have curl but something else:</p>
<pre><code># Linux
\wget -O - https://install.perlbrew.pl | bash

# FreeBSD
\fetch -o- https://install.perlbrew.pl | sh
</code></pre>
<p>If you prefer to install with cpan, there are two steps:</p>
<pre><code>sudo cpan App::perlbrew
perlbrew init
</code></pre>
<p>If it is installed with cpan, the perlbrew executable should be installed as&nbsp;<code>/usr/bin/perlbrew</code>&nbsp;or&nbsp;<code>/usr/local/bin/perlbrew</code>. For all users who want to use perlbrew, a prior&nbsp;<code>perlbrew init</code>&nbsp;needs to be executed.</p>
<p>The default perlbrew root directory is&nbsp;<code>~/perl5/perlbrew</code>, which can be changed by setting&nbsp;<code>PERLBREW_ROOT</code>environment variable before the installation and initialization. For more advanced installation process, please read&nbsp;<a href="http://metacpan.org/module/App::perlbrew">the perlbrew document</a>.</p>
<p>&nbsp;</p><p>Address of the bookmark: <a href="https://perlbrew.pl/" rel="nofollow">https://perlbrew.pl/</a></p>]]></description>
	<dc:creator>Jit</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>

</channel>
</rss>