Skip to content

Commit

Permalink
Drop cellBender support
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Apr 10, 2024
1 parent b22a685 commit 5d29ff0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion singlecell/resources/chunks/AppendCiteSeq.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ for (datasetId in names(seuratObjects)) {
}
}

seuratObj <- CellMembrane::AppendCiteSeq(seuratObj, unfilteredMatrixDir = matrixDir, normalizeMethod = normalizeMethod, datasetId = datasetId, featureMetadata = featureMetadata, adtWhitelist = adtWhitelist, runCellBender = runCellBender, aggregateBarcodeFile = aggregateBarcodeFile)
seuratObj <- CellMembrane::AppendCiteSeq(seuratObj, unfilteredMatrixDir = matrixDir, normalizeMethod = normalizeMethod, datasetId = datasetId, featureMetadata = featureMetadata, adtWhitelist = adtWhitelist, aggregateBarcodeFile = aggregateBarcodeFile)
} else {
print('matrixDir was NULL, skipping CITE-seq')
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1107,11 +1107,6 @@ else if ("NotUsed".equals(val))
descriptions.add("Cite-seq Normalization: " + citeNormalize);
}

if (ctx.getParams().optBoolean("singleCell.AppendCiteSeq.runCellBender", false))
{
descriptions.add("Cite-seq/CellBender: true");
}

return StringUtils.join(descriptions, "\n");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,6 @@ private static List<ToolParameterDescriptor> getParams()
put("initialValues", "clr");
}}, "clr"));

ret.add(SeuratToolParameter.create("runCellBender", "Run CellBender", "If checked, cellbender will be run on the raw count matrix to remove background/ambient RNA signal", "checkbox", new JSONObject(){{

}}, false));

ret.add(SeuratToolParameter.create("dropAggregateBarcodes", "Drop Aggregate Barcodes", "If checked, any barcodes marked as protein aggregates by cellranger will be dropped.", "checkbox", new JSONObject(){{
put("checked", true);
}}, true));
Expand Down

0 comments on commit 5d29ff0

Please sign in to comment.