@@ -70,17 +70,16 @@ file.create(trackerFile)
7070print(paste0(' Total lines in ' , trackerFile , ' on job start:' , length(readLines(trackerFile ))))
7171
7272saveData <- function (seuratObj , datasetId ) {
73- message (paste0(' Saving dataset: ' , datasetId , ' with ' , ncol(seuratObj ), ' cells' ))
73+ logger :: log_info (paste0(' Saving dataset: ' , datasetId , ' with ' , ncol(seuratObj ), ' cells' ))
7474 print(paste0(' Saving dataset: ' , datasetId ))
7575 print(seuratObj )
7676
7777 seuratObj <- .TestSplitLayers(seuratObj )
7878
7979 datasetIdForFile <- makeLegalFileName(datasetId )
8080 fn <- paste0(outputPrefix , ' .' , datasetIdForFile , ' .seurat.rds' )
81- message(paste0(' Filename: ' , fn ))
8281
83- message (paste0(' Saving RDS file: ' , fn , ' with ' , ncol(seuratObj ), ' cells' ))
82+ logger :: log_info (paste0(' Saving RDS file: ' , fn , ' with ' , ncol(seuratObj ), ' cells' ))
8483 barcodeFile <- paste0(outputPrefix , ' .' , datasetIdForFile , ' .cellBarcodes.csv' )
8584 metaFile <- paste0(outputPrefix , ' .' , datasetIdForFile , ' .seurat.meta.txt' )
8685
0 commit comments