Skip to content

Commit 3f2795b

Browse files
committed
Bugfix filepath in AppendSaturation
1 parent 6b6efeb commit 3f2795b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public void init(SequenceOutputHandler.JobContext ctx, List<SequenceOutputFile>
6767
{
6868
if (!LOUPE_TYPE.isType(so.getFile()))
6969
{
70-
File meta = new File(so.getFile().getPath().replaceAll(".rds", ".cellBarcodes.csv"));
70+
File meta = new File(so.getFile().getPath().replaceAll(".seurat.rds", ".cellBarcodes.csv"));
7171
if (!meta.exists())
7272
{
7373
throw new PipelineJobException("Cannot find expected metadata file: " + meta.getPath());

0 commit comments

Comments
 (0)