- 论坛徽章:
- 0
|
回复 1# bioinfor
- #!/usr/bin/perl
- use strict;
- use warnings;
- use Data::Dumper;
- my %hash;
- open(IN,"$ARGV[0] " )||die "can't open $ARGV[0]";
- while (<IN>) {
- chomp;
- my @list=split (/\s+/,$_,2);
- if (!exists $hash{$list[0]}) {
- $hash{$list[0]}=$_;
- }elsif($list[1]=~/matches/){
- $hash{$list[0]}=$_;
- }
- }
- close IN;
- print Dumper %hash;
- __DATA__
- ACACA matches ACACA
- ACAS2L previous symbol of ACSS1
- AD-020 alias of TMEM167B
- ADCY3 matches ADCY3
- ADCY3 previous symbol of ADCY8
- AIP alias of AURKAIP1
- AIP matches AK2
复制代码 |
|