We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66af918 commit e9a24fdCopy full SHA for e9a24fd
singlecell/src/org/labkey/singlecell/pipeline/singlecell/SubsetSeurat.java
@@ -81,7 +81,7 @@ protected List<String> loadChunkFromFile() throws PipelineJobException
81
String subsetEscaped = subset.replace("'", "\\\'");
82
83
ret.add("\tif (!is.null(seuratObj)) {");
84
- ret.add("\tprint(paste0('Subsetting dataset: ', datasetId, ' with the expression: '" + subsetEscaped + "'))");
+ ret.add("\tprint(paste0('Subsetting dataset: ', datasetId, ' with the expression: " + subsetEscaped + "'))");
85
ret.add("\t\tcells <- c()");
86
ret.add("\t\ttryCatch({");
87
ret.add("\t\t\tcells <- WhichCells(seuratObj, expression = " + subset + ")");
0 commit comments