Example #1
0
 def __repr__(self):
     """It writes the representation of the whole serecord,
     including annotations and feautures"""
     toprint = SeqRecord.__repr__(self)
     toprint = toprint[:-1]
     toprint += ", features=%s, " % repr(self.features)
     toprint += "annotations=%s, " % repr(self.annotations)
     toprint += "qual=%s," % repr(self.qual)
     toprint += ")"
     return toprint