Prossibly not useable (this has the stench of homework about it) but considering the problem domain BioPerl would be the first thing to check out. Even if it is homework you're supposed to build from scratch you may be able to gain inspiration, but judging by the orphaned method call on a $mySeq instance its use could be expected.

And mentioning because it jumped out at me: ALWAYS CHECK THE RETURN FROM open CALLS. You did your first but you didn't creating some of your output file(s) which means that's inevitably going to silently fail some time and you're then going to be stuck trying to track down what's gone wrong when that happens (and it will; Murphy sez so). Even your trick conditionally opening the last output it might be useful to print an informational diagnostic message to indicate why you're not writing to the file rather than STDOUT.

if( not $succ ) { print STDERR qq{Unable to append to '$file', using STDOUT: $!\n}; $fh = \*STDOUT; }

The cake is a lie.
The cake is a lie.
The cake is a lie.


In reply to Re: Stuck in Perl.. Partial code, but it needs more improvement.. Any suggestions, please? by Fletch
in thread Stuck in Perl.. Partial code, but it needs more improvement.. Any suggestions, please? by cosmin

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.