Results for "Perl"

Tags

  • Do you want to compile your Perl program without running it, try $ perl -c <program> #Tipsoftheday #Perl

    Tags: Tipsoftheday, Perl

    3913 days ago

  • print "$^O\n"; To print the OS name in perl #Tipsoftheday #Perl #RegularExpression

    Tags: Tipsoftheday, Perl, RegularExpression

    3942 days ago

  • Perl for bioinformatics scripts ... useful scripts at http://tinyurl.com/n4z3egq #Perl #PerlScripts

    Tags: Perl, PerlScripts

    3910 days ago

  • To check: Does an array has all equal values. if (keys %{{ map {$_, 1} @test }} == 1) { # all equal } #Tipsoftheday #Perl

    Tags: Tipsoftheday, Perl

    3908 days ago

  • A quick guide to Perl http://tinyurl.com/mkmjtpv #Perl #QuickGuide

    Tags: Perl, QuickGuide

    3908 days ago

  • Generate N base genome: perl -e '@b=qw/A T G C/;print ">Genome\n";while($l<N){print @b[int(rand(4))];$l++;}' #Tipsoftheday #Perl

    Tags: Tipsoftheday, Perl

    3894 days ago

  • Number all lines in a file; perl -pe '$_ = "$. $_"': #Tipsoftheday #Perl

    Tags: Tipsoftheday, Perl

    3894 days ago

  • To get all the module dependencies for yourScript.pl program. $ scandeps.pl yourScript.pl #Perl #Tipsoftheday

    Tags: Perl, Tipsoftheday

    3906 days ago

  • To round a floating-point value to a certain number of decimal places: $rounded = sprintf("%.2f", $unrounded); #Tipsoftheday #Perl

    Tags: Tipsoftheday, Perl

    3902 days ago

  • GenBank to FASTA format conversion, Written By Junguk HUR http://tinyurl.com/ntp7w5v #Perl #FASTA #Genbank

    Tags: Perl, FASTA, Genbank

    3860 days ago