Package Galaxy.Tree.Workflow

Examples of Galaxy.Tree.Workflow.InputConnection


      Printer.log("No entries");
      return new Pair<Object,Object>(result, null);
    }
    //create InputConnection, sink pairs from src, snk mappings.
    for(int i=0; i < src.size(); i++){
      InputConnection inputConn = new InputConnection();
      inputConn.setSourceId(src.get(i).getElem1());
      inputConn.setOutputName(src.get(i).getElem2());
      result.add(new Pair<Pair<Integer,String>,InputConnection>(snk.get(i), inputConn));
     
     
    }
    return new Pair<Object,Object>(result, null);
View Full Code Here

TOP

Related Classes of Galaxy.Tree.Workflow.InputConnection

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.