Consider the two DNA sequences ACCG and CG. We want to align them with the Needleman-Wunsch algorithm. First we need to compute the optimal scoring matrix V shown below. The empty string is denoted by O. O A C C G O 0 C G Let the match cost be 5, mismatch -4, and gap -20. a. Write out the first row and column of V (2 pts) b. Write out second row of V using the Needleman-Wunsch recurrence (5 pts) V[i-1,j-1] + m (or mm) V[i,j] = max{ V[i-1,j]+g V[i,j-1]+g c. Write out the traceback matrix as well. (2 pts) d. Finally write the final alignment given by your traceback matrix. (1 pt) Submit hardcopies in class on Feb 19th.