This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Doubts about bioprogramming

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 (-)

enter image description here

python3 python genes

Hi! Try using string.upper() for uppercase conversion and string.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 :).

0 answers

No answers yet.

Log in to answer this question.