For starters, I don't understand both Bio:DB::Das::Chado and Bio::DB::Das::Chado::Segment being subclasses of Bio::Root::Root ... but besides that I also don't think this line is doing what you want:
return $self->Bio::DB::Das::Chado::Segment->new($name,$self,$start,$end);
shouldn't that just be:
return Bio::DB::Das::Chado::Segment->new($name,$self,$start,$end);
Other than that, are you sure your sql is returning results? If your sql fails,
$cvterm_id will never be converted to a hash reference (it will stay a plain
scalar) and your code downstream will fail. You probably want something like
this to protect the code downstream (or you could check if you have a hash
downline):
my $cvterm_id = {} ; # this scalar is a hashref
while (my $hashref = $sth->fetchrow_hashref) {
$$cvterm_id{$$hashref{termname}} = $$hashref{cvterm_id};
}
Then at least %termhash will be a hash but quite possibly an empty
one if the sql fails.
-derby
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.