Description Usage Arguments Value Author(s) References See Also Examples
After loading the interactions and the TFBS, the createIndexes
method can be used to build indexes for fast
look-up for which which TF are located in which region. This method is an intermediate step needed for further analysis.
1 2 | ## S4 method for signature 'ChiapetExperimentData'
createIndexes(object, minOverlap = 50)
|
object |
a |
minOverlap |
The minimum overlap between a TF binding site and a region, to consider a TF as binding to that region.
The default value is |
A ChiapetExperimentData
object in which the .dt
slot is populated as a data.table
object.
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
1 2 3 4 5 6 7 8 9 10 11 | ## 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)
x
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.