Skip to content

Commit 5421f7e

Browse files
committed
Bugfix to vireo
1 parent 8902551 commit 5421f7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ public void processFilesRemote(List<SequenceOutputFile> inputFiles, JobContext c
255255

256256
new SimpleScriptWrapper(ctx.getLogger()).execute(vireo);
257257

258-
File[] outFiles = ctx.getWorkingDirectory().listFiles(f -> f.getName().endsWith("_donor_ids.tsv"));
258+
File[] outFiles = ctx.getWorkingDirectory().listFiles(f -> f.getName().endsWith("donor_ids.tsv"));
259259
if (outFiles == null || outFiles.length == 0)
260260
{
261261
throw new PipelineJobException("Missing vireo output file");

0 commit comments

Comments
 (0)