How can I integrate gene with PPI network
5
2
Entering edit mode
8.0 years ago
AAhmed ▴ 20

I have microarray datasets, I did statistical analysis to it and I got 75 significant genes. I want to map these genes on PPI network to find out their interaction. Therefore, I download IntAct PPI network. I am new in this field and I do not have clue how to map genes on PPI. Do I have to convert these genes to protein or what? any help will be highly appreciated

gene • 5.2k views
ADD COMMENT
5
Entering edit mode
7.4 years ago
Tom_L ▴ 350

You can use the bioconductor package "STRINGdb", assuming you're a little comfortable using R programming language. Basically, you can obtain your PPI network with 3 commands:

string_db=STRINGdb$new(version="10",species=9606,score_threshold=400,input_directory="YOUR_PATH")

myDF=string_db$map(myDF,"GENE_NAME",removeUnmappedRows=TRUE)

string_db$plot_network(myDF$STRING_id,n=200)

The first line generates a STRINGdb object containing some parameters for further computation (e.g. specie, PPI score threshold, etc.).

The second line takes a data frame (myDF) in input and converts column "GENE_NAME" containing gene symbols into a new column called "STRING_id". Note that "removeUnmappedRows=TRUE" will remove unknown gene symbols.

The third line plots your network using the new column with STRINGdb entries.

Some additional documentation: https://bioconductor.org/packages/release/bioc/vignettes/STRINGdb/inst/doc/STRINGdb.pdf

Cheers.

ADD COMMENT
0
Entering edit mode

Thank you for your help Tom_L This really helpful

ADD REPLY
0
Entering edit mode

Can I used R to import the network from Human Protein Reference Database(HPRD) rather then STRING? @Tom_L

ADD REPLY
1
Entering edit mode
8.0 years ago
Girolamo ▴ 140

I suggest to convert your list to uniprot id:

ADD COMMENT
0
Entering edit mode
8.0 years ago
Girolamo ▴ 140

what kind of id you have for your genes? you can directly upload your ids here http://www.ebi.ac.uk/intact/ and retrieve the interactions. Alternatively, you could use http://www.uniprot.org/uploadlists/ to retrieve the mapping genes-proteins

ADD COMMENT
0
Entering edit mode
8.0 years ago
AAhmed ▴ 20

I have Gene_Entrez and Gene_Symbols. Could you explain this a little bit how can I know my genes in this case if I used http://www.ebi.ac.uk/intact/ or http://www.uniprot.org/uploadlists/

ADD COMMENT
0
Entering edit mode
7.4 years ago
Ron ★ 1.2k

https://thebiogrid.org/download.php

"BioGRID is an interaction repository with data compiled through comprehensive curation efforts. Our current index is version 3.4.142 and searches 57,513 publications for 1,079,789 protein and genetic interactions, 27,745 chemical associations and 38,559 post translational modifications from major model organism species. "

ADD COMMENT

Login before adding your answer.

Traffic: 3212 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