- Author:
- WeiweiAi <wai484@aucklanduni.ac.nz>
- Date:
- 2022-06-23 10:59:39+12:00
- Desc:
- Remove a typo
- Permanent Source URI:
- http://models.cellml.org/workspace/874/rawfile/e49ff561204dfdf4692d90837d271bd04fc6286d/Components/buildsrc/txt2cellml.ps1
## 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