Results for "PE"

Wire posts

  • Perl module http://perlmaven.com/how-to-create-a-perl-module-for-code-reuse #Perl #Module #Package

    3737 days ago

  • MSA tools http://en.wikipedia.org/wiki/List_of_alignment_visualization_software , http://www.ebi.ac.uk/Tools/msa/ #MSA #Alignments

    3725 days ago

  • perl -nle 'if (/^>/) { $sl = 0; print; next } next if ($sl >= 200); $_ = substr($_, 0, 200-$sl) if ($sl + length($_) > 200); $sl += length($_); print;' file.fa >new.fa #Perl #Extract #Fasta

    3637 days ago

  • perl -nle '$count += () = /XY[0-9]+/g; END {print $count}' inputfile #Count #Perl #Perloneliner

    3662 days ago

  • Extract list of read ID from bam file: samtools view mbi.sorted.bam |perl -ne '/ID/ && print' > extractedID.sam #Extract #Ids #SAM #BAM #NGS

    3650 days ago

  • FastaQ 2 Fasta Oneliner: paste - - - -< totalRNA_placental_1.fastq | perl -pale'$_="@F[0..1]"'|tr "\^@" "\>" | perl -pale 's/\s/\n/g' #Oneliner #NGS #FastaQ #Fasta

    3650 days ago

  • Install Bioperl on ubuntu : sudo apt-get install bioperl #Bioperl #Install #Perl

    3645 days ago

  • Perl scripts for Bioinformatics http://jura.wi.mit.edu/bio/bioinfo/scripts/ #Perl #Bioinformatics #Genetics #Scripts

    3644 days ago

  • Remove N from a fasta file. Go to vi editor, type :%s/N\{25,\}//g and press enter. #Vim #vi #N #Replace #Fasta

    3637 days ago

  • Remove the blank space from a fasta file. perl -nlwe 'tr/ //d; print if length' fileName #Delete #Space #Fasta #Perl #Oneliner

    3637 days ago