Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Implement the function alignStrings in Python. Do not use any library functions. Must be able to read the strings from two files. Recall that the

Implement the function alignStrings in Python. Do not use any library functions. Must be able to read the strings from two files.

Recall that the string alignment problem takes as input two strings x and y, composed of symbols xi, yj element of , for a fixed symbol set , and returns a minimal-cost set of edit operations for transforming the string x into string y.

Let x contain nxsymbols, let y contain nysymbols, and let the set of edit operations be those defined in the lecture notes (substitution, insertion, deletion, and transposition).

Let the cost of indel be 1, the cost of swap be 10 (plus the cost of the two sub ops), and the cost of sub be 10, except when xi= yj, which is a no-op and has cost 0.

alignStrings (x,y) takes as input two ASCII strings x and y, and runs a dynamic programming algorithm to return the cost matrix S, which contains the optimal costs for all the subproblems for aligning these two strings.

alignStrings(x,y) : // x,y are ASCII strings

......S = table of length n_x by n_y // for memoizing the subproblem costs

......initialize S // fill in the basecases

......for i = 1 to nx

..........for j = 1 to ny

................S[ i, j ] = cost( i, j) // optimal cost for x[0...i] and y[0..j]

}}

return S

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Concepts of Database Management

Authors: Philip J. Pratt, Mary Z. Last

8th edition

1285427106, 978-1285427102

More Books

Students also viewed these Databases questions

Question

What is Change Control and how does it operate?

Answered: 1 week ago

Question

How do Data Requirements relate to Functional Requirements?

Answered: 1 week ago