Ejemplo n.º 1
0
        private void tsbTool1_Click(object sender, EventArgs e)
        {
            var scanAssigner = new ScanAssigner.Form1 {
                MdiParent = this
            };

            scanAssigner.Show();
        }
Ejemplo n.º 2
0
        // Scan assigner side button
        private void button7_Click(object sender, EventArgs e)
        {
            var scanAssigner = new ScanAssigner.Form1 {
                MdiParent = this
            };

            scanAssigner.Show();
            panel1.Hide();
            richTextBox1.Text = "'Scan Profiler' will provide annotation and quantitation for the results from individual " +
                                "raw files. We search for glycan fragments, glycopeptide fragments, and oxonium ions. " +
                                "Intensity and m/z are provided for each observed ion to assist in manual spectrum annotation. " +
                                "We also draw from Uniprot site annotation files to provide information for known glycosites. " +
                                "Quantitation is performed during this step and is reported as the area of " +
                                "the eluting peak area.";
            richTextBox1.Show();
        }