Skip to content

Commit e3637b6

Browse files
committed
quote seurat metadata table on save
1 parent a42af0b commit e3637b6

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
@@ -86,7 +86,7 @@ saveData <- function(seuratObj, datasetId) {
8686
# Write cell barcodes and metadata:
8787
metaDf <- seuratObj@meta.data
8888
metaDf$cellbarcode <- colnames(seuratObj)
89-
write.table(metaDf, file = metaFile, quote = F, row.names = F, sep = ',', col.names = T)
89+
write.table(metaDf, file = metaFile, quote = T, row.names = F, sep = ',', col.names = T)
9090
write.table(data.frame(CellBarcode = colnames(seuratObj)), file = barcodeFile, quote = F, row.names = F, sep = ',', col.names = F)
9191
}
9292

0 commit comments

Comments
 (0)