Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: change \n to \t

by yueli711 (Sexton)
on Aug 23, 2019 at 15:50 UTC ( [id://11104906]=note: print w/replies, xml ) Need Help??


in reply to Re: change \n to \t
in thread change \n to \t

Hello, hippo, Thank you so much for your response! Thank you for your help! I really appreciated! Best, Yue

Replies are listed 'Best First'.
Re^3: change \n to \t
by Laurent_R (Canon) on Aug 23, 2019 at 16:06 UTC
    Actually, my DATA file is huge.
    Then you're probably doing the wrong way using two arrays to store the contents of the file. It is better to read, process and output one line at a time.

    For example something like this:

    open my $IN1, "<", "1.fa" or die "Cannot open input file"; open my $OUT, ">", "1.txt" or die "Cannot open output file"; while (my $line = <$IN1>) { # Do here whatever transformation/substitution you need to $line print $OUT $line; } close $IN1; close $OUT;
    This will be faster and will consume much less memory.

Log In?
Username:
Password:

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

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

    No recent polls found