Examples of TabPageController


Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.TabPageController

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

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

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.TabPageController

   * Function that calls a thread that create the pdf file with the data read in the selected tab
   * and save it into the disk.
     * @param path Output PDF path
     */
  private void exportToPdf(String path){
    TabPageController tabController = homeFrame.getSelectedTabPageController();

    ExportPdfThread t =
      new ExportPdfThread(this, tabController, path);

    t.start();
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.TabPageController

    t.start();
  }

 
  private void exportToHtml(String dirPath) {
        TabPageController tabController = homeFrame.getSelectedTabPageController();

        ExportHtmlThread t =
                new ExportHtmlThread(this, tabController, dirPath);

        t.start();
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.TabPageController

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

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

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.TabPageController

            }
        } 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);
            }
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.TabPageController

            if (!errMsg.isEmpty()) {
                JOptionPane.showMessageDialog(this, errMsg, getTitle(), JOptionPane.ERROR_MESSAGE);
                return;
            }

            TabPageController tabPageController = new TabPageController(AnalysisType.RNA_SEQ_QC);
            RNASeqQCAnalysisThread t = new RNASeqQCAnalysisThread(this, tabPageController);
            t.start();


        else if (actionEvent.getActionCommand().equals(Constants.CANCEL_COMMAND)) {
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.