Input file for this code: test_data #!/usr/bin/perl # Takes a three-column, tab-delimited file and creates two hashes. # The keys for both hashes will be the items in the first column, # and the values will be the second and third column ############################################################### use warnings; use strict; my $infile = shift @ARGV; my %institute;… (read more)