do you have any tools convert pdb-id to accession number of gene in ncbi (accession number)
do you have any tools convert pdb-id to accession number of gene in ncbi (accession number)
You can also try MyGene.info service and its Python client. See the tutorial here.
out = mg.querymany(your_pdb_id_list, scopes='pdb', fields='entrezgene,go', species='human')
This will give you the matching ncbi gene ids and go accessions (or other annotations if you change fields parameter)
Please have a look at the Protein Identifier Cross-Reference Service (PICR) from EBI, which maps identifiers between many different databases, including NCBI RefSeq.
You didn't ask for GO accession numbers .... In that case, you can try Ensembl BioMart instead (provided your species of interest is part of Ensembl or Ensembl Genomes). You can find a BioMart tutorial on YouTube. Hope this helps.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
thanks for your reply.it means that first download the phyton script and then??
Could you please tell me how can I access to this site . I cannot understand the user guide
Are you familiar with Python, R or any other programming language? If you give me your preference, I can provide more specific info.
Thanks for your replying, I know C++ AND C SHARP language.
I do step by step for install mygene. This step require install httplib2 (install using
pip install httplib2
) but unfortunately httplib2 is commercial and I cannot install it.I'm pretty sure httplib2 is not a commercial library. "pip install httplib2" should work if pip is working correctly in your environment. In fact, "pip install mygene" alone should be sufficient as it will install httplib2 automatically as dependencies.