Package uk.ac.bbsrc.tgac.miso.core.data.type

Examples of uk.ac.bbsrc.tgac.miso.core.data.type._384WellPlatePosition


      throw new IllegalArgumentException("Element position must be between 1 and " + MAX_ELEMENTS);
    }
  }

  public void setElement(String pos, Library library) {
    _384WellPlatePosition pp = _384WellPlatePosition.valueOf(pos);
    if (pp != null) {
      elements.set(_384WellPlatePosition.getPositionMap().get(pp), library);
    }
    else {
      throw new IllegalArgumentException("Element position must be between A-P and 1-24");
View Full Code Here

TOP

Related Classes of uk.ac.bbsrc.tgac.miso.core.data.type._384WellPlatePosition

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.