- 论坛徽章:
- 8
|
- #!/usr/bin/perl -w
- my %hash;
- while(<DATA>){
- chomp;
- my @tmp = split;
- push @{$hash{$tmp[0].";".$tmp[-1].";"}},$tmp[1]."-".$tmp[2];
- }
- foreach my $keys(sort keys %hash){
- print join("\t",$keys,@{$hash{$keys}}).$/;
- }
- __DATA__
- NW_010786190.1 46474 46670 XP_010360621.1
- NW_010786190.1 55641 55860 XP_010360621.1
- NW_010786190.1 66091 66240 XP_010360621.1
- NW_010786190.1 66489 66704 XP_010360621.1
- NW_010786203.1 9752 9838 XP_010370913.1
- NW_010786203.1 13535 13735 XP_010370913.1
- NW_010786203.1 14755 14968 XP_010370913.1
- NW_010786203.1 9752 9838 XP_010377713.1
- NW_010786203.1 13535 13735 XP_010377713.1
复制代码 |
|