python: translate DNA sequences to protien sequences
Hi
Is there a python script that translate a multi-fasta file that contains DNA sequences to amino acid sequences and save the results in a file.
• 10,204 views
•
link
1 answer
Maybe in the Biopython tutorial you can find an answer in Chapter 3.9 Translation: http://biopython.org/DIST/docs/tutorial/Tutorial.html#htoc25
• 0 views
•
link
Log in to answer this question.
They are plenty of examples online:
Python Script To Translate Rna Sequences To Protein Sequences
They could be used with a little bit of work on the format of the input.
Whatever script you choose, be sure you use the correct codon table
https://www.ncbi.nlm.nih.gov/Taxonomy/Utils/wprintgc.cgi
Did you try to write something?