We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 992cb86 commit 35f4af5Copy full SHA for 35f4af5
singlecell/resources/chunks/CiteSeqPlots.R
@@ -9,10 +9,10 @@ for (datasetId in names(seuratObjects)) {
9
tryCatch({
10
CellMembrane::FeaturePlotAcrossReductions(seuratObj, features = paste0('adt_', adt))
11
}, error = function(e){
12
- print(conditionMessage(e))
+ warning(conditionMessage(e))
13
traceback()
14
- print('ADTs:')
15
- print(sort(rownames(seuratObj@assays$ADT)))
+ message('ADTs:')
+ message(sort(rownames(seuratObj@assays$ADT)))
16
stop(paste0('Error running FeaturePlotAcrossReductions for: ', datasetId))
17
})
18
0 commit comments