我有一个巨大的制表符分隔文件,如下所示:
contig04733 contig00012 77
contig00546 contig01344 12
contig08943 contig00001 14
contig00765 contig03125 88
等
我有一个单独的制表符分隔文件,其中只有这些重叠群对的一个子集,如下所示:
contig04733 contig00012
contig08943 contig00001
等
我想将第一个文件中与第二个文件中列出的行对应的行提取到一个新文件中。在这个特定的数据集中,我认为在两个文件中每对的哪一种方式应该是相同的。但也想知道是否说:
文件1 contig08943 contig00001 14
但在file2中
contig00001 contig08943
我仍然想要这种组合,是否也可以为此编写脚本?
我的代码如下。
use strict;
use warnings;
#open the contig pairs list
open (PAIRS, "$ARGV[0]") or die "Error opening the input file with contig pairs";
#hash to store contig IDs - I think?!
my $pairs;
#read through the pairs list and read into memory?
while(<PAIRS>){
chomp $_; #get rid of ending whitepace
$pairs->{$_} = 1;
}
close(PAIRS);
#open data file
open(DATA, "$ARGV[1]") or die "Error opening the sequence pairs file\n";
while(<DATA>){
chomp $_;
my ($contigs, $identity) = split("\t", $_);
if (defined $pairs->{$contigs}) {
print STDOUT "$_\n";
}
}
close(DATA);