StoreAllMarkers | R Documentation |
Saves the complete output table from FindAllMarkers()
to a Seurat object, facilitating
easy access to differential expression analysis results. This function rounds numerical values to a
specified number of digits to maintain readability and manage file sizes.
StoreAllMarkers(
obj = combined.obj,
df_markers = df.markers,
res = 0.5,
digit = c(0, 3)[2]
)
obj |
Seurat object to update with differential expression markers. Default: |
df_markers |
Data frame containing the results from differential gene expression analysis
( |
res |
Clustering resolution identifier for storing and referencing the markers. Default: 0.5. |
digit |
Number of significant digits to retain in numerical values. Default: 3. |
## Not run:
if (interactive()) {
combined.obj <- StoreAllMarkers(obj = combined.obj, df_markers = df.markers, res = 0.5)
}
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.