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(); } }
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(); } }