Override this method to add new logic to the construction of the generator. Overrides can use the _create_generator method to get a standard construction generator.
(self)
| 611 | self.pipeline_output(name) |
| 612 | |
| 613 | def get_generator(self): |
| 614 | """ |
| 615 | Override this method to add new logic to the construction |
| 616 | of the generator. Overrides can use the _create_generator |
| 617 | method to get a standard construction generator. |
| 618 | """ |
| 619 | return self._create_generator(self.sim_params) |
| 620 | |
| 621 | def run(self, data_portal=None): |
| 622 | """Run the algorithm. |