Examples of needWater()


Examples of mbj.robotdriver.experimentplate.Well.needWater()

  public static DispenseInfo GenerateWaterDispenseInfo(int tipNum, Holder theTargetHolder, Ingredient theIngredient) throws RobotDriverException {
    DispenseInfo outDispInfo;
    for (int col=0; col < theTargetHolder.xSize(); col++) {
      for (int line=0; line < theTargetHolder.ySize(); line++) {
        Well aWell = theTargetHolder.getWell(col, line);
        if (aWell.needWater()) {
          String theVolume = String.valueOf(aWell.getWaterVolume());
          outDispInfo = new DispenseInfo(tipNum, theTargetHolder, aWell.column(), aWell.line(),
              theVolume, theIngredient.chemical().pipettingInfo().liquidClass().name());
          return outDispInfo;
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.