6 # Don't edit the line below, it must look exactly like this.
7 # Everything above this line will be replaced #
17 $Data::Dumper::Maxdepth=$ARGV[1];
19 # ------------------------------------------------------------------#
21 # Model evaluation. Part one. Version 0.1
23 # This script checks a nonmem output file. The parts
24 # concerning parts of the covariance step obviously needs the $COV
25 # record. In addition, the condition number test needs the PRINT=E
26 # option of the $COV record. The limits for the relative tests may be
29 my $correlation_limit = 0.9; # All correlations above this number
31 my $condition_number_limit = 1000; # An error will be rised if the
32 # condition number is greater
34 my $near_bound_sign_digits = 2; # If a parameter estimate is equal
35 # to a bound with this many
36 # significant digits, a warning
38 my $near_zero_boundary_limit = 0.001; # When the bound is zero, the
39 # check above is not valid. Use
41 my $sign_digits_off_diagonals = 2; # The off-diagonal elements are
42 # checked against +-1 with this
43 # many significant digits.
44 my $large_theta_cv_limit = 0.30; # Coefficients of variation larger
45 # than these numbers will produce
47 my $large_omega_cv_limit = 0.50;
48 my $large_sigma_cv_limit = 0.30;
50 $| = 1; # Make sure autoflush is on
52 #debug -> subroutine('large_standard_errors');
56 die "A default value of 0 or 1 for the answer must be defined\n"
57 if ( not defined $default );
59 if ( $input =~ /^\s*[yY]\s*$/ ) {
61 } elsif ( $input =~ /^\s*[nN]\s*$/ ) {
72 my $l = (7 - length( $outcome ))/2;
74 $c_num = '07' if ( $outcome eq 'OK' );
75 $c_num = '13' if ( $outcome eq 'WARNING' );
76 $c_num = '05' if ( $outcome eq 'ERROR' );
77 # my $text = sprintf( "%-66s%2s%7s%-5s\n\n", $name, '[ ', $outcome. ' ' x $l, ' ]' );
79 my $text = sprintf( "%-66s%2s%7s%-5s", $name, '[ ', $outcome. ' ' x $l, ' ]' );
81 # cprintf( "%-66s%2s\x03$c_num%7s\x030%-5s", $name, '[ ', $outcome. ' ' x $l, ' ]' );
82 # my $text = cprintf( "%-66s%2s\x03$c_num%7s\x030%-5s", $name, '[ ', $outcome. ' ' x $l, ' ]' );
84 print $file $text if defined $file;
88 #my $orig_model = model -> new( filename => $ARGV[0] );
89 #my $output = $orig_model -> outputs -> [0];
90 my $output = output -> new( filename => $ARGV[0] );
92 open( my $log, ">test.log" );
95 my $corr_matr_run = 1;
97 for ( my $i = 0; $i < scalar @{$output -> problems}; $i++ ) {
98 print "PROBLEM ",$i+1,"\n" if scalar @{$output -> problems} > 1;
99 for ( my $j = 0; $j < scalar @{$output -> problems -> [$i] -> subproblems}; $j++ ) {
100 print "SUBPROBLEM ",$i+1,"\n" if scalar @{$output -> problems -> [$i] -> subproblems} > 1;
102 if ( $output -> minimization_successful -> [$i][$j] eq '1' ) {
103 acknowledge( 'Successful minimization', 'OK', $log );
105 acknowledge( 'Termination problems', 'ERROR', $log );
107 if ( $output -> rounding_errors -> [$i][$j] eq '0' ) {
108 acknowledge( 'No rounding errors', 'OK', $log );
110 acknowledge( 'Rounding errors', 'ERROR', $log );
113 if ( $output -> zero_gradients -> [$i][$j] eq '0' ) {
114 acknowledge( 'No zero gradients', 'OK', $log );
116 acknowledge( 'Zero gradients found '.$output -> zero_gradients -> [$i][$j].' times', 'ERROR', $log );
119 if ( $output -> final_zero_gradients -> [$i][$j] eq '0' ) {
120 acknowledge( 'No final zero gradients', 'OK', $log );
122 acknowledge( 'Final zero gradients', 'ERROR', $log );
125 if ( $output -> hessian_reset -> [$i][$j] eq '0' ) {
126 acknowledge( 'Hessian not reset', 'OK', $log );
128 acknowledge( 'Hessian reset '.$output -> hessian_reset -> [$i][$j].' times', 'WARNING', $log );
131 my ( $n_b, $f_b, $f_e ) =
132 $output -> near_bounds( zero_limit => $near_zero_boundary_limit,
133 significant_digits => $near_bound_sign_digits,
134 off_diagonal_sign_digits => $sign_digits_off_diagonals );
135 if ( defined $n_b -> [$i] and
136 defined $n_b -> [$i][$j] ) {
137 my @near_bounds = @{$n_b -> [$i][$j]};
138 my @found_bounds = @{$f_b -> [$i][$j]};
139 my @found_estimates = @{$f_e -> [$i][$j]};
140 if ( $#near_bounds < 0 ) {
141 acknowledge( 'No parameter near boundary', 'OK', $log );
143 acknowledge( 'Parameter(s) near boundary', 'WARNING', $log );
144 for ( my $i = 0; $i <= $#near_bounds; $i++ ) {
145 printf( "\t%-20s%10g %10g\n", $near_bounds[$i],
146 $found_estimates[$i], $found_bounds[$i] );
147 print $log sprintf( "\t%-20s%10g %10g\n", $near_bounds[$i],
148 $found_estimates[$i], $found_bounds[$i] );
149 print "\n" if ( $i == $#near_bounds );
150 print $log "\n" if ( $i == $#near_bounds );
155 if ( $output -> covariance_step_run -> [$i] ) {
156 if ( $output -> covariance_step_successful -> [$i][$j] eq '0' ) {
157 acknowledge( 'Covariance step', 'ERROR', $log );
159 if ( $output -> covariance_step_successful -> [$i][$j] eq '1' ) {
160 acknowledge( 'Covariance step ', 'OK', $log );
162 acknowledge( 'Covariance step', 'WARNING', $log );
165 my ( $l_se, $f_cv ) =
166 $output -> large_standard_errors( theta_cv_limit => $large_theta_cv_limit,
167 omega_cv_limit => $large_omega_cv_limit,
168 sigma_cv_limit => $large_sigma_cv_limit );
169 if ( defined $l_se -> [$i] and
170 defined $l_se -> [$i][$j] ) {
171 my @large_standard_errors = @{$l_se -> [$i][$j]};
172 my @found_cv = @{$f_cv -> [$i][$j]};
173 if ( $#large_standard_errors < 0 ) {
174 acknowledge( 'No large standard errors found', 'OK', $log );
176 acknowledge( 'Large standard errors found', 'WARNING', $log );
177 for ( my $i = 0; $i <= $#large_standard_errors; $i++ ) {
178 printf( "\t%-20s%10g\n", $large_standard_errors[$i], $found_cv[$i] );
179 print $log sprintf( "\t%-20s%10g\n", $large_standard_errors[$i], $found_cv[$i] );
180 print "\n" if ( $i == $#large_standard_errors );
181 print $log "\n" if ( $i == $#large_standard_errors );
186 my $eigens = $output -> eigens;
187 if ( defined $eigens and
188 defined $eigens -> [$i][$j] and
189 scalar @{$eigens -> [$i][$j]} > 0 ) {
190 if ( $output -> condition_number -> [$i][$j] < $condition_number_limit ) {
191 acknowledge( 'Condition number ('.
192 sprintf("%6.1f",$output -> condition_number -> [$i][$j]).')', 'OK', $log );
194 acknowledge( 'Large condition number ('.
195 sprintf("%6.0f",$output -> condition_number -> [$i][$j]).')', 'WARNING', $log );
201 if ( $output -> s_matrix_singular -> [$i][$j] ne '1' ) {
202 acknowledge( 'S-matrix ', 'OK', $log );
204 acknowledge( 'S-matrix is singular', 'WARNING', $log );
207 my ( $h_c, $f_c ) = $output -> high_correlations( limit => $correlation_limit );
208 if ( defined $h_c -> [$i] and
209 defined $h_c -> [$i][$j] ) {
210 my @high_correlations = @{$h_c -> [$i][$j]};
211 my @found_correlations = @{$f_c -> [$i][$j]};
212 if ( $#high_correlations < 0 ) {
213 acknowledge( 'Correlations', 'OK', $log );
215 acknowledge( 'Large correlations between parameter estimates found', 'WARNING', $log );
216 for ( my $i = 0; $i <= $#high_correlations; $i++ ) {
217 printf( "\t%-20s%10g\n", $high_correlations[$i],
218 $found_correlations[$i] );
219 print $log sprintf( "\t%-20s%10g\n", $high_correlations[$i],
220 $found_correlations[$i] );
221 print "\n" if ( $i == $#high_correlations );
222 print $log "\n" if ( $i == $#high_correlations );
228 print "No Covariance step run\n";
229 print $log "No Covariance step run\n";
236 #system( "sumo -confidence -c_level=95 $ARGV[0]" );
237 system( "sumo $ARGV[0]" );