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

            byonicResultsParser.Show();
        }
Ejemplo n.º 2
0
        // Byonic Parser
        private void button3_Click(object sender, EventArgs e)
        {
            var byonicResultsParser = new ByonicDataParser.Form1 {
                MdiParent = this
            };

            byonicResultsParser.Show();
            panel1.Hide();
            richTextBox1.Text = "Glycopeptides from Byonic searches are contained within a '.byrslt' file. " +
                                "The Byonic Extract program will parse the file and export relevant information " +
                                "for each PSM to be used in subsequent processing methods.";
            richTextBox1.Show();
        }