Skip to content
Draft
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 @@ -379,7 +379,7 @@ private Map<String, Object> setAssignedIndicesDataRecordFieldValues(DataRecord i
waterVolume = autoHelper.getVolumeOfWater(adapterStartConc, minVolInAdapterPlate, targetAdapterConc, maxPlateVolume, sampleType, isCrisprOrAmpliconSeq);
}
Double actualTargetAdapterConc = adapterStartConc / ((waterVolume + adapterVolume) / adapterVolume);
setUpdatedIndexAssignmentConfigVol(indexAssignmentConfig, adapterVolume);
//setUpdatedIndexAssignmentConfigVol(indexAssignmentConfig, adapterVolume);
Map<String, Object> indexAssignmentValues = new HashMap<>();

indexAssignmentValues.put("IndexTag", indexTag);
Expand Down Expand Up @@ -503,7 +503,7 @@ private void assignIndicesToSamples(List<DataRecord> indexAssignmentProtocolReco
}
}
setLastIndexUsed(indexAssignmentConfigs, positionOfLastUsedIndex, updatedLastIndexUsed);
checkIndexAssignmentsForDepletedAdapters(indexAssignmentConfigs);
//checkIndexAssignmentsForDepletedAdapters(indexAssignmentConfigs);
clientCallback.displayInfo(String.format("You need to use following adapter plates for this experiment:\n%s", StringUtils.join(indexAssignmentConfigPlatesToUse, "\n")));
activeTask.getTask().getTaskOptions().put("_INDEXES_AUTO_ASIGNED", "");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public PluginResult run() throws ServerException, RemoteException {
minAdapterVolInPlate, maxPlateVolume, plateSize, sampleType, isTCRseq, species, aliquotRecipe);

logInfo("Value of setUpdatedIndexAssignmentStatus is: " + setUpdatedIndexAssignmentStatus);
checkIndexAssignmentsForDepletedAdapters(activeIndexAssignmentConfigs);
//checkIndexAssignmentsForDepletedAdapters(activeIndexAssignmentConfigs);
if (!setUpdatedIndexAssignmentStatus) {
String errMsg = String.format("The manual adapter assignment went wrong, 3 possible scenarios (if TCRseq application 2 & 3 apply):\n" +
"1) No Active record found for Index ID. Please double check to avoid discrepancies.\n" +
Expand All @@ -112,7 +112,7 @@ public PluginResult run() throws ServerException, RemoteException {
minAdapterVolInPlate, maxPlateVolume, plateSize, sampleType, isTCRseq, species, aliquotRecipe);

logInfo("Value of setUpdatedIndexAssignmentStatus is: " + setUpdatedIndexAssignmentStatus);
checkIndexAssignmentsForDepletedAdapters(activeIndexAssignmentConfigs);
//checkIndexAssignmentsForDepletedAdapters(activeIndexAssignmentConfigs);
if (!setUpdatedIndexAssignmentStatus) {
String errMsg = String.format("The manual adapter assignment went wrong, 3 possible scenarios (if TCRseq application 2 & 3 apply):\n" +
"1) No Active record found for Index ID. Please double check to avoid discrepancies.\n" +
Expand Down Expand Up @@ -222,7 +222,7 @@ private boolean setUpdatedIndexAssignmentValues(List<DataRecord> indexAssignment

Double actualTargetAdapterConc = adapterStartConc / ((waterVolume + adapterVolume) / adapterVolume);
//Double adapterConcentration = autohelper.getAdapterConcentration(indexConfig, adapterVolume, waterVolume);
setUpdatedIndexAssignmentConfigVol(indexConfig, adapterVolume);
//setUpdatedIndexAssignmentConfigVol(indexConfig, adapterVolume);
indexBarcodeRec.setDataField("BarcodePlateID", indexConfig.getStringVal("AdapterPlateId", user), user);
indexBarcodeRec.setDataField("IndexRow", adapterSourceRow, user);
indexBarcodeRec.setDataField("IndexCol", adapterSourceCol, user);
Expand Down