Skip to content

Commit 075a2ee

Browse files
committed
Allow seurat pipeline to be kicked off against 10x Run Summaries
1 parent 82c7405 commit 075a2ee

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

singlecell/src/org/labkey/singlecell/analysis/ProcessSingleCellHandler.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ public String getName()
2323
@Override
2424
public boolean canProcess(SequenceOutputFile f)
2525
{
26-
return f.getFile() != null && LOUPE_TYPE.isType(f.getFile());
26+
return f.getFile() != null && (
27+
LOUPE_TYPE.isType(f.getFile()) ||
28+
("10x Run Summary".equals(f.getCategory()) && f.getName().contains("10x Count Summary"))
29+
);
2730
}
2831

2932
@Override

0 commit comments

Comments
 (0)