Skip to content

Commit fbd35de

Browse files
authored
Int to Long
1 parent d61ce35 commit fbd35de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

singlecell/src/org/labkey/singlecell/run/NimbleAlignmentStep.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ private File createNimbleBam(AlignmentOutputImpl output, Readset rs, List<File>
116116

117117
private File getCachedLoupeFile(Readset rs, boolean throwIfNotFound) throws PipelineJobException
118118
{
119-
Map<Long, Integer> map = getPipelineCtx().getSequenceSupport().getCachedObject(CACHE_KEY, PipelineJob.createObjectMapper().getTypeFactory().constructParametricType(Map.class, Long.class, Integer.class));
120-
Integer dataId = map.get(rs.getReadsetId());
119+
Map<Long, Long> map = getPipelineCtx().getSequenceSupport().getCachedObject(CACHE_KEY, PipelineJob.createObjectMapper().getTypeFactory().constructParametricType(Map.class, Long.class, Long.class));
120+
Long dataId = map.get(rs.getReadsetId());
121121
if (dataId == null)
122122
{
123123
if (throwIfNotFound)

0 commit comments

Comments
 (0)