コード例 #1
0
        private void btnFastqPicker_Click(object sender, EventArgs e)
        {
            BioSeqInfluenzaAFastq frm = new BioSeqInfluenzaAFastq(AppConfigHelper.InfluenzaASamplesList, "Influenza A");

            if (frm.ShowDialog() == DialogResult.OK)
            {
                AppConfigHelper.InfluenzaASamplesList = frm.alreadySelected;
                ReloadSampleList();
            }
        }
コード例 #2
0
        private void btnFastqPicker_Click(object sender, EventArgs e)
        {
            // Overload the lookup form used for Influenza A.
            BioSeqInfluenzaAFastq frm = new BioSeqInfluenzaAFastq(AppConfigHelper.SalmonellaSamplesList, "Salmonella");

            if (frm.ShowDialog() == DialogResult.OK)
            {
                AppConfigHelper.SalmonellaSamplesList = frm.alreadySelected;
                ReloadSampleList();
            }
        }