in reply to adding rank to a match in while loop.
my $ranking_dgp = 0; while ( $text =~ m{gene\=(ENSG\d+).*?<TD>\s+(\d+|X|Y)\s+</TD>.*? <TD>.*?<TD>.*?<TD>.*?<TD>\s(\d.\d+)\s\<\/TD\>}gsm){ my $gene = $1; my $chromosone = $2; my $score_dgp = $3; $ranking_dgp = $ranking_dgp + 1; push @gene_score, [ $gene, $chromosone, $score_dgp, $ranking_d +gp ]; } print Dumper @gene_score;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: adding rank to a match in while loop.
by BioGeek (Hermit) on Aug 13, 2004 at 15:36 UTC |