We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa69c4b commit 5e10111Copy full SHA for 5e10111
singlecell/resources/chunks/TcrFilter.R
@@ -41,8 +41,9 @@ for (datasetId in names(seuratObjects)) {
41
if (all(is.null(cellsToKeep))) {
42
print('There were no matching cells')
43
} else {
44
+ print(paste0('Total passing cells: ', length(cellsToKeep)))
45
seuratObj <- subset(seuratObj, cells = cellsToKeep)
- #saveData(seuratObj, datasetId)
46
+ saveData(seuratObj, datasetId)
47
totalPassed <- totalPassed + 1
48
}
49
0 commit comments