Description Usage Arguments Details Value Examples
This function combines the PPI data for both "mmusculus" and "hsapiens" species created by the get_ppi_for_molecules function.
1 | combine_mm_hs_ppi(mm.ppi, hs.ppi, RP.protein, KN.protein, TF.protein)
|
mm.ppi |
The PPI data for "mmusculus" species generated by the function get_ppi_for_molecules. |
hs.ppi |
The PPI data for "hsapiens" species generated by the function get_ppi_for_molecules. |
RP.protein |
A vector containg the same receptor (RP) proteins that are used in the function get_ppi_for_molecules. |
KN.protein |
A vector containg the same kinase (KN) proteins that are used in the function get_ppi_for_molecules. |
TF.protein |
A vector containg the same transcription factor (TF) proteins that are used in the function get_ppi_for_molecules. |
This function combines the PPI data for both "mmusculus" and "hsapiens" species created by the get_ppi_for_molecules function.
This function returns a list consisting of the combined filtered PPI data, the RP proteins and the TF proteins of the combined filtered PPI data to generate the pathway path.
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Need two folder at working directory for downloading stringdb files for each species - stringdb_mouse, stringdb_human.
## It takes some time to download the data, and then can reuse the downloaded data.
## Here we will use RP.protein, KN.protein, TF.protein protein parameters. These data are automatically loaded with the package. You can modify these parameters.
## We will generate PPI data for two species - "mmusculus" and "hsapiens" by calling the function get_ppi_for_molecules two times.
## Then we will combine these two PPI data sets by using the combine_mm_hs_ppi function that will be used later on to generate the pathway path data.
## Get PPI data for the protein molecules of species "mmusculus".
mm.ppi<-get_ppi_for_molecules(RP.protein, KN.protein, TF.protein, species="mmusculus")
## Get PPI data for the protein molecules of species "hsapiens".
hs.ppi<-get_ppi_for_molecules(RP.protein, KN.protein, TF.protein, species="hsapiens")
## Now combine and get the filtered PPI and the RP and TF proteins of the combined filtered PPI
comb.ppi.result<-combine_mm_hs_ppi(mm.ppi, hs.ppi, RP.protein, KN.protein, TF.protein)
head(summary(comb.ppi.result))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.