Changeset 16196 for trunk/ippScripts/scripts/detrend_norm_calc.pl
- Timestamp:
- Jan 22, 2008, 5:36:36 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/ippScripts/scripts/detrend_norm_calc.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/detrend_norm_calc.pl
r15616 r16196 32 32 33 33 # Parse command-line arguments 34 my ($det_id, $iter, $detType, $ workdir, $dbname, $no_update, $no_op);34 my ($det_id, $iter, $detType, $outroot, $dbname, $no_update, $no_op); 35 35 GetOptions( 36 36 'det_id|d=s' => \$det_id, # Detrend id 37 37 'iteration|i=s' => \$iter, # Iteration 38 38 'det_type|t=s' => \$detType, # Detrend type 39 'workdir|w=s' => \$workdir, # Working directory for output files 39 'outroot|w=s' => \$outroot, # output file base name 40 40 'dbname|d=s' => \$dbname, # Database name 41 41 'no-update' => \$no_update, # Don't update the database? … … 44 44 45 45 pod2usage( -msg => "Unknown option: @ARGV", -exitval => 2 ) if @ARGV; 46 pod2usage( -msg => "Required options --det_id --iteration --det_type ",46 pod2usage( -msg => "Required options --det_id --iteration --det_type --outroot", 47 47 -exitval => 3, 48 ) 49 unless defined $det_id 50 and defined $iter 51 and defined $detType; 48 ) unless 49 defined $det_id and 50 defined $iter and 51 defined $detType and 52 defined $outroot; 52 53 53 54 use constant STATISTIC => 'bg'; # Background statistic to use from the database
Note:
See TracChangeset
for help on using the changeset viewer.
