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