Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: open input files once

by jwkrahn (Abbot)
on Jul 14, 2020 at 20:45 UTC ( [id://11119322]=note: print w/replies, xml ) Need Help??


in reply to open input files once

This seems to work:

#!/usr/bin/perl use strict; use warnings; my @header = qw/ chr fivep threep strand /; my %output; @ARGV = glob 'file*.tab'; while ( <> ) { tr/\t// == 8 or die "_ERROR_ not 9 columns: $_"; my ( $key, $val ) = /^ ( [^\t]+ \t [^\t]+ \t [^\t]+ \t [^\t]+ ) \t + [^\t]+ \t [^\t]+ \t ( [^\t]+ ) /x; $output{ $key }[ @header - 4 ] = $val || 0; if ( eof ) { push @header, $ARGV; } } print join( "\t", @header ), "\n"; for my $key ( keys %output ) { my $new = $key =~ s/ \t \K ( [^\t]+ ) \z / $1 eq '0' ? '+' : '-' / +rex; $output{ $key }[ $_ ] //= 0 for 0 .. $#header - 4; print join( "\t", $new, @{ $output{ $key } } ), "\n"; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11119322]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-04-25 21:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found