Skip to content

Commit 14ed86a

Browse files
committed
Add null check
1 parent 5688170 commit 14ed86a

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
@@ -72,7 +72,7 @@ public boolean doSplitJobs()
7272
@Override
7373
public boolean canProcess(SequenceOutputFile o)
7474
{
75-
return CellRangerGexCountStep.LOUPE_CATEGORY.equals(o.getCategory()) & o.getFile().getName().endsWith("cloupe.cloupe");
75+
return CellRangerGexCountStep.LOUPE_CATEGORY.equals(o.getCategory()) & o.getFile() != null & o.getFile().getName().endsWith("cloupe.cloupe");
7676
}
7777

7878
@Override

0 commit comments

Comments
 (0)