Exemplo n.º 1
0
 public static SmithWatermanAlignment DistanceSmithWatermanAlignment(this string me, string other)
 {
     var sw = new SmithWatermanAlignment(me, other);
     return sw;
 }
Exemplo n.º 2
0
 public static int DistanceSmithWaterman(this string me, string other)
 {
     var sw = new SmithWatermanAlignment(me, other);
     return sw.ComputeSmithWaterman();
 }