Hello, I need to parse a file and print to two files. The records go to different files
based on whether the values in field[0] has a dash and a number at the end of the string
or not. Example: 10002TU or 10002TU-2.

#!/usr/bin/perl -w use strict; use warnings; open(my $reg_out, ">C:/Documents and Settings/mydir/Desktop/RegularOli +gos.txt"); open(my $irreg_out, ">C:/Documents and Settings/mydir/Desktop/Irregula +rOligos.txt"); open(my $out, ">C:/Documents and Settings/mydir/Desktop/mfrp.txt"); my $first_line = <$in>; chomp $first_line; while(<DATA>){ chomp; my @fields = split /\t/; my $maid = $fields[0]; my $forward = $fields[1]; my $reverse = $fields[2]; my $probe = $fields[3]; if ($probe =~ /^\d{5}TU|TD$/){ print $reg_out "$maid\t$forward\t$reverse\t$probe\n"; } else{ print $irreg_out "$maid\t$forward\t$reverse\t$probe\n"; } } #close $in; close $irreg_out; close $reg_out; __DATA__ 10002TU AGACATTACCTGTGAGACACCTTTC GCCTCCACCTCAGAGTCAG TCCATGG +GAAGGATCTCCGTGAAATCA 10002TU-2 GCTCCAGCTAGAAGAGAATCC CCCACCAGGGCTGTGTAAG CCTGTGAGA +TAGTACAGCTGAAGAGTTGGC 10002TD TGTGTTGATTCTCAGCCTCTTG GACGGAGCACATAGGCAAAG TCTGTTCTT +CTCAGCTGTCTTTGTTGCTGC 10003TU CAGCAAGCCCTGAGGTGTG CAGTGAACTGAGAAAGACGAGAGG TGCAAGTCCAG +ATGGAGGCCACC 10174TU-2 ACCTGAACAGCCTGACATGAAC TGGGATGGAGGGCAAAGTC CCACCTAG +TATGACCCAGCACACCTCC

Any direction will be appreciated.

In reply to separate data and print to two files by lomSpace

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.