Description Usage Arguments Value Author(s) See Also Examples
To facilitate the interaction of the user with the package, we added an additional web interface using the shiny package. The user can check some basic statistics about the row data and he can explore the results and generate some graphs.
1 2 3 | ## S4 method for signature
## 'ChiapetExperimentData,NetworkCollection,ChromMaintainers'
createServer(x,nets,hlda)
|
x |
a |
nets |
a |
hlda |
a |
A webpage is opened.
Mohamed Nadhir Djekidel (nde12@mails.tsinghua.edu.cn)
NetworkCollection
, ChiapetExperimentData
, ChromMaintainers
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ## 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:
data(RPKMS)
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)
## infer the networks and do the clustering
hlda<- InferNetworks(nets)
hlda<- clusterInteractions(hlda)
## Run the server
createServer(x, nets, hlda)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.