We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82c7405 commit 075a2eeCopy full SHA for 075a2ee
singlecell/src/org/labkey/singlecell/analysis/ProcessSingleCellHandler.java
@@ -23,7 +23,10 @@ public String getName()
23
@Override
24
public boolean canProcess(SequenceOutputFile f)
25
{
26
- return f.getFile() != null && LOUPE_TYPE.isType(f.getFile());
+ return f.getFile() != null && (
27
+ LOUPE_TYPE.isType(f.getFile()) ||
28
+ ("10x Run Summary".equals(f.getCategory()) && f.getName().contains("10x Count Summary"))
29
+ );
30
}
31
32
0 commit comments