Guest User

Untitled

a guest
Dec 11th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. def removeDoubles(blast_evalues, benchmarkDB_dict):
  2.     for key in blast_evalues.keys():
  3.         if (key[0] == key[1]):
  4.             blast_evalues.pop(key,'Error, key couldn\'t be removed')
  5.             benchmarkDB_dict.pop(key,'Error, key couldn\'t be removed')
Add Comment
Please, Sign In to add comment