Results for "Perl"

Tags

  • Accept file from STDIN in Perl my $infh = \*STDIN; my $outfh = \*STDOUT #Perl #Tricks

    Tags: Perl, Tricks

    2698 days ago

  • Many-Core Engine (MCE) for Perl example

    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 in...

    Tags: Bioinformatics, Programming, Perl, MCE, Parallel, Core, Thread, Fork

    2652 days ago

  • use File::Basename; use lib dirname (__FILE__); # To search lib in local folder #Perl #Modules

    Tags: Perl, Modules

    2573 days ago

  • while (!eof(IN)) { } #Perl #Trick

    Tags: Perl, Trick

    2646 days ago

  • Perl6 editor https://github.com/azawawi/atom-perl6-editor-tools #Perl #Editor

    Tags: Perl, Editor

    2644 days ago

  • How to install Perl packages on servers?

    I am problem installing Perl module on cluster/server without root. Can you please recommend me a easy way or alternative way to install it.

    Tags: Bioinformatics, Perl, Server, Cluster, Packages, Modules, Install, Script

    2632 days ago

  • The easy way to #build stand-alone #Perl #apps http://perltricks.com/article/58/2014/1/5/The-easy-way-to-build-stand-alone-Perl-apps/

    Tags: build, Perl, apps

    2632 days ago

  • Perl way to check if an array contains values

    Perl is always is known for their flexibility (There is more than one way to do it). Followings are the quick way to check if a value exist in an array. do_something if 'flour' ~~ @ingredients   # ~~ operand.   BEWARE: it is broken.do_something if grep {$_ eq 'flour'} @ingredients ...

    Tags: Perl, Tricks, Array, Find, Check

    2615 days ago

  • How to resolve following error in Perl ?

    When I tried Perl on my cluster/server it gives following error !! How to resolve it? $ perlperl: warning: Setting locale failed.perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset), LC_PAPER = "de_BE.UTF-8", LC_ADDRESS = "de_BE.UTF-8", LC_MONETARY = "de...

    Tags: Sever, Cluster, Perl

    2630 days ago

  • Testing Random Dice Rolls http://blogs.perl.org/users/ovid/2014/01/testing-random-dice-rolls.html #Perl #Random #Test #Randomness #Dice

    Tags: Perl, Random, Test, Randomness, Dice

    2628 days ago