Skip to content

Commit feba968

Browse files
committed
Do not force seurat object name to match readset
1 parent 43fe5e2 commit feba968

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,10 @@ public void processFilesRemote(List<SequenceOutputFile> inputFiles, JobContext c
401401
{
402402
datasetId = FileUtil.makeLegalName(ctx.getSequenceSupport().getCachedReadset(so.getReadset()).getName());
403403
}
404+
else if (_doProcessRawCounts)
405+
{
406+
datasetId = FileUtil.makeLegalName(so.getReadset() == null ? so.getName() : ctx.getSequenceSupport().getCachedReadset(so.getReadset()).getName());
407+
}
404408
else
405409
{
406410
datasetId = so.getName();

0 commit comments

Comments
 (0)