I need to take a text file of a number of gene sequences in fasta format eg
>geneA
agctactactacgatcgaacgtagctactactacgatcgaacgtagctactactacgatc
gaacgtagctactactacgatcgaacgtagctactactacgatcgaacgtagctactact
acgatcgaacgtagctactactacgatcgaacgtagctactactacgatcgaacgtagct
actactacgatcgaacgtagctactactacgatcgaacgtagctactactacgatcgaac
gtagctactactacgatcgaacgtactacgatcgaacgta
and put it into:
geneA agctactactacgatcgaacgtagctactactacgatcgaacgtagctac
where all of the sequence is on one line. I can concatenate it in excel for one sequence but i have 200+ to fit into the two column format such that i can use python to open the text file and stuff the txt file into an SQL file. I only need some ideas on how to put the sequences into the two column format.
Cheers