Guest User

Untitled

a guest
Jan 18th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. sequences = ['CA', 'ATTA', 'TCTTAG', 'AAGA', 'CG', 'CGAGC']
  2. repeats = [10, 2, 5, 7, 20, 6]
  3. microsatellites=[]
  4. def microsatrep(inputsequences, inputrepeats):
  5. for i in range(len(inputsequences)):
  6. inputsequences[i]*inputrepeats[i]
  7.  
  8. print(microsatrep(sequences, repeats))
Add Comment
Please, Sign In to add comment