/usr/share/hyphy/TemplateBatchFiles/selectModelParameters.bf is in hyphy-common 2.2.7+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | parameter2Constrain = 0;
if (Rows("LAST_MODEL_PARAMETER_LIST")>1)
{
ChoiceList (parameter2Constrain, "Parameter(s) to constrain:",1,SKIP_NONE,LAST_MODEL_PARAMETER_LIST);
if (parameter2Constrain<0)
{
return;
}
}
if (parameter2Constrain==0)
{
funnyString = "?";
}
else
{
GetString (funnyString,LAST_MODEL_PARAMETER_LIST,parameter2Constrain-1);
}
constraintString = "this1.?."+funnyString+relationString+"this2.?."+funnyString;
|