Exemplo n.º 1
0
 def __init__(self):
     self._mutations = []
     for m in mutations.split('\n'):
         if len(m.strip()) == 0 or m.startswith('#'):
             continue
         self._mutations.append(mutation_builder(m))
Exemplo n.º 2
0
 def __init__(self, mutations):
     self._mutations = []
     for m in mutations:
         self._mutations.append(mutation_builder(m))