Help for this page

Select Code to Download


  1. or download this
    # forks then changes working directory and executes a command
    sub chdir_and_system {
    ...
        wait;
        die "child error $?" if ($?);
    }
    
  2. or download this
    sub add_gff_track {
        my ( $browser_project_dir, $gff_file, $track_label, $key, @optiona
    +l_args )
    ...
        chdir_and_system( $browser_project_dir, @args );
    
    }