Skip to content
Open
Show file tree
Hide file tree
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 @@ -237,9 +237,9 @@ private ProjectSampleTree createWorkflowTree(WorkflowSample root, ProjectSampleT

// Add any DNA updates
String rStage = root.getStage();
if(STAGE_LIBRARY_PREP.equals(rStage) || STAGE_LIBRARY_CAPTURE.equals(rStage)){
//if(STAGE_LIBRARY_PREP.equals(rStage) || STAGE_LIBRARY_CAPTURE.equals(rStage)){
tree.enrichQuantity(root.getRecord(), rStage);
}
//}

if (hasFailedQcStage(root)) {
root.setFailed(Boolean.TRUE);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void enrichQuantity(DataRecord record, String stage) {
/**
* The stages we care about are library prep (where DNA/RNA is input) & library capture (where library is input)
*/
if (STAGE_LIBRARY_PREP.equals(stage) || STAGE_LIBRARY_CAPTURE.equals(stage)) {
//if (STAGE_LIBRARY_PREP.equals(stage) || STAGE_LIBRARY_CAPTURE.equals(stage)) {
String stageKey = stageToMaterialMap.get(stage);
if(!this.sampleData.containsKey(stageKey)){
// Add concentration volume
Expand All @@ -98,7 +98,7 @@ public void enrichQuantity(DataRecord record, String stage) {
this.sampleData.put(stageKey, createQtyMap(remainingVolume, mass, concentration, concentrationUnits));
}
}
}
//}
}

public boolean isQcIgoComplete() {
Expand Down