Skip to content

Commit

Permalink
[BI-1910] Forcing row to be uppercase when saving
Browse files Browse the repository at this point in the history
  • Loading branch information
timparsons committed Nov 29, 2023
1 parent e35be0c commit 09fc55e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public BrAPISample constructBrAPISample(boolean commit, Program program, User us
.plateDbId(plate.getPlateDbId())
.sampleName(generateSampleName(germplasm, plate))
.germplasmDbId(germplasm.getGermplasmDbId())
.row(row)
.row(row.toUpperCase())
.column(Integer.valueOf(column))
.tissueType(tissue)
.sampleDescription(comments);
Expand Down

0 comments on commit 09fc55e

Please sign in to comment.