Skip to content

Commit 1631194

Browse files
committed
Bugfix to readset listener
1 parent aded922 commit 1631194

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public void onReadsetCreate(User u, Readset rs, @Nullable Readset replacedReadse
5656
ts.forEachResults(cDNARow -> {
5757
Map<String, Object> toUpdate = new CaseInsensitiveHashMap<>();
5858
toUpdate.put("rowid", cDNARow.getInt(FieldKey.fromString("rowid")));
59-
toUpdate.put("container", cDNARow.getInt(FieldKey.fromString("container")));
59+
toUpdate.put("container", cDNARow.getString(FieldKey.fromString("container")));
6060
toUpdate.put(field, rs.getReadsetId());
6161

6262
if (job != null)

0 commit comments

Comments
 (0)