## 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="JVOCCi","JNCXi","JSERCAi","JCICRi","JPMCAi","Jleaki","JNKAi","JCli","Cai","Casr","Vm","Para","PASMC","JKi" # The model directory where .txt files are saved $tpath='C:/Users/wai484/Documents/SinglePASMC/Components/buildsrc' # The model directory where .cellml files are saved $cpath='C:/Users/wai484/Documents/SinglePASMC/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="PASMC_test" $cpath='C:/Users/wai484/Documents/SinglePASMC/Experiments' .$dpath/OpenCOR -c CellMLTextView::export $tpath/$txtfile.txt | out-file $cpath/$txtfile.cellml -encoding utf8