Package org.broad.igv.cli_plugin

Examples of org.broad.igv.cli_plugin.PluginSpecReader$Parser


        super.setUp();
        WorkspaceImpl wsp = (WorkspaceImpl) superuser.getWorkspace();
        QueryManagerImpl qm = (QueryManagerImpl) wsp.getQueryManager();
        QueryObjectModelFactoryImpl factory = (QueryObjectModelFactoryImpl) qm
                .getQOMFactory();
        parser = new Parser(factory, superuser.getValueFactory());
    }
View Full Code Here


        String trackAname = "GSM1004654_100k.bed";
        String trackBname = "GSM1004654_10k.bed";

        //Generate bedtools subtraction track
        PluginSpecReader reader = PluginSpecReader.create(toolPath);
        PluginSpecReader.Tool tool = reader.getTools().get(0);
        PluginSpecReader.Command command = AbstractPluginTest.findCommandElementByName(tool, "Subtract");
    }
View Full Code Here

*/
public class RunPluginTest extends AbstractHeadedTest {

    @Test
    public void testCatPlugin() throws Exception {
        PluginSpecReader catReader = AbstractPluginTest.getCatReader();
        AbstractPluginTest.initTool(catReader);

        PluginSpecReader.Tool tool = catReader.getTools().get(0);
        PluginSpecReader.Command command = tool.commandList.get(0);
        RunPlugin rp = new RunPlugin(IGV.getMainFrame(), catReader, tool, command);

        int numTracksBefore = IGV.getInstance().getAllTracks().size();
        rp.okButtonActionPerformed(null);
View Full Code Here

  private ManifestParseTree parse(InputStream inputStream) throws IOException, TokenizerException, ParserException {
    Preprocessor preprocessor = new ManifestPreprocessor();
    List<InputLine> contents = preprocessor.process(inputStream);
    Tokenizer tokenizer = new ManifestTokenizer(contents);

    Parser parser = new ManifestParser();
    return parser.parse(tokenizer);
  }
View Full Code Here

  private ManifestParseTree parse(InputStream inputStream) throws IOException, TokenizerException, ParserException {
    Preprocessor preprocessor = new ManifestPreprocessor();
    List<InputLine> contents = preprocessor.process(inputStream);
    Tokenizer tokenizer = new ManifestTokenizer(contents);

    Parser parser = new ManifestParser();
    return parser.parse(tokenizer);
  }
View Full Code Here

TOP

Related Classes of org.broad.igv.cli_plugin.PluginSpecReader$Parser

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.