Package Galaxy.Visitor.Local

Examples of Galaxy.Visitor.Local.GalaxyToLoniWorkflowConverter


  public static void testGalaxyConvert(String path, String output){
    System.out.println("==="+path+"===");
    Workflow G;
    try {
      G = GalaxySpecification.getJSONParser().parse(new File(path));
      GalaxyToLoniWorkflowConverter glc = new GalaxyToLoniWorkflowConverter();
      Pipeline pipeline = (Pipeline) glc.visit(G);
     
      try {
        LoniSpecification.getXMLGenerator().generate(pipeline, output);
      } catch (IOException e) {
        // TODO Auto-generated catch block
View Full Code Here

TOP

Related Classes of Galaxy.Visitor.Local.GalaxyToLoniWorkflowConverter

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.