We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b7d3dc commit 35c7d35Copy full SHA for 35c7d35
singlecell/src/org/labkey/singlecell/CellHashingServiceImpl.java
@@ -483,7 +483,9 @@ else if (genomeIds.size() > 1)
483
}
484
485
// 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);
+ String key = readsetId + "-" + cachedGenomes.iterator().next();
487
+ job.getLogger().debug("Caching h5 file: " + key + ":" + dataId);
488
+ gexReadsetToH5Map.put(key, dataId);
489
490
else
491
{
0 commit comments