public DatasetPanelBase()
        {
            InitializeComponent();

            componentList = new RcpaComponentList();

            this.enabled = new RcpaCheckBox(cbEnabled, "Enabled", true);
            AddComponent(enabled);

            this.datasetName = new RcpaTextField(txtDatasetName, "DatasetName", "Dataset Name", "", true);
            AddComponent(datasetName);

            this.filterPrecursorPPMTolerance = new RcpaCheckBox(this.cbFilterByPrecursor, "FilterPrecursor", false);
            AddComponent(this.filterPrecursorPPMTolerance);

            this.filterPrecursorIsotopic = new RcpaCheckBox(this.cbFilterByPrecursorIsotopic, "FilterPrecursorIsotopic", true);
            AddComponent(this.filterPrecursorIsotopic);

            this.precursorPPMTolerance = new RcpaDoubleField(this.txtPrecursorPPMTolerance, "PrecursorPPMTolerance", "Precursor Tolerance (ppm)", 10, false);
            AddComponent(this.precursorPPMTolerance);

            this.filterPrecursorByDynamicTolerance = new RcpaCheckBox(this.cbFilterByDynamicPrecursorTolerance, "FilterPrecursorByDynamicTolerance", true);
            AddComponent(this.filterPrecursorByDynamicTolerance);

            this.searchedByDifferentParameters = new RcpaCheckBox(this.cbSearchedByDifferentParameters, "SearchedByDifferentParameters", false);
            AddComponent(this.searchedByDifferentParameters);
        }
Example #2
0
        public AbstractDatasetPanel()
        {
            InitializeComponent();

            componentList = new RcpaComponentList();

            this.enabled = new RcpaCheckBox(cbEnabled, "Enabled", true);
            AddComponent(enabled);

            this.datasetName = new RcpaTextField(txtDatasetName, "DatasetName", "Dataset Name", "", true);
            AddComponent(datasetName);

            this.filterPrecursorPPMTolerance = new RcpaCheckBox(this.cbFilterByPrecursor, "FilterPrecursor", false);
            AddComponent(this.filterPrecursorPPMTolerance);

            this.filterPrecursorIsotopic = new RcpaCheckBox(this.cbFilterByPrecursorIsotopic, "FilterPrecursorIsotopic", true);
            AddComponent(this.filterPrecursorIsotopic);

            this.precursorPPMTolerance = new RcpaDoubleField(this.txtPrecursorPPMTolerance, "PrecursorPPMTolerance", "Precursor Tolerance (ppm)", 10, false);
            AddComponent(this.precursorPPMTolerance);

            this.filterPrecursorByDynamicTolerance = new RcpaCheckBox(this.cbFilterByDynamicPrecursorTolerance, "FilterPrecursorByDynamicTolerance", true);
            AddComponent(this.filterPrecursorByDynamicTolerance);

            this.filterByScore = new RcpaCheckBox(this.cbFilterByScore, "FilterByScore", false);
            AddComponent(this.filterByScore);

            this.minScoreCharge1 = new RcpaDoubleField(this.txtScore1, "MinScore1", "Min Score for Charge 1", 1.0, false);
            AddComponent(this.minScoreCharge1);

            this.minScoreCharge2 = new RcpaDoubleField(this.txtScore2, "MinScore2", "Min Score for Charge 2", 1.5, false);
            AddComponent(this.minScoreCharge2);

            this.minScoreCharge3 = new RcpaDoubleField(this.txtScore3, "MinScore3", "Min Score for Charge 3", 2.0, false);
            AddComponent(this.minScoreCharge3);

            this.filterByDeltaScore = new RcpaCheckBox(this.cbFilterByDeltaScore, "FilterByDeltaScore", true);
            AddComponent(this.filterByDeltaScore);

            this.minDeltaScore = new RcpaDoubleField(this.txtMinDeltaScore, "MinDeltaScore", "Min Delta Score", 0.1, true);
            AddComponent(this.minDeltaScore);

            this.filterByEvalue = new RcpaCheckBox(this.cbFilterByEvalue, "FilterByEvalue", false);
            AddComponent(this.filterByEvalue);

            this.maxEvalue = new RcpaDoubleField(this.txtMaxEvalue, "MaxEvalue", "Max Evalue", 0.05, true);
            AddComponent(this.maxEvalue);

            this.dataFiles = InitializeDataFiles();
            AddComponent(this.dataFiles);
        }