Entering edit mode
24 months ago
Maria Eduarda
•
0
I am having doubts about this exercise (at the point of creating a fasta file)
Create a program that creates three fasta sequences and writes them to a file, using the write method. The DNA sequence must be capitalized and without the characters (-)
Hi! Try using
string.upper()
for uppercase conversion andstring.replace('-', '')
to remove-
characters. It might be useful if you share your code, and the error you are getting or the specific point where you are getting stuck :).the fasta format is described here https://en.wikipedia.org/wiki/FASTA_format
What is your doubt? What have you tried?