Let me format this for you, with some recoding as well.
Update:
This probably won't work for you since I wasn't sure what your input data looked like. My assumption was that it was multi-space delimited, but as I re-read your spec, it might have the actual labels interspersed in there.
Perhaps you could include some sample data to clear this up?
use strict;
use warnings;
use autodie;
my $length;
my $file = 'the filename...';
open(my $fh, '<', $file) || die "cant open file\n";
while (<$fh>) {
chomp;
my($target, $mirna, $score, $start) = split(/\s+/);
print join("\t", $mirna, $target, $start, $score), "\n";
$length = $.;
}
close $fh;
This is the code i have written for which the output is:
miR156a AT3G19833 151 0.607541
miR156a AT3G19883 11 0.607541
miR156a AT3G19883 12 0.607541
miR156a AT3G19773 15 0.607541
miR156a AT3G19833 161 0.607541
miR156a AT3G19780 163 0.607541
I haven't tested this, and this might not work exactly as you need it to, but I think it avoids some of the problems you might have had in your version.
What can be asserted without proof can be dismissed without proof. - Christopher Hitchens, 1949-2011
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|