- 论坛徽章:
- 2
|
回复 1# huang6894
- use strict;
- my %hash1;
- my %hash2;
- open(f1,"file1") or die "$!\n";
- open(f2,"file2") or die "$!\n";
- open(f3,"file3") or die "$!\n";
- while(<f2>){
- my ($n,$m) = /(chr\S+)\s+(\d+)/;
- $hash1{$n."#".$m} = {$_=~/([ATC]\/[ATC])\s+([\d.]+)/g};
- }
- close(f2);
- while(<f3>){
- chomp;
- my @line = split /_|\s+/,$_;
- $hash2{$line[0]."#".$line[1]}{$line[2]."/".$line[3]}= $line[4];
- }
- close(f3);
- print Dumper \%hash1,\%hash2;
- while(<f1>){
- chomp;
- if (/^VAR/){
- print (join "\t",$_,"hamf.fr","snp.fr");
- print "\n" ;
- }else{
- print $_,"\t";
- my @line = split /\s+|->/,$_;
- print $hash1{$line[2]."#".$line[3]}->{$line[0]."/".$line[1]}||0,"\t";
- print $hash2{$line[2]."#".$line[3]}{$line[0]."/".$line[1]}||0;
- print "\n";
- }
- }
- close(f1);
复制代码 |
|