get_SmoothByBin_PseudotimeExp | R Documentation |
Divide cells into bins across pseudotime and return expression profile
get_SmoothByBin_PseudotimeExp(
seurat_object,
FC = TRUE,
Bin = 50,
method = "Pseudotime",
FcType = "Q95"
)
seurat_object |
seurat object, where meta.data should contain Pseudotime |
FC |
logic, indicating whether to add FoldChangeQ95 to the first column, default is TRUE |
Bin |
numeric, indicating the numbers of bins which divide the pseudotime, default is 50 |
method |
'Pseudotime' or 'State'. Pseudotime method firstly orders all cells according to pseudotime, and then smooth these cells into ‘Bin' number of bins. State method firstly orders all cells according to pseudotime, and then smooth cells in each state into ('Bin'/number of state) number of bins. |
FcType |
'Q95' or 'Q90', FoldChange threshold, default is 'Q95' |
return a expression profile
load(system.file("extdata", "test_seurat.rda", package = "IReNA"))
monocle_object = get_pseudotime(test_seurat)
seurat_object_pseudotime=add_pseudotime(seurat_object = test_seurat,monocle_object = monocle_object)
get_SmoothByBin_PseudotimeExp(seurat_object_pseudotime, Bin = 50, FcType = "Q95")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.