Pawel F. Przytycki 2021-07-01
Once a cellWalk object has been created, downstream analysis can be performed using an interactive interace. Several additional R packages are required for the interface to function:
install.packages("shiny")
install.packages("plotly")
install.packages("ggplot2")
install.packages("reshape2")
Once required packages are installed, an interface can be launched as follows:
launchViz(cellWalk)
To be able to compute label scores for bulk data, the cellWalk object will need to raw ATAC data to be associated with it:
cellWalk <- storeMat(cellWalk, ATACMat, peaks)
Alternatively, if label scores for bulk data have already been computed (as desribed in the main vignette), they can be added to the cellWalk object before launching the vizualization:
cellWalk <- storeBulk(cellWalk, bulkPeaks, labelScores)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.