- or download this
die "Usage: $0 InputFile1 InputFile2 OutputFile\n"
unless @ARGV==3;
my ($InputFile1, $InputFile2, $OutputFile3) = @ARGV;
# ... rest of the code here
- or download this
sub process_files {
my ($InputFile1, $InputFile2, $OutputFile3) = @_;
# ... rest of your code here
}
- or download this
my @filesets = (
{ input1 => "edited_archaea_master_list.txt",
...
process_files( $fileset->{input1}, $fileset->{input2},
$fileset->{output} );
}