Package mbj.robotdriver.experimentplate

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


    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


    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.