Biopython noob here, I'm trying to create a program that uses the Biopython package Alphabet and alphabet module IUPAC to write out the letters of the classes listed to a file called alphabetSoupOuput.txt.
ThreeLetterProtein
IUPACProtein
Each group of letters should be written to its single line in the output file and the letters should be separated by commas. The line before each group of letters should contain a label that describes the letters and has a # in the first position of that line, e.g.
Three Letter Protein
Ala, Asx, Cys, ..., Glx
Protein Letters
A, C, D, E, ..., Y
How can I do this?
lul. a hint at least? how exactly do I call the 'letters' from each class?
Can you clarify the question? Perhaps with a small example: What is the input? What is the desired output?
Im trying to use the Alphabet package and IUPAC module to write out the letters of each class. Im not sure how to call the letters?