<?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/27461?offset=580</link>
	<atom:link href="https://bioinformaticsonline.com/related/27461?offset=580" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/30538/gkno</guid>
	<pubDate>Tue, 17 Jan 2017 03:35:34 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/30538/gkno</link>
	<title><![CDATA[GKNO]]></title>
	<description><![CDATA[<p><span>gkno opens the world of complex bioinformatic analysis to people of all level of computational expertise. This site contains documentation, tutorials and information on all the tools that comprise gkno.</span></p>
<p><span>More at&nbsp;http://gkno.me/</span></p><p>Address of the bookmark: <a href="http://gkno.me/" rel="nofollow">http://gkno.me/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/30654/source-code-and-pseudo-code</guid>
	<pubDate>Mon, 23 Jan 2017 10:17:35 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/30654/source-code-and-pseudo-code</link>
	<title><![CDATA[Source Code and Pseudo Code !!]]></title>
	<description><![CDATA[<p>An <span style="text-decoration: underline;">algorithm</span> is a procedure for solving a problem in terms of the actions to be executed and the order in which those actions are to be executed. An algorithm is merely the sequence of steps taken to solve a problem. The steps are normally "sequence," "selection, " "iteration," and a case-type statement.</p><p>In C, "sequence statements" are imperatives. The "selection" is the "if then else" statement, and the iteration is satisfied by a number of statements, such as the "while," " do," and the "for," while the case-type statement is satisfied by the "switch" statement.</p><hr><p><span style="text-decoration: underline;">Pseudocode</span> is an artificial and informal language that helps programmers develop algorithms. Pseudocode is a "text-based" detail (algorithmic) design tool.</p><p>The rules of Pseudocode are reasonably straightforward. All statements showing "dependency" are to be indented. These include while, do, for, if, switch. Examples below will illustrate this notion.</p><p><strong> GUIDE TO PSEUDOCODE LEVEL OF DETAIL: Given record/file descriptions, pseudocode should be created in sufficient detail so as to directly support the programming effort. It is the purpose of pseudocode to elaborate on the algorithmic detail and not just cite an abstraction. </strong></p><hr><p>Examples:</p><p>1.</p><pre>If student's grade is greater than or equal to 60
    Print "passed"
else
    Print "failed"  
endif
</pre><hr><p>2.</p><pre>  
Set total to zero
Set grade counter to one
While grade counter is less than or equal to ten
    Input the next grade
    Add the grade into the total
endwhile 
Set the class average to the total divided by ten
Print the class average.
</pre><hr><p>3.</p><pre>Initialize total to zero
Initialize counter to zero
Input the first grade
while the user has not as yet entered the sentinel
   add this grade into the running total 
   add one to the grade counter  
   input the next grade (possibly the sentinel)
endwhile

if the counter is not equal to zero
   set the average to the total divided by the counter
   print the average  
else
   print 'no grades were entered' 
endif 
</pre><hr><p>4.</p><pre>initialize passes to zero
initialize failures to zero
initialize student to one
while student counter is less than or equal to ten
    input the next exam result  
    if the student passed</pre><p>add one to passes else add one to failures add one to student counter endif endwhile print the number of passes print the number of failures if eight or more students passed print "raise tuition" endif</p><hr><h3><strong>5.</strong></h3><pre>Larger example:  

NOTE:  NEVER ANY DATA DECLARATIONS IN PSEUDOCODE

Print out appropriate heading and make it pretty
While not EOF do:
     Scan over blanks and white space until a char is found 
	(get first character on the line)
     set can't-be-ascending-flag to 0
     set consec cntr to 1
     set ascending cntr to 1
     putchar first char of string to screen
     set read character to hold character
     While next character read != blanks and white space
          putchar out on screen
          if new char = hold char + 1
               add 1 to consec cntr
               set hold char = new char
               continue
          endif
          if new char &gt;= hold char 
               if consec cntr &lt; 3 
                    set consec cntr to 1
               endif
               set hold char = new char
               continue
          endif
          if new char &lt; hold char
               if consec cntr &lt; 3
                    set consec cntr to 1
               endif
               set hold char = new char
               set can't be ascending flag to 1
               continue
           endif
     end while
     if consec cntr &gt;= 3 
          printf (Appropriate message 1 and skip a line)
          add 1 to consec total
     endif
     if  can't be ascending flag = 0
          printf (Appropriate message 2 and skip a line)
          add 1 to ascending total
     else
          printf (Sorry message and skip a line)
          add 1 to sorry total
     endif
end While
Print out totals:  Number of consecs, ascendings, and sorries.
Stop
</pre><p>Some Keywords That Should be Used And Additional Points</p><p>For looping and selection, The keywords that are to be used include Do While...EndDo; Do Until...Enddo; While .... Endwhile is acceptable. Also, Loop .... endloop is also VERY good and is language independent. Case...EndCase; If...Endif; Call ... with (parameters); Call; Return ....; Return; When;</p><p>Always use scope terminators for loops and iteration.</p><p>As verbs, use the words Generate, Compute, Process, etc. Words such as set, reset, increment, compute, calculate, add, sum, multiply, ... print, display, input, output, edit, test , etc. with careful indentation tend to foster desirable pseudocode. Also, using words such as Set and Initialize, when assigning values to variables is also desirable.</p><p>More on Formatting and Conventions in Pseudocoding</p><ul>
<li>INDENTATION in pseudocode should be identical to its implementation in a programming language. Try to indent at least four spaces.</li>
<li>As noted above, the pseudocode entries are to be cryptic, AND SHOULD NOT BE PROSE. NO SENTENCES.</li>
<li>No flower boxes (discussed ahead) in your pseudocode.</li>
<li>Do not include data declarations in your pseudocode.</li>
<li>But do cite variables that are initialized as part of their declarations. E.g. "initialize count to zero" is a good entry.<hr>Function Calls, Function Documentation, and Pseudocode</li>
<li>Calls to Functions should appear as:
<ul>     </ul>
</li>
<li>Returns in functions should appear as:
<ul> </ul>
</li>
<li>Function headers should appear as:
<ul>     </ul>
</li>
<li>Note that in C, arguments and parameters such as "fieldn" could be written: "pointer to fieldn ...."</li>
<li>Functions called with addresses should be written as:
<ul>         </ul>
</li>
<li>Function headers containing pointers should be indicated as:
<ul>        </ul>
</li>
<li>Returns in functions where a pointer is returned:
<ul>   </ul>
</li>
<li>It would not hurt the appearance of your pseudocode to draw a line or make your function header line "bold" in your pseudocode. Try to set off your functions.</li>
<li>Try to use scope terminators in your pseudocode and source code too. It really hels the readability of the text.<hr>Source Code</li>
<li>EVERY function should have a flowerbox PRECEDING IT. This flower box is to include the functions name, the main purpose of the function, parameters it is expecting (number and type), and the type of the data it returns. All of these listed items are to be on separate lines with spaces in between each explanatory item.</li>
<li>FORMAT of flowerbox should be
<p>&nbsp;</p>
<pre>	 ********************************************************
	 Function:   ( cryptic text describing single function
		     ....... (indented like this) 	
		     .......
	 Calls:      Start listing functions "this" function calls
		     Show these functions:  one per line, indented

	 Called by:  List of functions that calls "this" function
		     Show these functions:  one per line, indented.

	 Input Parameters:  list, if appropriate; else None
	 
	 Returns:    List, if appropriate.
	 ****************************************************************
</pre>
</li>
<li>INDENTATION is critically important in Source Code. Follow standard examples given in class. If in doubt, ASK. Always indent statements within IFs, FOR loops, WILLE loops, SWITCH statements, etc. a consistent number of spaces, such as four. Alternatively, use the tab key. One or two spaces is insufficient.</li>
<li>Use scope terminators at the end of if statements, for statements, while statements, and at the end of functions. It will make your program much more readable.
<p><strong> SPELLING ERRORS ARE NOT ACCEPTABLE </strong></p>
</li>
</ul>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/30696/many-core-engine-mce-for-perl-example</guid>
	<pubDate>Tue, 31 Jan 2017 05:37:50 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/30696/many-core-engine-mce-for-perl-example</link>
	<title><![CDATA[Many-Core Engine (MCE) for Perl example]]></title>
	<description><![CDATA[<p><span>MCE spawns a pool of workers and therefore does not fork a new process per each element of data. Instead, MCE follows a bank queuing model. Imagine the line being the data and bank-tellers the parallel workers. MCE enhances that model by adding the ability to chunk the next n elements from the input stream to the next available worker.</span></p>
<p>CORE MODULES</p>
<p>Three modules make up the core engine for MCE.</p>
<dl><dt id="MCE::Core"><a href="https://metacpan.org/pod/MCE#MCE::Core"><span></span></a><a></a><a href="https://metacpan.org/pod/distribution/MCE/lib/MCE/Core.pod">MCE::Core</a></dt><dd>
<p>Provides the Core API for Many-Core Engine. The various MCE options are described here.</p>
</dd><dt id="MCE::Signal"><a href="https://metacpan.org/pod/MCE#MCE::Signal"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Signal">MCE::Signal</a></dt><dd>
<p>Temporary directory creation, cleanup, and signal handling.</p>
</dd><dt id="MCE::Util"><a href="https://metacpan.org/pod/MCE#MCE::Util"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Util">MCE::Util</a></dt><dd>
<p>Utility functions for Many-Core Engine.</p>
</dd></dl>
<p><a href="https://metacpan.org/pod/MCE#MCE-EXTRAS"><span></span></a><a></a>MCE EXTRAS</p>
<p>There are 4 add-on modules for use with MCE.</p>
<dl><dt id="MCE::Candy"><a href="https://metacpan.org/pod/MCE#MCE::Candy"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Candy">MCE::Candy</a></dt><dd>
<p>Provides a collection of sugar methods and output iterators for preserving output order.</p>
</dd><dt id="MCE::Mutex"><a href="https://metacpan.org/pod/MCE#MCE::Mutex"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Mutex">MCE::Mutex</a></dt><dd>
<p>Provides a simple semaphore implementation supporting threads and processes.</p>
</dd><dt id="MCE::Queue"><a href="https://metacpan.org/pod/MCE#MCE::Queue"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Queue">MCE::Queue</a></dt><dd>
<p>Provides a hybrid queuing implementation for MCE supporting normal queues and priority queues from a single module. MCE::Queue exchanges data via the core engine to enable queuing to work for both children (spawned from fork) and threads.</p>
</dd><dt id="MCE::Relay"><a href="https://metacpan.org/pod/MCE#MCE::Relay"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Relay">MCE::Relay</a></dt><dd>
<p>Enables workers to receive and pass on information orderly with zero involvement by the manager process while running.</p>
</dd></dl>
<p><a href="https://metacpan.org/pod/MCE#MCE-MODELS"><span></span></a><a></a>MCE MODELS</p>
<p>The models take Many-Core Engine to a new level for ease of use. Two options (chunk_size and max_workers) are configured automatically as well as spawning and shutdown.</p>
<dl><dt id="MCE::Loop"><a href="https://metacpan.org/pod/MCE#MCE::Loop"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Loop">MCE::Loop</a></dt><dd>
<p>Provides a parallel loop utilizing MCE for building creative loops.</p>
</dd><dt id="MCE::Flow"><a href="https://metacpan.org/pod/MCE#MCE::Flow"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Flow">MCE::Flow</a></dt><dd>
<p>A parallel flow model for building creative applications. This makes use of user_tasks in MCE. The author has full control when utilizing this model. MCE::Flow is similar to MCE::Loop, but allows for multiple code blocks to run in parallel with a slight change to syntax.</p>
</dd><dt id="MCE::Grep"><a href="https://metacpan.org/pod/MCE#MCE::Grep"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Grep">MCE::Grep</a></dt><dd>
<p>Provides a parallel grep implementation similar to the native grep function.</p>
</dd><dt id="MCE::Map"><a href="https://metacpan.org/pod/MCE#MCE::Map"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Map">MCE::Map</a></dt><dd>
<p>Provides a parallel map model similar to the native map function.</p>
</dd><dt id="MCE::Step"><a href="https://metacpan.org/pod/MCE#MCE::Step"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Step">MCE::Step</a></dt><dd>
<p>Provides a parallel step implementation utilizing MCE::Queue between user tasks. MCE::Step is a spin off from MCE::Flow with a touch of MCE::Stream. This model, introduced in 1.506, allows one to pass data from one sub-task into the next transparently.</p>
</dd><dt id="MCE::Stream"><a href="https://metacpan.org/pod/MCE#MCE::Stream"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Stream">MCE::Stream</a></dt><dd>
<p>Provides an efficient parallel implementation for chaining multiple maps and greps together through user_tasks and MCE::Queue. Like with MCE::Flow, MCE::Stream can run multiple code blocks in parallel with a slight change to syntax from MCE::Map and MCE::Grep.</p>
</dd></dl>
<p><a href="https://metacpan.org/pod/MCE#MISCELLANEOUS"><span></span></a>MISCELLANEOUS</p>
<p>Miscellaneous additions included with the distribution.</p>
<dl><dt id="MCE::Examples"><a href="https://metacpan.org/pod/MCE#MCE::Examples"><span></span></a><a></a><a href="https://metacpan.org/pod/distribution/MCE/lib/MCE/Examples.pod">MCE::Examples</a></dt><dd>
<p>Describes various demonstrations for MCE including a Monte Carlo simulation.</p>
</dd><dt id="MCE::Subs"><a href="https://metacpan.org/pod/MCE#MCE::Subs"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Subs">MCE::Subs</a></dt><dd>
<p>Exports functions mapped directly to MCE methods; e.g. mce_wid. The module allows 3 options; :manager, :worker, and :getter.</p>
</dd></dl>
<p><a href="https://metacpan.org/pod/MCE#REQUIREMENTS"><span></span></a>REQUIREMENTS</p>
<p>Perl 5.8.0 or later. PDL::IO::Storable is required in scripts running PDL.</p>
<p><a href="https://metacpan.org/pod/MCE#SOURCE-AND-FURTHER-READING"><span></span></a><a></a>SOURCE AND FURTHER READING</p>
<p>The source, cookbook, and examples are hosted at GitHub.</p>
<ul>
<li>
<p><a href="https://github.com/marioroy/mce-perl">https://github.com/marioroy/mce-perl</a></p>
</li>
<li>
<p><a href="https://github.com/marioroy/mce-cookbook">https://github.com/marioroy/mce-cookbook</a></p>
</li>
<li>
<p><a href="https://github.com/marioroy/mce-examples">https://github.com/marioroy/mce-examples</a></p>
</li>
</ul>
<p><a href="https://metacpan.org/pod/MCE#SEE-ALSO"><span></span></a><a></a>SEE ALSO</p>
<p><code>MCE::Shared</code>&nbsp;provides data sharing capabilities for&nbsp;<code>MCE</code>. It includes&nbsp;<code>MCE::Hobo</code>&nbsp;for running code asynchronously.</p>
<ul>
<li>
<p><a href="https://metacpan.org/pod/MCE::Shared">MCE::Shared</a></p>
</li>
<li>
<p><a href="https://metacpan.org/pod/MCE::Hobo">MCE::Hobo</a></p>
</li>
</ul><p>Address of the bookmark: <a href="https://github.com/marioroy/mce-examples" rel="nofollow">https://github.com/marioroy/mce-examples</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/33840/awesome-perl-frameworks-libraries-and-software-part-3</guid>
	<pubDate>Fri, 07 Jul 2017 04:10:32 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/33840/awesome-perl-frameworks-libraries-and-software-part-3</link>
	<title><![CDATA[Awesome perl frameworks, libraries and software - PART 3]]></title>
	<description><![CDATA[<ul>
<li><a href="https://github.com/fujiwara/perl-queue-q4pg-lite">fujiwara/perl-queue-q4pg-lite</a>&nbsp;- simple message queue using PostgreSQL.</li>
<li><a href="https://github.com/formbuilder/formbuilder">formbuilder/formbuilder</a>&nbsp;- Perl CGI::FormBuilder module for generating, validating, and processing HTML forms</li>
<li><a href="https://github.com/fastly/fastly-perl">fastly/fastly-perl</a>&nbsp;- Fastly perl client</li>
<li><a href="https://github.com/ewilded/SCARY">ewilded/SCARY</a>&nbsp;- PHP Source Code Analyzer written in Perl (taint checking)</li>
<li><a href="https://github.com/esobchenko/rest-google">esobchenko/rest-google</a>&nbsp;- REST::Google provides OO access to Google REST API from Perl</li>
<li><a href="https://github.com/Ensembl/Bio-DB-HTS">Ensembl/Bio-DB-HTS</a>&nbsp;- Git repo for Bio::DB::HTS module on CPAN, providing Perl links into HTSlib</li>
<li><a href="https://github.com/eblah/E-Blah-Forum">eblah/E-Blah-Forum</a>&nbsp;- E-Blah is a Perl-based forum system started in 2001.</li>
<li><a href="https://github.com/dominikschulz/Zabbix-Sender">dominikschulz/Zabbix-Sender</a>&nbsp;- A pure-perl implementation of zabbix-sender.</li>
<li><a href="https://github.com/derf/Travel-Status-DE-IRIS">derf/Travel-Status-DE-IRIS</a>&nbsp;- IRIS Perl API (German and partially european railway departure monitor)</li>
<li><a href="https://github.com/Debian/devscripts">Debian/devscripts</a>&nbsp;- Mirror of&nbsp;<a href="https://anonscm.debian.org/cgit/collab-maint/devscripts.git">https://anonscm.debian.org/cgit/collab-maint/devscripts.git</a></li>
<li><a href="https://github.com/ddmitov/camel-doctor">ddmitov/camel-doctor</a>&nbsp;- Desktop HTML User Interface for the default Perl 5 Debugger&nbsp;<img src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f42a.png" alt=":dromedary_camel:" width="20" height="20" style="border: 0px; border: 0px;"></li>
<li><a href="https://github.com/dan-blanchard/io-storm">dan-blanchard/io-storm</a>&nbsp;-&nbsp;<img src="https://assets-cdn.github.com/images/icons/emoji/unicode/26a1.png" alt=":zap:" width="20" height="20" style="border: 0px; border: 0px;">&nbsp;Perl support for Apache Storm distributed computation system.</li>
<li><a href="https://github.com/dajobe/logger">dajobe/logger</a>&nbsp;- Perl IRC logger</li>
<li><a href="https://github.com/dagolden/Hash-Ordered">dagolden/Hash-Ordered</a>&nbsp;- A compact, pure-Perl ordered hash class</li>
<li><a href="https://github.com/dagolden/getopt-lucid">dagolden/getopt-lucid</a>&nbsp;- (Perl) Clear, readable syntax for command line processing</li>
<li><a href="https://github.com/craigslist/perl-AnyEvent-Redis-Federated">craigslist/perl-AnyEvent-Redis-Federated</a>&nbsp;- An event-based redis client that implements client-side sharding in Perl.</li>
<li><a href="https://github.com/cosimo/perl5-device-modem">cosimo/perl5-device-modem</a>&nbsp;- Device::Modem CPAN module, interface to any AT-command-set based device</li>
<li><a href="https://github.com/CindyLinz/Perl-AnyEvent-MySQL">CindyLinz/Perl-AnyEvent-MySQL</a>&nbsp;- Pure Perl AnyEvent socket implementation of MySQL client</li>
<li><a href="https://github.com/chorny/test-warn">chorny/test-warn</a>&nbsp;- Perl extension to test methods for warnings</li>
<li><a href="https://github.com/cho45/List-Enumerator">cho45/List-Enumerator</a>&nbsp;- List::Enumerator is like ruby's Enumerator. (Perl)</li>
<li><a href="https://github.com/bingos/module-install-readmefrompod">bingos/module-install-readmefrompod</a>&nbsp;- (perl) A Module::Install extension to automatically convert POD to a README</li>
<li><a href="https://github.com/bingos/bot-gumbynet">bingos/bot-gumbynet</a>&nbsp;- (perl) The GumbyNET bot code</li>
<li><a href="https://github.com/aufflick/p5-net-apns-persistent">aufflick/p5-net-apns-persistent</a>&nbsp;- Persistent Apple APNS interface for Perl 5</li>
<li><a href="https://github.com/ddmitov/perl-executing-browser">ddmitov/perl-executing-browser</a>&nbsp;- HTML User Interface for Perl 5 Desktop Applications&nbsp;<img src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f42a.png" alt=":dromedary_camel:" width="20" height="20" style="border: 0px; border: 0px;"></li>
<li><a href="https://github.com/phatblat/app-store-rank">phatblat/app-store-rank</a>&nbsp;- A simple Perl script which scrapes the 62 app stores worldwide for the current app ranking</li>
<li><a href="https://github.com/Easy-Forex/Verify-emails">Easy-Forex/Verify-emails</a>&nbsp;- Quick perl script to check a list of email addresses for valid and bogus.</li>
<li><a href="https://github.com/warewolf/Procmon">warewolf/Procmon</a>&nbsp;- A perl command toolkit for analysis of XML procmon logs</li>
<li><a href="https://github.com/typester/data-amf">typester/data-amf</a>&nbsp;- perl module for serialize/deserialize adobe's AMF data</li>
<li><a href="https://github.com/thibaultduponchelle/tryperl">thibaultduponchelle/tryperl</a>&nbsp;- Try Perl: learn the basics of the Perl language in your browser</li>
<li><a href="https://github.com/syohex/new-tohoho">syohex/new-tohoho</a>&nbsp;- Modernize 「とほほの perl入門」</li>
<li><a href="https://github.com/simcop2387/perlbuut">simcop2387/perlbuut</a>&nbsp;- new version of perlbot, based on buubot</li>
<li><a href="https://github.com/rjray/image-size">rjray/image-size</a>&nbsp;- A Perl module to read the dimensions of images in several popular formats</li>
<li><a href="https://github.com/perigrin/flexo-bot">perigrin/flexo-bot</a>&nbsp;- A Rewrite of the Bender IRC bot from irc.perl.org using the Adam/Moses framework</li>
<li><a href="https://github.com/norm/p5-Media">norm/p5-Media</a>&nbsp;- Perl modules and scripts for handling the conversion and storage of media</li>
<li><a href="https://github.com/nkakuev/list-cpp-warning-options">nkakuev/list-cpp-warning-options</a>&nbsp;- A simple Perl script that prints GCC warning options you can apply to C++ code.</li>
<li><a href="https://github.com/mscoutermarsh/RRD-to-CSV">mscoutermarsh/RRD-to-CSV</a>&nbsp;- Perl script to convert RRD data to CSV</li>
<li><a href="https://github.com/mones/clawsker">mones/clawsker</a>&nbsp;- This is a clone from main repository at&nbsp;<a href="http://git.claws-mail.org/">http://git.claws-mail.org</a>: Clawsker is a Perl-GTK2 applet to edit hidden preferences for Claws Mail, and to do it in a safe and user friendly way, preventing users from raw editing of configuration files.</li>
<li><a href="https://github.com/mackers/passook">mackers/passook</a>&nbsp;- Passook is a perl script that automatically generates passwords. Passook is customizable so that you can choose different levels between a very pronounceable or a very secure password. Passook can be run in a unix shell or as a cgi script.</li>
<li><a href="https://github.com/lecstor/PDF--Boxer">lecstor/PDF--Boxer</a>&nbsp;- Perl module to create PDF documents from "simple" templates.</li>
<li><a href="https://github.com/jmcnamara/app-pod2epub">jmcnamara/app-pod2epub</a>&nbsp;- A Perl Module for converting Pod to ePub eBooks.</li>
<li><a href="https://github.com/jjn1056/Example-PlackStreamingAndNonblocking">jjn1056/Example-PlackStreamingAndNonblocking</a>&nbsp;- Examples of Perl Plack / PSGI streaming and nonblocking</li>
<li><a href="https://github.com/hoytech/Valence-p5">hoytech/Valence-p5</a>&nbsp;- Perl interface to valence/electron GUI toolkit</li>
<li><a href="https://github.com/erinspice/geni-automerge">erinspice/geni-automerge</a>&nbsp;- A tool written in Perl using the Geni.com API which automatically merges sufficiently similar profiles.</li>
<li><a href="https://github.com/eilara/camel-defense">eilara/camel-defense</a>&nbsp;- A very simple tower defense game in Perl</li>
<li><a href="https://github.com/clintongormley/ElasticSearchX-Autocomplete">clintongormley/ElasticSearchX-Autocomplete</a>&nbsp;- ElasticSearchX::Autocomplete is a Perl module which gives you frequency (and optionally geolocation)-sensitive autocomplete suggestions based on your data</li>
<li><a href="https://github.com/audreyt/encode-hanconvert">audreyt/encode-hanconvert</a>&nbsp;- [Perl] Modules and scripts for Traditional and Simplified Chinese mappings</li>
<li><a href="https://github.com/szabgab/perltv.org">szabgab/perltv.org</a>&nbsp;- The source code of the Perl TV</li>
<li><a href="https://github.com/rhandom/perl-net-server">rhandom/perl-net-server</a>&nbsp;- Perl Module Net::Server</li>
<li><a href="https://github.com/plotly/Perl-API">plotly/Perl-API</a>&nbsp;- Perl-API for beautiful, interactive, &amp; shareable graphs</li>
<li><a href="https://github.com/MerijntjeTak/vyattaLookingGlass">MerijntjeTak/vyattaLookingGlass</a>&nbsp;- Looking glass for the Vyatta routing suite</li>
<li><a href="https://github.com/KES777/Devel-DebugHooks">KES777/Devel-DebugHooks</a>&nbsp;- Perl debugger</li>
<li><a href="https://github.com/jonasbn/perl-workflow">jonasbn/perl-workflow</a>&nbsp;- Simple, flexible system to implement workflows</li>
<li><a href="https://github.com/inway/mojo-rabbitmq-client">inway/mojo-rabbitmq-client</a>&nbsp;- Mojo::IOLoop based RabbitMQ (AMQP) client</li>
<li><a href="https://github.com/ingydotnet/yaml-pm">ingydotnet/yaml-pm</a>&nbsp;- YAML Perl Module</li>
<li><a href="https://github.com/gtsafas/mailgun.perl">gtsafas/mailgun.perl</a>&nbsp;- Perl wrapper for mailgun</li>
<li><a href="https://github.com/abaez/perl">abaez/perl</a>&nbsp;- Learning Perl</li>
<li><a href="https://github.com/technix/Perl-Analyzer">technix/Perl-Analyzer</a>&nbsp;- Perl source analyzer - view namespaces, dependencies, inheritance and much more</li>
<li><a href="https://github.com/zigorou/perl-json-patch">zigorou/perl-json-patch</a>&nbsp;- A Perl implementation of JSON Patch</li>
<li><a href="https://github.com/Yaribz/SPADS">Yaribz/SPADS</a>&nbsp;- SpringRTS Perl Autohost for Dedicated Server</li>
<li><a href="https://github.com/vti/app-prf">vti/app-prf</a>&nbsp;- Perl refactoring tool</li>
<li><a href="https://github.com/TvdW/perl-DBD-Cassandra">TvdW/perl-DBD-Cassandra</a>&nbsp;- DBD::Cassandra is a DBI driver for Cassandra/CQL3</li>
<li><a href="https://github.com/topaz/perl-mandelbrot">topaz/perl-mandelbrot</a>&nbsp;- Interactive Mandelbrot set renderer/explorer for your terminal.</li>
<li><a href="https://github.com/tociyuki/libtext-ampita-perl">tociyuki/libtext-ampita-perl</a>&nbsp;- Template generator from a xhtml document and runtime for it.</li>
<li><a href="https://github.com/tene/perl6-sqlite">tene/perl6-sqlite</a>&nbsp;- SQLite3 for Perl 6</li>
<li><a href="https://github.com/smarx/waz-storage-perl">smarx/waz-storage-perl</a>&nbsp;- Small library for working with Windows Azure storage from Perl</li>
<li><a href="https://github.com/scottchiefbaker/perl-git-prompt">scottchiefbaker/perl-git-prompt</a>&nbsp;- Git extension for the bash prompt</li>
<li><a href="https://github.com/sbober/levitation-perl">sbober/levitation-perl</a>&nbsp;- perl port of scy's levitation</li>
<li><a href="https://github.com/salva/p5-Net-SFTP-Foreign">salva/p5-Net-SFTP-Foreign</a>&nbsp;- Perl SFTP client</li>
<li><a href="https://github.com/russoz/perltests">russoz/perltests</a>&nbsp;- Small scripts to test constructs - mostly for myself.</li>
<li><a href="https://github.com/robrwo/Perl-Rewrite">robrwo/Perl-Rewrite</a>&nbsp;- Munge Perl Code</li>
<li><a href="https://github.com/rjbs/IPC-Run3">rjbs/IPC-Run3</a>&nbsp;- (Perl) run a subprocess with input/ouput redirection</li>
<li><a href="https://github.com/rjbs/Email-Simple">rjbs/Email-Simple</a>&nbsp;- the Email-Simple perl distribution</li>
<li><a href="https://github.com/ritou/p5-oidc-lite">ritou/p5-oidc-lite</a>&nbsp;- OIDC::Lite - Perl Library of OpenID Connect</li>
<li><a href="https://github.com/pjf/WebService-HabitRPG">pjf/WebService-HabitRPG</a>&nbsp;- Access the HabitRPG API from Perl</li>
<li><a href="https://github.com/pjf/trillr">pjf/trillr</a>&nbsp;- Perl tip example code</li>
<li><a href="https://github.com/PerlBone/PerlBone">PerlBone/PerlBone</a>&nbsp;- PerlBone allows you to write Arduino Style software in Perl for the BeagleBone. It is to Perl what BoneScript is to Javascript</li>
<li><a href="https://github.com/Ovid/code-cutnpaste">Ovid/code-cutnpaste</a>&nbsp;- Find cut-n-pasted Perl code</li>
<li><a href="https://github.com/mfontani/Net-Amazon-Route53">mfontani/Net-Amazon-Route53</a>&nbsp;- Perl interface to Amazon's Route 53 service</li>
<li><a href="https://github.com/maxmind/GeoIP2-perl">maxmind/GeoIP2-perl</a>&nbsp;- Perl API for MaxMind's GeoIP2 web services and databases</li>
<li><a href="https://github.com/maros/CatalystX-I18N">maros/CatalystX-I18N</a>&nbsp;- Perl I18N Toolkit for the Catalyst MVC</li>
<li><a href="https://github.com/marcusramberg/text-simpletable">marcusramberg/text-simpletable</a>&nbsp;- The Text::SimpleTable perl distribution</li>
<li><a href="https://github.com/lovelle/perl-disque">lovelle/perl-disque</a>&nbsp;- Perl client for Disque, an in-memory, distributed job queue</li>
<li><a href="https://github.com/leto/math--matrixreal">leto/math--matrixreal</a>&nbsp;- Matrices of real numbers in Perl</li>
<li><a href="https://github.com/Klortho/Physics-Unit">Klortho/Physics-Unit</a>&nbsp;- Perl Physics::Unit module</li>
<li><a href="https://github.com/kentaro/perl-project-libs">kentaro/perl-project-libs</a>&nbsp;- Include modules libs automatically</li>
<li><a href="https://github.com/karpet/search-query-perl">karpet/search-query-perl</a>&nbsp;- Search::Query - polyglot query parsing</li>
<li><a href="https://github.com/jplindstrom/p5-Devel-PerlySense">jplindstrom/p5-Devel-PerlySense</a>&nbsp;- CPAN module Devel::PerlySense</li>
<li><a href="https://github.com/hvoers/PNL">hvoers/PNL</a>&nbsp;- Site for Perl mongers in NL</li>
<li><a href="https://github.com/HouzuoGuo/PerlDB">HouzuoGuo/PerlDB</a>&nbsp;- This is a programming exercise, do not use in serious code.</li>
<li><a href="https://github.com/hirose31/p5-InfluxDB">hirose31/p5-InfluxDB</a>&nbsp;- Perl client library for InfluxDB</li>
<li><a href="https://github.com/grantm/XML-SAX">grantm/XML-SAX</a>&nbsp;- Simple API for XML including pure Perl parser</li>
<li><a href="https://github.com/GeneticGenesis/Perl-Ferment">GeneticGenesis/Perl-Ferment</a>&nbsp;- Yet another tool to manage perl installs in your home directory.</li>
<li><a href="https://github.com/Ensembl/ensembl-funcgen">Ensembl/ensembl-funcgen</a>&nbsp;- Ensembl Funcgen Perl API and SQL schema</li>
<li><a href="https://github.com/dk/Win32-GuiTest">dk/Win32-GuiTest</a>&nbsp;- Perl GUI Test Utilities</li>
<li><a href="https://github.com/depesz/Pg--Explain">depesz/Pg--Explain</a>&nbsp;- Pg::Explain Perl module</li>
<li><a href="https://github.com/dann/p5-perl-metrics-lite">dann/p5-perl-metrics-lite</a>&nbsp;- Pluggable Perl Metrics System</li>
<li><a href="https://github.com/daisieh/phylogenomics">daisieh/phylogenomics</a>&nbsp;- (Mostly) Perl scripts that do something related to phylogenomic analysis.</li>
<li><a href="https://github.com/carwynmoore/perl-nats">carwynmoore/perl-nats</a>&nbsp;- A Perl client for the NATS messaging system</li>
<li><a href="https://github.com/briandfoy/test-prereq">briandfoy/test-prereq</a>&nbsp;- (Perl) check if Makefile.PL has the right pre-requisites</li>
<li><a href="https://github.com/briandfoy/cpan-packagedetails">briandfoy/cpan-packagedetails</a>&nbsp;- (Perl) This is what the module does</li>
<li><a href="https://github.com/bingos/cpanplus-yacsmoke">bingos/cpanplus-yacsmoke</a>&nbsp;- (perl) Yet Another CPANPLUS Smoke Tester</li>
<li><a href="https://github.com/beanz/net-mqtt-perl">beanz/net-mqtt-perl</a>&nbsp;- Perl implementation of MQTT Protocol (<a href="http://mqtt.org/">http://mqtt.org</a>)</li>
<li><a href="https://github.com/perl6/book">perl6/book</a>&nbsp;- Using Perl 6 - an unfinished book about Perl 6</li>
<li><a href="https://github.com/lukec/stripe-perl">lukec/stripe-perl</a>&nbsp;- Perl library to connect to the Stripe API</li>
<li><a href="https://github.com/c0bra/image-wordcloud-perl">c0bra/image-wordcloud-perl</a>&nbsp;- Perl module for generating pretty wordcloud images</li>
<li><a href="https://github.com/bradfitz/set-consistenthash-perl">bradfitz/set-consistenthash-perl</a>&nbsp;- consistent hashing library for Perl</li>
<li><a href="https://github.com/wolfman2000/Perl-6-Pastebin">wolfman2000/Perl-6-Pastebin</a>&nbsp;- A pastebin written in Perl 5 to host content specifically meant for Perl 6.</li>
<li><a href="https://github.com/njh/perl-net-rtp">njh/perl-net-rtp</a>&nbsp;- Perl Module : Send and receive RTP packets (RFC3550)</li>
<li><a href="https://github.com/beanz/net-pachube-perl">beanz/net-pachube-perl</a>&nbsp;- Perl Interface to Pachube</li>
<li><a href="https://github.com/apparentlymart/perl-anyevent-websocket">apparentlymart/perl-anyevent-websocket</a>&nbsp;- WebSocket implementation for AnyEvent</li>
<li><a href="https://github.com/tsee/ZMQ-Declare-Perl">tsee/ZMQ-Declare-Perl</a>&nbsp;- The ZMQ::Declare Perl module for declarative use of 0MQ</li>
<li><a href="https://github.com/sjohnston/Net-Zabbix">sjohnston/Net-Zabbix</a>&nbsp;- Perl wrapper for Zabbix API</li>
<li><a href="https://github.com/reneeb/Perl-Critic-OTRS">reneeb/Perl-Critic-OTRS</a>&nbsp;- A collection of Perl::Critic policies to program in the OTRS way.</li>
<li><a href="https://github.com/masak/csv">masak/csv</a>&nbsp;- A parser for CSV (comma-separated values) files for Perl 6</li>
<li><a href="https://github.com/jtbraun/Parse-RecDescent">jtbraun/Parse-RecDescent</a>&nbsp;- Perl module for generating recursive-descent parsers</li>
<li><a href="https://github.com/jjn1056/perl-recruiting-web">jjn1056/perl-recruiting-web</a>&nbsp;- webpages for helping recruiters and perl programmers understand each other better</li>
<li><a href="https://github.com/chef-boneyard/chef-install">chef-boneyard/chef-install</a>&nbsp;- A perl based installer for Chef</li>
<li><a href="https://github.com/pvande/Template-Mustache">pvande/Template-Mustache</a>&nbsp;- Drawing Mustaches on Perl, for fun and profit</li>
<li><a href="https://github.com/schwern/Paths">schwern/Paths</a>&nbsp;- Grand Unified Perl File and Directory Objects</li>
<li><a href="https://github.com/schwern/Gravatar-URL">schwern/Gravatar-URL</a>&nbsp;- Perl module to make URLs for Gravatars from an email address</li>
<li><a href="https://github.com/p5-shorten/WWW-Shorten-Yourls">p5-shorten/WWW-Shorten-Yourls</a>&nbsp;- Perl module for shortening URLs using yourls.org</li>
<li><a href="https://github.com/juliensobrier/Net-Google-SafeBrowsing2">juliensobrier/Net-Google-SafeBrowsing2</a>&nbsp;- Google Safe Browsing v2 library for Perl</li>
<li><a href="https://github.com/EntropyOrg/p5-Devel-IPerl">EntropyOrg/p5-Devel-IPerl</a>&nbsp;-&nbsp;<img src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f52c.png" alt=":microscope:" width="20" height="20" style="border: 0px; border: 0px;"><img src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f4da.png" alt=":books:" width="20" height="20" style="border: 0px; border: 0px;">&nbsp;Perl language kernel for Jupyter&nbsp;<a href="http://jupyter.org/">http://jupyter.org/</a></li>
<li><a href="https://github.com/PerlChina/HeadFirstMoose">PerlChina/HeadFirstMoose</a>&nbsp;- 使用Perl + Moose实现《Head First Design Pattern》的大部分例子</li>
<li><a href="https://github.com/mudler/GitInsight">mudler/GitInsight</a>&nbsp;- Predict your github contributions using Bayesian inference and Markov chain with perl and PDL</li>
<li><a href="https://github.com/dagolden/File-chdir">dagolden/File-chdir</a>&nbsp;- (Perl) a more sensible way to change directories</li>
<li><a href="https://github.com/potyl/perl-App-deckjs2pdf">potyl/perl-App-deckjs2pdf</a>&nbsp;- Convert a Deck.JS presentation to PDF</li>
<li><a href="https://github.com/Perl-Toolchain-Gang/Sub-Uplevel">Perl-Toolchain-Gang/Sub-Uplevel</a>&nbsp;- (Perl) apparently run a function in a higher stack frame</li>
<li><a href="https://github.com/mlawren/p5-OptArgs">mlawren/p5-OptArgs</a>&nbsp;- Integrated option and argument processing for Perl scripts</li>
<li><a href="https://github.com/masterzen/redis-snmp">masterzen/redis-snmp</a>&nbsp;- A perl net-snmp agentX to export Redis performance counters</li>
<li><a href="https://github.com/masochist/modern-perl-cpan-task-kensho">masochist/modern-perl-cpan-task-kensho</a>&nbsp;- The repository for the upcoming book, Modern Perl with CPAN</li>
<li><a href="https://github.com/jeffa/DesignPatterns-Perl">jeffa/DesignPatterns-Perl</a>&nbsp;- Perl (with Moose) implementations of the Gang of Four Design Patterns</li>
<li><a href="https://github.com/agentzh/makefile-parser-pm">agentzh/makefile-parser-pm</a>&nbsp;- Perl CPAN module Makefile::Parser - A simple parser for Makefiles</li>
<li><a href="https://github.com/Real-Gecko/filemin">Real-Gecko/filemin</a>&nbsp;- File manager for Webmin written completely in perl</li>
<li><a href="https://github.com/andreas-marschke/nagios-nrpe">andreas-marschke/nagios-nrpe</a>&nbsp;- A pure perl implementation of the Nagios NRPE daemon and client</li>
<li><a href="https://github.com/syohex/zsh-perl-completions">syohex/zsh-perl-completions</a>&nbsp;- zsh completions for Perl utilties</li>
<li><a href="https://github.com/pclinger/SonyCameraRemote">pclinger/SonyCameraRemote</a>&nbsp;- Sony Camera Remote API - Perl Implementation</li>
<li><a href="https://github.com/patch/cldr-number-pm5">patch/cldr-number-pm5</a>&nbsp;- CLDR::Number (Perl 5): Localized number formatters using the Unicode CLDR</li>
<li><a href="https://github.com/ollyg/Net-CLI-Interact">ollyg/Net-CLI-Interact</a>&nbsp;- Development of Net::CLI::Interact Perl distribution</li>
<li><a href="https://github.com/nothingmuch/continuation-delimited">nothingmuch/continuation-delimited</a>&nbsp;- delimited continuations for Perl 5</li>
<li><a href="https://github.com/nmelnick/whatbot">nmelnick/whatbot</a>&nbsp;- whatbot: A sane bot for most chat applications, written in modern Perl</li>
<li><a href="https://github.com/naoya/list-rubylike">naoya/list-rubylike</a>&nbsp;- Ruby-like list operations for perl</li>
<li><a href="https://github.com/miyagawa/CPAN-Any">miyagawa/CPAN-Any</a>&nbsp;- Install Perl modules using any CPAN clients</li>
<li><a href="https://github.com/miki/Algorithm-LSH">miki/Algorithm-LSH</a>&nbsp;- perl implementation of Locality Sensitive Hashing</li>
<li><a href="https://github.com/kimmel/basic-perl-template-for-cli">kimmel/basic-perl-template-for-cli</a>&nbsp;- A basic template for Perl applications that take and parse command line options. Based on the ideas from Perl Best Practices and the GNU style long options reference. It uses only Standard Modules to maintain portability.</li>
<li><a href="https://github.com/gardejo/moose-presentations">gardejo/moose-presentations</a>&nbsp;- Perl Moose course in Japanese</li>
<li><a href="https://github.com/dpavlin/Biblio-RFID">dpavlin/Biblio-RFID</a>&nbsp;- perl tools to use different RFID readers for library use</li>
<li><a href="https://github.com/chef/chef-install">chef/chef-install</a>&nbsp;- A perl based installer for Chef</li>
<li><a href="https://github.com/bingos/smokebrew">bingos/smokebrew</a>&nbsp;- (perl) Automated Perl building and installation for CPAN Testers</li>
<li><a href="https://github.com/andrewrjones/perl5-App-MP4Meta">andrewrjones/perl5-App-MP4Meta</a>&nbsp;- Apply iTunes-like meta data to an mp4 file</li>
<li><a href="https://github.com/admc/irssi-growlnotify">admc/irssi-growlnotify</a>&nbsp;- Creating Growl notifications from various Irssi events, using growlnotify and Irssi Perl.</li>
<li><a href="https://github.com/plack/psgi-specs">plack/psgi-specs</a>&nbsp;- PSGI (Perl WSGI) specifications</li>
<li><a href="https://github.com/libwww-perl/uri">libwww-perl/uri</a>&nbsp;- The Perl URI:: module</li>
<li><a href="https://github.com/autarch/DateTime.pm">autarch/DateTime.pm</a>&nbsp;- A date and time object for Perl</li>
<li><a href="https://github.com/zostay/P6SGI">zostay/P6SGI</a>&nbsp;- Proposed Standard for Perl 6 Web Server Gateway Interface Specification</li>
<li><a href="https://github.com/cooper/yiria">cooper/yiria</a>&nbsp;- the current generation of juno-ircd, an IRC server daemon written in the Perl programming language. it's very modular and event-driven, designed specifically to be extensible and aims to implement all modern features of IRC, including those of many recently-defined specifications.</li>
<li><a href="https://github.com/wertarbyte/hetzner-rdns">wertarbyte/hetzner-rdns</a>&nbsp;- update reverse DNS settings for systems hosted at Hetzner; a successor (hetzner-robot-perl) is in preparation to utilise the webservice interface</li>
<li><a href="https://github.com/spencertipping/canard">spencertipping/canard</a>&nbsp;- A functional concatenative language implemented in Linux/AMD64 machine code and self-modifying perl</li>
<li><a href="https://github.com/sni/Monitoring-Generator-TestConfig">sni/Monitoring-Generator-TestConfig</a>&nbsp;- Perl extension for generating test monitoring configurations (nagios/icinga/shinken)</li>
<li><a href="https://github.com/slazar/Panasonic-LF20-control">slazar/Panasonic-LF20-control</a>&nbsp;- Perl Scripts to control the Panasonic LF20 LCD TV Series</li>
<li><a href="https://github.com/sabujp/nfsSpeedTest">sabujp/nfsSpeedTest</a>&nbsp;- nfsSpeedTest is a wrapper for dd written in Perl. It was created mainly for testing the performance of file systems or network file shares (e.g. NFS), but can be used for generating large files (e.g. swap files) or for testing the network</li>
<li><a href="https://github.com/quietfanatic/link-c">quietfanatic/link-c</a>&nbsp;- Easily use C libraries in Rakudo Perl 6</li>
<li><a href="https://github.com/pjain/WWW-Shorten-Yourls">pjain/WWW-Shorten-Yourls</a>&nbsp;- Perl module for shortening URLs using yourls.org</li>
<li><a href="https://github.com/nightsailer/net-sinaweibo">nightsailer/net-sinaweibo</a>&nbsp;- A lightweight Perl OAuth api for SinaWeibo(新浪微博)</li>
<li><a href="https://github.com/mbethke/Ashafix">mbethke/Ashafix</a>&nbsp;- A Postfixadmin clone in Perl/Mojolicious</li>
<li><a href="https://github.com/kzys/test-mock-recorder">kzys/test-mock-recorder</a>&nbsp;- Record-and-verify style mocking library for Perl</li>
<li><a href="https://github.com/kpumuk/mysqlsla-bdb">kpumuk/mysqlsla-bdb</a>&nbsp;- MySQL Slow Logs Analyzer optimized to work with huge logs (use BerkeleyDB instead of perl hashes)</li>
<li><a href="https://github.com/hernan604/Web-IRC">hernan604/Web-IRC</a>&nbsp;- The purpose of Web::IRC is to help team communication. Web::IRC uses channel concept from IRC. Slack.com clone in&nbsp;<em>perl</em>&nbsp;&lt;3</li>
<li><a href="https://github.com/duckduckgo/p5-duckpan-installer">duckduckgo/p5-duckpan-installer</a>&nbsp;- DuckPAN Perl Installer</li>
<li><a href="https://github.com/dnmfarrell/Perly-Bot">dnmfarrell/Perly-Bot</a>&nbsp;- a RSS trawler and social media broadcaster</li>
<li><a href="https://github.com/PDLPorters/PDL-Stats">PDLPorters/PDL-Stats</a>&nbsp;- Statistics modules in Perl Data Language, with a quick-start guide for non-PDL people. They make the PDL shell work like R, but with PDL threading (fast automatic iteration) of procedures including t-test, linear regression, and k-means clustering.</li>
<li><a href="https://github.com/CPAN-API/metacpan-client">CPAN-API/metacpan-client</a>&nbsp;- Home of the official MetaCPAN Perl API client.</li>
<li><a href="https://github.com/rrb3942/perl-Asterisk-AMI">rrb3942/perl-Asterisk-AMI</a>&nbsp;- A Perl module for interfacing with the Asterisk Management Interface.</li>
<li><a href="https://github.com/rafl/perlfaq">rafl/perlfaq</a>&nbsp;- History of the perlfaq distribution before it got moved to&nbsp;<a href="https://github.com/tpf/perlfaq">https://github.com/tpf/perlfaq</a></li>
<li><a href="https://github.com/mithun/perl-tmdb">mithun/perl-tmdb</a>&nbsp;- TMDB - Perl wrapper for The MovieDB API</li>
<li><a href="https://github.com/hyphaltip/htbda_perl_class">hyphaltip/htbda_perl_class</a>&nbsp;- High Throughput Biological Data Analysis using Perl</li>
<li><a href="https://github.com/gmcharlt/marc-perl">gmcharlt/marc-perl</a>&nbsp;- MARC/Perl (mirror of git://git.code.sf.net/p/marcpm/code)</li>
<li><a href="https://github.com/cosimo/perl5-http-dav">cosimo/perl5-http-dav</a>&nbsp;- Perl5 HTTP::DAV CPAN module, interface to WebDAV-enabled HTTP servers</li>
<li><a href="https://github.com/copperly/Perl-Tutorial">copperly/Perl-Tutorial</a>&nbsp;- Tutorial for Perl</li>
<li><a href="https://github.com/apocalypse/perl-dist-zilla-plugin-authority">apocalypse/perl-dist-zilla-plugin-authority</a>&nbsp;- add an $AUTHORITY to your packages</li>
<li><a href="https://github.com/DrHyde/perlscripts">DrHyde/perlscripts</a>&nbsp;- Random scripts</li>
<li><a href="https://github.com/perl6/DBIish">perl6/DBIish</a>&nbsp;- Database interface for Perl 6</li>
<li><a href="https://github.com/shlomif/mastering-perl">shlomif/mastering-perl</a>&nbsp;- A copy of brian d foy's mastering-perl book.</li>
<li><a href="https://github.com/Prajithp/letsencrypt-cpanel">Prajithp/letsencrypt-cpanel</a>&nbsp;- cPanel/WHM plugin for Let's Encrypt client (uses perl and WHM API)</li>
<li><a href="https://github.com/mikecardwell/pipe2imap">mikecardwell/pipe2imap</a>&nbsp;- Pipe2IMAP is a Perl script that will take IMAP options from the command line arguments, and an email from a PIPE, and will deliver the message via IMAP</li>
<li><a href="https://github.com/silverstripe-labs/silverstripe-unidecode">silverstripe-labs/silverstripe-unidecode</a>&nbsp;- Unidecode is a PHP version of the perl module Text::Unicode. It takes UTF-8 data and tries to represent it in US-ASCII characters.</li>
<li><a href="https://github.com/exhuma/jsttyplay">exhuma/jsttyplay</a>&nbsp;- A set of scripts written in Perl and JavaScript to allow ttyrec logs to be played back in a web browser.</li>
<li><a href="https://github.com/demianriccardi/HackaMol">demianriccardi/HackaMol</a>&nbsp;- Object-Oriented Perl 5, Moose Library for Molecular Hacking</li>
<li><a href="https://github.com/davorg/www-shorten">davorg/www-shorten</a>&nbsp;- Perl interface to various URL-shortening sites</li>
<li><a href="https://github.com/agentzh/queue-memcached-buffered">agentzh/queue-memcached-buffered</a>&nbsp;- Perl client library for memcacheq operations</li>
<li><a href="https://github.com/toronto-perl-mongers/tpm-website">toronto-perl-mongers/tpm-website</a>&nbsp;- Toronto Perl Mongers Website</li>
<li><a href="https://github.com/odyniec/p5-WebService-Amazon-Route53">odyniec/p5-WebService-Amazon-Route53</a>&nbsp;- Perl interface to Amazon Route 53 API</li>
<li><a href="https://github.com/neilb/perl-hub">neilb/perl-hub</a>&nbsp;- Proof of concept for "front page for the perl community"</li>
<li><a href="https://github.com/mschilli/proc-simple-perl">mschilli/proc-simple-perl</a>&nbsp;- Proc::Simple CPAN Module</li>
<li><a href="https://github.com/makamaka/geohex-perl">makamaka/geohex-perl</a>&nbsp;- geohex perl implementation (Geo::Hex)</li>
<li><a href="https://github.com/gslin/thrift-perl">gslin/thrift-perl</a>&nbsp;- Perl module of Thrift</li>
<li><a href="https://github.com/djzort/Net-DHCP">djzort/Net-DHCP</a>&nbsp;- Perl module Net::DHCP</li>
<li><a href="https://github.com/cosimo/perl5-test-device-serialport">cosimo/perl5-test-device-serialport</a>&nbsp;- A mock object to test virtual serial port-based devices</li>
<li><a href="https://github.com/afair/resque-perl">afair/resque-perl</a>&nbsp;- Resque ported to perl</li>
<li><a href="https://github.com/PerlChina/Newbie-Gift">PerlChina/Newbie-Gift</a>&nbsp;- A tool suite for perl newbie.</li>
<li><a href="https://github.com/Perl-Email-Project/Email-Send">Perl-Email-Project/Email-Send</a>&nbsp;- perl library for sending email</li>
<li><a href="https://github.com/Lemonade-Stand/Lemonade">Lemonade-Stand/Lemonade</a>&nbsp;- Perl E-commerce Solution</li>
<li><a href="https://github.com/atomicules/TTYtter">atomicules/TTYtter</a>&nbsp;- Unofficial maintenance and mirror of&nbsp;<a href="http://www.floodgap.com/software/ttytter/">Floodgap's TTYtter</a>: an interactive console text-based command-line Twitter client and Perl platform (whew!)</li>
<li><a href="https://github.com/worldmind/perl-test-code-quality-template">worldmind/perl-test-code-quality-template</a>&nbsp;- Some tests for non-functional testing - you can copy these test to any your perl project</li>
<li><a href="https://github.com/dpavlin/perl-fuse">dpavlin/perl-fuse</a>&nbsp;- write filesystems in Perl using FUSE</li>
<li><a href="https://github.com/rjbs/Email-Valid">rjbs/Email-Valid</a>&nbsp;- perl library to validate email addresses</li>
<li><a href="https://github.com/masak/gge">masak/gge</a>&nbsp;- Glacial Grammar Engine -- a Perl 6 grammar engine written in Perl 6</li>
<li><a href="https://github.com/masak/druid">masak/druid</a>&nbsp;- A connection-oriented board game written in Perl 6</li>
<li><a href="https://github.com/harisekhon/lib">harisekhon/lib</a>&nbsp;- Perl &amp; Python Utility Library for my other repos</li>
<li><a href="https://github.com/tempire/riak-tiny">tempire/riak-tiny</a>&nbsp;- Perl interface to Riak without Moose</li>
<li><a href="https://github.com/oz/tiny_wiki">oz/tiny_wiki</a>&nbsp;- 50 lines of Perl to play around with Dancer and KiokuDB</li>
<li><a href="https://github.com/goozbach/perl-Net-Disqus">goozbach/perl-Net-Disqus</a>&nbsp;- A Perl library for the Disqus API -- Deprecated</li>
<li><a href="https://github.com/borisdaeppen/VM-JiffyBox">borisdaeppen/VM-JiffyBox</a>&nbsp;- Perl API for JiffyBox</li>
<li><a href="https://github.com/apeiron/modern-perl-cpan-task-kensho">apeiron/modern-perl-cpan-task-kensho</a>&nbsp;- The repository for the upcoming book, Modern Perl with CPAN</li>
<li><a href="https://github.com/ajolma/geoinformatica">ajolma/geoinformatica</a>&nbsp;- Geoinformatica is a geospatial toolkit that builds on GDAL, Perl and GTK+</li>
<li><a href="https://github.com/Weborama/Riak-Light">Weborama/Riak-Light</a>&nbsp;- Fast and lightweight Perl client for Riak</li>
<li><a href="https://github.com/zostay/owasp-esapi-perl">zostay/owasp-esapi-perl</a>&nbsp;- OWASP Enterprise Security API for Perl</li>
<li><a href="https://github.com/yannk/perl-net-appnotifications">yannk/perl-net-appnotifications</a>&nbsp;- perl5 interface to&nbsp;<a href="http://www.appnotifications.com/">www.appnotifications.com</a>: easily deliver push notifications to your iPhone</li>
<li><a href="https://github.com/three18ti/Reddit.pm">three18ti/Reddit.pm</a>&nbsp;- Perl wrapper for the reddit API</li>
<li><a href="https://github.com/sukria/Test-TinyMocker">sukria/Test-TinyMocker</a>&nbsp;- Minimal yet very useful mocker for Perl</li>
<li><a href="https://github.com/solgenomics/yapri">solgenomics/yapri</a>&nbsp;- Yet Another Perl R Inteface.</li>
<li><a href="https://github.com/rclasen/workout">rclasen/workout</a>&nbsp;- Workout file perl library</li>
<li><a href="https://github.com/pshangov/perldoc-vim">pshangov/perldoc-vim</a>&nbsp;- Perldoc viewer for vim with syntax highlighting</li>
<li><a href="https://github.com/olof/transmission-client">olof/transmission-client</a>&nbsp;- Perl interface to Transmission bittorrent client</li>
<li><a href="https://github.com/ogawa/cybozu2ical-perl">ogawa/cybozu2ical-perl</a>&nbsp;- Converting Cybozu Office Scheduler data to iCalendar format.</li>
<li><a href="https://github.com/motemen/perl5-Print-Indented">motemen/perl5-Print-Indented</a>&nbsp;- Outputs indented as per source code indentation</li>
<li><a href="https://github.com/miknight/pisg">miknight/pisg</a>&nbsp;- Perl IRC Statistics Generator</li>
<li><a href="https://github.com/melo/bash-completion">melo/bash-completion</a>&nbsp;- A Perl distribution to create your own bash completion solutions</li>
<li><a href="https://github.com/mantovani/SPPM-Web">mantovani/SPPM-Web</a>&nbsp;- S&atilde;o Paulo Perl Mongers website.</li>
<li><a href="https://github.com/jzawodn/perl-Algorithm-TopPercent">jzawodn/perl-Algorithm-TopPercent</a>&nbsp;- A perl module for tracking the top-N most frequent items in a streaming data set using fixed memory.</li>
<li><a href="https://github.com/jmlynesjr/wxPerl-Module-Examples">jmlynesjr/wxPerl-Module-Examples</a>&nbsp;- wxPerl-Module-Examples not from the wxBook</li>
<li><a href="https://github.com/doy/parse-keyword">doy/parse-keyword</a>&nbsp;- DEPRECATED: write syntax extensions in perl</li>
<li><a href="https://github.com/chromatic/Test-MockObject">chromatic/Test-MockObject</a>&nbsp;- The Test::MockObject Perl 5 library from the CPAN</li>
<li><a href="https://github.com/chrisa/perl-Net-ZooKeeper">chrisa/perl-Net-ZooKeeper</a>&nbsp;- Net::ZooKeeper Perl module</li>
<li><a href="https://github.com/apparentlymart/activity-streams-perl">apparentlymart/activity-streams-perl</a>&nbsp;- Activity Streams Library for Perl</li>
<li><a href="https://github.com/andrewalker/p5-webservice-digitalocean">andrewalker/p5-webservice-digitalocean</a>&nbsp;- Perl module for DigitalOcean's RESTful API</li>
<li><a href="https://github.com/Starlink/perl-Astro-FITS-HdrTrans">Starlink/perl-Astro-FITS-HdrTrans</a>&nbsp;- Perl module for performing astronomical metadata header translations from FITS to generic and back.</li>
<li><a href="https://github.com/Rio-Perl-Mongers/rio.pm.org">Rio-Perl-Mongers/rio.pm.org</a>&nbsp;- Site da Rio Perl Mongers</li>
<li><a href="https://github.com/sitaramc/gitolite">sitaramc/gitolite</a>&nbsp;- Hosting git repositories -- Gitolite allows you to setup git hosting on a central server, with very fine-grained access control and many (many!) more powerful features. [IMPORTANT: please click and read the WIKI link above before submitting issues, pull requests, etc] IMPORTANT: PLEASE READ Nov 2 2014 UPDATE ABOUT DONATIONS -- see wiki</li>
<li><a href="https://github.com/openresty/lua-nginx-module">openresty/lua-nginx-module</a>&nbsp;- Embed the Power of Lua into NGINX</li>
<li><a href="https://github.com/sarabander/sicp-pdf">sarabander/sicp-pdf</a>&nbsp;- SICP PDF with Texinfo and LaTeX source</li>
<li><a href="https://github.com/openresty/ngx_openresty">openresty/ngx_openresty</a>&nbsp;- Turning Nginx into a Full-fledged Web App Server</li>
<li><a href="https://github.com/petdance/ack">petdance/ack</a>&nbsp;- This repository is for ack 1.x, which is&nbsp;<span>no longer being maintained</span>. DO NOT SUBMIT ISSUES HERE. ack 2.0 has a new GitHub project at</li>
<li><a href="https://github.com/openresty/nginx-tutorials">openresty/nginx-tutorials</a>&nbsp;- Nginx Tutorials</li>
<li><a href="https://github.com/creaktive/rainbarf">creaktive/rainbarf</a>&nbsp;- CPU/RAM/battery stats chart bar for tmux (and GNU screen)</li>
<li><a href="https://github.com/thoughtbot/rcm">thoughtbot/rcm</a>&nbsp;- rc file (dotfile) management</li>
<li><a href="https://github.com/prey/prey-bash-client">prey/prey-bash-client</a>&nbsp;- Bash client for the Prey anti-theft software (Mac, Windows, Linux). The original.</li>
<li><a href="https://github.com/lulzlabs/AirChat">lulzlabs/AirChat</a>&nbsp;- Free Communications For Everyone.</li>
<li><a href="https://github.com/k4rthik/git-cal">k4rthik/git-cal</a>&nbsp;- github like contributions calendar on terminal</li>
<li><a href="https://github.com/munin-monitoring/contrib">munin-monitoring/contrib</a>&nbsp;- Contributed stuff for munin (plugins, tools, etc...)</li>
<li><a href="https://github.com/duckduckgo/duckduckgo">duckduckgo/duckduckgo</a>&nbsp;- DuckDuckGo Instant Answer Infrastructure</li>
<li><a href="https://github.com/nbs-system/naxsi">nbs-system/naxsi</a>&nbsp;- NAXSI is an open-source, high performance, low rules maintenance WAF for NGINX</li>
<li><a href="https://github.com/DHowett/theos">DHowett/theos</a>&nbsp;- Unified cross-platform iPhone Makefile system</li>
<li><a href="https://github.com/git-deploy/git-deploy">git-deploy/git-deploy</a>&nbsp;- Tool to manage using git as a deployment management tool</li>
<li><a href="https://github.com/munin-monitoring/munin">munin-monitoring/munin</a>&nbsp;- Main repository for munin master / node / plugins</li>
<li><a href="https://github.com/theory/sqitch">theory/sqitch</a>&nbsp;- Sane database change management</li>
<li><a href="https://github.com/jonreid/XcodeCoverage">jonreid/XcodeCoverage</a>&nbsp;- Code coverage for Xcode projects</li>
<li><a href="https://github.com/dalibo/pgbadger">dalibo/pgbadger</a>&nbsp;- a fast PostgreSQL Log Analyzer</li>
<li><a href="https://github.com/nferraz/st">nferraz/st</a>&nbsp;- simple statistics from the command line</li>
<li><a href="https://github.com/yuki-kimoto/gitprep">yuki-kimoto/gitprep</a>&nbsp;- Github clone. you can install Github system into your unix/linux machine.</li>
<li><a href="https://github.com/miyagawa/cpanminus">miyagawa/cpanminus</a>&nbsp;- cpanminus - get, unpack, build and install modules from CPAN</li>
<li><a href="https://github.com/sullo/nikto">sullo/nikto</a>&nbsp;- Nikto web server scanner</li>
<li><a href="https://github.com/sontek/dotfiles">sontek/dotfiles</a>&nbsp;- My configuration files (.screenrc, .vimrc, .weechat, .bashrc, .gitconfig, etc)</li>
<li><a href="https://github.com/PenturaLabs/Linux_Exploit_Suggester">PenturaLabs/Linux_Exploit_Suggester</a>&nbsp;- Linux Exploit Suggester; based on operating system release number</li>
<li><a href="https://github.com/RexOps/Rex">RexOps/Rex</a>&nbsp;- A framework for server orchestration and to simplify system administration</li>
<li><a href="https://github.com/hokaccha/nodebrew">hokaccha/nodebrew</a>&nbsp;- Node.js version manager</li>
<li><a href="https://github.com/pasky/speedread">pasky/speedread</a>&nbsp;- A simple terminal-based open source Spritz-alike (per-word RSVP aligned on optimal reading points)</li>
<li><a href="https://github.com/plack/Plack">plack/Plack</a>&nbsp;- PSGI toolkit and server adapters</li>
<li><a href="https://github.com/get-iplayer/get_iplayer">get-iplayer/get_iplayer</a>&nbsp;- A utility for downloading TV and radio from BBC iPlayer</li>
<li><a href="https://github.com/jfhovinne/jFeed">jfhovinne/jFeed</a>&nbsp;- jQuery RSS/ATOM feed parser plugin</li>
<li><a href="https://github.com/openresty/lua-resty-redis">openresty/lua-resty-redis</a>&nbsp;- Lua redis client driver for the ngx_lua based on the cosocket API</li>
<li><a href="https://github.com/StefanSchroeder/Golang-Regex-Tutorial">StefanSchroeder/Golang-Regex-Tutorial</a>&nbsp;- Golang - Regular Expression Tutorial</li>
<li><a href="https://github.com/openresty/nginx-systemtap-toolkit">openresty/nginx-systemtap-toolkit</a>&nbsp;- Real-time analyzing and diagnosing tools for Nginx based on SystemTap</li>
<li><a href="https://github.com/webfrogs/xcode_shell">webfrogs/xcode_shell</a>&nbsp;- shell script that used to auto-build xcode project</li>
<li><a href="https://github.com/linode/cli">linode/cli</a>&nbsp;- Command-line interface to the Linode platform</li>
<li><a href="https://github.com/agentzh/code2ebook">agentzh/code2ebook</a>&nbsp;- Generate ebooks in various formats from source trees in various programming languages</li>
<li><a href="https://github.com/timkay/aws">timkay/aws</a>&nbsp;- Easy command line access to Amazon EC2, S3, SQS, ELB, and SDB (new!)</li>
<li><a href="https://github.com/webmin/webmin">webmin/webmin</a>&nbsp;- Webmin source code</li>
<li><a href="https://github.com/freebsdgirl/ggautoblocker">freebsdgirl/ggautoblocker</a>&nbsp;- Good Game Auto Blocker</li>
<li><a href="https://github.com/openresty/headers-more-nginx-module">openresty/headers-more-nginx-module</a>&nbsp;- Set, add, and clear arbitrary output headers</li>
<li><a href="https://github.com/swcarpentry/bc">swcarpentry/bc</a>&nbsp;- This repository is now frozen - please see the note below.</li>
<li><a href="https://github.com/sm/sm">sm/sm</a>&nbsp;- S{cripting,ystem,tack} Management (SM) Framework (Core)</li>
<li><a href="https://github.com/alestic/ec2-consistent-snapshot">alestic/ec2-consistent-snapshot</a>&nbsp;- Initiate consistent EBS snapshots in Amazon EC2</li>
<li><a href="https://github.com/bestpractical/rt">bestpractical/rt</a>&nbsp;- Request Tracker, an enterprise-grade issue tracking system</li>
<li><a href="https://github.com/trapd00r/ls--">trapd00r/ls--</a>&nbsp;- ls on steroids</li>
<li><a href="https://github.com/movabletype/movabletype">movabletype/movabletype</a>&nbsp;- Movable Type</li>
<li><a href="https://github.com/gotgit/gotgit">gotgit/gotgit</a>&nbsp;- Errata and resources for GotGit: a book about Git in Chinese</li>
<li><a href="https://github.com/ljunkie/plexWatch">ljunkie/plexWatch</a>&nbsp;- Notify and Log watched content on a Plex Media Server</li>
<li><a href="https://github.com/joeyh/myrepos">joeyh/myrepos</a>&nbsp;- Multiple Repository management tool</li>
<li><a href="https://github.com/xypiie/spread0r">xypiie/spread0r</a>&nbsp;- spread0r is a txt reader, which makes your reading twice as fast as usual</li>
<li><a href="https://github.com/linode/longview">linode/longview</a>&nbsp;- Linode Longview Agent</li>
<li><a href="https://github.com/philovivero/distribution">philovivero/distribution</a>&nbsp;- Short, simple, direct scripts for creating ASCII graphical histograms in the terminal.</li>
<li><a href="https://github.com/mysociety/fixmystreet">mysociety/fixmystreet</a>&nbsp;- This is mySociety's popular map-based reporting platform: easy to install in new countries and regions</li>
<li><a href="https://github.com/spencertipping/js-in-ten-minutes">spencertipping/js-in-ten-minutes</a>&nbsp;- JavaScript in Ten (arbitrarily long) Minutes</li>
<li><a href="https://github.com/kazeburo/GrowthForecast">kazeburo/GrowthForecast</a>&nbsp;- Lightning Fast Graphing/Visualization</li>
<li><a href="https://github.com/qooob/authentic-theme">qooob/authentic-theme</a>&nbsp;- Webmin/Usermin/Virtualmin/Cloudmin theme based on Bootstrap and Font Awesome</li>
<li><a href="https://github.com/jbittel/httpry">jbittel/httpry</a>&nbsp;- HTTP logging and information retrieval tool</li>
<li><a href="https://github.com/zakk4223/CocoaSplit">zakk4223/CocoaSplit</a>&nbsp;- Stream/record your desktop/webcam to twitch/owned etc.</li>
<li><a href="https://github.com/miyagawa/github-growler">miyagawa/github-growler</a>&nbsp;- Growl github updates</li>
<li><a href="https://github.com/VividCortex/johnny-deps">VividCortex/johnny-deps</a>&nbsp;- Barebones dependency manager for Go.</li>
<li><a href="https://github.com/dotphiles/dotphiles">dotphiles/dotphiles</a>&nbsp;- A community driven framework of dotfiles.</li>
<li><a href="https://github.com/CPAN-API/metacpan-web">CPAN-API/metacpan-web</a>&nbsp;- Web interface for MetaCPAN</li>
<li><a href="https://github.com/worlduniting/bookshop">worlduniting/bookshop</a>&nbsp;- bookShop is a publishing framework for html-to-pdf/(e)book toolchain happiness and sustainable productivity.</li>
<li><a href="https://github.com/duncs/clusterssh">duncs/clusterssh</a>&nbsp;- Cluster SSH - Cluster Admin Via SSH</li>
<li><a href="https://github.com/leedo/noembed">leedo/noembed</a>&nbsp;- oEmbed gateway service with additional non-oEmbed sources</li>
<li><a href="https://github.com/cxreg/smartcd">cxreg/smartcd</a>&nbsp;- Alter your bash (or zsh) environment as you cd</li>
<li><a href="https://github.com/perl-catalyst/catalyst-runtime">perl-catalyst/catalyst-runtime</a>&nbsp;- The Elegant MVC Web Application Framework</li>
<li><a href="https://github.com/Flipkart/HostDB">Flipkart/HostDB</a>&nbsp;- HostDB: a new tool to help manage data center inventory and write applications around it.</li>
<li><a href="https://github.com/metabrainz/musicbrainz-server">metabrainz/musicbrainz-server</a>&nbsp;- The official musicbrainz-server codebase</li>
<li><a href="https://github.com/monsieurvideo/get-flash-videos">monsieurvideo/get-flash-videos</a>&nbsp;- Download or play videos from various Flash-based video hosting sites, without having to use the Flash player.</li>
<li><a href="https://github.com/c9s/Vimana">c9s/Vimana</a>&nbsp;- Vimana is an easy to use system for searching , installing, and downloading vim script. Vimana provides a command-line interface such like aptitude programe on Debian linux, for you to search , download , install , upgrade scripts from&nbsp;<a href="http://www.vim.org/">http://www.vim.org</a>&nbsp;(vimonline site).</li>
<li><a href="https://github.com/Logitech/slimserver">Logitech/slimserver</a>&nbsp;- Server for Logitech Squeezebox players. This server is also called Logitech Media Server</li>
<li><a href="https://github.com/weijianwen/SJTUThesis">weijianwen/SJTUThesis</a>&nbsp;- XeLaTeX templates for Shanghai Jiao Tong University (SJTU) thesis</li>
<li><a href="https://github.com/hadley/ggplot2-book">hadley/ggplot2-book</a>&nbsp;- The ggplot2 book</li>
<li><a href="https://github.com/irssi/scripts.irssi.org">irssi/scripts.irssi.org</a>&nbsp;- Script Repository for Irssi</li>
<li><a href="https://github.com/bucardo/check_postgres">bucardo/check_postgres</a>&nbsp;- Nagios check_postgres plugin for checking status of PostgreSQL databases</li>
<li><a href="https://github.com/harisekhon/nagios-plugins">harisekhon/nagios-plugins</a>&nbsp;- Advanced Nagios Plugins - Hadoop, NoSQL datastores. Extends Nagios monitoring capabilities significantly further in to the application layer including Hadoop, Big Data, NoSQL and Web Scale technologies, APIs etc.</li>
<li><a href="https://github.com/benbernard/RecordStream">benbernard/RecordStream</a>&nbsp;- commandline tools for slicing and dicing JSON records.</li>
<li><a href="https://github.com/iberianpig/xSwipe">iberianpig/xSwipe</a>&nbsp;- Multitouch gestures on X11, Linux</li>
<li><a href="https://github.com/jimeh/manservant">jimeh/manservant</a>&nbsp;- Browse man pages in style with your personal manservant.</li>
<li><a href="https://github.com/joeyh/ikiwiki">joeyh/ikiwiki</a>&nbsp;- a wiki compiler</li>
<li><a href="https://github.com/Zentyal/zentyal">Zentyal/zentyal</a>&nbsp;- Linux Small Business Server</li>
<li><a href="https://github.com/yaoweibin/nginx_ajp_module">yaoweibin/nginx_ajp_module</a>&nbsp;- support AJP protocol proxy with Nginx</li>
<li><a href="https://github.com/CPAN-API/cpan-api">CPAN-API/cpan-api</a>&nbsp;- A free, open API for everything you want to know about CPAN</li>
<li><a href="https://github.com/neldredge/mathgen">neldredge/mathgen</a>&nbsp;- See&nbsp;<a href="http://thatsmathematics.com/mathgen/">http://thatsmathematics.com/mathgen/</a></li>
<li><a href="https://github.com/jtaby/Waldo">jtaby/Waldo</a>&nbsp;- A generic port of TextMate's Find-In-Project, with associated MacVim plugin</li>
<li><a href="https://github.com/broquaint/Gitalist">broquaint/Gitalist</a>&nbsp;- A modern git web viewer</li>
<li><a href="https://github.com/rtomayko/shocco">rtomayko/shocco</a>&nbsp;- shocco is a quick-and-dirty, literate-programming-style documentation generator for / in POSIX shell</li>
<li><a href="https://github.com/pjf/exobrain">pjf/exobrain</a>&nbsp;- Automate your life with Exobrain</li>
<li><a href="https://github.com/miyagawa/plagger">miyagawa/plagger</a>&nbsp;- Pluggable RSS/Atom aggregator</li>
<li><a href="https://github.com/justone/dotfiles">justone/dotfiles</a>&nbsp;- Dotfiles</li>
<li><a href="https://github.com/jsierles/chef_cookbooks_deprecated">jsierles/chef_cookbooks_deprecated</a>&nbsp;- Opinionated chef recipes for Ubuntu/Debian. Manage nginx, unicorn, UNIX user accounts, postgresql, and more!</li>
<li><a href="https://github.com/mattiasgeniar/varnish-4.0-configuration-templates">mattiasgeniar/varnish-4.0-configuration-templates</a>&nbsp;- Configuration templates used for Varnish 4.0 implementations.</li>
<li><a href="https://github.com/openresty/lua-resty-mysql">openresty/lua-resty-mysql</a>&nbsp;- Nonblocking Lua MySQL driver library for ngx_lua</li>
<li><a href="https://github.com/proger/eflame">proger/eflame</a>&nbsp;- Flame Graph profiler for Erlang</li>
<li><a href="https://github.com/openresty/stapxx">openresty/stapxx</a>&nbsp;- Simple macro language extentions to systemtap</li>
<li><a href="https://github.com/dkogan/feedgnuplot">dkogan/feedgnuplot</a>&nbsp;- Tool to plot realtime and stored data from the commandline, using gnuplot. This is the repo for 'feedgnuplot' on CPAN</li>
<li><a href="https://github.com/wbraswell/rperl">wbraswell/rperl</a>&nbsp;- RPerl Compiler</li>
<li><a href="https://github.com/petdance/bobby-tables">petdance/bobby-tables</a>&nbsp;- bobby-tables.com, the site for preventing SQL injections</li>
<li><a href="https://github.com/pshved/timeout">pshved/timeout</a>&nbsp;- A script to measure and limit CPU time and memory consumption of black-box processes in Linux</li>
<li><a href="https://github.com/openresty/srcache-nginx-module">openresty/srcache-nginx-module</a>&nbsp;- Transparent subrequest-based caching layout for arbitrary nginx locations.</li>
<li><a href="https://github.com/dockerana/dockerana">dockerana/dockerana</a>&nbsp;- Docker Monitoring with support for Grafana and Graphite</li>
<li><a href="https://github.com/OTRS/otrs">OTRS/otrs</a>&nbsp;- The OTRS framework.</li>
<li><a href="https://github.com/bucardo/bucardo">bucardo/bucardo</a>&nbsp;- Bucardo multimaster and master/slave Postgres replication</li>
<li><a href="https://github.com/rjbs/Dist-Zilla">rjbs/Dist-Zilla</a>&nbsp;- scary tools for building CPAN distributions</li>
<li><a href="https://github.com/kjellm/munin-mysql">kjellm/munin-mysql</a>&nbsp;- Improved MySQL Graphs for Munin</li>
<li><a href="https://github.com/holygeek/git-number">holygeek/git-number</a>&nbsp;- Use numbers for dealing with files in git</li>
<li><a href="https://github.com/s-aska/dropbox-api-command">s-aska/dropbox-api-command</a>&nbsp;- Dropbox API wrapper command.</li>
<li><a href="https://github.com/pintsized/ledge">pintsized/ledge</a>&nbsp;- A Lua application for OpenResty, providing scriptable HTTP cache functionality for Nginx.</li>
<li><a href="https://github.com/rcarmo/textwrangler-bbedit-solarized">rcarmo/textwrangler-bbedit-solarized</a>&nbsp;- solarized color scheme for BBEdit and TextWrangler</li>
<li><a href="https://github.com/lamw/vghetto-scripts">lamw/vghetto-scripts</a>&nbsp;- Various virtuallyGhetto scripts for VMware based solutions</li>
<li><a href="https://github.com/tokuhirom/Amon">tokuhirom/Amon</a>&nbsp;- yet another web application framework</li>
<li><a href="https://github.com/cschneid/irclogger">cschneid/irclogger</a>&nbsp;- Sinatra based irclogger.com</li>
<li><a href="https://github.com/andrewning/sortphotos">andrewning/sortphotos</a>&nbsp;- SortPhotos is a Python script that organizes photos and videos into folders using date/time information</li>
<li><a href="https://github.com/pintsized/lua-resty-http">pintsized/lua-resty-http</a>&nbsp;- Lua HTTP client cosocket driver for OpenResty / ngx_lua.</li>
<li><a href="https://github.com/jamesc/nagios-plugins-rabbitmq">jamesc/nagios-plugins-rabbitmq</a>&nbsp;- A set of nagios checks for RabbitMQ using the management interface</li>
<li><a href="https://github.com/kazeburo/cloudforecast">kazeburo/cloudforecast</a>&nbsp;- the server metrics gathering</li>
<li><a href="https://github.com/zigdon/twirssi">zigdon/twirssi</a>&nbsp;- An irssi script allowing the use of Twitter from within the IRC client.</li>
<li><a href="https://github.com/ganglia/gmetric">ganglia/gmetric</a>&nbsp;- Repository of user-contributed gmetric scripts</li>
<li><a href="https://github.com/joemiller/collectd-graphite">joemiller/collectd-graphite</a>&nbsp;- collectd plugin for sending data to graphite</li>
<li><a href="https://github.com/naoya/md2inao">naoya/md2inao</a>&nbsp;- Convert markdown to inao-format for WEB+DB PRESS</li>
<li><a href="https://github.com/inverse-inc/packetfence">inverse-inc/packetfence</a>&nbsp;- PacketFence is a fully supported, trusted, Free and Open Source network access control (NAC) solution. Boasting an impressive feature set including a captive-portal for registration and remediation, centralized wired and wireless management, powerful guest management options, 802.1X support, layer-2 isolation of problematic devices; PacketFence can be used to effectively secure networks small to very large heterogeneous networks.</li>
<li><a href="https://github.com/devd/Academic-Writing-Check">devd/Academic-Writing-Check</a>&nbsp;- check for passive words, weasel words, duplicate words, typographical errors and words strunk &amp; white don't like</li>
<li><a href="https://github.com/yoshinorim/mha4mysql-manager">yoshinorim/mha4mysql-manager</a>&nbsp;- Development tree of Master High Availability Manager and tools for MySQL (MHA), Manager part</li>
<li><a href="https://github.com/yaoweibin/ngx_http_substitutions_filter_module">yaoweibin/ngx_http_substitutions_filter_module</a>&nbsp;- a filter module which can do both regular expression and fixed string substitutions for nginx</li>
<li><a href="https://github.com/yaoweibin/nginx_syslog_patch">yaoweibin/nginx_syslog_patch</a>&nbsp;- add the full syslog feature to Nginx</li>
<li><a href="https://github.com/jjl/get_iplayer">jjl/get_iplayer</a>&nbsp;- A utility for grabbing tv and radio from BBC iPlayer. Phil Lewis has stopped developed it so I've forked it.</li>
<li><a href="https://github.com/kost/dvcs-ripper">kost/dvcs-ripper</a>&nbsp;- Rip web accessible (distributed) version control systems: SVN/GIT/HG...</li>
<li><a href="https://github.com/mrash/fwknop">mrash/fwknop</a>&nbsp;- Single Packet Authorization &gt; Port Knocking</li>
<li><a href="https://github.com/majutsushi/urxvt-font-size">majutsushi/urxvt-font-size</a>&nbsp;- Change the urxvt font size on the fly</li>
<li><a href="https://github.com/apenwarr/gitbuilder">apenwarr/gitbuilder</a>&nbsp;- Auto-builds and tests all the branches of your git projects, showing pass/fail results on a web page/RSS feed. Isolates failures to the first commit that caused the problem.</li>
<li><a href="https://github.com/tangledhelix/dotfiles">tangledhelix/dotfiles</a>&nbsp;- My dotfiles</li>
<li><a href="https://github.com/shabble/irssi-scripts">shabble/irssi-scripts</a>&nbsp;- Repo to store some personal irssi scripts</li>
<li><a href="https://github.com/kud/jpegrescan">kud/jpegrescan</a>&nbsp;- JPEGrescan: losslessly shrink any JPEG file.</li>
<li><a href="https://github.com/gregkh/bti">gregkh/bti</a>&nbsp;- bash twitter ididocy</li>
<li><a href="https://github.com/woothee/woothee">woothee/woothee</a>&nbsp;- User-Agent parser/classifier for multi languages</li>
<li><a href="https://github.com/spencertipping/nfu">spencertipping/nfu</a>&nbsp;- Numeric Fu for the command line</li>
<li><a href="https://github.com/davidbauer/Instacurate">davidbauer/Instacurate</a>&nbsp;- Turn your Twitter timeline into a personalised news site, in an instant. Fetches links from your timeline and displays them in a discovery friendly design.</li>
<li><a href="https://github.com/yuri-gushin/Roboo">yuri-gushin/Roboo</a>&nbsp;- Roboo - HTTP Robot Mitigator</li>
<li><a href="https://github.com/kni/redis-sharding">kni/redis-sharding</a>&nbsp;- Redis Sharding is a multiplexed proxy-server, designed to work with the database divided to several servers.</li>
<li><a href="https://github.com/tempire/MojoExample">tempire/MojoExample</a>&nbsp;- Mojolicious example with DBIx::Class schema load, deploy, fixtures, and tests.</li>
<li><a href="https://github.com/reyjrar/es-utils">reyjrar/es-utils</a>&nbsp;- ElasticSearch Utilities</li>
<li><a href="https://github.com/omniti-labs/omnipitr">omniti-labs/omnipitr</a>&nbsp;- Advanced WAL File Management Tools for PostgreSQL</li>
<li><a href="https://github.com/GDSSecurity/PadBuster">GDSSecurity/PadBuster</a>&nbsp;- Automated script for performing Padding Oracle attacks</li>
<li><a href="https://github.com/openresty/rds-json-nginx-module">openresty/rds-json-nginx-module</a>&nbsp;- An nginx output filter that formats Resty DBD Streams generated by ngx_drizzle and others to JSON</li>
<li><a href="https://github.com/zaf/asterisk-speech-recog">zaf/asterisk-speech-recog</a>&nbsp;- Speech recognition script for Asterisk that uses google's speech engine.</li>
<li><a href="https://github.com/Ibmurai/Markdown.codaplugin">Ibmurai/Markdown.codaplugin</a>&nbsp;- A Markdown plugin for Coda.</li>
<li><a href="https://github.com/oetiker/SmokePing">oetiker/SmokePing</a>&nbsp;- The Active Monitoring System</li>
<li><a href="https://github.com/openresty/lua-resty-upload">openresty/lua-resty-upload</a>&nbsp;- Streaming reader and parser for http file uploading based on ngx_lua cosocket</li>
<li><a href="https://github.com/nriley/Pester">nriley/Pester</a>&nbsp;- Simple, disposable alarms and timers for OS X.</li>
<li><a href="https://github.com/dabockster/Smackbook-Yosemite">dabockster/Smackbook-Yosemite</a>&nbsp;- Updated Smackbook script for OS X Yosemite</li>
<li><a href="https://github.com/cloudflare/lua-resty-logger-socket">cloudflare/lua-resty-logger-socket</a>&nbsp;- Raw-socket-based Logger Library for Nginx (based on ngx_lua)</li>
<li><a href="https://github.com/simpl/ngx_mongo">simpl/ngx_mongo</a>&nbsp;- Non-blocking upstream module for Nginx to connect to MongoDB</li>
<li><a href="https://github.com/iafan/Hacksby">iafan/Hacksby</a>&nbsp;- Description and unofficial implementation of Furby's audio protocol</li>
<li><a href="https://github.com/NixOS/hydra">NixOS/hydra</a>&nbsp;- Hydra, the Nix-based continuous build system</li>
<li><a href="https://github.com/WolverineFan/YNABLinuxInstall">WolverineFan/YNABLinuxInstall</a>&nbsp;- Install script for YNAB 4 on Linux</li>
<li><a href="https://github.com/SPORE/specifications">SPORE/specifications</a>&nbsp;- SPORE specifications</li>
<li><a href="https://github.com/xchataqua/xchataqua">xchataqua/xchataqua</a>&nbsp;- An IRC client, OS X native front-end for XChat (&nbsp;<a href="http://itunes.apple.com/app/id447521961">http://itunes.apple.com/app/id447521961</a>&nbsp;)</li>
<li><a href="https://github.com/jfrazelle/dotfiles">jfrazelle/dotfiles</a>&nbsp;- My dotfiles</li>
<li><a href="https://github.com/ytoolshed/pogo">ytoolshed/pogo</a>&nbsp;- Pogo is an agent-based system for running interruptive commands safely on thousands of machines in parallel</li>
<li><a href="https://github.com/openresty/lua-resty-websocket">openresty/lua-resty-websocket</a>&nbsp;- WebSocket support for the ngx_lua module (and OpenResty)</li>
<li><a href="https://github.com/jzawodn/mytop">jzawodn/mytop</a>&nbsp;- a "top" clone for MySQL</li>
<li><a href="https://github.com/fonnesbeck/Bios8366">fonnesbeck/Bios8366</a>&nbsp;- Advanced Statistical Computing at Vanderbilt University's Department of Biostatistics</li>
<li><a href="https://github.com/dbsrgits/dbix-class">dbsrgits/dbix-class</a>&nbsp;- Official github remote for git.shadowcat.co.uk DBIx-Class.git</li>
<li><a href="https://github.com/bricoleurs/bricolage">bricoleurs/bricolage</a>&nbsp;- Content management and publishing system</li>
<li><a href="https://github.com/exflickr/GodAuth">exflickr/GodAuth</a>&nbsp;- Authentication layer for web app tools</li>
<li><a href="https://github.com/JJ/hoborg">JJ/hoborg</a>&nbsp;- A dieselpunk novel with Spanish-created robot hobos in a balcanized America at the beginning of the XX century</li>
<li><a href="https://github.com/zigdon/xkcd-Bucket">zigdon/xkcd-Bucket</a>&nbsp;- Bucket is the channel bot for #xkcd</li>
<li><a href="https://github.com/jollyjinx/ZFS-TimeMachine">jollyjinx/ZFS-TimeMachine</a>&nbsp;- TimeMachine style backup for ZFS</li>
<li><a href="https://github.com/atomia/atomiadns">atomia/atomiadns</a>&nbsp;- Atomia DNS</li>
<li><a href="https://github.com/comotion/VSF">comotion/VSF</a>&nbsp;- Varnish Security Firewall</li>
<li><a href="https://github.com/bgcngm/mtk-tools">bgcngm/mtk-tools</a>&nbsp;- Unpack / repack MT65xx/MT83xx boot.img, recovery.img or logo.bin</li>
<li><a href="https://github.com/windytan/redsea">windytan/redsea</a>&nbsp;- Decoder for FM-RDS.</li>
<li><a href="https://github.com/tudorconstantin/Mojolicious-Boilerplate">tudorconstantin/Mojolicious-Boilerplate</a>&nbsp;- The Web in an&nbsp;<span>Awesome</span>&nbsp;Box</li>
<li><a href="https://github.com/openresty/lua-upstream-nginx-module">openresty/lua-upstream-nginx-module</a>&nbsp;- Nginx C module to expose Lua API to ngx_lua for Nginx upstreams</li>
<li><a href="https://github.com/openresty/test-nginx">openresty/test-nginx</a>&nbsp;- Data-driven test scaffold for Nginx C module and OpenResty Lua library development</li>
<li><a href="https://github.com/mndrix/merge-this">mndrix/merge-this</a>&nbsp;- Revision control stress tests</li>
<li><a href="https://github.com/brendangregg/HeatMap">brendangregg/HeatMap</a>&nbsp;- Heat map generation tools</li>
<li><a href="https://github.com/crucially/riakfuse">crucially/riakfuse</a>&nbsp;- Filesystem backed by riak</li>
<li><a href="https://github.com/DmitryKoterov/dklab_realsync">DmitryKoterov/dklab_realsync</a>&nbsp;- dkLab RealSync: replicate developer's files over SSH in realtime</li>
<li><a href="https://github.com/xme/pastemon">xme/pastemon</a>&nbsp;- pastebin.com Content Monitoring Tool</li>
<li></li></ul>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/31105/understanding-pacbio</guid>
	<pubDate>Fri, 24 Feb 2017 10:17:36 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/31105/understanding-pacbio</link>
	<title><![CDATA[Understanding PacBio]]></title>
	<description><![CDATA[<p>This tutorial includes resources for learning more about PacBio data and bioinformatics analysis, and includes content suitable for both beginners and experts. Below are links to training modules (webinars and PowerPoint presentations) to help you get started with your data processing, as well as information for specialized applications.</p>
<p>Training Resources:</p>
<ul>
<li><a href="https://github.com/PacificBiosciences/Bioinformatics-Training/wiki/Bioinformatics-Workshop">Bioinformatics Workshop (Webinars)</a></li>
<li><a href="https://github.com/PacificBiosciences/Bioinformatics-Training/wiki/Bioinformatics-Training-Slides">Bioinformatics Training Slides</a></li>
</ul>
<p>Specialized Applications:</p>
<ul>
<li><a href="https://github.com/PacificBiosciences/Bioinformatics-Training/wiki/De-Novo-Assembly">De Novo Assembly</a></li>
<li><a href="https://github.com/PacificBiosciences/cDNA_primer/wiki">Transcriptome analysis</a></li>
<li><a href="https://github.com/PacificBiosciences/Bioinformatics-Training/wiki/Base-modification-analysis">Base Modification Analysis</a></li>
<li><a href="https://github.com/PacificBiosciences/Bioinformatics-Training/wiki/Barcoding">Barcoding</a></li>
<li><a href="https://github.com/PacificBiosciences/Bioinformatics-Training/wiki/Data-Analysis-Tools">Data Analysis Tools</a></li>
<li><a href="https://github.com/PacificBiosciences/Bioinformatics-Training/wiki/Minor-Variants-and-Phasing-Analysis">Minor Variants and Phasing Analysis</a></li>
</ul><p>Address of the bookmark: <a href="https://github.com/PacificBiosciences/Bioinformatics-Training/wiki" rel="nofollow">https://github.com/PacificBiosciences/Bioinformatics-Training/wiki</a></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/36739/blasr-mapping-single-molecule-sequencing-reads-using-basic-local-alignment-with-successive-refinement-blasr-theory-and-application</guid>
	<pubDate>Wed, 23 May 2018 06:54:32 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/36739/blasr-mapping-single-molecule-sequencing-reads-using-basic-local-alignment-with-successive-refinement-blasr-theory-and-application</link>
	<title><![CDATA[BlasR Mapping single molecule sequencing reads using Basic Local Alignment with Successive Refinement (BLASR): Theory and Application,]]></title>
	<description><![CDATA[<p><span>BLASR (Basic Local Alignment with Successive Refinement) for mapping Single Molecule Sequencing (SMS) reads that are thousands to tens of thousands of bases long with divergence between the read and genome dominated by insertion and deletion error.</span></p>
<p>Here is how I use the blasr to align PacBio reads to the contigs (target.fasta). The &ldquo;target.fasta.sa&rdquo; is the suffix array from &ldquo;target.fasta&rdquo; generated by sawriter.</p>
<blockquote>
<p>blasr query.fa ./target.fasta -sa ./target.fasta.sa -bestn 40 -maxScore -500 -m 4 -nproc 24 -out target.m4 -maxLCPLength 15</p>
</blockquote>
<p>the output format option &ldquo;-m 4&Prime; generate the alignment coordinate. Not fully documented, but I can explain that to you.&nbsp;</p>
<p>I use a 24 cores / 48G ram server for the alignment. It took about 2 to 3 hours aligning 3G PacBio Reads to 10^6 sequences of short read contigs with a mean 3.5kbp length.</p><p>Address of the bookmark: <a href="http://bix.ucsd.edu/projects/blasr/" rel="nofollow">http://bix.ucsd.edu/projects/blasr/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/30874/important-journals-blogs-and-forums-for-bioinformaticians</guid>
	<pubDate>Wed, 08 Feb 2017 09:15:31 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/30874/important-journals-blogs-and-forums-for-bioinformaticians</link>
	<title><![CDATA[Important Journals, Blogs and Forums for Bioinformaticians]]></title>
	<description><![CDATA[<p><em>Journals</em>. Most journals have RSS feeds for their current updates.</p><ul>
<li><a href="http://bioinformatics.oxfordjournals.org/rss/" target="_blank">Bioinformatics - RSS feed of current and advance online publications</a></li>
<li><a href="http://genome.cshlp.org/rss/" target="_blank">Genome Research - current &amp; advance</a></li>
<li><a href="http://genomebiology.com/" target="_blank">Genome Biology - editors picks, latest, most viewed, most forwarded</a>. (Hit the RSS icon under each tab).</li>
<li><a href="http://www.plosgenetics.org/static/rssFeeds.action" target="_blank">PLoS Genetics - new articles</a></li>
<li><a href="http://www.ploscompbiol.org/static/rssFeeds.action" target="_blank">PLoS Computational Biology - new articles</a></li>
<li><a href="http://www.nature.com/ng/newsfeeds.html" target="_blank">Nature Genetics - current TOC and AOP</a></li>
<li><a href="http://www.nature.com/nrg/info/newsfeeds.html" target="_blank">Nature Reviews Genetics - current TOC and AOP</a></li>
</ul><ul>
<li><a href="https://academic.oup.com/bioinformatics" target="_blank">Bioinformatics</a></li>
<li><a href="https://bmcbioinformatics.biomedcentral.com/" target="_blank">BMC Bioinformatics</a></li>
<li><a href="https://academic.oup.com/bib" target="_blank">Briefings in Bioinformatics</a></li>
<li><a href="http://genomebiology.biomedcentral.com/" target="_blank">Genome Biology</a></li>
<li><a href="http://genome.cshlp.org/rss/" target="_blank">Genome Research: current and AOP</a></li>
<li><a href="http://microbiomejournal.biomedcentral.com/" target="_blank">Microbiome</a></li>
<li><a href="http://www.nature.com/ng/newsfeeds.html" target="_blank">Nature Genetics, current &amp; AOP</a></li>
<li><a href="http://www.nature.com/nrg/info/newsfeeds.html" target="_blank">Nature Reviews Genetics, current &amp; AOP</a></li>
<li><a href="https://academic.oup.com/nar" target="_blank">Nucleic Acids Research</a></li>
<li><a href="http://journals.plos.org/ploscompbiol/s/help-using-this-site#loc-article-feeds" target="_blank">PLOS Computational Biology</a></li>
<li><a href="http://journals.plos.org/plosgenetics/s/help-using-this-site#loc-article-feeds" target="_blank">PLOS Genetics</a></li>
</ul><p><em>Blogs</em><span>. Some of these blogs are very relevant to bioinfo jobs. Others are more personal interest.</span></p><ul>
<li><a href="http://blog.openhelix.eu/" target="_blank">The OpenHelix Blog</a></li>
<li><a href="http://www.ensembl.info/" target="_blank">Ensembl blog</a></li>
<li><a href="http://wiki.g2.bx.psu.edu/News" target="_blank">Galaxy News</a></li>
<li><a href="http://bcbio.wordpress.com/" target="_blank">Blue Collar Bioinformatics</a></li>
<li><a href="http://www.homolog.us/blogs/" target="_blank">Homologus</a></li>
<li><a href="http://blog.goldenhelix.com/" target="_blank">Golden Helix - our 2 SNPs</a></li>
<li><a href="http://genomicslawreport.com/" target="_blank">Genomics Law Report</a></li>
<li><a href="http://www.r-bloggers.com/" target="_blank">R-bloggers</a>&nbsp;(aggregates feeds from &gt;350 blogs about R)</li>
<li><a href="http://genomesunzipped.org/" target="_blank">Genomes Unzipped</a></li>
<li><a href="http://compgen.blogspot.com/" target="_blank">Jason Moore's Epistasis Blog</a></li>
<li><a href="http://spittoon.23andme.com/" target="_blank">23andMe - the Spitoon</a></li>
</ul><ul>
<li><a href="http://varianceexplained.org/" target="_blank">Variance Explained</a>: David Robinson&rsquo;s blog (Data Scientist at Stack Overflow, works in R and Python).</li>
<li><a href="https://globalbiodefense.com/" target="_blank">Global Biodefense</a>: News on pathogens, outbreaks, and preparedness, with periodic posts on genomics and bioinformatics-related developments and funding opportunities.</li>
<li><a href="https://flxlexblog.wordpress.com/" target="_blank">In between lines of code</a>: Lex Nederbragt&rsquo;s blog on biology, sequencing, bioinformatics, &hellip;</li>
<li><a href="http://simplystatistics.org/" target="_blank">Simply Statistics</a>: A statistics blog by Rafa Irizarry, Roger Peng, and Jeff Leek.</li>
<li><a href="https://liorpachter.wordpress.com/" target="_blank">Bits of DNA</a>: Reviews and commentary on computational biology by Lior Pachter (fair warning: dialogue here can get a bit heated!).</li>
<li><a href="http://bcb.io/articles/" target="_blank">Blue Collar Bioinformatics</a>: articles related tool validation and the open source bioinformatics community.</li>
<li><a href="https://microbiomedigest.com/" target="_blank">Microbiome Digest &ndash; Bik&rsquo;s Picks</a>: A daily digest of scientific microbiome papers, by Elisabeth Bik, Science Editor at uBiome.</li>
<li><a href="http://ivory.idyll.org/blog/" target="_blank">Living in an Ivory Basement</a>: Titus Brown&rsquo;s blog on metagenomics, open science, testing, reproducibility, and programming.</li>
<li><a href="http://enseqlopedia.com/" target="_blank">Enseqlopedia</a>: James Hadfield&rsquo;s blog on all things NGS.</li>
<li><a href="http://www.epistasisblog.org/" target="_blank">Epistasis Blog</a>: Jason Moore&rsquo;s computational biology blog.</li>
<li><a href="https://blog.rstudio.org/" target="_blank">RStudio Blog</a>: announcements about new RStudio functionality, updates about the&nbsp;<a href="http://tidyverse.org/" target="_blank">tidyverse</a>, and more.</li>
<li><a href="http://nextgenseek.com/" target="_blank">nextgenseek.com</a>: Next-Gen Sequencing Blog covering new developments in NGS data &amp; analysis.</li>
<li><a href="http://www.rna-seqblog.com/" target="_blank">RNA-Seq Blog</a>: Transcriptome Research &amp; Industry News.</li>
<li><a href="http://www.theallium.com/" target="_blank">The Allium</a>: We all need a little humor in our lives. Like&nbsp;<em>The Onion</em>, but for science.</li>
</ul><p><em>Forums.</em></p><ul>
<li><a href="http://seqanswers.com/forums/forumdisplay.php?f=18" target="_blank">Seqanswers - bioinformatics forum</a></li>
<li><a href="http://seqanswers.com/forums/forumdisplay.php?f=26" target="_blank">Seqanswers - RNA-Seq forum</a></li>
<li><a href="http://www.biostars.org/rss/" target="_blank">BioStar</a></li>
<li><a href="http://bioinformaticsonline.com/">BOL</a></li>
</ul>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43795/anchorwave</guid>
	<pubDate>Wed, 23 Feb 2022 08:14:35 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43795/anchorwave</link>
	<title><![CDATA[AnchorWave]]></title>
	<description><![CDATA[<p dir="auto">AnchorWave (Anchored Wavefront Alignment) identifies collinear regions via conserved anchors (full-length CDS and full-length exon have been implemented currently) and breaks collinear regions into shorter fragments, i.e., anchor and inter-anchor intervals. By performing sensitive sequence alignment for each shorter interval via a 2-piece affine gap cost strategy and merging them together, AnchorWave generates a whole-genome alignment for each collinear block. AnchorWave implements commands to guide collinear block identification with or without chromosomal rearrangements and provides options to use known polyploidy levels or whole-genome duplications to inform alignment.</p><p>Address of the bookmark: <a href="https://github.com/baoxingsong/AnchorWave" rel="nofollow">https://github.com/baoxingsong/AnchorWave</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/30928/jrf-bioinformatics-job-vacancies-in-tezpur-university</guid>
  <pubDate>Tue, 14 Feb 2017 16:40:26 -0600</pubDate>
  <link></link>
  <title><![CDATA[JRF Bioinformatics job vacancies in Tezpur University]]></title>
  <description><![CDATA[
<p>Memo No. DoRD/CSE/SSS/20-295/112-A Date: 01/02/2017</p>

<p>Project Title : Integrating genome scale metabolic analysis of model plant pathogen Ralstonia solanacearum with RNAseq and fluxomics</p>

<p>Essential qualification : M.Tech. in CSE/IT (With specialization in Computational Biology/Bioinformatics) or M.Sc. in Bioinformatics/Biosciences/Molecular Biology Biotechnology preferably with NET/GATE/BET. Candidates should have minimum 55 % mark both in 10th and 10+2 Science examinations and mathematics at 10+2 Science. Desirable: Preference will be given to the candidates having experience in computational analysis of genome sequences or similar projects.</p>

<p>No. of Post : 01</p>

<p>Remuneration : Rs. 25,000/- for the 1st two years and Rs. 28,000/- for the 3rd year for SRF and applicable to the candidate having post graduate degree in Basic Science with NET/GATE/BET qualification or post graduate degree in professional course. Rs. 12,000/- for the 1st two years and Rs. 14,000/- for the 3 rd year for SRF, </p>

<p>Age : 28 years</p>

<p>Duration : Three (03) years or till completion of the project or until further order, whichever is earlier.</p>

<p>Hiring Process : Walk - In<br />Job Role: Research/JRF/SRF</p>

<p>Walk-in-interview will be held on 17th February, 2017, 11.15 a.m. at the office of the Head, Department of Computer Science and Engineering, Tezpur University.</p>

<p>Interested candidates may appear before the interview board with original documents from 10th standard onwards and photocopies of mark sheets, certificates, testimonials, caste certificate (if applicable), experience certificate certificates of NET/GATE/BET or similar examination qualifications, any other testimonials and a copy of recent curriculum vitae (CV) on the day of interview.</p>

<p>More at http://www.tezu.ernet.in/ProjectWalkin/Advt-DoRD-CSE-SSS-20-295-112-A.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/44559/metagraph-ultra-scalable-framework-for-dna-search-alignment-assembly</guid>
	<pubDate>Sat, 08 Jun 2024 16:15:25 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/44559/metagraph-ultra-scalable-framework-for-dna-search-alignment-assembly</link>
	<title><![CDATA[MetaGraph: Ultra Scalable Framework for DNA Search, Alignment, Assembly]]></title>
	<description><![CDATA[<p><span>The MetaGraph framework</span><span>&nbsp;is designed to work with a wide range of input data sets, indexing from a few samples up to the contents of entire archives with hundreds of thousands of records. The indexing workflow always follows the same principle, transforming single input samples into error-removed, refined sample graphs, which are then merged into a joint metagraph index. Each input sample is annotated in the joint index as a subgraph. This graph index enriched with metadata can then be used for downstream applications such as&nbsp;</span><a href="https://metagraph.ethz.ch/#query">sequence search</a><span>&nbsp;or&nbsp;</span><a href="https://metagraph.ethz.ch/#assembly">differential assembly</a><span>.</span></p>
<p><span>Searcg link&nbsp;https://metagraph.ethz.ch/search&nbsp;</span></p>
<p><span>Pre-print&nbsp;https://www.biorxiv.org/content/10.1101/2020.10.01.322164v4&nbsp;</span></p><p>Address of the bookmark: <a href="https://metagraph.ethz.ch/" rel="nofollow">https://metagraph.ethz.ch/</a></p>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>

</channel>
</rss>