Conditions | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | """ |
||
31 | def run(self, datasets=None, instrument_spectral_info=None): |
||
32 | """ |
||
33 | One can provide datasets and instrument_spectral_info to be used, |
||
34 | especially for the High-level Analysis steps. |
||
35 | """ |
||
36 | self.datasets = datasets |
||
37 | self.instrument_spectral_info = instrument_spectral_info |
||
38 | |||
39 | final_product = self._run() |
||
40 | self.log.info("Analysis Step %s completed", self.tag) |
||
41 | |||
42 | return final_product |
||
43 | |||
52 |