Entering edit mode
2.4 years ago
kmears
•
0
Hello,
I have a list of proteins for which I need to find the corresponding nucleotide sequences. For example find NC_001498 from NP_056922.1. I figure there should be an easy way to do this but I'm not familiar with the ins and outs of Entrez/biopython.
Thanks!
Thank you, is there an easy way to do this with python as well?
Yes, take a look at Bio.Entrez. Personally though, I just find it easier to use
subprocess
module in python and run the EntrezDirect commands within the python script... but that may not always be feasible.