Skip to content

Commit 687342f

Browse files
committed
Fix recursion error in R scripts
1 parent 4089f17 commit 687342f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singlecell/resources/chunks/Functions.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ addErrorMessage <- function(f) {
129129
}
130130

131131
readSeuratRDS <- function(filePath) {
132-
seuratObj <- readSeuratRDS(filePath)
132+
seuratObj <- readRDS(filePath)
133133

134134
# NOTE: this could be used after SeuratObject upgrades
135135
#if (!('version' %in% slotNames(seuratObj)) || package_version(seuratObj@version) < package_version('5.0.0')) {

0 commit comments

Comments
 (0)