Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Got some problem with read write file

by CountZero (Bishop)
on Sep 04, 2016 at 09:27 UTC ( [id://1171132]=note: print w/replies, xml ) Need Help??


in reply to Got some problem with read write file

Or even shorter, using split to extract the name of the gene:
use Modern::Perl qw/2015/; use autodie; open my $IN, '<', 'genes.tsv'; open my $OUT, '>', 'genesymbol.txt'; say $OUT ( split "\t" )[1] while (<$IN>);

split "\t" works very well for this very simple TSV file. However, for any even a bit more complicated TSV or CSV file, the use of Text::CSV comes highly recommended!

CountZero

A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

My blog: Imperial Deltronics

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-03-29 09:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found