the i terms refer to positions in
the full variance parameter vector. This may change if the model is
changed. The full vector includes a term for each factor in the
model and then a term for each parameter defined in the R and G
structures. A list of i numbers and their initial values is
returned in the .asl file to help you to check the
numbers. Alternatively, examine the .asr file from an initial
run with !VCC included but no arguments supplied. The job will
terminate but ASReml will provide the Pi values associated with
each variance
component. Otherwise the numbers are given in the .res file.
Examples
5 7 * .1
parameter 7 is a tenth of parameter 5
5 -7
parameter 7 is the negative of parameter 5
32 34 35 37 38 39
for a 4 by 4 US matrix given by parameters 31...40,
the covariances are forced to be equal.
21:28 29
equates 8 pairs of parameters (21 with 29, 22 with 30, ... 28 with 36)
as shown in the next section.
Equating variance structures
In some plant breeding applications, it is sometimes
convenient to define a variance structure as the sum of
two simpler terms.
Then, it is necessary to give the same
variance model to each term and use parameter
constraints to equate the parameters. If there are few
parameters, this can be done as follows:
xfa(dTrial,1).Family 2
5 0 XFA1 !GPFPFP !=%ABCDEFGH
0.72631 0.000 .242713 0.000 .882465 .846305 .04419 .743393
Family 0 GIV1
xfa(dTrial,1).Line 2
5 0 XFA1 !GPFPFP !=%ABCDEFGH
0.72631 0.000 .242713 0.000 .882465 .846305 .04419 .743393
Line 0 GIV2
However, for a larger term, there may not be enough letters
in the alphabet and so !VCC is required as in:
!VCC 1
...
xfa(dTrial,1).Family 2
5 0 XFA1 !GPFPFP
0.72631 0.000 .242713 0.000 .882465 .846305 .04419 .743393
Family 0 GIV1
xfa(dTrial,1).Line 2
5 0 XFA1 !GPFPFP
0.72631 0.000 .242713 0.000 .882465 .846305 .04419 .743393
Line 0 GIV2
21:28 29
Better still, in this case we can use just one structure, twice:
xfa(dTrial,1).Family 2
5 0 XFA1 !GPFPFP !NAME 'FIVE'
0.72631 0.000 .242713 0.000 .882465 .846305 .04419 .743393
Family 0 GIV1
xfa(dTrial,1).Line 2
!USE 'FIVE' #5 0 XFA1 !GPFPFP
# Initial parameters now omitted here
Line 0 GIV2
associates the model definition labeled FIVE
with the second structure.
Return to start