Results for "Perl"

Wire posts

  • Fancy One-Liner http://userweb.eng.gla.ac.uk/umer.ijaz/bioinformatics/oneliners.html #Perl #OneLiner #Bioinformatics #Quick #Common #Tricks #CommandLine #Terminal

    3214 days ago

  • Print all possible 2 combination of words ( ATGC): $letter = join',','A','T','G','C'; @abc=glob "{$letter}{$letter}"; foreach (@abc) { print "$_\n"; } #Perl #PerlTrick #TipsOftheDay

    3208 days ago

  • Perl Elements to Avoid http://perl-begin.org/tutorials/bad-elements/ #Perl #Tricks #Avoid #Learn #Beginners

    3214 days ago

  • Besides, I wasn't trying to help them understand. I was only trying to help them think they understand. --#Larry Wall #Perl #Quotes

    3201 days ago

  • Search and replace the string 'this' with the string 'that' in the file filename. perl -p -i -e 's/this/that/g' filename #Perl #Trick #PerlOneLiner #Tipsoftheday #Replace #FindandReplace

    3148 days ago

  • Extract sequences by their ID from a fasta file. perl -ne 'if(/^>(\S+)/){$c=$i{$1}}$c?print:chomp;$i{$_}=1 if @ARGV' ids.txt sample1.fa #Extract #Sequences #IDs #Fasta #Perl #Trick #Oneliner

    3146 days ago

  • Remove the fasta description and just keep the identifier. perl -p -i -e 's/>(.+?) .+/>$1/g' sample1.fa #Perl #Oneliner #Trick #Tips #Fasta #Identifier #Remove

    3146 days ago

  • Check an installed packages in Perl $ perl -e "use GD" #Perl #Check #Package

    1741 days ago

  • #Local #BLAST tutorial http://www.woolfit.net/perl/51blastall.html

    3065 days ago

  • To uninstall a perl module $ cpanm --uninstall <Module::Name> #Perl #Trick #Uninstall #Module

    3001 days ago