Removed the 'backup_' name from the copied file so that the orignal name is preserved in the hdf5 file. The file copy storage location is enough to distinguise it from the original file.

This commit is contained in:
2024-03-19 14:07:37 +01:00
parent 2d8503ef7a
commit 63e7fb28d0

View File

@ -53,7 +53,8 @@ def split_sample_col_into_sample_and_data_quality_cols(input_data: pd.DataFrame)
def make_file_copy(source_file_path):
pathtail, filename = os.path.split(source_file_path)
backup_filename = 'backup_'+ filename
#backup_filename = 'backup_'+ filename
backup_filename = filename
# Path
ROOT_DIR = os.path.abspath(os.curdir)