Skip to content

Commit 9abcc10

Browse files
committed
Allow seurat handler to process RDS files without seurat.rds extension
1 parent 05a1a91 commit 9abcc10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public String getName()
2424
@Override
2525
public boolean canProcess(SequenceOutputFile f)
2626
{
27-
return f.getFile() != null && SEURAT_TYPE.isType(f.getFile());
27+
return f.getFile() != null && (SEURAT_TYPE.isType(f.getFile()) || "Seurat Object".equals(f.getCategory()));
2828
}
2929

3030
@Override

0 commit comments

Comments
 (0)