private void GraphETRelations()
        {
            DisplayUtility.GraphRelationsChart(ct_ET_Histogram, Sweet.lollipop.et_relations, "relations", true);
            ct_ET_Histogram.Series["relations"].Enabled = true;
            if (Sweet.lollipop.ed_relations.Count > 0)
            {
                DisplayUtility.GraphRelationsChart(ct_ET_Histogram, Sweet.lollipop.ed_relations[Sweet.lollipop.decoy_community_name_prefix + "0"], "decoys", true);
                ct_ET_Histogram.Series["decoys"].Enabled = false;
                cb_view_decoy_histogram.IsEnabled        = true;
            }
            else
            {
                cb_view_decoy_histogram.IsEnabled = false;
            }
            CBVIEWDECOYHISTOGRAM = false;

            DisplayUtility.GraphDeltaMassPeaks(ct_ET_peakList, Sweet.lollipop.et_peaks, "Peak Count", "Median Decoy Count", Sweet.lollipop.et_relations, "Nearby Relations");
            ct_ET_Histogram.ChartAreas[0].RecalculateAxesScale();
            ct_ET_Histogram.ChartAreas[0].RecalculateAxesScale();
        }
 private void GraphETPeaks()
 {
     DisplayUtility.GraphDeltaMassPeaks(ct_ET_peakList, Sweet.lollipop.et_peaks, "Peak Count", "Median Decoy Count", Sweet.lollipop.et_relations, "Nearby Relations");
 }
Beispiel #3
0
 private void GraphEEPeaks()
 {
     DisplayUtility.GraphDeltaMassPeaks(ct_EE_peakList, Sweet.lollipop.ee_peaks, "Peak Count", "Decoy Count", Sweet.lollipop.ee_relations, "Nearby Relations");
 }