Trying to guess which files you'll need beforehand is not a good idea. Here's a solution that opens the files you need on demand and closes them all at the end of the script.

#!/usr/local/bin/perl # multifileout.pl use strict; use warnings; my @file_ends = qw{./ .fasta}; my %handle = (); my @ko_array = qw(abc def ghi); while (<DATA>) { chomp; my ($head, $seq) = split / /; for my $ko (@ko_array) { if ($head =~ m/$ko/) { if (! exists $handle{$head}) { open my $fh, q{>>}, join($ko, @file_ends); $handle{$head} = $fh; } print { $handle{$head} } qq{$head\n$seq\n}; } } } map { close $handle{$_} } keys %handle; __DATA__ abc a123 def d123 abc a456 ghi g123 ghi g456 def d456

Here's the results:

ken@ganymede: ~/tmp $ ls -l *.fasta ls: *.fasta: No such file or directory ken@ganymede: ~/tmp $ multifileout.pl ken@ganymede: ~/tmp $ ls -l *.fasta -rw-r--r-- 1 ken staff 18 7 Feb 08:29 abc.fasta -rw-r--r-- 1 ken staff 18 7 Feb 08:29 def.fasta -rw-r--r-- 1 ken staff 18 7 Feb 08:29 ghi.fasta ken@ganymede: ~/tmp $ cat abc.fasta abc a123 abc a456 ken@ganymede: ~/tmp $ cat def.fasta def d123 def d456 ken@ganymede: ~/tmp $ cat ghi.fasta ghi g123 ghi g456 ken@ganymede: ~/tmp $

-- Ken


In reply to Re: Write to multiple files by kcott
in thread Write to multiple files by julio_514

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.