test suite update for Smith-Waterman now using 0-based vectors

This commit is contained in:
Vern Paxson 2021-02-25 17:10:16 -08:00
parent 98ada4e419
commit 5084584020

View file

@ -12,7 +12,7 @@ global s1: string_vec;
global s2: string_vec; global s2: string_vec;
# Single alignment, no matches: # Single alignment, no matches:
s1[++c] = "abcdefgh"; s1[c] = "abcdefgh";
s2[c] = "ijklmnop"; s2[c] = "ijklmnop";
min[c] = 2;; min[c] = 2;;
mode[c] = 0; mode[c] = 0;