correlateTrajectories.Rd
This function will correlate 2 trajectory matrices from getTrajectory.
correlateTrajectories(
seTrajectory1 = NULL,
seTrajectory2 = NULL,
corCutOff = 0.5,
varCutOff1 = 0.8,
varCutOff2 = 0.8,
removeFromName1 = c("underscore", "dash"),
removeFromName2 = c("underscore", "dash"),
useRanges = FALSE,
fix1 = "center",
fix2 = "start",
maxDist = 250000,
log2Norm1 = TRUE,
log2Norm2 = TRUE,
force = FALSE,
logFile = createLogFile("correlateTrajectories")
)
A SummarizedExperiment
object that results from calling getTrajectory()
.
A SummarizedExperiment
object that results from calling getTrajectory()
.
A numeric describing the cutoff for determining correlated features.
The "Variance Quantile Cutoff" to be used for identifying the top variable features across seTrajectory1
.
Only features with a variance above the provided quantile will be retained.
The "Variance Quantile Cutoff" to be used for identifying the top variable features across seTrajectory2
.
Only features with a variance above the provided quantile will be retained.
A character vector describing how to filter names in matrix 1. Options include "underscore", "dash", "numeric" and "dot". The string portion prior to these will be kept.
A character vector describing how to filter names in matrix 2. Options include "underscore", "dash", "numeric" and "dot". The string portion prior to these will be kept.
A boolean describing whether to use range overlap matching for correlation analysis.
A character describing where to resize the coordinates of seTrajectory1
. Options include "start", "center", "end".
A character describing where to resize the coordinates of seTrajectory2
. Options include "start", "center", "end".
A integer specifying the maximum distance between the coordinates of seTrajectory1
and seTrajectory2
for
computing correlations.
A boolean describing whether to log2 normalize seTrajectory1
.
A boolean describing whether to log2 normalize seTrajectory2
.
A boolean value that determines whether analysis should continue if resizing coordinates in seTrajectory1
or
seTrajectory2
does not align with the strandedness. Only when useRanges = TRUE
.
The path to a file to be used for logging ArchR output.