getFootprints | R Documentation |
This function will get footprints for all samples in a given ArchRProject and return a summarized experiment object that can be used for downstream analyses
getFootprints(
ArchRProj = NULL,
positions = NULL,
plotName = "Plot-Footprints",
groupBy = "Clusters",
useGroups = NULL,
flank = 250,
minCells = 25,
nTop = NULL,
threads = getArchRThreads(),
verbose = TRUE,
logFile = createLogFile("getFootprints")
)
ArchRProj |
An |
positions |
A |
plotName |
The prefix to add to the file name for the output PDF file containing the footprint plots. |
groupBy |
The name of the column in |
useGroups |
A character vector that is used to select a subset of groups by name from the designated |
flank |
The number of basepairs from the position center (+/-) to consider as the flank. |
minCells |
The minimum number of cells required in a given cell group to permit footprint generation. |
nTop |
The number of genomic regions to consider. Only the top |
threads |
The number of threads to be used for parallel computing. |
verbose |
A boolean value that determines whether standard output includes verbose sections. |
logFile |
The path to a file to be used for logging ArchR output. |
# Get Test ArchR Project
proj <- getTestProject()
# Get Motif Positions
positions <- getPositions(proj)
# Get Footprints
seFoot <- getFootprints(ArchRProj = proj, positions = positions, groupBy = "Clusters", minCells = 10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.