예제 #1
0
        private void hushClusterToolStripMenuItem_Click(object sender, EventArgs e)
        {
            HashClusterForm hash = new HashClusterForm(manager.opt.hash, (INPUTMODE)comboBox1.SelectedItem, GetAlignedProfiles());

            DialogResult res = hash.ShowDialog();

            if (res == DialogResult.OK)
            {
                manager.opt.hash = hash.localInput;
                manager.opt.clusterAlgorithm.Clear();
                manager.opt.clusterAlgorithm.Add(ClusterAlgorithm.HashCluster);
                Run();
            }
        }
예제 #2
0
        private void hushClusterToolStripMenuItem_Click(object sender, EventArgs e)
        {
            HashClusterForm hash = new HashClusterForm(manager.opt.hash, (INPUTMODE)comboBox1.SelectedItem,GetAlignedProfiles());

            DialogResult res=hash.ShowDialog();
            if (res == DialogResult.OK)
            {
                manager.opt.hash = hash.localInput;
                manager.opt.clusterAlgorithm.Clear();
                manager.opt.clusterAlgorithm.Add(ClusterAlgorithm.HashCluster);
                Run();
            }
        }