## Convert .txt to .cellml # If this script cannot be loaded, type "Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process" in the PowerShell terminal # The OpenCOR installation folder path $dpath= 'C:/Users/wai484/Documents/OpenCOR' # The text file name $txtfiles="JNKAi","JPLCdeltai","Jdegradi","JIP3i","IP3","Cai","SMC","JKi","JCli","Para" # The model directory where .txt files are saved $tpath='C:/Users/wai484/Documents/RecruitmentSynchronization_SMCs/Components/buildsrc' # The model directory where .cellml files are saved $cpath='C:/Users/wai484/Documents/RecruitmentSynchronization_SMCs/Components' # Execute the command to do the conversion foreach ($txtfile in $txtfiles) { .$dpath/OpenCOR -c CellMLTextView::export $tpath/$txtfile.txt | out-file $cpath/$txtfile.cellml -encoding utf8 } $txtfile="SMC_KCl_noise" $cpath='C:/Users/wai484/Documents/RecruitmentSynchronization_SMCs/Experiments' .$dpath/OpenCOR -c CellMLTextView::export $tpath/$txtfile.txt | out-file $cpath/$txtfile.cellml -encoding utf8