plotFootprints.Rd
This function will get footprints for all samples in a given ArchRProject or a properly-formatted Summarized Experiment
plotFootprints(
seFoot = NULL,
names = NULL,
pal = NULL,
flank = 250,
flankNorm = 50,
normMethod = "Subtract",
smoothWindow = NULL,
baseSize = 6,
plot = TRUE,
ArchRProj = NULL,
plotName = paste0("Plot-Footprints-", normMethod),
height = 6,
width = 4,
addDOC = TRUE,
force = FALSE,
logFile = createLogFile("plotFootprints")
)
A summarized experiment object containing information on footprints returned by the getFootprints()
function.
A character vector containing the names of the transcription factors to be plotted. These should match colnames of seFoot
.
The name of a custom palette from ArchRPalettes
to use for plotting the lines corresponding to the footprints.
The number of basepairs from the position center (+/-) to consider as the flank.
The number of basepairs to consider at the edge of the flank region (+/-) to be used for footprint normalization.
The name of the normalization method to use to normalize the footprint relative to the Tn5 insertion bias. Options include "none", "subtract", "divide". "Subtract" means subtracting the normalized Tn5 Bias. "Divide" means dividing the normalized Tn5 Bias.
The size in basepairs of the sliding window to be used for smoothing of the footprint signal.
A numeric specifying the baseSize of font in the plots.
A boolean value indicating whether or not the footprints should be plotted (TRUE
) or returned as grob objects (FALSE
).
An ArchRProject
object to be used for plotting directory in getOutputDirectory
.
A string indicating the name/prefix of the file to be used for output plots.
The height in inches to be used for the output PDF file.
The width in inches to be used for the output PDF file.
A boolean variable that determines whether to add the date of creation to end of the PDF file name. This is useful for preventing overwritting of old plots.
If many footprints are requested when plot = FALSE, please set force = TRUE. This prevents large amount of footprint plots stored as an object.
The path to a file to be used for logging ArchR output.