Our Sponsors



Download BioinformaticsOnline(BOL) Apps in your chrome browser.






Reformat the multifasta for sequence length !

  • Public
By BioStar 2063 days ago
#awk oneliner to reformat the multifasta sequences awk '!/^>/ {printf "%s", $0; n = "\n"} /^>/ {print n $0; n = ""}' file.fasta | fold -w 100