Our Sponsors



Download BioinformaticsOnline(BOL) Apps in your chrome browser.




Wire post by Neelam Jha

By Neelam Jha 2146 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