Examples of AnalysisType


Examples of org.aavso.tools.vstar.ui.mediator.AnalysisType

   * Returns the action listener to be invoked for View->Phase Plot
   */
  public ActionListener createPhasePlotListener() {
    return new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        AnalysisType type = mediator
            .changeAnalysisType(AnalysisType.PHASE_PLOT);
        if (type == AnalysisType.PHASE_PLOT) {
          // It may be that no phase plot has been created because the
          // phase plot dialog was cancelled.
          setPhasePlotViewMenuItemState(true);
View Full Code Here

Examples of org.aavso.tools.vstar.ui.mediator.AnalysisType

    for (JMenuItem item : analysisMenuItems) {
      item.setEnabled(state);
    }

    AnalysisType type = mediator.getAnalysisType();

    switch (type) {
    case RAW_DATA:
      setRawDataViewMenuItemState(true);
      setPhasePlotViewMenuItemState(false);
View Full Code Here

Examples of org.aavso.tools.vstar.ui.mediator.AnalysisType

  @Override
  public void invoke() {
    Mediator mediator = Mediator.getInstance();

    if (!mediator.getNewStarMessageList().isEmpty()) {
      AnalysisType type = mediator.getAnalysisType();

      ObservationAndMeanPlotModel model = mediator
          .getObservationPlotModel(type);

      BinningResult binningResult = model.getBinningResult();
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.common.AnalysisType

      // Set the number of files saved to initial value
        numSavedFiles = 0;

        int numItemsToSave = 0;
            List<StatsReporter> reporters = resultManager.getReporters();
        AnalysisType analysisType = resultManager.getTypeAnalysis();
        for (StatsReporter reporter : reporters) {
              numItemsToSave += reporter.getCharts().size();
        }

        percentLoad = (100.0/numItemsToSave);
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.common.AnalysisType

  public void addNewPane(final String inputFileName, final TabPageController tabProperties) {
   
    this.getPopUpDialog().setVisible(false);
    this.remove(this.getPopUpDialog());
   
      AnalysisType typeAnalysis = tabProperties.getTypeAnalysis();

    // Cutting the file name if necessary
    String fileName = StringUtilsSwing.formatFileName(inputFileName);
    ImageIcon ic = new ImageIcon(getClass().getResource(Constants.pathImages + "chart_curve.png"));
    String prefix = typeAnalysis.toString() ": ";

        OpenLoadedStatistics op = new OpenLoadedStatistics(this,tabProperties);
        JSplitPane statisticsPane = op.getLoadedStatistics();
        tabsPropertiesMap.put(statisticsPane, tabProperties);
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.common.AnalysisType

        boolean canExportGeneList = false;
        if (activeTabsAvailable) {
            TabPageController tabProperties = getSelectedTabPageController();
            if (tabProperties != null ) {

                AnalysisType typeAnalysis = tabProperties.getTypeAnalysis();

                canExportGeneList = typeAnalysis == AnalysisType.CLUSTERING &&
                    !tabProperties.getLoadedGraphicName().isEmpty();

            }
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.