We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b28147d commit 5925a00Copy full SHA for 5925a00
singlecell/resources/chunks/PlotAverageCiteSeqCounts.R
@@ -4,7 +4,13 @@ for (datasetId in names(seuratObjects)) {
4
if (!('ADT' %in% names(seuratObj@assays))) {
5
print('ADT assay not present, skipping')
6
} else {
7
- CellMembrane::PlotAverageAdtCounts(seuratObj, groupFields = fieldNames)
+ tryCatch({
8
+ CellMembrane::PlotAverageAdtCounts(seuratObj, groupFields = fieldNames)
9
+ }, error = function(e){
10
+ print(paste0('Error running PlotAverageCiteSeqCounts for: ', datasetId))
11
+ print(conditionMessage(e))
12
+ traceback()
13
+ })
14
}
15
16
# Cleanup
0 commit comments