Skip to content

Commit c83a8e9

Browse files
committed
Avoid dplyr loading
1 parent 5f7d8c3 commit c83a8e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singlecell/src/org/labkey/singlecell/pipeline/singlecell/SubsetSeurat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ protected List<String> loadChunkFromFile() throws PipelineJobException
8787
ret.add("\tprint(paste0('Subsetting dataset: ', datasetId, ' with the expression: " + subsetEscaped + "'))");
8888
if (useDplyr)
8989
{
90-
ret.add("\t\t\tcells <- rownames(seuratObj@meta.data %>% dplyr::filter( " + subset + " ))");
90+
ret.add("\t\t\tcells <- rownames(seuratObj@meta.data |> dplyr::filter( " + subset + " ))");
9191
}
9292
else
9393
{

0 commit comments

Comments
 (0)