Examples of RunArray


Examples of uk.ac.bbsrc.tgac.miso.core.service.integration.ws.solid.RunArray

          String startDate = m.group(2);
          try {
            SolidServiceWrapper solidServiceWrapper = ApplicationContextProvider.getApplicationContext().getBean(machineName, SolidServiceWrapper.class);

            SolidService solidService = solidServiceWrapper.getSolidService();
            RunArray ra = solidService.getSolidPort().getRun(runName, machineName);
            if (ra != null && !ra.getItem().isEmpty()) {
              try {
                String statusXml = ra.getItem().get(0).getXml();
                Document statusDoc = SubmissionUtils.emptyDocument();
                SubmissionUtils.transform(new UnicodeReader(statusXml), statusDoc);

                run.put("runName", runName);
                run.put("fullPath", rootFile.getAbsolutePath());
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.