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:
@ -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)
|
||||
|
||||
|
Reference in New Issue
Block a user