Examples of PacBioServiceWrapper


Examples of uk.ac.bbsrc.tgac.miso.core.service.integration.ws.pacbio.PacBioServiceWrapper

              }
            }
          }

          try {
            PacBioServiceWrapper pacbioServiceWrapper = ApplicationContextProvider.getApplicationContext().getBean(run.getString("sequencerName"), PacBioServiceWrapper.class);
            PacBioService pacbioService = pacbioServiceWrapper.getPacBioService();

            String plateStatus = pacbioService.getPlateStatus(URLEncoder.encode(run.getString("plateId"), "UTF-8"));
            if ("Complete".equals(plateStatus)) {
              log.debug(runName + " :: Completed");
              if (!run.has("completionDate")) {
View Full Code Here

Examples of uk.ac.bbsrc.tgac.miso.core.service.integration.ws.pacbio.PacBioServiceWrapper

          if (platformType.equals("pacbio")) {
            for (String key : props.stringPropertyNames()) {
              if (key.startsWith("pacbio.ws.url.")) {
                String serviceName = key.substring(key.lastIndexOf(".") + 1);
                log.debug("Creating service: " + serviceName);
                PacBioServiceWrapper psw = new PacBioServiceWrapper(serviceName, URI.create(props.getProperty(key)));
                context.getBeanFactory().registerSingleton(serviceName, psw);
              }
            }
          }
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.