Examples of IlluminaSequencerInterrogationStrategy


Examples of uk.ac.bbsrc.tgac.miso.core.service.integration.strategy.interrogator.IlluminaSequencerInterrogationStrategy

   * @return SequencerInterrogator
   * @throws InterrogationException when an unsupported PlatformType is specified
   */
  public static SequencerInterrogator getSequencerInterrogator(SequencerReference sr) throws InterrogationException {
    if (sr.getPlatform().getPlatformType().equals(PlatformType.ILLUMINA)) {
      return new SequencerInterrogator(new IlluminaSequencerInterrogationStrategy(), sr);
    }
    else if (sr.getPlatform().getPlatformType().equals(PlatformType.LS454)) {
      return new SequencerInterrogator(new LS454SequencerInterrogationStrategy(), sr);
    }
    else if (sr.getPlatform().getPlatformType().equals(PlatformType.SOLID)) {
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.