Results for "Perl"

Tags

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

    Tags: Perl, Tricks

    2695 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

    2649 days ago

  • Marysia

    A Bioinformatician from Poland.

    Skills: Perl, Python, R, Bioinformatics, Genomics

    1755 days ago

  • pradyumna Jayaram

    I am working as a research fellow at Manipal University. Most of my work involves designing pipelines for genomic sequencing data.

    Skills: shell scripting, HTML, PHP, CSS, MYSQL, Java, C, C++, R bioconductor, Perl, bash-CGI, image processing, Matlab, Python, javascript

    23 days ago

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

    Tags: Perl, Modules

    2570 days ago

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

    Tags: Perl, Trick

    2643 days ago

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

    Tags: Perl, Editor

    2641 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

    2629 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

    2629 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

    2612 days ago