Data Aggregating Utilities

This module contains utility functions for aggregating datasets. One primary use case for this is to combine the results of sections that were automatically run in parallel.

Note that it is critical that all data aggregating utility functions are definied in this module; easylink will not be able to find them otherwise.

easylink.utilities.aggregator_utils.concatenate_datasets(input_files, output_filepath)[source]

Concatenates multiple datasets into a single one.

Return type:

None

Parameters:
  • input_files (list[str]) – A list of input file paths to be concatenated.

  • output_filepath (str) – The output filepath.