From 1c39986503de51d03d06364344560e907313b04b Mon Sep 17 00:00:00 2001 From: Florez Ospina Juan Felipe Date: Fri, 24 May 2024 09:32:30 +0200 Subject: [PATCH] Removed yaml file output from data integration file. The creation of this file is being outsource to data store repo --- src/data_integration_lib.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/data_integration_lib.py b/src/data_integration_lib.py index 17ab28a..52a00b2 100644 --- a/src/data_integration_lib.py +++ b/src/data_integration_lib.py @@ -59,7 +59,7 @@ def integrate_data_sources(yaml_config_file_path): max_datetime = max(datetime_augment_dict.keys()) output_filename_step = output_filename(exp_campaign_name,min_datetime.strftime('%Y-%m-%d')+'_'+max_datetime.strftime('%Y-%m-%d'),initials) output_filename_step = os.path.join(output_dir,output_filename_step) - output_filename_path, output_yml_filename_path = hdf5_lib.create_hdf5_file_from_filesystem_path(output_filename_step, + output_filename_path = hdf5_lib.create_hdf5_file_from_filesystem_path(output_filename_step, input_file_dir, select_dir_keywords, select_file_keywords, @@ -68,7 +68,7 @@ def integrate_data_sources(yaml_config_file_path): else: output_filename_step = output_filename(exp_campaign_name,config_dict['experiment_date'],initials) output_filename_step = os.path.join(output_dir,output_filename_step) - output_filename_path, output_yml_filename_path = hdf5_lib.create_hdf5_file_from_filesystem_path(output_filename_step, + output_filename_path = hdf5_lib.create_hdf5_file_from_filesystem_path(output_filename_step, input_file_dir, select_dir_keywords, select_file_keywords=[], @@ -97,4 +97,4 @@ def integrate_data_sources(yaml_config_file_path): select_file_keywords, root_metadata_dict = root_metadata)""" - return output_filename_path, output_yml_filename_path \ No newline at end of file + return output_filename_path \ No newline at end of file