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