Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,10 @@ protected Double findDNAInputForLibraryForMSKACCESS(DataRecord sample, User user
log.info("Searching for DNA Library Input Mass (ng).");
List<DataRecord> records = sample.getChildListOfType(KAPALibPlateSetupProtocol1Model.DATA_TYPE_NAME, user);
log.info("Found child records:" + records.size());
if (records.size() == 0) {
log.info("No Childs records found:");
return 0.0;
}
return records.get(records.size() - 1).getDoubleVal(KAPALibPlateSetupProtocol1Model.TARGET_MASS_ALIQ_1, user);
} catch (Exception e) {
log.error(e);
Expand Down Expand Up @@ -901,4 +905,4 @@ public SampleSheet(String id1, String igoId, String barcodeId, String barcodeInd
map06302_AO.put(x.igoId,x);
}
}
}
}