CellCycleMarkers | R Documentation |
Cell-cycle markers
CellCycleMarkers(object, geneToSymbol)
importCellCycleMarkers(file, organism, release, ignoreVersion = TRUE)
object |
Object. |
geneToSymbol |
|
file |
|
organism |
|
release |
|
ignoreVersion |
|
CellCycleMarkers
.
Updated 2024-03-27.
markersDir <- system.file(
"extdata", "markers",
package = "AcidSingleCell"
)
cellCycleDir <- file.path(markersDir, "cell-cycle")
files <- sort(list.files(
path = cellCycleDir,
pattern = "*.csv",
full.names = TRUE
))
file <- files[[1L]]
organism <- syntactic::sentenceCase(
gsub(
pattern = "-",
replacement = " ",
x = AcidBase::basenameSansExt(file)
)
)
releaseFile <- file.path(markersDir, "ensembl-release.txt")
release <- as.integer(readLines(releaseFile))
object <- importCellCycleMarkers(
file = file,
organism = organism,
release = release
)
print(object)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.