tymaxjones / SequenceAlignment-

1 stars 2 forks source link

Create multiple sequence alignment function #3

Closed tymaxjones closed 1 year ago

tymaxjones commented 1 year ago

develop multiple sequence alignment function:

Should input n sequences, gap penalty, match score, mismatch scores output the score of their similarity Output the alignment of the two sequences: Ex:

Sequence 1 ACTGTCAT

Sequence 2 CTGACATG

Sequence 3 ACTGA

Output:

score

alignment ACTGTCAT . . CTGACATG ACTGA . . .