Exemplo n.º 1
0
        private void toolStripButton2_Click(object sender, EventArgs e)
        {
            var glycoCompiler = new GlycoCompiler.Form1 {
                MdiParent = this
            };

            glycoCompiler.Show();
        }
Exemplo n.º 2
0
        // Glyco compiler side button
        private void button8_Click(object sender, EventArgs e)
        {
            var glycoCompiler = new GlycoCompiler.Form1 {
                MdiParent = this
            };

            glycoCompiler.Show();
            panel1.Hide();
            richTextBox1.Text = "The compiler tool will aggregate data from input list(s) of PSMs into organized files of " +
                                "glycopeptides, glycoproteins, glycosites, and glycans. This function is particularly useful for " +
                                "aggregating data from across injection replicates.";
            richTextBox1.Show();
        }