Description Usage Arguments Value Author(s) References See Also Examples
This methods uses the background PPI to try to build an interaction network that connects
each interacting regions. If a regionA
interacts with a regionB
and if
TF_A is the list of TF in regionA
and TF_B is the list of TF in
regionB
, than we use the loaded PPI as a background network to connect each TF from
TF_A to each TF in TF_B.
We suppose that a minimum number of physical interactions (minimum energy) are needed to connection each TF to the other. Thus, we take the shortest path in the PPI. at this stage, each network is a collection of edges.
1 2 | ## S4 method for signature 'ChiapetExperimentData'
buildNetworks(object, minFreq = 0.25, maxFreq = 0.75)
|
object |
a |
minFreq |
After constructing the networks for all the interacting regions all edges that appear in less than |
maxFreq |
After constructing the networks for all the interacting regions all edges that appear in more than |
A NetworkCollection
object that contain the list of all the constructed networks and their sizes.
NOTE: interactions for which no TF was bound or no networks could be constructed or which was empty after filtering will not be considered.
Mohamed Nadhir Djekidel (nde12@mails.tsinghua.edu.cn)
Mohamed Nadhir D, Yang C et al 3CPET: Finding Co-factor Complexes in Chia-PET experiment using a Hierarchical Dirichlet Process, ....
ChiapetExperimentData
, loadTFBS
, loadPETs
, loadPPI
, createIndexes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
## get the different datasets path
petFile <- file.path(system.file("example",package="R3CPET"),"HepG2_interactions.txt")
tfbsFile <- file.path(system.file("example",package="R3CPET"),"HepG2_TF.txt.gz")
## Not run:
x <- ChiapetExperimentData(pet = petFile, tfbs= tfbsFile, IsBed = FALSE, ppiType="HPRD", filter= TRUE)
## build the diffrent indexes
x <- createIndexes(x)
## build networks connecting each interacting regions
nets<- buildNetworks(x)
nets
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.