exportPeakMatrixForSTREAM.Rd
This function gets a PeakMatrix from an ArchRProject
and writes it to a set of files for STREAM (https://github.com/pinellolab/STREAM)
exportPeakMatrixForSTREAM(
ArchRProj = NULL,
useSeqnames = NULL,
verbose = TRUE,
binarize = FALSE,
threads = getArchRThreads(),
logFile = createLogFile("exportMatrixForSTREAM")
)
An ArchRProject
object to get data matrix from.
A character vector of chromosome names to be used to subset the data matrix being obtained.
A boolean value indicating whether to use verbose output during execution of this function. Can be set to FALSE for a cleaner output.
A boolean value indicating whether the matrix should be binarized before return. This is often desired when working with insertion counts.
The path to a file to be used for logging ArchR output.
# Get Test ArchR Project
proj <- getTestProject()
# Export Matrix For Stream
exportPeakMatrixForSTREAM(proj)