Results for "Protein sequence/structure annotation"

Wire posts

  • Sort FASTA sequence by length: cat f1.fasta| awk '{if($0 ~ /^>/){printf "%st", $0}else{print length($0)"t"$0}}'| sort -k2n,2| awk '{print $1"n"$3}' > sequence.fasta #Sort #Fasta #Trick #Onliner

    3202 days ago

  • The BLAST parser http://kirill-kryukov.com/study/tools/blast-parser/ #BLAST #Parser #Genome #Match #Sequence #Similarity

    3156 days ago

  • #Eukaryotic #genome #annotation http://www.webscipio.org/help/scipio #scipio #pipeline

    3094 days ago

  • A powerful #multiple #sequence #alignment #browser http://wasabiapp.org/

    2980 days ago

  • Dynamic programming http://www.avatar.se/molbioinfo2001/dynprog/dynamic.html #Programming #Alignment #Sequence #Dynamic

    2970 days ago

  • Annotation transfer pipeline MAKER http://gmod.org/wiki/MAKER_Tutorial_2013 #Maker #Annotation #Pipeline

    2966 days ago

  • PAired-eND Assembler for DNA sequences https://github.com/neufeld/pandaseq #Sequence #Assembler #PANDAseq

    2965 days ago

  • Extract fasta sequence by Ids: perl -ne 'if(/^>(\S+)/){$c=grep{/^$1$/}qw(id1 id2)}print if $c' fasta.file #Perl #PerlOneliner #PerlTrick #Extract #Ids #Fasta

    2802 days ago

  • Extract sequence by using Ids file (assuming one ids in a line): perl -ne 'if(/^>(\S+)/){$c=$i{$1}}$c?print:chomp;$i{$_}=1 if @ARGV' ids.file fasta.file #PerlTricks #PerlOneliner #Perl #Extract #Ids #

    2802 days ago

  • Extract a fasta sequence from multifasta file: samtools faidx multitest.fa and then samtools faidx multitest.fa fasta_id > out.fa #Samtools #Fasta #Extract #Multifasta

    2762 days ago