Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use 5.010;
    use strict;
    ...
        print if $seen{$gene};
    }
    close HFR or die "Unable to close $hfr because $!";
    
  2. or download this
    my %seen;
    print grep $seen{$_}++, <>;