I use hash of hashes and maybe many layer of hashes,and I often run into the error message like in my title! now I have some codes as follows
#!/bin/perl -w
use strict;
my $site_file=$ARGV[0];
#input the methylation site info
my %site_info=();
open(IN_site,"<$site_file");
while(<IN_site>)
{
chomp;
my @arr=split(/\t/,$_,4);
if($arr[0] eq "MULTI"){next;}
my @chr_temp=split //,$arr[0];
for(1..3)
{
shift(@chr_temp);
}
$arr[0]=join("",@chr_temp);
$site_info{$arr[0]}{$arr[1]}{"strand"}=$arr[2];
$site_info{$arr[0]{$arr[1]}}{"value"}=$arr[3];
}
close IN_site;
i try to use hashes of hashes of hashes to input my $site_flie, and the all the lines have the formats as follows:
chr16 28797601 - 0.777877
I use a lot of there kinds of hashes and this kind of problem often happens,please help me!
Thanks in advance!
I do not want remove use strick
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.