Skip to content

Commit 5e10111

Browse files
committed
Add logging to TCR filtering
1 parent fa69c4b commit 5e10111

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

singlecell/resources/chunks/TcrFilter.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@ for (datasetId in names(seuratObjects)) {
4141
if (all(is.null(cellsToKeep))) {
4242
print('There were no matching cells')
4343
} else {
44+
print(paste0('Total passing cells: ', length(cellsToKeep)))
4445
seuratObj <- subset(seuratObj, cells = cellsToKeep)
45-
#saveData(seuratObj, datasetId)
46+
saveData(seuratObj, datasetId)
4647
totalPassed <- totalPassed + 1
4748
}
4849

0 commit comments

Comments
 (0)