Skip to content

Commit 9aeb400

Browse files
committed
Add missing argument
1 parent a19bf4f commit 9aeb400

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

singlecell/src/org/labkey/singlecell/run/CellBenderCiteSeqHandler.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ public void processFilesRemote(List<SequenceOutputFile> inputFiles, JobContext c
109109

110110
String exe = SequencePipelineService.get().getExeForPackage("CELLBENDERPATH", "cellbender").getPath();
111111
List<String> args = new ArrayList<>(Arrays.asList(
112-
exe, "--input", inputH5.getPath(),
112+
exe, "remove-background",
113+
"--input", inputH5.getPath(),
113114
"--output", outputH5.getPath()
114115
));
115116
args.addAll(getClientCommandArgs(ctx.getParams()));

singlecell/src/org/labkey/singlecell/run/CellBenderLoupeHandler.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ public File runCellBender(File input, JobContext ctx) throws PipelineJobExceptio
112112

113113
String exe = SequencePipelineService.get().getExeForPackage("CELLBENDERPATH", "cellbender").getPath();
114114
List<String> args = new ArrayList<>(Arrays.asList(
115-
exe, "--input", inputH5.getPath(),
115+
exe, "remove-background",
116+
"--input", inputH5.getPath(),
116117
"--output", outputH5.getPath()
117118
));
118119
args.addAll(getClientCommandArgs(ctx.getParams()));

0 commit comments

Comments
 (0)