This question might be repetitive, however I am not able to find a solution for me. I am quite new to bioinformatics I have a multi fasta file with several sequences, like this as shown below in the example. I want to move my sequence(s) in the next line after the header. I have tried couple of commands but could not get the desired output.
Lymphocytic_choriomeningitis_mammarenavirus 1653394 11623 Lymphocytic_choriomeningitis_mammarenavirus None NP AATTTCCCCGGCCCGGG
Desired output
Lymphocytic_choriomeningitis_mammarenavirus 1653394 11623 Lymphocytic_choriomeningitis_mammarenavirus None NP
AATTTCCCCGGCCCGGG
Any help is much appreciated.
You need to add a new line character
\n
explicitly. Which programming language you are using? Provide your code to answer your question perfectly.