Question: Question: Now initialize a variable that will be used to store the sequence of the newly - synthesized strand ( synth ) . Since we're

Question: Now initialize a variable that will be used to store the sequence of the newly-synthesized strand
(synth). Since we're synthesizing this strand in the same order/direction as the DNA replication machinery,
should we name this variable synth3_5 or synth5_3? Explain your choice.
Answer:
[] ;
% The for loop below reads each base on the template strand and chooses the
% appropriate base to be added to the newly-synthesized strand, but it's
% incomplete. Fill in the gaps to complete the loop.
for i=1:seq_len
template_base = template3_5(i); % pull the ith base of the template
strand
row_A = strcmp(template_base,A(:,1)); identify the row in matrix A
corresponding to templateBase; note that the variable row_A is a boolean
vector
% Define the base added to the synthesized strand using matrix 'A' and
% vector 'row_A'
synth_base ;
% Store synth_base in the ith element of your storage vector. You'll
% need to use the command 'char' to store the character properly.
[] ;
end
Unrecognized function or variable 'template_base'.
% The values saved in your storage vector are likely ASCII values. To
% convert them into a character string, again use the MATLAB command
% 'char.' Example: x=char(x), where x is the name of your storage
% variable.
[];
Question: Look at the result of the storage variable in your command window. Is this written in the 3'5' or
 Question: Now initialize a variable that will be used to store

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!