Location: SinglePASMC @ 7008ad73e8ef / Components / buildsrc / txt2cellml.ps1

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-05-17 17:42:12+12:00
Desc:
update lib
Permanent Source URI:
https://staging.physiomeproject.org/workspace/83f/rawfile/7008ad73e8ef3da16618a12878c14b5557955ace/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="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