Our Sponsors



Download BioinformaticsOnline(BOL) Apps in your chrome browser.




Wire post by Neel

By Neel 2337 days ago
#Convert a #multi-line #fasta to a #singleline #fasta $ awk '!/^>/ { printf "%s", $0; n = "\n" } /^>/ { print n $0; n = "" } END { printf "%s", n }' sample1.fa > sample1_singleline.fa