Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. 5. String operations. This is a short DNA sequence:
  2. ACTGATCGATTACGTATAGTATTTGCTATCATACATATATATCGATGCGTTCAT
  3. - Write a program that will print out the AT content of this DNA sequence:
  4. (#A+#T) / length.
  5. - Write a program that will print the complement of this sequence. (A=>T;
  6. T=>A, G=>C, C=>G)
  7.  
  8. 8. Indexing and Slicing. This is a short DNA sequence:
  9. ACTGATCGATTACGTATAGTAGAATTCTATCATACATATATATCGATGCGTTCAT
  10. The sequence contains a recognition site for the EcoRI restriction enzyme, which
  11. cuts at the motif G*AATTC (the position of the cut is indicated by an asterisk).
  12. Write a program which will print the two fragments that will be produced when the
  13. DNA sequence is digested with EcoRI and calculate their length.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement