!ASSIGN TRT xfa(Treat,1) ... ... $TRT.geno ... $TRT.geno 2 $TRT 0 XFA1 ... geno USmatrix !< 20!ASSIGN> 10 30 10 10 20 !> ... us(Trait,$USmatrix).GenoRestrictions
!ASSIGN Markers M35 M75 M125 !FOR \$Markers !DO !MBF mbf(Geno,1) markers.csv !key 1 !RFIELD\$S !rename \$S ... ... ~ ... !r \$MarkersThe aim here is to generate the 3 !MBF statements required to extract markers 35, 75 and 125 from the marker file markers.csv. The names of model terms must begin with a letter, hence the marker names are the letter M followed by the position number. Adjoining !RFIELD and $S results in the M in the marker variable name being ignored when parsing the MBF statement so that only the number is picked up by the !RFIELD qualifier. Now, to add another marker to the list, just add it to the ASSIGN statement. Restriction: list and command are both limited to 200 characters.
... !IF \$1 == wwt !ASSIGN M1 brt DamAge !IF \$1 == ywt !ASSIGN M2 brt DamAge ... \$1 \$2 ~ Trait at(Trait,1).(\$M1 ) at(Trait,2).(\$M2 ) , us(Trait).animal ...
This snippet of code is from the job used by Felleki etal. (2012) to fit a bivariate double hierarchical generalized linear models.HGLM algorithm by Felleki and Ronnegard Yval Xterm * Zterm * Gval !=Yval !-.6 !*V4 Ywt !=1. Gwt !=1.!MAXIT 100 !ASUV !EXTRA 4 !IF ODD !CALC W1=EXP(R2-Y2) !IF EVEN !CALC S1=1/W1; T1=H1/S1; Z2= R1*R1/(1-T1) !IF EVEN !CALC Y2=LOG(S1) + Z2/S1 -1 !IF EVEN !CALC W2 = (1-T1)/2 Yval !WT Ywt Gval !WT Gwt ~ Trait Trait.X, !R us(Trait).Z residual units.diag(Trait)