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