I have a FASTA file, it looks like this:
I want this:
sequence1: ATGCACCGT
sequence2: GACCTAGCA
as a result.
how can I do it?
edit: I'll try to reformulate it,
so I have a (fasta) file, with multiple rows. some rows has a special character (>) as a first character. I don't need these rows, but the rows shows where the first sequence ended, and where the other begins.
I'd like to read it into two separate strings first string is the first sequence, the second is the second one.
but I don't know how could I tell pycharm that I want to read until > sign,than the rest goes to another string, until the next > sign...