<?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/2376?offset=60</link>
	<atom:link href="https://bioinformaticsonline.com/related/2376?offset=60" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<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/pages/view/36185/installing-bioscf-perl-module</guid>
	<pubDate>Mon, 09 Apr 2018 04:04:29 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/36185/installing-bioscf-perl-module</link>
	<title><![CDATA[Installing Bio::SCF perl module]]></title>
	<description><![CDATA[<p>Most Perl modules are written in Perl, some use&nbsp;<a href="http://perldoc.perl.org/perlxs.html">XS</a>&nbsp;(they are written in&nbsp;<a href="http://en.wikipedia.org/wiki/C_(programming_language)">C</a>) so require a C&nbsp;<a href="http://en.wikipedia.org/wiki/Compiler">compiler</a>&nbsp;(it's easy to get this setup - don't panic), see your OS of choice below to find out how to get the right compiler. Modules may have dependencies on other modules (almost always on&nbsp;<a href="http://www.cpan.org/">CPAN</a>) and cannot be installed without them (or without a specific version of them). Many modules on CPAN require a somewhat recent version of Perl (version 5.8 or above).</p><p>More about the basic perl module installation steps check this&nbsp;http://bioinformaticsonline.com/blog/view/710/how-to-install-perl-modules-manually-using-cpan-command-and-other-quick-ways</p><p>installing Bio::SCF perl module is daunting task, specieally because of it dependencies. Here is the steps, you need to follow to sucessfully install Bio::SCF module</p><p>#sudo apt-get install libbio-scf-perl #trev for visualization of scf file</p><p><strong>1. You will need the zlib library which can be found at http://www.zlib.net/.</strong></p><p>install zlib library first:</p><p>jitendra@jitendra-UNLOCK-INSTALL[zlib-1.2.11] ./configure []<br />Checking for gcc...<br />Checking for shared library support...<br />Building shared library libz.so.1.2.11 with gcc.<br />Checking for size_t... Yes.<br />Checking for off64_t... Yes.<br />Checking for fseeko... Yes.<br />Checking for strerror... Yes.<br />Checking for unistd.h... Yes.<br />Checking for stdarg.h... Yes.<br />Checking whether to use vs[n]printf() or s[n]printf()... using vs[n]printf().<br />Checking for vsnprintf() in stdio.h... Yes.<br />Checking for return value of vsnprintf()... Yes.<br />Checking for attribute(visibility) support... Yes.<br />jitendra@jitendra-UNLOCK-INSTALL[zlib-1.2.11] make []<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -I. -c -o example.o test/example.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o adler32.o adler32.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o crc32.o crc32.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o deflate.o deflate.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o infback.o infback.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o inffast.o inffast.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o inflate.o inflate.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o inftrees.o inftrees.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o trees.o trees.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o zutil.o zutil.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o compress.o compress.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o uncompr.o uncompr.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o gzclose.o gzclose.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o gzlib.o gzlib.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o gzread.o gzread.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -c -o gzwrite.o gzwrite.c<br />ar rc libz.a adler32.o crc32.o deflate.o infback.o inffast.o inflate.o inftrees.o trees.o zutil.o compress.o uncompr.o gzclose.o gzlib.o gzread.o gzwrite.o <br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o example example.o -L. libz.a<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -I. -c -o minigzip.o test/minigzip.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o minigzip minigzip.o -L. libz.a<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/adler32.o adler32.c<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/crc32.o crc32.c<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/deflate.o deflate.c<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/infback.o infback.c<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/inffast.o inffast.c<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/inflate.o inflate.c<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/inftrees.o inftrees.c<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/trees.o trees.c<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/zutil.o zutil.c<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/compress.o compress.c<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/uncompr.o uncompr.c<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/gzclose.o gzclose.c<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/gzlib.o gzlib.c<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/gzread.o gzread.c<br />gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -DPIC -c -o objs/gzwrite.o gzwrite.c<br />gcc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o libz.so.1.2.11 adler32.lo crc32.lo deflate.lo infback.lo inffast.lo inflate.lo inftrees.lo trees.lo zutil.lo compress.lo uncompr.lo gzclose.lo gzlib.lo gzread.lo gzwrite.lo -lc <br />rm -f libz.so libz.so.1<br />ln -s libz.so.1.2.11 libz.so<br />ln -s libz.so.1.2.11 libz.so.1<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o examplesh example.o -L. libz.so.1.2.11<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o minigzipsh minigzip.o -L. libz.so.1.2.11<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -I. -D_FILE_OFFSET_BITS=64 -c -o example64.o test/example.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o example64 example64.o -L. libz.a<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -I. -D_FILE_OFFSET_BITS=64 -c -o minigzip64.o test/minigzip.c<br />gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o minigzip64 minigzip64.o -L. libz.a<br />jitendra@jitendra-UNLOCK-INSTALL[zlib-1.2.11] sudo make install []<br />[sudo] password for jitendra: <br />rm -f /usr/local/lib/libz.a<br />cp libz.a /usr/local/lib<br />chmod 644 /usr/local/lib/libz.a<br />cp libz.so.1.2.11 /usr/local/lib<br />chmod 755 /usr/local/lib/libz.so.1.2.11<br />rm -f /usr/local/share/man/man3/zlib.3<br />cp zlib.3 /usr/local/share/man/man3<br />chmod 644 /usr/local/share/man/man3/zlib.3<br />rm -f /usr/local/lib/pkgconfig/zlib.pc<br />cp zlib.pc /usr/local/lib/pkgconfig<br />chmod 644 /usr/local/lib/pkgconfig/zlib.pc<br />rm -f /usr/local/include/zlib.h /usr/local/include/zconf.h<br />cp zlib.h zconf.h /usr/local/include<br />chmod 644 /usr/local/include/zlib.h /usr/local/include/zconf.h<br />&nbsp;</p><p><br /><strong>2. Now make io_lib-1.9</strong></p><p>In order to install this perl extension you have to install io-lib version 1.9 or higher from the Staden library (staden.sourceforge.net). This can be downloaded from https://sourceforge.net/project/showfiles.php?group_id=100316&amp;package_id=108243&amp;release_id=340318 confirm that the package installed correctly look for a library named "libread".</p><p>jitendra@jitendra-UNLOCK-INSTALL[io_lib-1.9.0] export CFLAGS="-fPIC" &amp;&amp; ./configure <br />checking for a BSD-compatible install... /usr/bin/install -c<br />checking whether build environment is sane... yes<br />checking for gawk... gawk<br />checking whether make sets $(MAKE)... yes<br />checking for gcc... gcc<br />checking for C compiler default output file name... a.out<br />checking whether the C compiler works... yes<br />checking whether we are cross compiling... no<br />checking for suffix of executables... <br />checking for suffix of object files... o<br />checking whether we are using the GNU C compiler... yes<br />checking whether gcc accepts -g... yes<br />checking for gcc option to accept ANSI C... none needed<br />checking for style of include used by make... GNU<br />checking dependency style of gcc... gcc3<br />checking for a BSD-compatible install... /usr/bin/install -c<br />checking for ranlib... ranlib<br />checking for main in -lz... yes<br />checking how to run the C preprocessor... gcc -E<br />checking for egrep... grep -E<br />checking for ANSI C header files... yes<br />checking for sys/wait.h that is POSIX.1 compatible... yes<br />checking for sys/types.h... yes<br />checking for sys/stat.h... yes<br />checking for stdlib.h... yes<br />checking for string.h... yes<br />checking for memory.h... yes<br />checking for strings.h... yes<br />checking for inttypes.h... yes<br />checking for stdint.h... yes<br />checking for unistd.h... yes<br />checking fcntl.h usability... yes<br />checking fcntl.h presence... yes<br />checking for fcntl.h... yes<br />checking limits.h usability... yes<br />checking limits.h presence... yes<br />checking for limits.h... yes<br />checking for unistd.h... (cached) yes<br />checking zlib.h usability... yes<br />checking zlib.h presence... yes<br />checking for zlib.h... yes<br />checking whether byte ordering is bigendian... no<br />checking for short... yes<br />checking size of short... 2<br />checking for int... yes<br />checking size of int... 4<br />checking for long... yes<br />checking size of long... 8<br />checking for inline... inline<br />checking for mode_t... yes<br />checking build system type... x86_64-unknown-linux-gnu<br />checking host system type... x86_64-unknown-linux-gnu<br />checking for cos in -lm... yes<br />checking for strdup... yes<br />configure: creating ./config.status<br />config.status: creating Makefile<br />config.status: creating read/Makefile<br />config.status: creating progs/Makefile<br />config.status: creating config.h<br />config.status: executing depfiles commands<br />jitendra@jitendra-UNLOCK-INSTALL[io_lib-1.9.0] make []<br />make all-recursive<br />make[1]: Entering directory '/home/jitendra/Downloads/io_lib-1.9.0'<br />Making all in read<br />make[2]: Entering directory '/home/jitendra/Downloads/io_lib-1.9.0/read'<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT Read.o -MD -MP -MF ".deps/Read.Tpo" -c -o Read.o Read.c; \<br />then mv -f ".deps/Read.Tpo" ".deps/Read.Po"; else rm -f ".deps/Read.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT scf_extras.o -MD -MP -MF ".deps/scf_extras.Tpo" -c -o scf_extras.o scf_extras.c; \<br />then mv -f ".deps/scf_extras.Tpo" ".deps/scf_extras.Po"; else rm -f ".deps/scf_extras.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT translate.o -MD -MP -MF ".deps/translate.Tpo" -c -o translate.o translate.c; \<br />then mv -f ".deps/translate.Tpo" ".deps/translate.Po"; else rm -f ".deps/translate.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT compression.o -MD -MP -MF ".deps/compression.Tpo" -c -o compression.o `test -f '../ztr/compression.c' || echo './'`../ztr/compression.c; \<br />then mv -f ".deps/compression.Tpo" ".deps/compression.Po"; else rm -f ".deps/compression.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT ztr.o -MD -MP -MF ".deps/ztr.Tpo" -c -o ztr.o `test -f '../ztr/ztr.c' || echo './'`../ztr/ztr.c; \<br />then mv -f ".deps/ztr.Tpo" ".deps/ztr.Po"; else rm -f ".deps/ztr.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT ztr_translate.o -MD -MP -MF ".deps/ztr_translate.Tpo" -c -o ztr_translate.o `test -f '../ztr/ztr_translate.c' || echo './'`../ztr/ztr_translate.c; \<br />then mv -f ".deps/ztr_translate.Tpo" ".deps/ztr_translate.Po"; else rm -f ".deps/ztr_translate.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT fpoint.o -MD -MP -MF ".deps/fpoint.Tpo" -c -o fpoint.o `test -f '../abi/fpoint.c' || echo './'`../abi/fpoint.c; \<br />then mv -f ".deps/fpoint.Tpo" ".deps/fpoint.Po"; else rm -f ".deps/fpoint.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT seqIOABI.o -MD -MP -MF ".deps/seqIOABI.Tpo" -c -o seqIOABI.o `test -f '../abi/seqIOABI.c' || echo './'`../abi/seqIOABI.c; \<br />then mv -f ".deps/seqIOABI.Tpo" ".deps/seqIOABI.Po"; else rm -f ".deps/seqIOABI.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT seqIOALF.o -MD -MP -MF ".deps/seqIOALF.Tpo" -c -o seqIOALF.o `test -f '../alf/seqIOALF.c' || echo './'`../alf/seqIOALF.c; \<br />then mv -f ".deps/seqIOALF.Tpo" ".deps/seqIOALF.Po"; else rm -f ".deps/seqIOALF.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT ctfCompress.o -MD -MP -MF ".deps/ctfCompress.Tpo" -c -o ctfCompress.o `test -f '../ctf/ctfCompress.c' || echo './'`../ctf/ctfCompress.c; \<br />then mv -f ".deps/ctfCompress.Tpo" ".deps/ctfCompress.Po"; else rm -f ".deps/ctfCompress.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT seqIOCTF.o -MD -MP -MF ".deps/seqIOCTF.Tpo" -c -o seqIOCTF.o `test -f '../ctf/seqIOCTF.c' || echo './'`../ctf/seqIOCTF.c; \<br />then mv -f ".deps/seqIOCTF.Tpo" ".deps/seqIOCTF.Po"; else rm -f ".deps/seqIOCTF.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT expFileIO.o -MD -MP -MF ".deps/expFileIO.Tpo" -c -o expFileIO.o `test -f '../exp_file/expFileIO.c' || echo './'`../exp_file/expFileIO.c; \<br />then mv -f ".deps/expFileIO.Tpo" ".deps/expFileIO.Po"; else rm -f ".deps/expFileIO.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT seqIOPlain.o -MD -MP -MF ".deps/seqIOPlain.Tpo" -c -o seqIOPlain.o `test -f '../plain/seqIOPlain.c' || echo './'`../plain/seqIOPlain.c; \<br />then mv -f ".deps/seqIOPlain.Tpo" ".deps/seqIOPlain.Po"; else rm -f ".deps/seqIOPlain.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT misc_scf.o -MD -MP -MF ".deps/misc_scf.Tpo" -c -o misc_scf.o `test -f '../scf/misc_scf.c' || echo './'`../scf/misc_scf.c; \<br />then mv -f ".deps/misc_scf.Tpo" ".deps/misc_scf.Po"; else rm -f ".deps/misc_scf.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT read_scf.o -MD -MP -MF ".deps/read_scf.Tpo" -c -o read_scf.o `test -f '../scf/read_scf.c' || echo './'`../scf/read_scf.c; \<br />then mv -f ".deps/read_scf.Tpo" ".deps/read_scf.Po"; else rm -f ".deps/read_scf.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT write_scf.o -MD -MP -MF ".deps/write_scf.Tpo" -c -o write_scf.o `test -f '../scf/write_scf.c' || echo './'`../scf/write_scf.c; \<br />then mv -f ".deps/write_scf.Tpo" ".deps/write_scf.Po"; else rm -f ".deps/write_scf.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT array.o -MD -MP -MF ".deps/array.Tpo" -c -o array.o `test -f '../utils/array.c' || echo './'`../utils/array.c; \<br />then mv -f ".deps/array.Tpo" ".deps/array.Po"; else rm -f ".deps/array.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT compress.o -MD -MP -MF ".deps/compress.Tpo" -c -o compress.o `test -f '../utils/compress.c' || echo './'`../utils/compress.c; \<br />then mv -f ".deps/compress.Tpo" ".deps/compress.Po"; else rm -f ".deps/compress.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT error.o -MD -MP -MF ".deps/error.Tpo" -c -o error.o `test -f '../utils/error.c' || echo './'`../utils/error.c; \<br />then mv -f ".deps/error.Tpo" ".deps/error.Po"; else rm -f ".deps/error.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT files.o -MD -MP -MF ".deps/files.Tpo" -c -o files.o `test -f '../utils/files.c' || echo './'`../utils/files.c; \<br />then mv -f ".deps/files.Tpo" ".deps/files.Po"; else rm -f ".deps/files.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT find.o -MD -MP -MF ".deps/find.Tpo" -c -o find.o `test -f '../utils/find.c' || echo './'`../utils/find.c; \<br />then mv -f ".deps/find.Tpo" ".deps/find.Po"; else rm -f ".deps/find.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT mach-io.o -MD -MP -MF ".deps/mach-io.Tpo" -c -o mach-io.o `test -f '../utils/mach-io.c' || echo './'`../utils/mach-io.c; \<br />then mv -f ".deps/mach-io.Tpo" ".deps/mach-io.Po"; else rm -f ".deps/mach-io.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT open_trace_file.o -MD -MP -MF ".deps/open_trace_file.Tpo" -c -o open_trace_file.o `test -f '../utils/open_trace_file.c' || echo './'`../utils/open_trace_file.c; \<br />then mv -f ".deps/open_trace_file.Tpo" ".deps/open_trace_file.Po"; else rm -f ".deps/open_trace_file.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT read_alloc.o -MD -MP -MF ".deps/read_alloc.Tpo" -c -o read_alloc.o `test -f '../utils/read_alloc.c' || echo './'`../utils/read_alloc.c; \<br />then mv -f ".deps/read_alloc.Tpo" ".deps/read_alloc.Po"; else rm -f ".deps/read_alloc.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT strings.o -MD -MP -MF ".deps/strings.Tpo" -c -o strings.o `test -f '../utils/strings.c' || echo './'`../utils/strings.c; \<br />then mv -f ".deps/strings.Tpo" ".deps/strings.Po"; else rm -f ".deps/strings.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT traceType.o -MD -MP -MF ".deps/traceType.Tpo" -c -o traceType.o `test -f '../utils/traceType.c' || echo './'`../utils/traceType.c; \<br />then mv -f ".deps/traceType.Tpo" ".deps/traceType.Po"; else rm -f ".deps/traceType.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT xalloc.o -MD -MP -MF ".deps/xalloc.Tpo" -c -o xalloc.o `test -f '../utils/xalloc.c' || echo './'`../utils/xalloc.c; \<br />then mv -f ".deps/xalloc.Tpo" ".deps/xalloc.Po"; else rm -f ".deps/xalloc.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT vlen.o -MD -MP -MF ".deps/vlen.Tpo" -c -o vlen.o `test -f '../utils/vlen.c' || echo './'`../utils/vlen.c; \<br />then mv -f ".deps/vlen.Tpo" ".deps/vlen.Po"; else rm -f ".deps/vlen.Tpo"; exit 1; fi<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT hash_table.o -MD -MP -MF ".deps/hash_table.Tpo" -c -o hash_table.o `test -f '../utils/hash_table.c' || echo './'`../utils/hash_table.c; \<br />then mv -f ".deps/hash_table.Tpo" ".deps/hash_table.Po"; else rm -f ".deps/hash_table.Tpo"; exit 1; fi<br />../utils/hash_table.c: In function &lsquo;HashFileOpen&rsquo;:<br />../utils/hash_table.c:920:21: warning: field precision specifier &lsquo;.*&rsquo; expects argument of type &lsquo;int&rsquo;, but argument 3 has type &lsquo;long int&rsquo; [-Wformat=]<br /> sprintf(aname, "%.*s%s", cp-fname+1, fname, hf-&gt;archive);<br /> ^<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT mFILE.o -MD -MP -MF ".deps/mFILE.Tpo" -c -o mFILE.o `test -f '../utils/mFILE.c' || echo './'`../utils/mFILE.c; \<br />then mv -f ".deps/mFILE.Tpo" ".deps/mFILE.Po"; else rm -f ".deps/mFILE.Tpo"; exit 1; fi<br />rm -f libread.a<br />ar cru libread.a Read.o scf_extras.o translate.o compression.o ztr.o ztr_translate.o fpoint.o seqIOABI.o seqIOALF.o ctfCompress.o seqIOCTF.o expFileIO.o seqIOPlain.o misc_scf.o read_scf.o write_scf.o array.o compress.o error.o files.o find.o mach-io.o open_trace_file.o read_alloc.o strings.o traceType.o xalloc.o vlen.o hash_table.o mFILE.o <br />ar: `u' modifier ignored since `D' is the default (see `U')<br />ranlib libread.a<br />make[2]: Leaving directory '/home/jitendra/Downloads/io_lib-1.9.0/read'<br />Making all in progs<br />make[2]: Entering directory '/home/jitendra/Downloads/io_lib-1.9.0/progs'<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT convert_trace.o -MD -MP -MF ".deps/convert_trace.Tpo" -c -o convert_trace.o convert_trace.c; \<br />then mv -f ".deps/convert_trace.Tpo" ".deps/convert_trace.Po"; else rm -f ".deps/convert_trace.Tpo"; exit 1; fi<br />gcc -fPIC -o convert_trace convert_trace.o ../read/libread.a -lz -lm <br />../read/libread.a(open_trace_file.o): In function `find_file_url':<br />open_trace_file.c:(.text+0xaf4): warning: the use of `tempnam' is dangerous, better use `mkstemp'<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT makeSCF.o -MD -MP -MF ".deps/makeSCF.Tpo" -c -o makeSCF.o makeSCF.c; \<br />then mv -f ".deps/makeSCF.Tpo" ".deps/makeSCF.Po"; else rm -f ".deps/makeSCF.Tpo"; exit 1; fi<br />gcc -fPIC -o makeSCF makeSCF.o ../read/libread.a -lz -lm <br />../read/libread.a(open_trace_file.o): In function `find_file_url':<br />open_trace_file.c:(.text+0xaf4): warning: the use of `tempnam' is dangerous, better use `mkstemp'<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT extract_seq.o -MD -MP -MF ".deps/extract_seq.Tpo" -c -o extract_seq.o extract_seq.c; \<br />then mv -f ".deps/extract_seq.Tpo" ".deps/extract_seq.Po"; else rm -f ".deps/extract_seq.Tpo"; exit 1; fi<br />gcc -fPIC -o extract_seq extract_seq.o ../read/libread.a -lz -lm <br />../read/libread.a(open_trace_file.o): In function `find_file_url':<br />open_trace_file.c:(.text+0xaf4): warning: the use of `tempnam' is dangerous, better use `mkstemp'<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT index_tar.o -MD -MP -MF ".deps/index_tar.Tpo" -c -o index_tar.o index_tar.c; \<br />then mv -f ".deps/index_tar.Tpo" ".deps/index_tar.Po"; else rm -f ".deps/index_tar.Tpo"; exit 1; fi<br />gcc -fPIC -o index_tar index_tar.o <br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT scf_dump.o -MD -MP -MF ".deps/scf_dump.Tpo" -c -o scf_dump.o scf_dump.c; \<br />then mv -f ".deps/scf_dump.Tpo" ".deps/scf_dump.Po"; else rm -f ".deps/scf_dump.Tpo"; exit 1; fi<br />gcc -fPIC -o scf_dump scf_dump.o ../read/libread.a -lz -lm <br />../read/libread.a(open_trace_file.o): In function `find_file_url':<br />open_trace_file.c:(.text+0xaf4): warning: the use of `tempnam' is dangerous, better use `mkstemp'<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT scf_info.o -MD -MP -MF ".deps/scf_info.Tpo" -c -o scf_info.o scf_info.c; \<br />then mv -f ".deps/scf_info.Tpo" ".deps/scf_info.Po"; else rm -f ".deps/scf_info.Tpo"; exit 1; fi<br />gcc -fPIC -o scf_info scf_info.o ../read/libread.a -lz -lm <br />../read/libread.a(open_trace_file.o): In function `find_file_url':<br />open_trace_file.c:(.text+0xaf4): warning: the use of `tempnam' is dangerous, better use `mkstemp'<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT scf_update.o -MD -MP -MF ".deps/scf_update.Tpo" -c -o scf_update.o scf_update.c; \<br />then mv -f ".deps/scf_update.Tpo" ".deps/scf_update.Po"; else rm -f ".deps/scf_update.Tpo"; exit 1; fi<br />gcc -fPIC -o scf_update scf_update.o ../read/libread.a -lz -lm <br />../read/libread.a(open_trace_file.o): In function `find_file_url':<br />open_trace_file.c:(.text+0xaf4): warning: the use of `tempnam' is dangerous, better use `mkstemp'<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT get_comment.o -MD -MP -MF ".deps/get_comment.Tpo" -c -o get_comment.o get_comment.c; \<br />then mv -f ".deps/get_comment.Tpo" ".deps/get_comment.Po"; else rm -f ".deps/get_comment.Tpo"; exit 1; fi<br />gcc -fPIC -o get_comment get_comment.o ../read/libread.a -lz -lm <br />../read/libread.a(open_trace_file.o): In function `find_file_url':<br />open_trace_file.c:(.text+0xaf4): warning: the use of `tempnam' is dangerous, better use `mkstemp'<br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT hash_tar.o -MD -MP -MF ".deps/hash_tar.Tpo" -c -o hash_tar.o hash_tar.c; \<br />then mv -f ".deps/hash_tar.Tpo" ".deps/hash_tar.Po"; else rm -f ".deps/hash_tar.Tpo"; exit 1; fi<br />gcc -fPIC -o hash_tar hash_tar.o ../read/libread.a -lz -lm <br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT hash_extract.o -MD -MP -MF ".deps/hash_extract.Tpo" -c -o hash_extract.o hash_extract.c; \<br />then mv -f ".deps/hash_extract.Tpo" ".deps/hash_extract.Po"; else rm -f ".deps/hash_extract.Tpo"; exit 1; fi<br />gcc -fPIC -o hash_extract hash_extract.o ../read/libread.a -lz -lm <br />if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../read -I../alf -I../abi -I../ctf -I../ztr -I../plain -I../scf -I../exp_file -I../utils -I/usr/local/include -fPIC -MT trace_dump.o -MD -MP -MF ".deps/trace_dump.Tpo" -c -o trace_dump.o trace_dump.c; \<br />then mv -f ".deps/trace_dump.Tpo" ".deps/trace_dump.Po"; else rm -f ".deps/trace_dump.Tpo"; exit 1; fi<br />gcc -fPIC -o trace_dump trace_dump.o ../read/libread.a -lz -lm <br />../read/libread.a(open_trace_file.o): In function `find_file_url':<br />open_trace_file.c:(.text+0xaf4): warning: the use of `tempnam' is dangerous, better use `mkstemp'<br />make[2]: Leaving directory '/home/jitendra/Downloads/io_lib-1.9.0/progs'<br />make[2]: Entering directory '/home/jitendra/Downloads/io_lib-1.9.0'<br />make[2]: Leaving directory '/home/jitendra/Downloads/io_lib-1.9.0'<br />make[1]: Leaving directory '/home/jitendra/Downloads/io_lib-1.9.0'<br /><br />jitendra@jitendra-UNLOCK-INSTALL[io_lib-1.9.0] sudo make install []<br />[sudo] password for jitendra: <br />Making install in read<br />make[1]: Entering directory '/home/jitendra/Downloads/io_lib-1.9.0/read'<br />make[2]: Entering directory '/home/jitendra/Downloads/io_lib-1.9.0/read'<br />test -z "/usr/local/lib" || mkdir -p -- "/usr/local/lib"<br /> /usr/bin/install -c -m 644 'libread.a' '/usr/local/lib/libread.a'<br /> ranlib '/usr/local/lib/libread.a'<br />make[2]: Nothing to be done for 'install-data-am'.<br />make[2]: Leaving directory '/home/jitendra/Downloads/io_lib-1.9.0/read'<br />make[1]: Leaving directory '/home/jitendra/Downloads/io_lib-1.9.0/read'<br />Making install in progs<br />make[1]: Entering directory '/home/jitendra/Downloads/io_lib-1.9.0/progs'<br />make[2]: Entering directory '/home/jitendra/Downloads/io_lib-1.9.0/progs'<br />test -z "/usr/local/bin" || mkdir -p -- "/usr/local/bin"<br /> /usr/bin/install -c 'convert_trace' '/usr/local/bin/convert_trace'<br /> /usr/bin/install -c 'makeSCF' '/usr/local/bin/makeSCF'<br /> /usr/bin/install -c 'extract_seq' '/usr/local/bin/extract_seq'<br /> /usr/bin/install -c 'index_tar' '/usr/local/bin/index_tar'<br /> /usr/bin/install -c 'scf_dump' '/usr/local/bin/scf_dump'<br /> /usr/bin/install -c 'scf_info' '/usr/local/bin/scf_info'<br /> /usr/bin/install -c 'scf_update' '/usr/local/bin/scf_update'<br /> /usr/bin/install -c 'get_comment' '/usr/local/bin/get_comment'<br /> /usr/bin/install -c 'hash_tar' '/usr/local/bin/hash_tar'<br /> /usr/bin/install -c 'hash_extract' '/usr/local/bin/hash_extract'<br /> /usr/bin/install -c 'trace_dump' '/usr/local/bin/trace_dump'<br />make[2]: Nothing to be done for 'install-data-am'.<br />make[2]: Leaving directory '/home/jitendra/Downloads/io_lib-1.9.0/progs'<br />make[1]: Leaving directory '/home/jitendra/Downloads/io_lib-1.9.0/progs'<br />make[1]: Entering directory '/home/jitendra/Downloads/io_lib-1.9.0'<br />make[2]: Entering directory '/home/jitendra/Downloads/io_lib-1.9.0'<br />make[2]: Nothing to be done for 'install-exec-am'.<br />test -z "/usr/local/man/man3" || mkdir -p -- "/usr/local/man/man3"<br /> /usr/bin/install -c -m 644 './man/man3/exp2read.3' '/usr/local/man/man3/exp2read.3'<br /> /usr/bin/install -c -m 644 './man/man3/ExperimentFile.3' '/usr/local/man/man3/ExperimentFile.3'<br /> /usr/bin/install -c -m 644 './man/man3/fread_reading.3' '/usr/local/man/man3/fread_reading.3'<br /> /usr/bin/install -c -m 644 './man/man3/fread_scf.3' '/usr/local/man/man3/fread_scf.3'<br /> /usr/bin/install -c -m 644 './man/man3/fwrite_reading.3' '/usr/local/man/man3/fwrite_reading.3'<br /> /usr/bin/install -c -m 644 './man/man3/fwrite_scf.3' '/usr/local/man/man3/fwrite_scf.3'<br /> /usr/bin/install -c -m 644 './man/man3/read2exp.3' '/usr/local/man/man3/read2exp.3'<br /> /usr/bin/install -c -m 644 './man/man3/read2scf.3' '/usr/local/man/man3/read2scf.3'<br /> /usr/bin/install -c -m 644 './man/man3/read_allocate.3' '/usr/local/man/man3/read_allocate.3'<br /> /usr/bin/install -c -m 644 './man/man3/read_deallocate.3' '/usr/local/man/man3/read_deallocate.3'<br /> /usr/bin/install -c -m 644 './man/man3/read_reading.3' '/usr/local/man/man3/read_reading.3'<br /> /usr/bin/install -c -m 644 './man/man3/read_scf.3' '/usr/local/man/man3/read_scf.3'<br /> /usr/bin/install -c -m 644 './man/man3/read_scf_header.3' '/usr/local/man/man3/read_scf_header.3'<br /> /usr/bin/install -c -m 644 './man/man3/scf2read.3' '/usr/local/man/man3/scf2read.3'<br /> /usr/bin/install -c -m 644 './man/man3/write_reading.3' '/usr/local/man/man3/write_reading.3'<br /> /usr/bin/install -c -m 644 './man/man3/write_scf.3' '/usr/local/man/man3/write_scf.3'<br /> /usr/bin/install -c -m 644 './man/man3/write_scf_header.3' '/usr/local/man/man3/write_scf_header.3'<br />test -z "/usr/local/man/man4" || mkdir -p -- "/usr/local/man/man4"<br /> /usr/bin/install -c -m 644 './man/man4/Read.4' '/usr/local/man/man4/Read.4'<br />test -z "/usr/local/include/io_lib" || mkdir -p -- "/usr/local/include/io_lib"<br /> /usr/bin/install -c -m 644 'read/Read.h' '/usr/local/include/io_lib/Read.h'<br /> /usr/bin/install -c -m 644 'read/scf_extras.h' '/usr/local/include/io_lib/scf_extras.h'<br /> /usr/bin/install -c -m 644 'read/translate.h' '/usr/local/include/io_lib/translate.h'<br /> /usr/bin/install -c -m 644 'abi/abi.h' '/usr/local/include/io_lib/abi.h'<br /> /usr/bin/install -c -m 644 'abi/fpoint.h' '/usr/local/include/io_lib/fpoint.h'<br /> /usr/bin/install -c -m 644 'abi/seqIOABI.h' '/usr/local/include/io_lib/seqIOABI.h'<br /> /usr/bin/install -c -m 644 'alf/alf.h' '/usr/local/include/io_lib/alf.h'<br /> /usr/bin/install -c -m 644 'ctf/seqIOCTF.h' '/usr/local/include/io_lib/seqIOCTF.h'<br /> /usr/bin/install -c -m 644 'exp_file/expFileIO.h' '/usr/local/include/io_lib/expFileIO.h'<br /> /usr/bin/install -c -m 644 'plain/plain.h' '/usr/local/include/io_lib/plain.h'<br /> /usr/bin/install -c -m 644 'scf/scf.h' '/usr/local/include/io_lib/scf.h'<br /> /usr/bin/install -c -m 644 'utils/array.h' '/usr/local/include/io_lib/array.h'<br /> /usr/bin/install -c -m 644 'utils/compress.h' '/usr/local/include/io_lib/compress.h'<br /> /usr/bin/install -c -m 644 'utils/error.h' '/usr/local/include/io_lib/error.h'<br /> /usr/bin/install -c -m 644 'utils/mach-io.h' '/usr/local/include/io_lib/mach-io.h'<br /> /usr/bin/install -c -m 644 'utils/misc.h' '/usr/local/include/io_lib/misc.h'<br /> /usr/bin/install -c -m 644 'utils/open_trace_file.h' '/usr/local/include/io_lib/open_trace_file.h'<br /> /usr/bin/install -c -m 644 'utils/tar_format.h' '/usr/local/include/io_lib/tar_format.h'<br /> /usr/bin/install -c -m 644 'utils/traceType.h' '/usr/local/include/io_lib/traceType.h'<br /> /usr/bin/install -c -m 644 'utils/xalloc.h' '/usr/local/include/io_lib/xalloc.h'<br /> /usr/bin/install -c -m 644 'utils/mFILE.h' '/usr/local/include/io_lib/mFILE.h'<br /> /usr/bin/install -c -m 644 'utils/stdio_hack.h' '/usr/local/include/io_lib/stdio_hack.h'<br /> /usr/bin/install -c -m 644 'utils/vlen.h' '/usr/local/include/io_lib/vlen.h'<br /> /usr/bin/install -c -m 644 'utils/hash_table.h' '/usr/local/include/io_lib/hash_table.h'<br /> /usr/bin/install -c -m 644 'utils/os.h' '/usr/local/include/io_lib/os.h'<br /> /usr/bin/install -c -m 644 'ztr/compression.h' '/usr/local/include/io_lib/compression.h'<br /> /usr/bin/install -c -m 644 'ztr/ztr.h' '/usr/local/include/io_lib/ztr.h'<br />make[2]: Leaving directory '/home/jitendra/Downloads/io_lib-1.9.0'<br />make[1]: Leaving directory '/home/jitendra/Downloads/io_lib-1.9.0'</p><p><strong>3. Now install Bio::SCF</strong></p><p>Now follows these steps:</p><p>tar zxf Bio::SCF.tar<br />cd Bio::SCF<br />perl Makefile.PL<br />make<br />make test<br />make install</p><p>jitendra@jitendra-UNLOCK-INSTALL[Bio-SCF-1.01] perl Makefile.PL []<br />Checking if your kit is complete...<br />Looks good<br />Generating a Unix-style Makefile<br />Writing Makefile for Bio::SCF<br />Writing MYMETA.yml and MYMETA.json<br />jitendra@jitendra-UNLOCK-INSTALL[Bio-SCF-1.01] make []<br />cp SCF.pm blib/lib/Bio/SCF.pm<br />cp SCF/Arrays.pm blib/lib/Bio/SCF/Arrays.pm<br />Running Mkbootstrap for Bio::SCF ()<br />chmod 644 "SCF.bs"<br />"/usr/bin/perl" "/usr/share/perl/5.22/ExtUtils/xsubpp" -typemap "/usr/share/perl/5.22/ExtUtils/typemap" SCF.xs &gt; SCF.xsc &amp;&amp; mv SCF.xsc SCF.c<br />Please specify prototyping behavior for SCF.xs (see perlxs manual)<br />x86_64-linux-gnu-gcc -c -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g -DVERSION=\"1.01\" -DXS_VERSION=\"1.01\" -fPIC "-I/usr/lib/x86_64-linux-gnu/perl/5.22/CORE" -DLITTLE_ENDIAN SCF.c<br />In file included from /usr/lib/x86_64-linux-gnu/perl/5.22/CORE/perl.h:5546:0,<br /> from SCF.xs:5:<br />SCF.xs: In function &lsquo;XS_Bio__SCF_get_scf_pointer&rsquo;:<br />SCF.xs:57:20: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]<br /> ret_val = newSViv((int)scf_data);<br /> ^<br />/usr/lib/x86_64-linux-gnu/perl/5.22/CORE/embed.h:402:40: note: in definition of macro &lsquo;newSViv&rsquo;<br /> #define newSViv(a) Perl_newSViv(aTHX_ a)<br /> ^<br />SCF.xs: In function &lsquo;XS_Bio__SCF_get_scf_fpointer&rsquo;:<br />SCF.xs:80:20: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]<br /> ret_val = newSViv((int)scf_data);<br /> ^<br />/usr/lib/x86_64-linux-gnu/perl/5.22/CORE/embed.h:402:40: note: in definition of macro &lsquo;newSViv&rsquo;<br /> #define newSViv(a) Perl_newSViv(aTHX_ a)<br /> ^<br />SCF.xs: In function &lsquo;XS_Bio__SCF_scf_free&rsquo;:<br />SCF.xs:89:17: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]<br /> scf_deallocate((Scf *)scf_pointer);<br /> ^<br />SCF.xs: In function &lsquo;XS_Bio__SCF_get_comments&rsquo;:<br />SCF.xs:95:18: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]<br /> Scf *scf_data = (Scf *)scf_pointer;<br /> ^<br />SCF.xs: In function &lsquo;XS_Bio__SCF_set_comments&rsquo;:<br />SCF.xs:108:18: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]<br /> Scf *scf_data = (Scf *)scf_pointer;<br /> ^<br />SCF.xs: In function &lsquo;XS_Bio__SCF_scf_write&rsquo;:<br />SCF.xs:121:18: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]<br /> Scf *scf_data = (Scf *)scf_pointer;<br /> ^<br />SCF.xs: In function &lsquo;XS_Bio__SCF_scf_fwrite&rsquo;:<br />SCF.xs:137:18: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]<br /> Scf *scf_data = (Scf *)scf_pointer;<br /> ^<br />SCF.xs: In function &lsquo;XS_Bio__SCF_get_from_header&rsquo;:<br />SCF.xs:159:18: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]<br /> Scf *scf_data = (Scf *)scf_pointer;<br /> ^<br />SCF.xs: In function &lsquo;XS_Bio__SCF_get_at&rsquo;:<br />SCF.xs:186:18: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]<br /> Scf *scf_data = (Scf *)scf_pointer;<br /> ^<br />SCF.xs: In function &lsquo;XS_Bio__SCF_set_base_at&rsquo;:<br />SCF.xs:242:18: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]<br /> Scf *scf_data = (Scf *)scf_pointer;<br /> ^<br />SCF.xs: In function &lsquo;XS_Bio__SCF_set_at&rsquo;:<br />SCF.xs:255:18: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]<br /> Scf *scf_data = (Scf *)scf_pointer;<br /> ^<br />rm -f blib/arch/auto/Bio/SCF/SCF.so<br />x86_64-linux-gnu-gcc -shared -L/usr/local/lib -fstack-protector-strong SCF.o -o blib/arch/auto/Bio/SCF/SCF.so \<br /> -lread -lz \<br /> <br />/usr/local/lib/libread.a(open_trace_file.o): In function `find_file_url':<br />open_trace_file.c:(.text+0xaf4): warning: the use of `tempnam' is dangerous, better use `mkstemp'<br />chmod 755 blib/arch/auto/Bio/SCF/SCF.so<br />"/usr/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- SCF.bs blib/arch/auto/Bio/SCF/SCF.bs 644<br />Manifying 1 pod document</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/37590/parallel-processing-with-perl</guid>
	<pubDate>Sat, 25 Aug 2018 11:32:40 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/37590/parallel-processing-with-perl</link>
	<title><![CDATA[Parallel Processing with Perl !]]></title>
	<description><![CDATA[<p>Here is a small tutorial on how to make best use of multiple processors for bioinformatics analysis. One best way is using perl threads and forks. Knowing how these threads and forks work is very important before implementing them. Getting to know how these work would be really useful before reading this tutorial.</p><p>Many times in bioinformatics we need to deal with huge datasets which&nbsp; are more than 100GB size. The traditional way to analysis a file is using the while loop</p><p>while (FILE){</p><p>Do something;</p><p>}</p><p>This is very slow(since we are using only one processor) and if we have 500 million lines in the dataset it takes more than a day to iterate through the whole dataset. So how do we make best use of all our processors and get the work done quickly?</p><p>Here is a very simple and efficient technique with perl which i have been using. I am&nbsp; more inclined towards using perl fork than perl threads.</p><p>One of the oldest way to fork is</p><blockquote><p>my $fork = fork();<br />if($fork){&nbsp;&nbsp;&nbsp;<br />push (@childs,$fork);&nbsp;<br />}<br />elseif($fork==0){<br /><strong>your code here;</strong><br />exit(0);<br />}<br />else{die &ldquo;Couldnt fork : $!&rdquo;;}</p><p>## wait for the child process to finish<br />foreach(@childs){<br />my $tmp=waitid($_,0);<br />}</p></blockquote><p>what a fork does is it creates a child process and takes the variables and code with it to analyze it separately (detached from the parent process) and thus a separate process is created( which usually runs on a separate processor). Thats it!! One big disadvantage of forking is its very difficult to share variables among the different processes. I will show you how to do it easily but still it has its own drawbacks.</p><blockquote><p>Okie, now if you really do not want to use fork in your code, that&rsquo;s okie too..There are many useful modules which do it for you very efficiently. One really useful module is Parallel::ForkManager. You can use Parallel::ForkManager to manage the number of forks you want to generate (number of processors you want to use).</p><p><strong>Simple usage:</strong><br />use Parallel::ForkManager;<br />my $max_processors=8;<br />my $fork= new Parallel::ForkManager($max_processors);<br />foreach (@dna) {<br />$fork-&gt;start and next; # do the fork<br /><strong>you code here;</strong><br />$fork-&gt;finish; # do the exit in the child process<br />}<br />$pm-&gt;wait_all_children;</p></blockquote><p>so you will be generating 8 forks which do the same thing for your each element of array. when one child finishes, Parallel::ForkManager generates a new one and thus you will be using all your processors to analyze the data. Now, if you have generated 8 child processes and want to write the data to one file. You need to lock the file to do this, because you will have problems with the buffering. You can lock the file using flock command.</p><blockquote><p>open (my $QUAL, &ldquo;myfile.txt&rdquo;);<br />flock $QUAL, LOCK_EX or die &ldquo;cant lock file $!&rdquo;;<br />print $QUAL &ldquo;$output&rdquo;;<br />flock $QUAL, LOCK_UN or die &ldquo;$!&rdquo;;<br />close $QUAL;</p></blockquote><p>I would not suggest using flock when dealing with multiple processes because it will decrease the processing efficiency( each child process must wait for the lock to be released by the other child process). Instead, I would suggest each fork writing to a separate file and after the processing just concatenating them.</p><p><strong>Putting it all together, If you have 100GB data you can do this</strong></p><blockquote><p><strong>step 1</strong>&nbsp;: split the dataset equally according to number of processors you have. this may take a few hours(about 2-3 hrs for 100GB file)<br />You can use unix &ldquo;split&rdquo; command for this<br />for example:<br />my $number_split=int($number_of_entries_in_your_dataset/$max_processors);<br />my $split_Files=`split -l $number_split &ldquo;your_file.fasta&rdquo; &ldquo;file_name&rdquo;`;</p><p><strong>step2</strong>: open you directory comtaining you split files and start Parallel::ForkManager.<br /><strong>For example:</strong><br />opendir(DIRECTORY, $split_files_directory) or die $!; ### open the directory<br />my $fork= new Parallel::ForkManager($max_processors);<br />while (my $file = readdir(DIRECTORY)) { ### read the directory<br />if($file=~/^\./){next;}<br />print $file,&rdquo;\n&rdquo;;<br />########## Start fork ##########<br />my $pid= $super_fork-&gt;start and next;<br /><strong>Whatever you want to do with the split file ;</strong><br /><strong>analyze my piece of $file;</strong><br />######### end fork ###############<br />$super_fork-&gt;finish;<br />}<br />$super_fork-&gt;wait_all_children;</p></blockquote><p>So basically each processor will be active with its piece of data (split file) and thus you have created 8 processes at one time which run without interfering with the other process. I again will not suggest writing output from each child process to one file(for reasons above). Write output from each fork to a separate file and finally concatenate them. Thats it, you have just increased your program speed by 8 times!! Isnt it easy?</p><p><strong>Note:</strong><br />You may worry about concatenation of the output each child generates, since it does take some time(remember 100GB). I think now you can use a mysql database LOAD DATA LOCAL INFILE command to load all the files into a single table(Should take about 3hrs for 100Gb dataset) and then export the whole table into one file. This should be faster than just concatenating them using &ldquo;cat&rdquo; command.(correct me if I am wrong)</p><p>Or much simpler way is to use pipes</p><p>cat output_dir/* | my_pipe or my_pipe &lt;(file1) final_file;</p><p>Thats it guys!! Enjoy programming and please do comment. I am not a computer scientist so forgive me for any mistakes and if any please report them. Thank you.</p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/40736/list-of-perl-special-symbols</guid>
	<pubDate>Tue, 28 Jan 2020 06:44:27 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/40736/list-of-perl-special-symbols</link>
	<title><![CDATA[List of perl special symbols !]]></title>
	<description><![CDATA[<p><span>There are some variables which have a predefined and special meaning in Perl. They are the variables that use punctuation characters after the usual variable indicator ($, @, or %), such as $_ ( explained below ).</span></p><p>Special Symbols &ndash; File handlers</p><blockquote><p>$@ Perl error string</p><p>$! Error number from C, &lsquo;errno&rsquo;</p><p>$^E Extended OS error info, such as &lsquo;CDROM tray not closed&rsquo;</p><p>$? Exit status from last process</p><p>$AGRV &ndash; name of current file</p><p>@ARGV &ndash; command line arguments</p><p>$ARGV &ndash; special file handle for command line filenames</p><p>$. &ndash; current line number</p><p>$/ - input line delimiter</p><p>$\ - output line delimiter</p><p>$% - current page number</p><p>$&amp;/${^MATCH} &ndash; last successful matching string</p><p>$`/${^PREMATCH} &ndash; the string preceding the last matching string</p><p>$&rsquo;/${^POSTMATCH} &ndash; the string following the last matching string</p><p>$1, $2, &hellip; - matching groups in the parentheses in pattern</p></blockquote><p>More at&nbsp;<a href="https://www.tutorialspoint.com/perl/perl_special_variables.htm">https://www.tutorialspoint.com/perl/perl_special_variables.htm</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/44371/steps-to-find-all-the-repeats-in-the-genome</guid>
	<pubDate>Thu, 31 Aug 2023 02:43:28 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/44371/steps-to-find-all-the-repeats-in-the-genome</link>
	<title><![CDATA[Steps to find all the repeats in the genome !]]></title>
	<description><![CDATA[<div><p>To find repeats in a genome from 2 to 9 length using a Perl script, you can use the RepeatMasker tool with the "--length" option<a href="https://mobilednajournal.biomedcentral.com/articles/10.1186/1759-8753-5-13" target="_blank">[0]</a>. Here's a step-by-step guide:</p></div><div><ol>
<li>Install RepeatMasker: First, you need to install RepeatMasker on your system. You can download it from the RepeatMasker website<a href="https://mobilednajournal.biomedcentral.com/articles/10.1186/1759-8753-5-13" target="_blank">[0]</a>.</li>
</ol></div><div><ol>
<li>Prepare the genome sequence: Make sure you have the genome sequence in a FASTA file format. Let's assume the file is named "genome.fasta".</li>
</ol><blockquote><p>./RepeatMasker -pa &lt;number_of_processors&gt; -nolow -norna -no_is -div &lt;divergence_value&gt; -lib RepeatMaskerLib.embl -gff -xsmall -small -poly -species &lt;species_name&gt; -dir &lt;output_directory&gt; -length &lt;min_length&gt;-&lt;max_length&gt; genome.fasta</p></blockquote><div><p>Replace the following placeholders with appropriate values:</p><ul>
<li><code>&lt;number_of_processors&gt;</code>: The number of processors/threads you want to use for parallel processing.</li>
<li><code>&lt;divergence_value&gt;</code>: The divergence value for the species you are analyzing. You can find divergence values for different species in the RepeatMasker documentation<a href="https://mobilednajournal.biomedcentral.com/articles/10.1186/1759-8753-5-13" target="_blank">[0]</a>.</li>
<li><code>&lt;species_name&gt;</code>: The name of the species you are analyzing.</li>
<li><code>&lt;output_directory&gt;</code>: The directory where you want the output files to be saved.</li>
<li><code>&lt;min_length&gt;</code>&nbsp;and&nbsp;<code>&lt;max_length&gt;</code>: The minimum and maximum lengths of the repeats you want to find (in this case, 2 and 9).</li>
</ul></div><div><ol>
<li>Analyze the output: RepeatMasker will generate several output files, including a .out file. You can parse this file to extract the information you need. There is a Perl tool called "one_code_to_find_them_all.pl" that can help you parse RepeatMasker output files<a href="https://mobilednajournal.biomedcentral.com/articles/10.1186/1759-8753-5-13" target="_blank">[0]</a>. You can download it from the source provided.</li>
</ol></div><div><ol>
<li>Use the provided Perl script: Once you have the "one_code_to_find_them_all.pl" script, you can run it to conveniently parse the RepeatMasker output files. Here's an example of how to use it:</li>
</ol><blockquote><p>perl one_code_to_find_them_all.pl --rm &lt;RepeatMasker_out_file&gt; --length &lt;length_file&gt;</p></blockquote></div><p>&nbsp;</p></div><div><div><p>Replace&nbsp;<code>&lt;RepeatMasker_out_file&gt;</code>&nbsp;with the path to your RepeatMasker .out file, and&nbsp;<code>&lt;length_file&gt;</code>&nbsp;with the path to a file containing the lengths of the reference elements.</p></div><div><p>This script will generate several output files, including .log.txt and .copynumber.csv, which contain quantitative information about the identified repeat elements.</p></div><div><p>Remember to adjust the parameters and options according to your specific needs and the characteristics of your genome.</p></div></div>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/33841/awesome-perl-frameworks-libraries-and-software-part-4</guid>
	<pubDate>Fri, 07 Jul 2017 04:11:54 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/33841/awesome-perl-frameworks-libraries-and-software-part-4</link>
	<title><![CDATA[Awesome perl frameworks, libraries and software - PART 4]]></title>
	<description><![CDATA[<ul>
<li><a href="https://github.com/tjstein/php5-fpm-munin-plugins">tjstein/php5-fpm-munin-plugins</a>&nbsp;- A set of Munin plugins for PHP5-FPM</li>
<li><a href="https://github.com/perusio/nginx-munin">perusio/nginx-munin</a>&nbsp;- A set of plugins for monitoring nginx with Munin</li>
<li><a href="https://github.com/openresty/lua-resty-memcached">openresty/lua-resty-memcached</a>&nbsp;- Lua memcached client driver for the ngx_lua based on the cosocket API</li>
<li><a href="https://github.com/jayjanssen/myq_gadgets">jayjanssen/myq_gadgets</a>&nbsp;- Various iostat style scripts for MySQL</li>
<li><a href="https://github.com/apt-mirror/apt-mirror">apt-mirror/apt-mirror</a>&nbsp;- Official apt-mirror source.</li>
<li><a href="https://github.com/kentaro/cinnamon">kentaro/cinnamon</a>&nbsp;- a simple deploy tool</li>
<li><a href="https://github.com/mdom/dategrep">mdom/dategrep</a>&nbsp;- print lines matching a date range</li>
<li><a href="https://github.com/kazuho/jailing">kazuho/jailing</a>&nbsp;- super-easy chroot jail builder/runner for Linux</li>
<li><a href="https://github.com/teleshoes/tpacpi-bat">teleshoes/tpacpi-bat</a>&nbsp;- ThinkPad ACPI Battery Util</li>
<li><a href="https://github.com/hechtus/squeezebox-googlemusic">hechtus/squeezebox-googlemusic</a>&nbsp;- Squeezebox (Logitech Media Server) Plugin for Google Play Music</li>
<li><a href="https://github.com/hexchat/hexchat-addons">hexchat/hexchat-addons</a>&nbsp;- Plugins and scripts made for HexChat</li>
<li><a href="https://github.com/berekuk/Ubic">berekuk/Ubic</a>&nbsp;- Polymorphic service manager.</li>
<li><a href="https://github.com/deryckoe/Wordpress-Syntax-Mode-for-Coda-2">deryckoe/Wordpress-Syntax-Mode-for-Coda-2</a>&nbsp;- Wordpress Syntax Mode working on Coda 2.0.2</li>
<li><a href="https://github.com/squentin/gmusicbrowser">squentin/gmusicbrowser</a>&nbsp;- jukebox for large collections of music</li>
<li><a href="https://github.com/autodl-community/autodl-irssi">autodl-community/autodl-irssi</a>&nbsp;- A community-driven fork of autodl-irssi</li>
<li><a href="https://github.com/yoshiki/markdown2impress">yoshiki/markdown2impress</a>&nbsp;- markdown2impress is script to convert markdown into presentation using impress.js.</li>
<li><a href="https://github.com/pagespeed/cpanel">pagespeed/cpanel</a>&nbsp;- mod_pagespeed module for CPanel WHM</li>
<li><a href="https://github.com/liyanage/xcode-text-macros">liyanage/xcode-text-macros</a>&nbsp;- Some XCode text macros plus a macro overview HTML page generator</li>
<li><a href="https://github.com/erlang/eep">erlang/eep</a>&nbsp;- Erlang Enhancement ProposalS</li>
<li><a href="https://github.com/Koha-Community/Koha">Koha-Community/Koha</a>&nbsp;- Koha is a free software integrated library system (ILS). Koha is distributed under the GNU GPL version 3 or later. Note: this is a synced mirror of the official Koha repo.</li>
<li><a href="https://github.com/vti/bootylicious">vti/bootylicious</a>&nbsp;- LIghtweight blog engine on Mojo steroids!</li>
<li><a href="https://github.com/tokuhirom/Furl">tokuhirom/Furl</a>&nbsp;- pretty fast http client library for perl5</li>
<li><a href="https://github.com/miyagawa/Carmel">miyagawa/Carmel</a>&nbsp;- CPAN Artifact Repository Manager</li>
<li><a href="https://github.com/combinatorylogic/clike">combinatorylogic/clike</a>&nbsp;- A simple C-like language compiler with an extensible syntax and typed macros support</li>
<li><a href="https://github.com/cloudflare/CloudFlare-Tools">cloudflare/CloudFlare-Tools</a>&nbsp;- Tools which enable you to get the full benefit of using the CloudFlare service.</li>
<li><a href="https://github.com/untoldwind/alfred2-layout">untoldwind/alfred2-layout</a>&nbsp;- Alfred 2 Layout workflow</li>
<li><a href="https://github.com/nothingmuch/kiokudb">nothingmuch/kiokudb</a>&nbsp;- KiokuDB Core</li>
<li><a href="https://github.com/katzgrau/chip">katzgrau/chip</a>&nbsp;- A log file multiplexer and monitor. Tail multiple remote or local log files, set actions, and more. A friend to every developer and system admin. Alpha.</li>
<li><a href="https://github.com/SethRobertson/git-what-branch">SethRobertson/git-what-branch</a>&nbsp;- Discover what branch a commit is on, or how it got to a named branch</li>
<li><a href="https://github.com/shabble/irssi-docs">shabble/irssi-docs</a>&nbsp;- In-depth documentation of the Irssi IRC Client</li>
<li><a href="https://github.com/kappa/yadisk-sync">kappa/yadisk-sync</a>&nbsp;- Linux syncronizer for Yandex.Disk</li>
<li><a href="https://github.com/dotse/dnscheck">dotse/dnscheck</a>&nbsp;- DNSCheck code, DNS delegation quality checker.</li>
<li><a href="https://github.com/darold/pgcluu">darold/pgcluu</a>&nbsp;- PostgreSQL Cluster performances monitoring and auditing tool</li>
<li><a href="https://github.com/cfengine/design-center">cfengine/design-center</a>&nbsp;- CFEngine community-contributed content</li>
<li><a href="https://github.com/bestpractical/sd">bestpractical/sd</a>&nbsp;- A distributed issue tracker; upstream is now&nbsp;<a href="http://gitorious.org/prophet">http://gitorious.org/prophet</a></li>
<li><a href="https://github.com/masak/proto">masak/proto</a>&nbsp;- A a hyper-lightweight dependency tracking and project installation system</li>
<li><a href="https://github.com/liblime/LibLime-Koha">liblime/LibLime-Koha</a>&nbsp;- LibLime Koha is the most mature of the open source ILS applications. Based on the ground-breaking 3.0 platform (derived from the original Koha offering of 1999), LibLime Koha is a completely web-based open source ILS, with library staff, systems librarians, and library users all accessing LibLime Koha through a web browser. Relying on the MySQL relational database, all LibLime Koha data is readily accessible.</li>
<li><a href="https://github.com/ingydotnet/...">ingydotnet/...</a>&nbsp;- Dot Dot Dot</li>
<li><a href="https://github.com/gusmaskowitz/apachebuddy.pl">gusmaskowitz/apachebuddy.pl</a>&nbsp;- Not written by me, maintained by me : Apachebuddy.pl</li>
<li><a href="https://github.com/zaf/asterisk-googletts">zaf/asterisk-googletts</a>&nbsp;- Asterisk AGI script that uses Google's translate text to speech service.</li>
<li><a href="https://github.com/openresty/lua-resty-core">openresty/lua-resty-core</a>&nbsp;- New FFI-based API for lua-nginx-module</li>
<li><a href="https://github.com/openSUSE/kiwi">openSUSE/kiwi</a>&nbsp;- KIWI OS Image builder</li>
<li><a href="https://github.com/FastVPSEestiOu/Antidoto">FastVPSEestiOu/Antidoto</a>&nbsp;- Linux antimalware and antirootkit tool</li>
<li><a href="https://github.com/sorin-ionescu/dotfiles">sorin-ionescu/dotfiles</a>&nbsp;- My command line life.</li>
<li><a href="https://github.com/oetiker/smokeping-3.x">oetiker/smokeping-3.x</a>&nbsp;- reengineered SmokePing, using Extopus as its frontend</li>
<li><a href="https://github.com/nekokak/p5-Teng">nekokak/p5-Teng</a>&nbsp;- simple DBI wrapper/ORMapper</li>
<li><a href="https://github.com/faiproject/fai">faiproject/fai</a>&nbsp;- non-interactive system to install, customize and manage Linux systems</li>
<li><a href="https://github.com/abh/ntppool">abh/ntppool</a>&nbsp;- NTP Pool Project</li>
<li><a href="https://github.com/willixix/naglio-plugins">willixix/naglio-plugins</a>&nbsp;- Monitoring Plugins by William Leibzon</li>
<li><a href="https://github.com/stealth/troubleshooter">stealth/troubleshooter</a>&nbsp;- setroubleshootd xSports</li>
<li><a href="https://github.com/openresty/lua-resty-string">openresty/lua-resty-string</a>&nbsp;- String utilities and common hash functions for ngx_lua and LuaJIT</li>
<li><a href="https://github.com/mdxp/cookbooks">mdxp/cookbooks</a>&nbsp;- My custom Cookbooks for Chef</li>
<li><a href="https://github.com/ingydotnet/vroom-pm">ingydotnet/vroom-pm</a>&nbsp;- Vim Based Slideshow Presentations</li>
<li><a href="https://github.com/iamcal/Flickr-StatsD">iamcal/Flickr-StatsD</a>&nbsp;- Mirror of code.flickr.com: Flickr-StatsD</li>
<li><a href="https://github.com/ernstsson/Arqua">ernstsson/Arqua</a>&nbsp;- Architectural quality analysis tool for GCC project</li>
<li><a href="https://github.com/qiaoxueshi/FLEXLoader">qiaoxueshi/FLEXLoader</a>&nbsp;- A jailbreak iOS device tweak which can load FLEX dynamiclly</li>
<li><a href="https://github.com/punchdrunker/iOSEmoji">punchdrunker/iOSEmoji</a>&nbsp;- information about unicode6 emoji used in iOS5</li>
<li><a href="https://github.com/openresty/replace-filter-nginx-module">openresty/replace-filter-nginx-module</a>&nbsp;- Streaming regular expression replacement in response bodies</li>
<li><a href="https://github.com/djabberd/DJabberd">djabberd/DJabberd</a>&nbsp;- The main DJabberd source</li>
<li><a href="https://github.com/darold/pgFormatter">darold/pgFormatter</a>&nbsp;- A PostgreSQL SQL syntax beautifier that can work as a console program or as a CGI. Download from&nbsp;<a href="https://sourceforge.net/p/pgformatter/">https://sourceforge.net/p/pgformatter/</a>&nbsp;and demo site at&nbsp;<a href="http://sqlformat.darold.net/">http://sqlformat.darold.net/</a></li>
<li><a href="https://github.com/aspiers/mysqldiff">aspiers/mysqldiff</a>&nbsp;- tool and CPAN suite backend for comparing MySQL database schemas</li>
<li><a href="https://github.com/michaeldexter/vmrc">michaeldexter/vmrc</a>&nbsp;- Virtual Machine rc script</li>
<li><a href="https://github.com/keydet89/RegRipper2.8">keydet89/RegRipper2.8</a>&nbsp;- RegRipper version 2.8</li>
<li><a href="https://github.com/kazuho/kaztools">kazuho/kaztools</a>&nbsp;- shellscripts and utilities for myself</li>
<li><a href="https://github.com/gknops/adHocGenerate">gknops/adHocGenerate</a>&nbsp;- Wireless ad hoc distribution of iOS applications</li>
<li><a href="https://github.com/book/Act">book/Act</a>&nbsp;- A Conference Toolkit (Git conversion of the Subversion repository)</li>
<li><a href="https://github.com/turingou/docor">turingou/docor</a>&nbsp;- a smart and tiny README maker using default manifest package.json</li>
<li><a href="https://github.com/rjbs/Soviet-Minecraft">rjbs/Soviet-Minecraft</a>&nbsp;- a gross hack for chatty control of Minecraft</li>
<li><a href="https://github.com/osklil/hls-fetch">osklil/hls-fetch</a>&nbsp;- Download and decrypt videos served by the HTTP Live Streaming (HLS) protocol.</li>
<li><a href="https://github.com/alestic/ec2-expire-snapshots">alestic/ec2-expire-snapshots</a>&nbsp;- Delete expired EBS snapshots in Amazon EC2. Install on Ubuntu with: sudo add-apt-repository -y ppa:alestic &amp;&amp; sudo apt-get update &amp;&amp; sudo apt-get install -y ec2-expire-snapshots</li>
<li><a href="https://github.com/rpetrich/objc_api_visibility">rpetrich/objc_api_visibility</a>&nbsp;- Private API checker for iOS. Requires class-dump-z to be in the PATH</li>
<li><a href="https://github.com/mojombo/gollum-demo">mojombo/gollum-demo</a>&nbsp;- Gollum test repo</li>
<li><a href="https://github.com/mikecardwell/gpgit">mikecardwell/gpgit</a>&nbsp;- Encrypt Email using GnuPG and a pipe</li>
<li><a href="https://github.com/lxctl/lxctl">lxctl/lxctl</a>&nbsp;- vzctl like utilities for lxc</li>
<li><a href="https://github.com/justone/dfm">justone/dfm</a>&nbsp;- dotfiles manager</li>
<li><a href="https://github.com/miyagawa/cpanfile">miyagawa/cpanfile</a>&nbsp;- Yet another way to declare CPAN dependencies</li>
<li><a href="https://github.com/imatix/gitdown">imatix/gitdown</a>&nbsp;- Turn github into your publishing platform</li>
<li><a href="https://github.com/grayhemp/pgtoolkit">grayhemp/pgtoolkit</a>&nbsp;- Tools for PostgreSQL maintenance</li>
<li><a href="https://github.com/domm/App-TimeTracker">domm/App-TimeTracker</a>&nbsp;- distributed timetracking from the commandline</li>
<li><a href="https://github.com/xaicron/mysqlenv">xaicron/mysqlenv</a>&nbsp;- mysql binary manager</li>
<li><a href="https://github.com/tagomoris/fluent-agent-lite">tagomoris/fluent-agent-lite</a>&nbsp;- Lightweight log delivery agent works w/ fluentd</li>
<li><a href="https://github.com/openresty/lua-resty-upstream-healthcheck">openresty/lua-resty-upstream-healthcheck</a>&nbsp;- Health Checker for Nginx Upstream Servers in Pure Lua</li>
<li><a href="https://github.com/niXman/mingw-builds">niXman/mingw-builds</a>&nbsp;- Scripts for building the dual-target(32 &amp; 64 bit) MinGW-W64 compilers for 32 and 64 bit Windows</li>
<li><a href="https://github.com/lvc/abi-compliance-checker">lvc/abi-compliance-checker</a>&nbsp;- A tool for checking backward API/ABI compatibility of a C/C++ library</li>
<li><a href="https://github.com/chilts/cil">chilts/cil</a>&nbsp;- DVCS backed issue tracking system</li>
<li><a href="https://github.com/TooTallNate/node-cgi">TooTallNate/node-cgi</a>&nbsp;- An http/stack/connect layer to invoke and serve CGI executables.</li>
<li><a href="https://github.com/CityGenerator/CityGenerator">CityGenerator/CityGenerator</a>&nbsp;- CityGenerator is a tool for generating a setting for Fantasy Roleplaying games.</li>
<li><a href="https://github.com/yoshinorim/mha4mysql-node">yoshinorim/mha4mysql-node</a>&nbsp;- Development tree of Master High Availability Manager and tools for MySQL (MHA), Node (MySQL Server) part</li>
<li><a href="https://github.com/Netflix-Skunkworks/jenkins-cli">Netflix-Skunkworks/jenkins-cli</a>&nbsp;- Simple Jenkins Command Line Interface</li>
<li><a href="https://github.com/vrtadmin/clamav-faq">vrtadmin/clamav-faq</a>&nbsp;- ClamAV FAQ</li>
<li><a href="https://github.com/ssinyagin/gerty">ssinyagin/gerty</a>&nbsp;- A universal framework for device management automation. Eventually a replacement for RANCID... and much more</li>
<li><a href="https://github.com/quran/quran.com-images">quran/quran.com-images</a>&nbsp;- images using fonts from King Fahed Complex / qurancomplex.com</li>
<li><a href="https://github.com/matschaffer/profile">matschaffer/profile</a>&nbsp;- My Bash profile</li>
<li><a href="https://github.com/jigish/dotfiles">jigish/dotfiles</a>&nbsp;- My configs</li>
<li><a href="https://github.com/darold/ora2pg">darold/ora2pg</a>&nbsp;- Ora2Pg is a free tool used to migrate an Oracle database to a PostgreSQL compatible schema. It connects your Oracle database, scan it automaticaly and extracts its structure or data, it then generates SQL scripts that you can load into PostgreSQL.</li>
<li><a href="https://github.com/castaway/dbix-class-book">castaway/dbix-class-book</a>&nbsp;- DBIx::Class book</li>
<li><a href="https://github.com/brucemiller/LaTeXML">brucemiller/LaTeXML</a>&nbsp;- LaTeXML is a TeX and LaTeX to XML translator.</li>
<li><a href="https://github.com/OpenDDRdotORG/OpenDDR-Resources">OpenDDRdotORG/OpenDDR-Resources</a>&nbsp;- OpenDDR resources</li>
<li><a href="https://github.com/revmischa/rtsp-server">revmischa/rtsp-server</a>&nbsp;- Lightweight RTSP/RTP streaming media server</li>
<li><a href="https://github.com/oetiker/znapzend">oetiker/znapzend</a>&nbsp;- zfs backup with remote capabilities and mbuffer integration.</li>
<li><a href="https://github.com/cardinal/cardinal">cardinal/cardinal</a>&nbsp;- Cardinal - Ruby compiler for Parrot</li>
<li><a href="https://github.com/LibreCat/Catmandu">LibreCat/Catmandu</a>&nbsp;-&nbsp;<a href="https://metacpan.org/pod/Catmandu">https://metacpan.org/pod/Catmandu</a></li>
<li><a href="https://github.com/rdvn/zabbix-templates">rdvn/zabbix-templates</a>&nbsp;- Various Zabbix templates</li>
<li><a href="https://github.com/mischat/shareNice">mischat/shareNice</a>&nbsp;- An ethical way of adding social sharing features to your website, without compromising your users' privacy by dropping tracking cookies on them.</li>
<li><a href="https://github.com/kayac/isucon3">kayac/isucon3</a>&nbsp;- ISUCON3</li>
<li><a href="https://github.com/coryarcangel/Pizza-Party-0.1.b">coryarcangel/Pizza-Party-0.1.b</a>&nbsp;- Order pizza over the commandline (circa 2004)</li>
<li><a href="https://github.com/msparks/irssiscripts">msparks/irssiscripts</a>&nbsp;- Scripts for the Irssi IRC client</li>
<li><a href="https://github.com/mogui/MDWamp">mogui/MDWamp</a>&nbsp;- MDWamp is a client side objective-C implementation of the WebSocket subprotocol WAMP.</li>
<li><a href="https://github.com/michaeljamesfitzgerald/Introducing-Regular-Expressions">michaeljamesfitzgerald/Introducing-Regular-Expressions</a>&nbsp;- Example code and target text files for the O'Reilly book Introducing Regular Expressions</li>
<li><a href="https://github.com/jeffreykegler/Marpa--R2">jeffreykegler/Marpa--R2</a>&nbsp;- Parse any language you can describe in BNF -- Release 2</li>
<li><a href="https://github.com/glensc/nagios-plugin-check_raid">glensc/nagios-plugin-check_raid</a>&nbsp;- Nagios/Icinga plugin to check current server's RAID status</li>
<li><a href="https://github.com/futuretap/iTunesFeaturedCheck">futuretap/iTunesFeaturedCheck</a>&nbsp;- Scrapes the App Store and finds out whether an app is featured on either the App Store homepage or in a specific category</li>
<li><a href="https://github.com/yepher/RaZBerry">yepher/RaZBerry</a>&nbsp;- Notes About ZWave and RazBerry</li>
<li><a href="https://github.com/tokuhirom/Minilla">tokuhirom/Minilla</a>&nbsp;- Authorizing tool for CPAN modules</li>
<li><a href="https://github.com/rgeissert/http-redirector">rgeissert/http-redirector</a>&nbsp;- Debian mirrors HTTP redirector</li>
<li><a href="https://github.com/oetiker/rrdtool-2.x">oetiker/rrdtool-2.x</a>&nbsp;- RRDtool 2.x - The Time Series Database</li>
<li><a href="https://github.com/mindreframer/nginx-lua-stuff">mindreframer/nginx-lua-stuff</a>&nbsp;- some libs for NginX-Lua integration</li>
<li><a href="https://github.com/crowbar/barclamp-nagios">crowbar/barclamp-nagios</a>&nbsp;- [UNMAINTAINED] Crowbar Nagios: System Monitoring</li>
<li><a href="https://github.com/andk/cpanpm">andk/cpanpm</a>&nbsp;- CPAN.pm</li>
<li><a href="https://github.com/moritz/ilbot">moritz/ilbot</a>&nbsp;- IRC logging bot and web frontend</li>
<li><a href="https://github.com/meso-cacase/difff">meso-cacase/difff</a>&nbsp;- Webベースのテキスト比較ツール difff《ﾃﾞｭﾌﾌ》</li>
<li><a href="https://github.com/elliotchance/mbzdb">elliotchance/mbzdb</a>&nbsp;- Port of the MusicBrainz database to run on other RDBMSs with replication (previously named MB_MySQL.)</li>
<li><a href="https://github.com/trapd00r/vidir">trapd00r/vidir</a>&nbsp;- edit directory in $EDITOR (better than vim . with netrw)</li>
<li><a href="https://github.com/evalEmpire/gitpan">evalEmpire/gitpan</a>&nbsp;- Git repositories for all of CPAN</li>
<li><a href="https://github.com/pagekite/Colormake">pagekite/Colormake</a>&nbsp;- A simple wrapper around make to colorize the output.</li>
<li><a href="https://github.com/manuelkasper/AS-Stats">manuelkasper/AS-Stats</a>&nbsp;- A simple tool to generate per-AS traffic graphs from NetFlow/sFlow records</li>
<li><a href="https://github.com/kazeburo/Monoceros">kazeburo/Monoceros</a>&nbsp;- PSGI/Plack server with event driven connection manager, preforking workers</li>
<li><a href="https://github.com/justintime/nagios-plugins">justintime/nagios-plugins</a>&nbsp;- Collection of some handy Nagios plugins</li>
<li><a href="https://github.com/justingit/dada-mail">justingit/dada-mail</a>&nbsp;- Dada Mail is a simple, web-based mailing list manager. It totally rules.</li>
<li><a href="https://github.com/grantm/bcvi">grantm/bcvi</a>&nbsp;- Back-channel vi</li>
<li><a href="https://github.com/JeremyJones/Apachetop">JeremyJones/Apachetop</a>&nbsp;- apachetop is a console-based tool for monitoring the threads and overall performance of a set of Apache web servers.</li>
<li><a href="https://github.com/garu/tweetylicious">garu/tweetylicious</a>&nbsp;- a Twitter-like microblogging app in just one file</li>
<li><a href="https://github.com/doujiang24/lua-resty-kafka">doujiang24/lua-resty-kafka</a>&nbsp;- Lua kafka client driver for the ngx_lua based on the cosocket API</li>
<li><a href="https://github.com/HikariKnight/rsu-client">HikariKnight/rsu-client</a>&nbsp;- A git repository for the RuneScape Linux/Unix Client Project</li>
<li><a href="https://github.com/wimpunk/ddclient">wimpunk/ddclient</a>&nbsp;- Fork of the original ddclient code</li>
<li><a href="https://github.com/tokuhirom/tora">tokuhirom/tora</a>&nbsp;- Tora! Tora! Tora!</li>
<li><a href="https://github.com/stepb/urxvt-tabbedex">stepb/urxvt-tabbedex</a>&nbsp;- Tabbed plugin for rxvt-unicode with many enhancements</li>
<li><a href="https://github.com/rafl/moosex-declare">rafl/moosex-declare</a>&nbsp;- Declarative syntax for Moose</li>
<li><a href="https://github.com/pobox/Moonpig">pobox/Moonpig</a>&nbsp;- the moonpig billing system</li>
<li><a href="https://github.com/fink/fink">fink/fink</a>&nbsp;- The fink package manager</li>
<li><a href="https://github.com/theiostream/theos-ref">theiostream/theos-ref</a>&nbsp;- Theos Docs! (because there never was a chapter 2)</li>
<li><a href="https://github.com/robinbowes/flac2mp3">robinbowes/flac2mp3</a>&nbsp;- flac2mp3 is a tool to convert audio files from flac to mp3 format including the copying of tags.</li>
<li><a href="https://github.com/rayman813/coda2-mode-wordpress">rayman813/coda2-mode-wordpress</a>&nbsp;- Wordpress Syntax Mode/Highlight/Autocomplete for Coda 2</li>
<li><a href="https://github.com/hackman/linux-sysadmin-course">hackman/linux-sysadmin-course</a>&nbsp;- Linux System Administration 101</li>
<li><a href="https://github.com/deepakdaswani/whatsapp_discover">deepakdaswani/whatsapp_discover</a>&nbsp;- "Whatsapp Discover" is a tool for getting phone numbers of devices using Whatsapp by real time sniffing from an interface (disabled in this first version) or from a list of pcap files, which can be processed in batch</li>
<li><a href="https://github.com/calio/form-input-nginx-module">calio/form-input-nginx-module</a>&nbsp;- This is a nginx module that reads HTTP POST and PUT request body encoded in "application/x-www-form-urlencoded", and parse the arguments in request body into nginx variables.</li>
<li><a href="https://github.com/bloonix/awesant">bloonix/awesant</a>&nbsp;- Awesant is a log shipper for logstash.</li>
<li><a href="https://github.com/AndriiGrytsenko/openssh-ldap-publickey">AndriiGrytsenko/openssh-ldap-publickey</a>&nbsp;- Wrapper for OpenSSH to store public keys inside the OpenLDAP entry.</li>
<li><a href="https://github.com/nikyoudale/symbolicatecrash-mac">nikyoudale/symbolicatecrash-mac</a>&nbsp;- A version of the symbolicatecrash script that works for Mac app crash logs</li>
<li><a href="https://github.com/mhwest13/Memcached-Munin-Plugin">mhwest13/Memcached-Munin-Plugin</a>&nbsp;- Memcached Munin Plugins</li>
<li><a href="https://github.com/knmnyn/ParsCit">knmnyn/ParsCit</a>&nbsp;- An open-source CRF Reference String Parsing Package</li>
<li><a href="https://github.com/c9s/App-gh">c9s/App-gh</a>&nbsp;- GitHub Command-line Utility.</li>
<li><a href="https://github.com/bradfitz/shipit">bradfitz/shipit</a>&nbsp;- Software Release Tool</li>
<li><a href="https://github.com/sukria/WebKeePass">sukria/WebKeePass</a>&nbsp;- Web interface over a KeePass database</li>
<li><a href="https://github.com/naturalist/kelp">naturalist/kelp</a>&nbsp;- A web framework light, yet rich in nutrients.</li>
<li><a href="https://github.com/kirei/catt">kirei/catt</a>&nbsp;- Certification Authority Trust Tracker</li>
<li><a href="https://github.com/kazuho/Starlet">kazuho/Starlet</a>&nbsp;- a Plack Server, formerly known as Plack::Server::Standalone::Prefork::Server::Starter</li>
<li><a href="https://github.com/dolmen/github-keygen">dolmen/github-keygen</a>&nbsp;- Easy creation of secure SSH configuration for your Github account(s)</li>
<li><a href="https://github.com/bigplum/nginx-tcp-lua-module">bigplum/nginx-tcp-lua-module</a>&nbsp;- A TCP server with lua supporting based on nginx</li>
<li><a href="https://github.com/baohaojun/ajoke">baohaojun/ajoke</a>&nbsp;- Abducting Java Onto Emacs, K is silent.</li>
<li><a href="https://github.com/apache/spamassassin">apache/spamassassin</a>&nbsp;- Read-only mirror of Apache SpamAssassin. Submit patches to&nbsp;<a href="https://bz.apache.org/SpamAssassin/">https://bz.apache.org/SpamAssassin/</a>. Do not send pull requests</li>
<li><a href="https://github.com/tsee/Games-Lacuna-Client">tsee/Games-Lacuna-Client</a>&nbsp;- A client for the Lacuna Expanse</li>
<li><a href="https://github.com/sitaramc/gitpod">sitaramc/gitpod</a>&nbsp;- local caching server for git when the actual server is on the other side of a (possibly slow) WAN link</li>
<li><a href="https://github.com/mjdominus/git-util">mjdominus/git-util</a>&nbsp;- Miscellaneous git scripts and utilities</li>
<li><a href="https://github.com/kevina/wordlist">kevina/wordlist</a>&nbsp;- SCOWL (and friends).</li>
<li><a href="https://github.com/franckcuny/jitterbug">franckcuny/jitterbug</a>&nbsp;- Cross Language Continuous Integration for Git</li>
<li><a href="https://github.com/fastmail/towncrier">fastmail/towncrier</a>&nbsp;- A status dashboard</li>
<li><a href="https://github.com/collectiveintel/cif-v1">collectiveintel/cif-v1</a>&nbsp;- the fastest way to consume threat intelligence.</li>
<li><a href="https://github.com/anestisb/WeBaCoo">anestisb/WeBaCoo</a>&nbsp;- Web Backdoor Cookie Script-Kit</li>
<li><a href="https://github.com/Tarrasch/zsh-autoenv">Tarrasch/zsh-autoenv</a>&nbsp;- Autoenv for zsh</li>
<li><a href="https://github.com/xme/hoover">xme/hoover</a>&nbsp;- Wireless Probe Requests Sniffer</li>
<li><a href="https://github.com/spencertipping/caterwaul">spencertipping/caterwaul</a>&nbsp;- A Javascript-to-Javascript compiler</li>
<li><a href="https://github.com/openresty/lua-redis-parser">openresty/lua-redis-parser</a>&nbsp;- Lua module for parsing raw redis responses</li>
<li><a href="https://github.com/mpeters/smolder">mpeters/smolder</a>&nbsp;- Web-based Continuous Integration Smoke Server</li>
<li><a href="https://github.com/madscientist/msjnc">madscientist/msjnc</a>&nbsp;- MadScientist Juniper Network Connect Session Manager</li>
<li><a href="https://github.com/kfdm/irssi-growl">kfdm/irssi-growl</a>&nbsp;- Growl notification script for irssi</li>
<li><a href="https://github.com/jimsalterjrs/sanoid">jimsalterjrs/sanoid</a>&nbsp;- Policy-driven snapshot management and replication tools. Currently using ZFS for underlying next-gen storage, with explicit plans to support btrfs when btrfs becomes more reliable. Primarily intended for Linux, but BSD use is supported and reasonably frequently tested.</li>
<li><a href="https://github.com/duritong/puppet-nagios">duritong/puppet-nagios</a>&nbsp;- a nagios module for puppet</li>
<li><a href="https://github.com/szabgab/screencasts">szabgab/screencasts</a>&nbsp;- The translated captions of my screencasts</li>
<li><a href="https://github.com/openresty/resty-cli">openresty/resty-cli</a>&nbsp;- Fancy command-line utilities for OpenResty</li>
<li><a href="https://github.com/kre/Kinetic-Rules-Engine">kre/Kinetic-Rules-Engine</a>&nbsp;- Source code for KRE</li>
<li><a href="https://github.com/helloandre/cr48">helloandre/cr48</a>&nbsp;- my programs that i've put on cr48</li>
<li><a href="https://github.com/csirtgadgets/massive-octo-spice">csirtgadgets/massive-octo-spice</a>&nbsp;- the fastest way to consume threat intelligence</li>
<li><a href="https://github.com/agentzh/sshbatch">agentzh/sshbatch</a>&nbsp;- SSH::Batch for cluster operations</li>
<li><a href="https://github.com/SPORE/api-description">SPORE/api-description</a>&nbsp;- SPORE description for API</li>
<li><a href="https://github.com/xilinus/prototypeui">xilinus/prototypeui</a>&nbsp;- Prototype UI</li>
<li><a href="https://github.com/tagomoris/isucon">tagomoris/isucon</a>&nbsp;- isucon web applications and tools</li>
<li><a href="https://github.com/perl6/doc">perl6/doc</a>&nbsp;- Perl 6 documentation (tools and docs)</li>
<li><a href="https://github.com/hirose31/redis-traffic-stats">hirose31/redis-traffic-stats</a>&nbsp;- Redis query analyzer for counting, traffic stats by command</li>
<li><a href="https://github.com/gjreda/pydata2014nyc">gjreda/pydata2014nyc</a>&nbsp;- Materials for my pandas tutorial at PyData 2014, NYC</li>
<li><a href="https://github.com/genaev/vmd">genaev/vmd</a>&nbsp;- vkontakte music downloader</li>
<li><a href="https://github.com/dalibo/sqlserver2pgsql">dalibo/sqlserver2pgsql</a>&nbsp;- Migration tool to convert a Microsoft SQL Server Database into a PostgreSQL database, as automatically as possible</li>
<li><a href="https://github.com/symkat/Stalker">symkat/Stalker</a>&nbsp;- Records and correlates nick!user@host information</li>
<li><a href="https://github.com/lvc/japi-compliance-checker">lvc/japi-compliance-checker</a>&nbsp;- A tool for checking backward API/ABI compatibility of a Java library</li>
<li><a href="https://github.com/justinabrahms/jlilly-bashy-dotfiles">justinabrahms/jlilly-bashy-dotfiles</a>&nbsp;- This is a collection of my dotfiles not related to either vim or emacs. Mostly just bashy stuff.</li>
<li><a href="https://github.com/interchange/interchange">interchange/interchange</a>&nbsp;- Interchange</li>
<li><a href="https://github.com/ingydotnet/jemplate">ingydotnet/jemplate</a>&nbsp;- Industrial strength JavaScript template framework</li>
<li><a href="https://github.com/depesz/explain.depesz.com">depesz/explain.depesz.com</a>&nbsp;- Webpage for showing easier to read version of PostgreSQL explains</li>
<li><a href="https://github.com/Webconverger/webc">Webconverger/webc</a>&nbsp;- Webconverger's curated chroot from which updates originate</li>
<li><a href="https://github.com/SSLMate/sslmate">SSLMate/sslmate</a>&nbsp;- The SSLMate Client - Buy and Manage SSL Certs from the Command Line</li>
<li><a href="https://github.com/stayradiated/dotfiles">stayradiated/dotfiles</a>&nbsp;- Just my configs for CRUX and OS X</li>
<li><a href="https://github.com/openresty/lua-resty-lock">openresty/lua-resty-lock</a>&nbsp;- Simple nonblocking lock API for ngx_lua based on shared memory dictionaries</li>
<li><a href="https://github.com/nickspacek/Net-Google-Tasks">nickspacek/Net-Google-Tasks</a>&nbsp;- Interface to Google Tasks</li>
<li><a href="https://github.com/jdavis/dotfiles">jdavis/dotfiles</a>&nbsp;- Config files for various things</li>
<li><a href="https://github.com/evadne/LESS.mode">evadne/LESS.mode</a>&nbsp;- LESS syntax mode for SubEthaEdit and Coda</li>
<li><a href="https://github.com/dotse/zonemaster">dotse/zonemaster</a>&nbsp;- The Zonemaster Project</li>
<li><a href="https://github.com/darold/squidanalyzer">darold/squidanalyzer</a>&nbsp;- Squid Analyzer parses Squid proxy access log and reports general statistics about hits, bytes, users, networks, top URLs, and top second level domains. Statistic reports are oriented toward user and bandwidth control.</li>
<li><a href="https://github.com/vti/showmetheshell">vti/showmetheshell</a>&nbsp;- HTML5 WebSocket Shell</li>
<li><a href="https://github.com/oalders/http-browserdetect">oalders/http-browserdetect</a>&nbsp;- Determine the Web browser, version, and platform from an HTTP user agent string</li>
<li><a href="https://github.com/marksteele/collectd-plugins">marksteele/collectd-plugins</a>&nbsp;- Collectd Plugins</li>
<li><a href="https://github.com/kristofg/rifec">kristofg/rifec</a>&nbsp;- Receive Images From Eye-Fi Cards</li>
<li><a href="https://github.com/kirei/fpdns">kirei/fpdns</a>&nbsp;- Net::DNS::Fingerprint</li>
<li><a href="https://github.com/gjospin/PhyloSift">gjospin/PhyloSift</a>&nbsp;- Phylogenetic and taxonomic analysis for genomes and metagenomes</li>
<li><a href="https://github.com/chrispix/symbolicatecrash-fix">chrispix/symbolicatecrash-fix</a>&nbsp;- A patch of Apple's symbolicatecrash script, broken in XCode4</li>
<li><a href="https://github.com/billkarwin/bk-tools">billkarwin/bk-tools</a>&nbsp;- Scripts I wrote to help using MySQL and Percona products.</li>
<li><a href="https://github.com/adelton/docker-freeipa">adelton/docker-freeipa</a>&nbsp;- FreeIPA server and client in Docker containers; see hub.docker.com for the images:</li>
<li><a href="https://github.com/OWASP/O-Saft">OWASP/O-Saft</a>&nbsp;- O-Saft - OWASP SSL audit for testers</li>
<li><a href="https://github.com/yllan/moedict-mac">yllan/moedict-mac</a>&nbsp;- 轉換教育部國語辭典為 Mac 內建字典</li>
<li><a href="https://github.com/tokuhirom/cpan-outdated">tokuhirom/cpan-outdated</a>&nbsp;- detect outdated CPAN modules</li>
<li><a href="https://github.com/openwebwork/webwork2">openwebwork/webwork2</a>&nbsp;- Course management front end for WeBWorK</li>
<li><a href="https://github.com/nicolaspanel/libsvm.net">nicolaspanel/libsvm.net</a>&nbsp;- An easy way to use Support Vector Machines in your .NET projects (c# code)</li>
<li><a href="https://github.com/jodrell/unbound-block-hosts">jodrell/unbound-block-hosts</a>&nbsp;- a script to convert Dan Pollock's ad blocking hosts file into Unbound local-data.</li>
<li><a href="https://github.com/davepacheco/jsstyle">davepacheco/jsstyle</a>&nbsp;- cstyle-based JavaScript style checker</li>
<li><a href="https://github.com/cloudflare/lua-resty-cookie">cloudflare/lua-resty-cookie</a>&nbsp;- Lua library for HTTP cookie manipulations for OpenResty/ngx_lua</li>
<li><a href="https://github.com/c9s/github-taiwan">c9s/github-taiwan</a>&nbsp;- Taiwan Developers on Github</li>
<li><a href="https://github.com/PadreIDE/Padre">PadreIDE/Padre</a>&nbsp;- Offical repository of the core Padre code</li>
<li><a href="https://github.com/rovo89/XposedTools">rovo89/XposedTools</a>&nbsp;- These tools can be used to compile and package the Xposed framework.</li>
<li><a href="https://github.com/openresty/nginx-devel-utils">openresty/nginx-devel-utils</a>&nbsp;- Utilities for nginx module development</li>
<li><a href="https://github.com/openSUSE/obs-build">openSUSE/obs-build</a>&nbsp;- OBS build script, can be used with OBS or stand alone</li>
<li><a href="https://github.com/nichtich/ditaa-markdown">nichtich/ditaa-markdown</a>&nbsp;- process ditaa diagrams embedded in pandoc markdown</li>
<li><a href="https://github.com/bestpractical/prophet">bestpractical/prophet</a>&nbsp;- A disconnected, replicated p2p database -- upstream is now&nbsp;<a href="http://gitorious.org/prophet">http://gitorious.org/prophet</a></li>
<li><a href="https://github.com/aparks517/convert-websters">aparks517/convert-websters</a>&nbsp;- Convert Webster's Unabridged Dictionary from Project Gutenberg to OSX dictionary</li>
<li><a href="https://github.com/ap/titlecase">ap/titlecase</a>&nbsp;- An attempt to refactor John Gruber&rsquo;s Title Case program</li>
<li><a href="https://github.com/yko/mojo.vim">yko/mojo.vim</a>&nbsp;- Vim syntax for mojo epl templates in Mojo projects</li>
<li><a href="https://github.com/tseemann/prokka">tseemann/prokka</a>&nbsp;- Rapid prokaryotic genome annotation</li>
<li><a href="https://github.com/peterkeen/calorific">peterkeen/calorific</a>&nbsp;- Command-line nutrient tracking tool</li>
<li><a href="https://github.com/openresty/lua-resty-dns">openresty/lua-resty-dns</a>&nbsp;- DNS resolver for the nginx lua module</li>
<li><a href="https://github.com/maxmind/MaxMind-DB">maxmind/MaxMind-DB</a>&nbsp;- Spec and test data for the MaxMind DB file format</li>
<li><a href="https://github.com/kazeburo/Kurado">kazeburo/Kurado</a>&nbsp;- monitor metrics</li>
<li><a href="https://github.com/bigpresh/Dancer-Plugin-Database">bigpresh/Dancer-Plugin-Database</a>&nbsp;- Dancer::Plugin::Database - easy database support for Dancer applications</li>
<li><a href="https://github.com/BaldMansMojo/check_vmware_esx">BaldMansMojo/check_vmware_esx</a>&nbsp;- chech_vmware_esx Fork of check_vmware_api.pl</li>
<li><a href="https://github.com/vanstyn/RapidApp">vanstyn/RapidApp</a>&nbsp;- Turnkey ajaxy webapps</li>
<li><a href="https://github.com/taylorchu/baker">taylorchu/baker</a>&nbsp;- The bash static site generator with real template engine</li>
<li><a href="https://github.com/sujaikumar/assemblage">sujaikumar/assemblage</a>&nbsp;- Tools for working with second gen assemblies, fasta sequences, etc</li>
<li><a href="https://github.com/obfuscurity/nagios-scripts">obfuscurity/nagios-scripts</a>&nbsp;- Custom scripts written for Nagios</li>
<li><a href="https://github.com/miyagawa/AnyEvent-Twitter-Stream">miyagawa/AnyEvent-Twitter-Stream</a>&nbsp;- AnyEvent based Twitter stream consumer</li>
<li><a href="https://github.com/miyagawa/AnyEvent-Redis">miyagawa/AnyEvent-Redis</a>&nbsp;- Asynchronous Redis client</li>
<li><a href="https://github.com/drdrang/tp-planner">drdrang/tp-planner</a>&nbsp;- A set of scripts for printing TaskPaper documents compactly for inserting into a "Junior" sized planner.</li>
<li><a href="https://github.com/ccurtsinger/stabilizer">ccurtsinger/stabilizer</a>&nbsp;- Stabilizer: Rigorous Performance Evaluation</li>
<li><a href="https://github.com/zrlram/afterglow">zrlram/afterglow</a>&nbsp;- graph visualization tool</li>
<li><a href="https://github.com/utcompling/OpenNLP-Models">utcompling/OpenNLP-Models</a>&nbsp;- A project for code to create models from existing corpora and distribute models.</li>
<li><a href="https://github.com/theory/dbix-connector">theory/dbix-connector</a>&nbsp;- Fast, safe DBI connection management</li>
<li><a href="https://github.com/redondos/mutt">redondos/mutt</a>&nbsp;- mutt configuration</li>
<li><a href="https://github.com/p5-app-adventcalendar/p5-app-adventcalendar">p5-app-adventcalendar/p5-app-adventcalendar</a>&nbsp;- let's make advent calendar!</li>
<li><a href="https://github.com/motemen/Teto">motemen/Teto</a>&nbsp;- nicovideo stream player</li>
<li><a href="https://github.com/lifeforms/irssi-smartfilter">lifeforms/irssi-smartfilter</a>&nbsp;- Irssi JOIN/QUIT smart filter for busy channels</li>
<li><a href="https://github.com/genehack/app-gitgot">genehack/app-gitgot</a>&nbsp;- A tool to make it easier to manage multiple code repositories using different VCSen</li>
<li><a href="https://github.com/ytoolshed/multipkg">ytoolshed/multipkg</a>&nbsp;- Automation for package builds</li>
<li><a href="https://github.com/willemk/varnish-mobiletranslate">willemk/varnish-mobiletranslate</a>&nbsp;- Tool to translate the latest mobile detect script into varnish</li>
<li><a href="https://github.com/sashahilton00/spotify-connect-resources">sashahilton00/spotify-connect-resources</a>&nbsp;- A repository to hold any data/stuff related to reversing the Spotify Connect protocol. Mostly just data dumps at the moment, but if you have something to add to it, be it an implementation, information or just another data dump, make a PR and I will add it asap.</li>
<li><a href="https://github.com/kumina/nagios-plugins-kumina">kumina/nagios-plugins-kumina</a>&nbsp;- A collection of Nagios plugins that we package.</li>
<li><a href="https://github.com/jbergantine/django-template.mode">jbergantine/django-template.mode</a>&nbsp;- Django Template Syntax mode for Panic Coda 2</li>
<li><a href="https://github.com/jasta/android-dev-tools">jasta/android-dev-tools</a>&nbsp;- Collection of developer tools for working with Android.</li>
<li><a href="https://github.com/devel/PowerDNS-API">devel/PowerDNS-API</a>&nbsp;- HTTP API for the PowerDNS Database</li>
<li><a href="https://github.com/daniel-nichter/hackmysql.com">daniel-nichter/hackmysql.com</a>&nbsp;- Deprecated tools from HackMySQL.com</li>
<li><a href="https://github.com/agentzh/cheater">agentzh/cheater</a>&nbsp;- A tool and a language that help generating random complex database instance based on predefined rules</li>
<li><a href="https://github.com/GMOD/GBrowse">GMOD/GBrowse</a>&nbsp;- the Generic Genome Browser</li>
<li><a href="https://github.com/yaoweibin/nginx_limit_access_module">yaoweibin/nginx_limit_access_module</a>&nbsp;- support to deny specific variable with HTTP POST interface</li>
<li><a href="https://github.com/yanick/git-cpan-patch">yanick/git-cpan-patch</a>&nbsp;- System to write patches against CPAN modules via Git</li>
<li><a href="https://github.com/synacorinc/dtk">synacorinc/dtk</a>&nbsp;- DTK (data toolkit) is a suite of tools for parsing, analyzing, and graphing logs and other datasets.</li>
<li><a href="https://github.com/schweikert/postgrey">schweikert/postgrey</a>&nbsp;- Postfix Greylisting Policy-Daemon</li>
<li><a href="https://github.com/noodba/myawr">noodba/myawr</a>&nbsp;- awr of MySQL</li>
<li><a href="https://github.com/marcusramberg/Mojolicious-Plugin-OAuth2">marcusramberg/Mojolicious-Plugin-OAuth2</a>&nbsp;- OAuth support for Mojolicious</li>
<li><a href="https://github.com/lukeredpath/LRMocky">lukeredpath/LRMocky</a>&nbsp;- A port of jMock 2.0 for Objective-C</li>
<li><a href="https://github.com/linux-test-project/lcov">linux-test-project/lcov</a>&nbsp;- LCOV</li>
<li><a href="https://github.com/gamelinux/echidna">gamelinux/echidna</a>&nbsp;- Network Security Monitoring Framework</li>
<li><a href="https://github.com/datameet/india-election-data">datameet/india-election-data</a>&nbsp;- To map publicly available datasets related to General Assembly (Lok Sabha) elections in India.</li>
<li><a href="https://github.com/cmatsuoka/figlet-fonts">cmatsuoka/figlet-fonts</a>&nbsp;- A collection of fonts for FIGlet</li>
<li><a href="https://github.com/ambs/Books">ambs/Books</a>&nbsp;- My repository to book projects... if I eventually have the guts to write more than one...</li>
<li><a href="https://github.com/abw/Template-TT3">abw/Template-TT3</a>&nbsp;- A working prototype of the TT3 template language</li>
<li><a href="https://github.com/yasuaki/git-doc-ja">yasuaki/git-doc-ja</a>&nbsp;- Japanese translation of git/Documentation/</li>
<li><a href="https://github.com/xdata-skylark/libskylark">xdata-skylark/libskylark</a>&nbsp;- Sketching-based Distributed Matrix Computations for Machine Learning</li>
<li><a href="https://github.com/typester/nim">typester/nim</a>&nbsp;- minimal command-line based contents generator</li>
<li><a href="https://github.com/trapd00r/utils">trapd00r/utils</a>&nbsp;- Small useful utilities for everyday work</li>
<li><a href="https://github.com/plack/Plack-Middleware-Session">plack/Plack-Middleware-Session</a>&nbsp;- A very minimalist session library for Plack</li>
<li><a href="https://github.com/openxpki/openxpki">openxpki/openxpki</a>&nbsp;- OpenXPKI Code</li>
<li><a href="https://github.com/onishi/mysqldiff">onishi/mysqldiff</a>&nbsp;- mysqldiff - mysql scheme diff</li>
<li><a href="https://github.com/mikegrb/App-otfile">mikegrb/App-otfile</a>&nbsp;- Serve a single file, once, via HTTP over the local network.</li>
<li><a href="https://github.com/mikebrittain/Wesley">mikebrittain/Wesley</a>&nbsp;- Compress and optimize the JPEG, PNG, and GIF files used in your site&rsquo;s HTML and CSS.</li>
<li><a href="https://github.com/kthakore/frozen-bubble">kthakore/frozen-bubble</a>&nbsp;- Making frozen bubble cross platform</li>
<li><a href="https://github.com/hluk/vimColorsToQtCreator">hluk/vimColorsToQtCreator</a>&nbsp;- Convert vim color schemes so they can be used in Qt Creator.</li>
<li><a href="https://github.com/cvicente/Netdot">cvicente/Netdot</a>&nbsp;- Network Documentation Tool</li>
<li><a href="https://github.com/ciembor/TerminalHero">ciembor/TerminalHero</a>&nbsp;- Linux society's response to Guitar Hero. :)</li>
<li><a href="https://github.com/carloslima/dhsnapshot">carloslima/dhsnapshot</a>&nbsp;- RSnapshot-like backups to DreamHost Backup Service</li>
<li><a href="https://github.com/alecchen/doxygen-lua">alecchen/doxygen-lua</a>&nbsp;- Make Doxygen support Lua</li>
<li><a href="https://github.com/AgileBits/onepassword-utilities">AgileBits/onepassword-utilities</a>&nbsp;- Utilities for 1Password</li>
<li><a href="https://github.com/yrmt/dotfiles">yrmt/dotfiles</a>&nbsp;- a few of yrmt (beastie)'s dotfiles</li>
<li><a href="https://github.com/willixix/WL-NagiosPlugins">willixix/WL-NagiosPlugins</a>&nbsp;- Clone of naglio-plugins repository for those using old name</li>
<li><a href="https://github.com/rafl/moosex-method-signatures">rafl/moosex-method-signatures</a>&nbsp;- Method declarations with type constraints and no source filter</li>
<li><a href="https://github.com/proftpd/proftpd">proftpd/proftpd</a>&nbsp;- ProFTPD source code</li>
<li><a href="https://github.com/plainblack/Wing">plainblack/Wing</a>&nbsp;- Next generation web services toolkit.</li>
<li><a href="https://github.com/msimerson/NicTool">msimerson/NicTool</a>&nbsp;- NicTool: a DNS management solution</li>
<li><a href="https://github.com/j0hnnMcCock/fuckNSA">j0hnnMcCock/fuckNSA</a>&nbsp;- fuckNSA</li>
<li><a href="https://github.com/dbsrgits/sql-translator">dbsrgits/sql-translator</a>&nbsp;- SQL::Translator (SQLFairy)</li>
<li><a href="https://github.com/cryptax/dextools">cryptax/dextools</a>&nbsp;- Miscellaenous DEX (Dalvik Executable) tools</li>
<li><a href="https://github.com/cosimo/varnish-accept-language">cosimo/varnish-accept-language</a>&nbsp;- An experimental VCL extension to squash client Accept-Language headers</li>
<li><a href="https://github.com/catap/nginx-catap">catap/nginx-catap</a>&nbsp;- catap's nginx repository</li>
<li><a href="https://github.com/ConSol/omd">ConSol/omd</a>&nbsp;- OMD - Open Monitoring Distribution Labs Edition</li>
<li><a href="https://github.com/42Lines/cq5tools">42Lines/cq5tools</a>&nbsp;- Handy CLI tools for working with Adobe's CQ5 CMS product</li>
<li><a href="https://github.com/thomasfrivold/SilentBob">thomasfrivold/SilentBob</a>&nbsp;- SilentBob Firewall</li>
<li><a href="https://github.com/starlilyth/Linux-PoolManager">starlilyth/Linux-PoolManager</a>&nbsp;- Web based miner manager for CGMiner and clones (SGMiner, Keccak, etc) on Linux (PIMP/BAMT/SMOS, Debian, RedHat/Centos).</li>
<li><a href="https://github.com/perl-pod/pod-simple">perl-pod/pod-simple</a>&nbsp;- Framework for Parsing and Formatting POD</li>
<li><a href="https://github.com/openresty/opsboy">openresty/opsboy</a>&nbsp;- A rule-based sysadmin tool that helps setting up complex environment for blank machines</li>
<li><a href="https://github.com/nekokak/qudo">nekokak/qudo</a>&nbsp;- job queue system</li>
<li><a href="https://github.com/moshen/Image-Term256Color">moshen/Image-Term256Color</a>&nbsp;- Display images in your 256 color terminal! (kinda) - superseded by&nbsp;<a href="https://github.com/moshen/gotermimg">https://github.com/moshen/gotermimg</a></li>
<li><a href="https://github.com/kazuho/cppref">kazuho/cppref</a>&nbsp;- man-style access to cppreference.com documents</li>
<li><a href="https://github.com/jquelin/dist-zilla-plugin-git">jquelin/dist-zilla-plugin-git</a>&nbsp;- dist::zilla plugin to update your git repository after release</li>
<li><a href="https://github.com/jonlives/nagios-jenkins-plugin">jonlives/nagios-jenkins-plugin</a>&nbsp;- A nagios plugin for which lets you check jenkins jobs according to various criteria.</li>
<li><a href="https://github.com/ikebe/Pickles">ikebe/Pickles</a>&nbsp;- Tiny Web Application Framework.</li>
<li><a href="https://github.com/gws/munin-plugin-couchdb">gws/munin-plugin-couchdb</a>&nbsp;- Munin plugins for graphing CouchDB statistics.</li>
<li><a href="https://github.com/dyne/gitzone">dyne/gitzone</a>&nbsp;- git-based zone management tool for static and dynamic domains</li>
<li><a href="https://github.com/duggan/shlint">duggan/shlint</a>&nbsp;- A shell linting utility.</li>
<li><a href="https://github.com/bloonix/logstash-delete-index">bloonix/logstash-delete-index</a>&nbsp;- A script to delete Elasticsearch indices of Logstash</li>
<li><a href="https://github.com/angavrilov/df-structures">angavrilov/df-structures</a>&nbsp;- Dwarf Fortress data structure descriptions</li>
<li><a href="https://github.com/alibaba/tengine-website">alibaba/tengine-website</a>&nbsp;- The source code of Tengine's website (tengine.taobao.org)</li>
<li><a href="https://github.com/SpiderLabs/thicknet">SpiderLabs/thicknet</a>&nbsp;- TCP session interception and injection framework</li>
<li><a href="https://github.com/AssetTracker/rt-extension-assettracker">AssetTracker/rt-extension-assettracker</a>&nbsp;- Asset Tracker is an extension for Request Tracker. It integrates asset tracking with your favorite ticketing system.</li>
<li><a href="https://github.com/tokuhirom/Daiku">tokuhirom/Daiku</a>&nbsp;- Yet another build tool on Perl5</li>
<li><a href="https://github.com/schweikert/mailgraph">schweikert/mailgraph</a>&nbsp;- Mail plotting script</li>
<li><a href="https://github.com/plainblack/Lacuna-Server-Open">plainblack/Lacuna-Server-Open</a>&nbsp;- The open source Lacuna Server repository.</li>
<li><a href="https://github.com/netoptimizer/IPTV-Analyzer">netoptimizer/IPTV-Analyzer</a>&nbsp;- Fast MPEG2 Transport Stream Analyzer, based on Netfilter kernel module</li>
<li><a href="https://github.com/kvorg/mojo-handbook">kvorg/mojo-handbook</a>&nbsp;- Mojolicious Handbook: a temporary documentation resource for Mojolicious</li>
<li><a href="https://github.com/kablamo/VimDebug">kablamo/VimDebug</a>&nbsp;- Integrate your debugger with Vim. Currently supports Perl, Python, and Ruby. This code is very much in beta.</li>
<li><a href="https://github.com/genome/gms">genome/gms</a>&nbsp;- The Genome Modeling System installer (BETA).</li>
<li><a href="https://github.com/franckcuny/presque">franckcuny/presque</a>&nbsp;- a simple redis/tatsumaki message queue</li>
<li><a href="https://github.com/dgl/cgiirc">dgl/cgiirc</a>&nbsp;- CGI:IRC web based IRC client</li>
<li><a href="https://github.com/dann/angelos">dann/angelos</a>&nbsp;- yet another web application framework</li>
<li><a href="https://github.com/Bibzball/Git-Mediawiki">Bibzball/Git-Mediawiki</a>&nbsp;- Gate between git and mediawiki</li>
<li><a href="https://github.com/trustly/pci-blackbox">trustly/pci-blackbox</a>&nbsp;- PCI-DSS compliant card system built on PostgreSQL and PL/pgSQL</li>
<li><a href="https://github.com/tomill/Template-Semantic">tomill/Template-Semantic</a>&nbsp;- Use pure XHTML/XML as a template</li>
<li><a href="https://github.com/raboof/realtimeconfigquickscan">raboof/realtimeconfigquickscan</a>&nbsp;- Linux configuration checker for systems to be used for real-time audio</li>
<li><a href="https://github.com/postcasio/coda2-modes">postcasio/coda2-modes</a>&nbsp;- Syntax modes for Coda 2.</li>
<li><a href="https://github.com/norm/homedir">norm/homedir</a>&nbsp;- Public home directory files</li>
<li><a href="https://github.com/nindwen/config">nindwen/config</a>&nbsp;- Arch Linux config-files</li>
<li><a href="https://github.com/lvc/pkgdiff">lvc/pkgdiff</a>&nbsp;- A tool for visualizing changes in Linux software packages</li>
<li><a href="https://github.com/jjn1056/DBIx-Class-Migration">jjn1056/DBIx-Class-Migration</a>&nbsp;- Use DBIC::DeploymentHandler and DBIC::Fixtures together for a sane database versioning workflow</li>
<li><a href="https://github.com/hpcugent/easybuild-easyconfigs">hpcugent/easybuild-easyconfigs</a>&nbsp;- A collection of easyconfig files that describe which software to build using which build options with EasyBuild.</li>
<li><a href="https://github.com/gfx/p5-Data-Validator">gfx/p5-Data-Validator</a>&nbsp;- Type constraints based data validator for Perl5</li>
<li><a href="https://github.com/evalEmpire/method-signatures">evalEmpire/method-signatures</a>&nbsp;- Method and function declarations with signatures, no source filter</li>
<li><a href="https://github.com/yogan/cope">yogan/cope</a>&nbsp;- A colourful wrapper for terminal programs</li>
<li><a href="https://github.com/trinityrnaseq/trinityrnaseq">trinityrnaseq/trinityrnaseq</a>&nbsp;- Trinity RNA-Seq de novo transcriptome assembly</li>
<li><a href="https://github.com/tokuhirom/p5-router-simple">tokuhirom/p5-router-simple</a>&nbsp;- simple http router</li>
<li><a href="https://github.com/thiagorondon/OpenData-BR">thiagorondon/OpenData-BR</a>&nbsp;- OpenData-BR</li>
<li><a href="https://github.com/skx/slaughter">skx/slaughter</a>&nbsp;- The Slaughter system-administration &amp; configuration tool.</li>
<li><a href="https://github.com/mizzy/webiblo">mizzy/webiblo</a>&nbsp;- Web to ebook project</li>
<li><a href="https://github.com/miyagawa/Dist-Milla">miyagawa/Dist-Milla</a>&nbsp;- Opinionated and Unobtrusive distribution builder</li>
<li><a href="https://github.com/meermanr/TVSeriesRenamer">meermanr/TVSeriesRenamer</a>&nbsp;- Script for renaming files in a digital video collection. Automatically fetches episode titles from the web.</li>
<li><a href="https://github.com/markround/Cacti-iostat-templates">markround/Cacti-iostat-templates</a>&nbsp;- A set of templates to monitor iostat statistics on Unix systems</li>
<li><a href="https://github.com/gvalkov/gitolite-sshkey-form">gvalkov/gitolite-sshkey-form</a>&nbsp;- A web app for submitting ssh public keys directly to gitolite</li>
<li><a href="https://github.com/ftilmann/latexdiff">ftilmann/latexdiff</a>&nbsp;- Compares two latex files and marks up significant differences between them. Releases on&nbsp;<a href="http://www.ctan.org/">www.ctan.org</a>&nbsp;and mirrors</li>
<li><a href="https://github.com/eprints/eprints">eprints/eprints</a>&nbsp;- EPrints Core</li>
<li><a href="https://github.com/eksopl/fuuka">eksopl/fuuka</a>&nbsp;- Fuuka Imageboard Archiver</li>
<li><a href="https://github.com/aelse/dot-ssh-config">aelse/dot-ssh-config</a>&nbsp;- Generate SSH client configurations with support for tunnels</li>
<li><a href="https://github.com/Perl5-Alien/Alien-Base">Perl5-Alien/Alien-Base</a>&nbsp;- Base classes for Alien:: modules</li>
<li><a href="https://github.com/Ovid/example-test-training-material">Ovid/example-test-training-material</a>&nbsp;- Sample Code From Ovid's Introductory Testing Course</li>
<li><a href="https://github.com/LuRsT/vspark">LuRsT/vspark</a>&nbsp;- Like spark, but vertical</li>
<li><a href="https://github.com/DjebbZ/Drupal-PHPStorm-Live-Templates">DjebbZ/Drupal-PHPStorm-Live-Templates</a>&nbsp;- PHPSTorm Live Templates (aka code snippets) for Drupal 7</li>
<li><a href="https://github.com/zamiron/ru4sphinx">zamiron/ru4sphinx</a>&nbsp;- Creating Russian voice model for cmu-sphinx</li>
<li><a href="https://github.com/yappo/p5-Data-Model">yappo/p5-Data-Model</a>&nbsp;- Data::Model is Data/Object Mapper and Model Manager.</li>
<li><a href="https://github.com/xaicron/p5-www-youtube-download">xaicron/p5-www-youtube-download</a>&nbsp;- YouTube video download interface.</li>
<li><a href="https://github.com/vti/protocol-websocket">vti/protocol-websocket</a>&nbsp;- Protocol::WebSocket</li>
<li><a href="https://github.com/ukigumo/Ukigumo-Server">ukigumo/Ukigumo-Server</a>&nbsp;- This is a ukigumo server application.</li>
<li><a href="https://github.com/treasonx/environment">treasonx/environment</a>&nbsp;- Personal Environment Files (vim, bash, etc)</li>
<li><a href="https://github.com/sartak/app-nopaste">sartak/app-nopaste</a>&nbsp;- easy access to any pastebin</li>
<li><a href="https://github.com/rolandwalker/emacs-travis">rolandwalker/emacs-travis</a>&nbsp;- Travis CI recipe for Emacs libraries.</li>
<li><a href="https://github.com/msimerson/sentry">msimerson/sentry</a>&nbsp;- Bruteforce attack blocker (ssh, FTP, SMTP, and more)</li>
<li><a href="https://github.com/lookout/ngx_borderpatrol">lookout/ngx_borderpatrol</a>&nbsp;- Edge-authentication</li>
<li><a href="https://github.com/ipfire/ipfire-2.x">ipfire/ipfire-2.x</a>&nbsp;- IPFire 2.x development tree</li>
<li><a href="https://github.com/dgl/cpangrep">dgl/cpangrep</a>&nbsp;- Search code on CPAN with Regexps</li>
<li><a href="https://github.com/bugzilla/bugzilla">bugzilla/bugzilla</a>&nbsp;- Read-only mirror of Bugzilla source from git.mozilla.org/bugzilla/bugzilla.git. Tests at&nbsp;<a href="https://travis-ci.org/bugzilla/bugzilla">https://travis-ci.org/bugzilla/bugzilla</a>&nbsp;&ndash;</li>
<li><a href="https://github.com/avar/irssi-bitlbee-facebook-rename">avar/irssi-bitlbee-facebook-rename</a>&nbsp;- A irssi script to rename chat.facebook.com nicks in bitlbee from e.g. "u1359078110" to "AEvarArnfjord"</li>
<li><a href="https://github.com/artm/qtcreator-solarized-syntax">artm/qtcreator-solarized-syntax</a>&nbsp;- Solarized style for Qt Creator's syntax highlighter</li>
<li><a href="https://github.com/SharkHunter/Channel">SharkHunter/Channel</a>&nbsp;- Channel Browse plugin for PMS</li>
<li><a href="https://github.com/OpenElectronicsLab/eeg-mouse">OpenElectronicsLab/eeg-mouse</a>&nbsp;- The eeg-mouse is a project to attempt to control a mouse with eeg signals.</li>
<li><a href="https://github.com/yusukebe/App-revealup">yusukebe/App-revealup</a>&nbsp;- HTTP Server app for viewing Markdown formatted text as slides</li>
<li><a href="https://github.com/yappo/JSTAPd">yappo/JSTAPd</a>&nbsp;- JSTAPd is Ajax application friendly Javascript Unit Test Server.</li>
<li><a href="https://github.com/wayfind/polite">wayfind/polite</a>&nbsp;- 一个为前端开发者量身打造的Vim配置和插件精选集</li>
<li><a href="https://github.com/smallfish/lua-resty-beanstalkd">smallfish/lua-resty-beanstalkd</a>&nbsp;- non-blocking beanstalkd client lib for ngx_lua</li>
<li><a href="https://github.com/sixteencolors/sixteencolors">sixteencolors/sixteencolors</a>&nbsp;- Sixteen Colors ANSI/ASCII Art Archive</li>
<li><a href="https://github.com/perigrin/moosex-poe">perigrin/moosex-poe</a>&nbsp;- The illicit love child of Moose and POE</li>
<li><a href="https://github.com/ole-tange/tangetools">ole-tange/tangetools</a>&nbsp;- Ole Tanges personal tools</li>
<li><a href="https://github.com/nothingmuch/class-mop">nothingmuch/class-mop</a>&nbsp;- Mirror of Class-MOP.git</li>
<li><a href="https://github.com/mjollnir/sf2debpkg">mjollnir/sf2debpkg</a>&nbsp;- Symfony2 Debian Packaging</li>
<li><a href="https://github.com/miyagawa/plack-dispatching-samples">miyagawa/plack-dispatching-samples</a>&nbsp;- Examples of Plack dispatcher using various CPAN modules</li>
<li><a href="https://github.com/miyagawa/Webhook-Growler">miyagawa/Webhook-Growler</a>&nbsp;- Receives Web hooks over Reverse HTTP and notifies via Growl</li>
<li><a href="https://github.com/miyagawa/HTTPx-Weblet">miyagawa/HTTPx-Weblet</a>&nbsp;- the Request/Response objects formerly known as the-old-Plack::Request</li>
<li><a href="https://github.com/miyagawa/Corona">miyagawa/Corona</a>&nbsp;- Coro based high-performance, asynchronous PSGI web server</li>
<li><a href="https://github.com/mengwong/org-asana">mengwong/org-asana</a>&nbsp;- Roundtrip synchronization and bidirectional replication between Emacs Org-mode and Asana.com.</li>
<li><a href="https://github.com/keydet89/Tools">keydet89/Tools</a>&nbsp;- Tools from WFA 4/e, timeline tools, etc.</li>
<li><a href="https://github.com/kan/moxy">kan/moxy</a>&nbsp;- Mobile web development proxy</li>
<li><a href="https://github.com/goccy/p5-Compiler-Tools-CopyPasteDetector">goccy/p5-Compiler-Tools-CopyPasteDetector</a>&nbsp;- detect Copy and Paste of Perl5 Codes</li>
<li><a href="https://github.com/ctcherry/easy_php_dev">ctcherry/easy_php_dev</a>&nbsp;- Collection of tools to quickly setup a dynamic PHP dev environment on OSX</li>
<li><a href="https://github.com/chromatic/CPAN-Dark">chromatic/CPAN-Dark</a>&nbsp;- Manage your own DarkPAN</li>
<li><a href="https://github.com/chansen/p5-http-tiny">chansen/p5-http-tiny</a>&nbsp;- Tiny HTTP Client</li>
<li><a href="https://github.com/bobtfish/catalystx-simplelogin">bobtfish/catalystx-simplelogin</a>&nbsp;- Simple login controller and template bundle for Catalyst</li>
<li><a href="https://github.com/bestpractical/git-sync">bestpractical/git-sync</a>&nbsp;- A tool to synchronize multiple git repositories</li>
<li><a href="https://github.com/Gilwyad/mailnesia.com">Gilwyad/mailnesia.com</a>&nbsp;- Anonymous Email in Seconds</li>
<li><a href="https://github.com/Ensembl/ensembl-rest">Ensembl/ensembl-rest</a>&nbsp;- Language agnostic RESTful data access to Ensembl data over HTTP</li>
<li><a href="https://github.com/CalculatedContent/tsvm">CalculatedContent/tsvm</a>&nbsp;- experiments testing transductive svm for my blog posts</li>
<li><a href="https://github.com/zby/WebNano">zby/WebNano</a>&nbsp;- A really minimalistic web framework.</li>
<li><a href="https://github.com/wtsi-hgi/docker-proxify">wtsi-hgi/docker-proxify</a>&nbsp;- Allows building and running docker container images from behind a corporate proxy</li>
<li><a href="https://github.com/tokuhirom/p5-psgiref">tokuhirom/p5-psgiref</a>&nbsp;- (DEPRECATED)just a prototype!</li>
<li><a href="https://github.com/robelix/hard-dj">robelix/hard-dj</a>&nbsp;- arduino based DJ MIDI cotroller using Harddisks as jog wheels</li>
<li><a href="https://github.com/rjbs/dzil.org">rjbs/dzil.org</a>&nbsp;- the source for dzil.org</li>
<li><a href="https://github.com/perldoc-jp/module-pod-jp">perldoc-jp/module-pod-jp</a>&nbsp;- 日本語訳したモジュールをおく場所その2</li>
<li><a href="https://github.com/motemen/Plack-Middleware-WebSocket">motemen/Plack-Middleware-WebSocket</a>&nbsp;- WebSocket handshake helper middleware</li>
<li><a href="https://github.com/kivitendo/kivitendo-erp">kivitendo/kivitendo-erp</a>&nbsp;- Web-based ERP system for the German market</li>
<li><a href="https://github.com/hinrik/hailo">hinrik/hailo</a>&nbsp;- A conversation bot using Markov chains</li>
<li><a href="https://github.com/g0v/moedict-data-csld">g0v/moedict-data-csld</a>&nbsp;- 中華語文知識庫 資料檔</li>
<li><a href="https://github.com/freenode/gms">freenode/gms</a>&nbsp;- Group Management System</li>
<li><a href="https://github.com/doy/reply">doy/reply</a>&nbsp;- read, eval, print, loop, yay!</li>
<li><a href="https://github.com/digitalbazaar/json-ld">digitalbazaar/json-ld</a>&nbsp;- A Context-based JSON Serialization for Linked Data</li>
<li><a href="https://github.com/dcantrell/ldap-for-dhcp">dcantrell/ldap-for-dhcp</a>&nbsp;- OpenLDAP support for dhcpd in ISC dhcp</li>
<li><a href="https://github.com/cjfields/biome">cjfields/biome</a>&nbsp;- An experimental Moose-based BioPerl implementation</li>
<li><a href="https://github.com/brennen/git-feed">brennen/git-feed</a>&nbsp;- git-feed: a script to generate Atom feeds for git commit logs</li>
<li><a href="https://github.com/bobthecow/PHP-HTML.mode">bobthecow/PHP-HTML.mode</a>&nbsp;- A fork of Coda 1.x's PHP-HTML syntax mode. Doesn't work with 2.x :(</li>
<li><a href="https://github.com/ant0ine/MongoDB-RDF">ant0ine/MongoDB-RDF</a>&nbsp;- Stores RDF-JSON documents in MongoDB</li>
<li><a href="https://github.com/adrian-bl/bitflu">adrian-bl/bitflu</a>&nbsp;- Bitflu BitTorrent Client</li>
<li><a href="https://github.com/MG-RAST/MG-RAST">MG-RAST/MG-RAST</a>&nbsp;- metagenomic analysis server site code</li>
<li><a href="https://github.com/xaicron/pm-uninstall">xaicron/pm-uninstall</a>&nbsp;- Uninstall modules</li>
<li><a href="https://github.com/windytan/bitocular">windytan/bitocular</a>&nbsp;- A tool to quickly examine the general structure of a file.</li>
<li><a href="https://github.com/toreanderson/clatd">toreanderson/clatd</a>&nbsp;- A 464XLAT CLAT implementation for Linux</li>
<li><a href="https://github.com/sitaramc/map">sitaramc/map</a>&nbsp;- Simpler than xargs. More power than xargs.</li>
<li><a href="https://github.com/silvansky/macscripts">silvansky/macscripts</a>&nbsp;- My Mac OS X scripts for different needs (may need some of my Mac OS X command line utils)</li>
<li><a href="https://github.com/nekokak/p5-Kamui">nekokak/p5-Kamui</a>&nbsp;- Plack base framework</li>
<li><a href="https://github.com/nabokov/mecab-dic-overdrive">nabokov/mecab-dic-overdrive</a>&nbsp;- create new mecab dic file, with score adjustment in accordance with existing terms.</li>
<li><a href="https://github.com/miyagawa/Catalyst-Engine-PSGI">miyagawa/Catalyst-Engine-PSGI</a>&nbsp;- PSGI engine for Catalyst</li>
<li><a href="https://github.com/melo/scripts">melo/scripts</a>&nbsp;- My personal script stash</li>
<li><a href="https://github.com/liedekef/spacewalk_scripts">liedekef/spacewalk_scripts</a>&nbsp;- Several spacewalk scripts</li>
<li><a href="https://github.com/kraih/mojolicio.us">kraih/mojolicio.us</a>&nbsp;- Mojolicious Website</li>
<li><a href="https://github.com/interconnectapp/discuss">interconnectapp/discuss</a>&nbsp;- A place to discuss interconnect</li>
<li><a href="https://github.com/glidenote/dotfiles">glidenote/dotfiles</a>&nbsp;- my dotfiles</li>
<li><a href="https://github.com/elubow/ec2-consistent-snapshot">elubow/ec2-consistent-snapshot</a>&nbsp;- EC2 Consistent Snapshot with Mongo Support</li>
<li><a href="https://github.com/dalibo/pgshark">dalibo/pgshark</a>&nbsp;- Messing with PostgreSQL network traffic to make some usefull things</li>
<li><a href="https://github.com/clkao/AnyMQ">clkao/AnyMQ</a>&nbsp;- Simple message queue based on AnyEvent</li>
<li><a href="https://github.com/chrisbra/vim_faq">chrisbra/vim_faq</a>&nbsp;- The Vim FAQ from&nbsp;<a href="http://vimdoc.sourceforge.net/">http://vimdoc.sourceforge.net/</a></li>
<li><a href="https://github.com/PerlDancer/advent-calendar">PerlDancer/advent-calendar</a>&nbsp;- Articles for the advent calendar</li>
<li><a href="https://github.com/Kimtaro/jisho.org">Kimtaro/jisho.org</a>&nbsp;- The source for classic.jisho.org</li>
<li><a href="https://github.com/shoorick/mojowka">shoorick/mojowka</a>&nbsp;- Small wiki based on top of Mojolicious::Lite</li>
<li></li></ul>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/36857/%E2%80%9Cone-code-to-find-them-all%E2%80%9D-a-perl-tool-to-conveniently-parse-repeatmasker-output-files</guid>
	<pubDate>Mon, 04 Jun 2018 03:45:15 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/36857/%E2%80%9Cone-code-to-find-them-all%E2%80%9D-a-perl-tool-to-conveniently-parse-repeatmasker-output-files</link>
	<title><![CDATA[“One code to find them all”: a perl tool to conveniently parse RepeatMasker output files]]></title>
	<description><![CDATA[One code to find them all is a set of perl scripts to extract useful information from RepeatMasker about transposable elements, retrieve their sequences and get some quantitative information.

Assemble RepeatMasker hits into complete TE copies, including LTR-retrotransposon
Retrieve corresponding TE sequences, and flanking sequences, from the local fasta files
Compute summary statistics for each TE family (number of TE copies, genome coverage...)
Ambiguous cases such as nested TE can be assembled into copies automatically or manually
Allow for working with a TE user-defined library
Allow for working with only a user-chosen set of TE families


http://doua.prabi.fr/software/one-code-to-find-them-all<p>Address of the bookmark: <a href="http://doua.prabi.fr/software/one-code-to-find-them-all" rel="nofollow">http://doua.prabi.fr/software/one-code-to-find-them-all</a></p>]]></description>
	<dc:creator>Poonam Mahapatra</dc:creator>
</item>

</channel>
</rss>