Ejemplo n.º 1
0
 def regexsearch(self, regex):
     """search in a string with a re"""
     genome = Genome()
     container = FeatureListContainer()
     print genome.getSequence()
     flist = []
     flist.append(re.findall(regex, genome.getSequence() , re.I))
     print flist