heteroDimerRun() 공개 메소드

Runs the heterodimer test.
public heteroDimerRun ( String otherPrimer ) : double
otherPrimer String
리턴 double
        /// <summary>
        /// When the LEFT Heterodimer button is pressed, the test is called and the display
        /// is updated accordingly. 
        /// 
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void HeteroDimerLeftButton_Click(object sender, RoutedEventArgs e)
        {

            alignmentTests at = new alignmentTests(_leftPrimer);
            double worstCase = at.heteroDimerRun(_rightPrimer);
            //Console.WriteLine(worstCase);
            if (worstCase < _rightGibbsFree)
            {
                leftHeteroDimerResult.Content = "x";
            }
            else
            {
                leftHeteroDimerResult.Content = "a";

            }
        }