gene and disease nework
3
0
Entering edit mode
9.6 years ago
gbahramali ▴ 20

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

network • 2.5k views
ADD COMMENT
1
Entering edit mode
9.6 years ago
lkmklsmn ▴ 970

I am not aware of a single tool that will do this. I think you will have to do the mapping manually.

  1. PDB-ID-> Gene Symbol
  2. Gene Symbol -> Disease using OMIM

The biomart tool will probably facilitate these mappings.

I would recommend using Cytoscape to draw the network.

ADD COMMENT
0
Entering edit mode

thanks for your reply ,could you please tell me one tool for convert pdb-id to gene name (gene symbol)

ADD REPLY
0
Entering edit mode

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.

ADD REPLY
0
Entering edit mode

DisGeNET as an alternative source for the gene- disease mapping

ADD REPLY
0
Entering edit mode

Thanks for your reply. Can I submit many name of gene(symbol gene name) in DisGeNET?

ADD REPLY
0
Entering edit mode
9.6 years ago
gbahramali ▴ 20
ADD COMMENT
0
Entering edit mode
8.1 years ago
Felix Francis ▴ 600

If you have a list of proteins/genes and their aggregate p-values from a GWAS study or transcriptome analysis study, you could use HotNet2 to prioritize significantly mutated subnetworks.

Also, see FunSeq2

ADD COMMENT

Login before adding your answer.

Traffic: 2498 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6