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 newlysynthesized strand
synth Since we're synthesizing this strand in the same orderdirection as the DNA replication machinery,
should we name this variable synth or synth 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 newlysynthesized strand, but it's
incomplete. Fill in the gaps to complete the loop.
for :seqlen
templatebase templatei; pull the ith base of the template
strand
rowA strcmptemplatebase,A:; identify the row in matrix
corresponding to templateBase; note that the variable rowA is a boolean
vector
Define the base added to the synthesized strand using matrix and
vector 'rowA
synthbase ;
Store synthbase 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 'templatebase'.
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: char where 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 or
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
