thanks for your reply ,could you please tell me one tool for convert pdb-id to gene name (gene symbol)
gene and disease nework
I have 1000 pdbid and I want to know that which one of this pdb- id contribute in disease. Could you please tell me which tools give all of pdb id and then draw the network in output
• 3,736 views
•
link
3 answers
• 0 views
•
link
You can use the "biomaRt" R package if you are familiar with R.
Code for this operation would look like this (not run):
library(biomaRt)
ensembl <- useMart("ensembl",dataset="hsapiens_gene_ensembl")
proteinIDs<- #A character vector of Ensembl Protein IDs. (I am assuming Ensembl Protein IDs is what you are talking about, please make sure that this is the case!)
tab<-getBM(attributes=c("hgnc_symbol","ensembl_peptide_id"),filters="ensembl_peptide_id",values=proteinIDs,mart=ensembl)
tab will now be a table with two columns, where the first column will be the gene symbol and the second column protein ID.
• 0 views
•
link
• 0 views
•
link
Log in to answer this question.