We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aca1246 commit f16999bCopy full SHA for f16999b
singlecell/resources/chunks/Functions.R
@@ -86,10 +86,16 @@ saveData <- function(seuratObj, datasetId) {
86
}
87
88
intermediateFiles <- c()
89
-addIntermediateFile <- function(f) { intermediateFiles <- c(intermediateFiles, f) }
+addIntermediateFile <- function(f) {
90
+ print(paste0('Adding intermediate file: ', f))
91
+ intermediateFiles <<- c(intermediateFiles, f)
92
+}
93
94
errorMessages <- c()
-addErrorMessage <- function(f) { errorMessages <- c(errorMessages, f) }
95
+addErrorMessage <- function(f) {
96
+ print(paste0('Adding error: ', f))
97
+ errorMessages <<- c(errorMessages, f)
98
99
100
print('Updating future.globals.maxSize')
101
options(future.globals.maxSize = Inf)
0 commit comments