Package mbj.robotdriver.experimentplate

Examples of mbj.robotdriver.experimentplate.Well


   */
  public static DispenseInfo GenerateDispenseInfo(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.needIngredient(theIngredient)) {
          String theVolume = String.valueOf(aWell.getVolume(theIngredient));
          outDispInfo = new DispenseInfo(tipNum, theTargetHolder, aWell.column(), aWell.line(),
              theVolume, theIngredient.chemical().pipettingInfo().liquidClass().name());
          return outDispInfo;
        }
      } 
    }
View Full Code Here


   */
  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

Related Classes of mbj.robotdriver.experimentplate.Well

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.