Access NormCounts data used by plotTrajectory function #1373
-
Hi, I wondered how to access the 'NormCounts' data that is used in the plotTrajectory function? It does not appear to be identical to the data stored in "GeneExpressionMatrix". Many thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Line 778 in 968e442 If you follow what happens to
If you wanted to obtain these values, you should be able to get them from the plot object for the particular gene you are plotting or perform the manipulations yourself after looking at the code links above. |
Beta Was this translation helpful? Give feedback.
plotTrajectory()
obtains the values from the specified matrix here:ArchR/R/Trajectory.R
Line 778 in 968e442
If you follow what happens to
plotParams$color
, The additional manipulations after getting these matrix values include:imputeWeights
which will happen automatically if they are available and you havent setimputeWeights = NULL
.ArchR/R/Trajectory.R
Line 824 in 968e442
A…