Results for "PE"

Wire posts

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

    3278 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

    3271 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

    3265 days ago

  • https://pythonandr.wordpress.com/2015/07/25/r-the-big-mover-in-ieee-spectrums-2015-rankings-for-top-10-programming-languages/ #R #Python #Market

    3255 days ago

  • Where Next for Genetics and Genomics? http://journals.plos.org/plosbiology/article?id=10.1371%2Fjournal.pbio.1002216 #Future #Genomics #Bioinformatics #Scope #Genome

    3249 days ago

  • http://www.cell.com/pb-assets/journals/crosstalk/careers-under-the-microscope/to-postdoc-or-not-to-postdoc/Polka%20infographic.jpg #PhD #Thereafter

    3230 days ago

  • MICC package for chromatin interaction http://bioinformatics.oxfordjournals.org/content/early/2015/07/31/bioinformatics.btv445.short #R #Chromatin #Package #Interaction #ChIA-PET

    3221 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

    3211 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

    3209 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

    3209 days ago