Location: SLC transporters @ 54428a600e2c / src / mergeData_GLUT2.py

Author:
Weiwei Ai <wai484@aucklanduni.ac.nz>
Date:
2024-05-27 16:40:34+12:00
Desc:
Fixed typos
Permanent Source URI:
http://models.cellml.org/workspace/b65/rawfile/54428a600e2c560005a2d9d0a5608082f90a7c0c/src/mergeData_GLUT2.py

import os
current_dir = os.path.dirname(os.path.abspath(__file__))
csv_files = []
model_name = 'GLUT2_BG'
path_=os.path.join(current_dir, '../Facilitated transporter/CellMLV2/sim_results/')
for model_id in range(250):
    sed_model_id = model_name+f'_{model_id}_io'
    csv_files.append(path_+'report_task_'+f'{sed_model_id}'+'.csv')
# only remove the first line of the second and subsequent files
# if the file exists, delete it first
io_csv = path_+f'{model_name}_ss_io.csv'
if os.path.exists(io_csv):
    os.remove(io_csv)
with open(io_csv, 'w') as file:
    for csv_file in csv_files:
        with open(csv_file, 'r') as f:
            if csv_file == csv_files[0]:
                file.write(f.read())
            else:
                f.readline()
                file.write(f.read())

csv_files = []
for model_id in range(250):
    sed_model_id = model_name+f'_{model_id}_oi'
    csv_files.append(path_+'report_task_'+f'{sed_model_id}'+'.csv')
# only remove the first line of the second and subsequent files
oi_csv = path_+f'{model_name}_ss_oi.csv'
if os.path.exists(oi_csv):
    os.remove(oi_csv)
with open(oi_csv, 'w') as file:
    for csv_file in csv_files:
        with open(csv_file, 'r') as f:
            if csv_file == csv_files[0]:
                file.write(f.read())
            else:
                f.readline()
                file.write(f.read())