:py:mod:`aces.operations.tasks` =============================== .. py:module:: aces.operations.tasks .. autoapi-nested-parse:: This contains prefect wrapped tasks that call existing functions defined under the aces.operations module Module Contents --------------- Functions ~~~~~~~~~ .. autoapisummary:: aces.operations.tasks.task_copy_ms_to_dir Attributes ~~~~~~~~~~ .. autoapisummary:: aces.operations.tasks.logger .. py:data:: logger .. py:function:: task_copy_ms_to_dir(target_ms: pathlib.Path, output_dir: pathlib.Path, overwrite: bool = False) -> pathlib.Path Copy a measurement set from a source location to the working directory where the holography pipeline is being executed. Although measurement sets are strictly directories, this function could be expanded for measurement specific tasks. Args: target_ms (Path): Full path to the measurement set to be copied output_dir (Path): Location to save the measurement set overwrite (bool, optional): Overwrite the measurement set if it exists. Defaults to False. Returns: Path: The name of the copied measurement set in the target directory