Exemplo n.º 1
0
 public static void Algorithm_Two(string inputsequence, bool direction, bool sbol, string path)
 {
     inputsequence = inputsequence.ToUpper();
     Algorithm1.input(inputsequence, 1, 4, true, true, true, 1000, 1000, direction, sbol, path, "");
     terminatorSequence = Algorithm1.terminatorSequence;
     Warn = Algorithm1.Warn;
     if (Warn == false)
     {
         Algorithm2.Score(Algorithm1.aTail[0], Algorithm1.stemloop[0], Algorithm1.spacerSequence[0], Algorithm1.tTail[0]);
         Score      = Algorithm2.dscore.ToString("f1");
         efficiency = Algorithm2.terminatorefficiency.ToString("f0");
         structure  = Algorithm2.Full_Structure;
     }
     else
     {
         Warning = "There is something wrong with your sequence!";
     }
 }