def write(stage, dset): """Write results to file. Write results to file. This uses the writers framework which calls different writers depending on the output-field in the config-file. Args: stage (str): Name of current stage. dset (Dataset): A dataset containing the data. """ writers.write(default_dset=dset)
def write(stage, dset): """Write results to file Write results to file. This uses the writers framework which calls different writers depending on the output-field in the config-file. Args: stage (String): Name of current stage dset: Dataset where data is stored. """ writers.write(dset)
def write_result(rundate, session, prev_stage, stage): """Write results to file Write results to file. This uses the writers framework which calls different writers depending on the output-field in the config-file. Args: rundate (Datetime): The model run date. session (String): Name of session. prev_stage (String): Name of previous stage. stage (String): Name of current stage. """ writers.write(default_stage=prev_stage)