i wrote a script which measure the hydrogen bond in RNA molecule, but i have this error, which i cannot handle. please help me. use of uninitialized value line 27.

#!/usr/bin/perl use warnings; use strict; my @structure; my @bases; my $basestring = <STDIN>; chomp($basestring); my $parenstring = <STDIN>; chomp($parenstring); print evalRnaStructure($basestring,$parenstring)," hydrogen bonds in t +his structure.\n"; sub evalRnaStructure { my ($basestring,$structurestring) = @_; @bases = split(//,"5.$basestring.3"); @structure = split(//,"($structurestring)"); return evalRna(0,$#structure); } sub evalRna { my ($l,$r) = @_; my %bonds= (GU=>1,UG=>1,AU=>2,UA=>2,CG=>3,GC=>3); my $numBonds = $bonds{$bases[$l].$bases[$r]}; my $level = 0; my $ii = $l; for (my $i=$l+1; $i<=$r; $i++) { $level-- if ($structure[$i] eq ")"); if ($level==0) { $numBonds+= evalRna($ii,$i) if ($structure[$i] eq ")"); $ii = $i; } $level++ if ($structure[$i] eq "("); } return $numBonds; }

In reply to recursive algorithm by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.