Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    close $command_out;    # wait until command has finsihed
    close $output_fh if ( defined $output_fh );
    }
    
  2. or download this
    my $command = "bp_genbank2gff3.pl -y -o out_dir some_genbank_filename"
    +;
    
  3. or download this
    run_command( $command, 1, undef );
    run_command( $command, 0, "some_file_name");
    run_command( $command, 1, "some_file_name");
    
  4. or download this
    run_command( $command, 0, undef );