Entering edit mode
9.7 years ago
Tdemarco
▴
10
Hi all, I am new to this forum and very NEW to python. I was given the task of finding all the 5 amino acid sequences that are identical between two given DNA sequences. Like I said I am very new to this. I have a copy of Python for Biologists. Have read the chapters we were have supposed to read and have no idea where to begin. Any help or direction would be greatly appreciated.
Hi -- you may appreciate http://rosalind.info/problems/ini/, has some practical example python problems and solutions :)
You need to know how to open the files and read the contents. Then some for loop technique that helps in comparing the lines between the files and get common lines. Once this is done...
Read basics of Object oriented programming and follow some tutorial about biopython. You will learn how to read fasta files. Then compare the sequences in both the files.
Thank you all. Doing some reading now and trying to make sense of it. This is a basic Bioinformatics course. We haven't really USED python in class yet.. (we have done other things)
It is hard to read material and be expected to write programs without practice.. Thanks for directing me to the right places.
Actually, after downloading the files I see they are already in AA code.. Just have to find how many 5-mers are identical between the two sequences.