- 论坛徽章:
- 307
|
本帖最后由 sunzhiguolu 于 2016-05-24 14:11 编辑
回复 14# little_joe
再试下,
perl ba.pl b.txt a.txt- #!/usr/bin/perl
- use strict;
- use warnings;
- my ($sID, %hStat, $sPrint);
- while (<>){
- my @aCols = split;
- if (@ARGV){
- next if (/\A\s+/);
- next if (exists $hStat{$aCols[0]});
- $hStat{$aCols[0]} = {'Min' => $aCols[1], 'Max' => $aCols[-1]};
- next;
- }
- if (/\A(>\S+)/){
- if (!exists $hStat{$1}){
- $sPrint = 0;
- next;
- }
- ($sPrint, $sID) = (1, $1);
- next;
- }
- if ($sPrint and $aCols[0] >= $hStat{$sID}{'Min'} && $aCols[0] <= $hStat{$sID}{'Max'}){
- print $sID, "\n" if ($sPrint++ == 1);
- print;
- }
- }
复制代码 >NP_414681.1
683
690
691
692
694
>NP_414854.1
395
407
|
|