Package org.bioinfo.ngs.qc.qualimap.gui.threads

Examples of org.bioinfo.ngs.qc.qualimap.gui.threads.EpigeneticsAnalysisThread


        } else if ( actionCommand.equals(Constants.COMMAND_RUN_ANALYSIS) ) {

            String errMsg = validateInput();
            if (errMsg.isEmpty()) {
                TabPageController tabController = new TabPageController(AnalysisType.CLUSTERING);
                EpigeneticsAnalysisThread t = new EpigeneticsAnalysisThread(this, tabController );
                t.start();
            } else {
                JOptionPane.showMessageDialog(this, errMsg, "Validate Input", JOptionPane.ERROR_MESSAGE);
            }
        } else  {
            updateState();
View Full Code Here

TOP

Related Classes of org.bioinfo.ngs.qc.qualimap.gui.threads.EpigeneticsAnalysisThread

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.