We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d37d6fa commit b5d7698Copy full SHA for b5d7698
1 file changed
singlecell/resources/chunks/Functions.R
@@ -61,7 +61,9 @@ printName <- function(datasetId) {
61
}
62
63
savedFiles <- data.frame(datasetId = character(), datasetName = character(), filename = character(), outputFileId = character(), readsetId = character())
64
-write.table(savedFiles, file = 'savedSeuratObjects.txt', quote = FALSE, sep = '\t', row.names = FALSE, col.names = FALSE)
+if (file.exists('/work/savedSeuratObjects.txt')) {
65
+ unlink('/work/savedSeuratObjects.txt')
66
+}
67
68
saveData <- function(seuratObj, datasetId) {
69
print(paste0('Saving dataset: ', datasetId))
0 commit comments