Strips the given SBML Level 3 package from the given SBML file.
#include <iostream>
int
main (int argc, char* argv[])
{
if (argc != 4)
{
cout << endl << "Usage: stripPackage input-filename package-to-strip output-filename"
<< endl << endl;
return 2;
}
{
}
else
{
props.
addOption(
"stripPackage",
true,
"Strip SBML Level 3 package constructs from the model");
props.
addOption(
"package", argv[2],
"Name of the SBML Level 3 package to be stripped");
{
cout<< "conversion failed ... " << endl;
return 3;
}
}
return 0;
}