Skip to content

Commit 35c7d35

Browse files
committed
Bugfix to demuxEM with TCR data
1 parent 1b7d3dc commit 35c7d35

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

singlecell/src/org/labkey/singlecell/CellHashingServiceImpl.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,9 @@ else if (genomeIds.size() > 1)
483483
}
484484

485485
// NOTE: cache this using the source file's genome ID (which might be the TCR library), rather than the GEX genome
486-
gexReadsetToH5Map.put(readsetId + "-" + cachedGenomes.iterator().next(), dataId);
486+
String key = readsetId + "-" + cachedGenomes.iterator().next();
487+
job.getLogger().debug("Caching h5 file: " + key + ":" + dataId);
488+
gexReadsetToH5Map.put(key, dataId);
487489
}
488490
else
489491
{

0 commit comments

Comments
 (0)