Get a string representation of this alignment. Visual alignment breaks unless elements of the sequences convert to single chars via to!string.
auto alignment = findAlignment("ACGTC", "AGTC", 1); assert(alignment.toString == "ACGTC\n" ~ "| |||\n" ~ "A-GTC");
auto alignment = findAlignment("GCATGCT", "GATTACA", 1); assert(alignment.toString == "GCAT-GCT\n" ~ "| || *|*\n" ~ "G-ATTACA");
See Implementation
Get a string representation of this alignment. Visual alignment breaks unless elements of the sequences convert to single chars via to!string.