Description Usage Arguments Value Author(s) References See Also Examples
This method enables the user to define the PPI network as a background network.
The user can provide his own PPI or use the HPRD
or the Biogrid
PPI
incorporated in the package.
1 2 3 4 |
object |
a |
type |
if |
customPPI |
If the user wants to use his own PPI interaction network (for example for another species), he can provide an
|
filter |
This parameter indicates whether the user want to filter the selected PPI or not. In addition to the filtering by location, if the user wants just to keep the proteins that show a certain amount of expression
he can provide a gene expression table to the |
term |
The GO term used to for filtering. By default, only protein that are located in the nucleus are kept ( |
annot |
If the user wants to provide his own annotation data-set, he can pass a geneSymbol cellular_component_term FAU Ribosome (GO:0005840); Nucleolus (GO:0005730) ALDH3A1 Cytoplasm (GO:0005737); Nucleus (GO:0005634) ASCL1 Nucleus (GO:0005634); Cytoplasm (GO:0005737) |
RPKM |
A |
threshold |
Threshold value used to filter gene expression. All genes with expression value less than |
A ChiapetExperimentData
object in which the ppi
slot is populated as an igraph
object filtered
according to the specified conditions.
Mohamed Nadhir Djekidel (nde12@mails.tsinghua.edu.cn)
Prasad, T. S. K. et al. (2009) Human Protein Reference Database - 2009 Update. Nucleic Acids Research. 37, D767-72.
Chatr-Aryamontri A, Breitkreutz BJ et al. The BioGRID Interaction Database: 2013 update. Nucleic Acids Res. 2012 Nov 30
M.N Djekidel et al,3CPET: Finding Co-factor Complexes in Chia-PET experiment using a Hierarchical Dirichlet Process, in press, 2015
ChiapetExperimentData
, loadTFBS
, loadPETs
, createIndexes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Create a ChiapetExperimentData object
x <- ChiapetExperimentData(ppiType= "HPRD")
## Loading the default HPRD network without filtering
x <- loadPPI(x,type="HPRD")
ppi(x)
## Using the HPRD network and filtering using the GO:0005634
x <- loadPPI(x,type="HPRD", filter=TRUE)
ppi(x)
data(RPKMS)
x <- loadPPI(x,type="HPRD",filter=TRUE,annot= NULL, RPKM= RPKMS, threshold = 5)
ppi(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.