gene.name.check | R Documentation |
Examines gene names in a Seurat object for specific naming conventions, such as the presence of hyphens (-) or dots (.) often found in mitochondrial gene names. This function is useful for ensuring gene names conform to expected patterns, especially when preparing data for compatibility with other tools or databases.
gene.name.check(Seu.obj)
Seu.obj |
A Seurat object containing gene expression data. |
This function prints out examples of gene names that contain specific characters of interest (e.g., '-', '_', '.', '.AS1-9'). It is primarily used for data inspection and cleaning before further analysis or data export.
GetAssayData
## Not run:
if (interactive()) {
# Assuming `combined.obj` is your Seurat object
gene.name.check(Seu.obj = combined.obj)
# This will print examples of gene names containing '-', '_', '.', and '.AS[1-9]'
}
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.