Package mbj.robotdriver.util

Examples of mbj.robotdriver.util.IntPair


          aIngredient.chemical().pipettingInfo().setPositionInHolder(String.valueOf(currentPosition));
          currentPosition += 1;
       
      }
    }
    return new IntPair(holderNumber, currentPosition);
  }
View Full Code Here


                      Properties tecanSettings,
                      Holder targetHolder,
                      HolderList holderList,
                      Holder wasteHolder,
                      SpecialFileWriter workListWriter) throws IOException, RobotDriverException {
    IntPair outInPair = setHolders(compatibleIngredientList, holderAndPos, holderList);
    // TODO for now we assume that compatibleIngredientList contain only 1 Ingredient
    Ingredient aIngredient = compatibleIngredientList.get(0);
    if (aIngredient.isWater()) {
      writeWaterWorkingList(aIngredient, targetHolder, tecanSettings, wasteHolder, workListWriter);
    } else {
View Full Code Here

   */
  public void generateWorkingList(Properties tecanSettings,
                  Plate thePlate,
                  HolderList holderList,
                  Holder wasteHolder) throws RobotDriverException {
    IntPair holderAndPosition = new IntPair(0,1);
    try {
      Holder targetHolder = thePlate.targetHolder();
      targetHolder.setPlate(thePlate);
      FileUtil.copy(tecanSettings.getProperty("workingListReferencePath"), tecanSettings.getProperty("workingListExportPath"));
      SpecialFileWriter workListWriter = new SpecialFileWriter(tecanSettings.getProperty("workingListExportPath"), true);
View Full Code Here

TOP

Related Classes of mbj.robotdriver.util.IntPair

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.