Add the transformation to the lineage :param transform: Transformation to apply
(self, transform)
| 51 | return self.transformations[item] |
| 52 | |
| 53 | def apply(self, transform): |
| 54 | """ |
| 55 | Add the transformation to the lineage |
| 56 | :param transform: Transformation to apply |
| 57 | """ |
| 58 | self.transformations.append(transform) |
| 59 | |
| 60 | def evaluate(self, sequence): |
| 61 | """ |