in reply to Re: Extracting BLAST hits from a list of sequences
in thread Extracting BLAST hits from a list of sequences

Using $/ is a good suggestion (and I upvoted it), but I feel that relying on the magic of the <> operator is unnecessarily clever in this case.
  • Comment on Re^2: Extracting BLAST hits from a list of sequences

Replies are listed 'Best First'.
Re^3: Extracting BLAST hits from a list of sequences
by Kenosis (Priest) on Jan 20, 2014 at 18:32 UTC

    Appreciate the upvote. It seemed only 'natural' to use <> in this case, since the OP already had files in @ARGV and using <> to process them avoided adding the code to do so.