Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^2: simple perl script to trim a FASTA file

by erix (Prior)
on Apr 09, 2010 at 15:52 UTC ( [id://833851]=note: print w/replies, xml ) Need Help??


in reply to Re: simple perl script to trim a FASTA file
in thread simple perl script to trim a FASTA file

You should indeed not edit the sequence files.

The previous answers (by almut and BrowserUK) just use __DATA__ because that makes it easy to show as compact example. And to use the examples they'll need a little editing.

For instance, in almut's script, replace the line:

while( <DATA> ) {
with
while( <> ) {

and invoke the script as:

perl almuts_answer.pl sequences.fa > sequences_cleaned.fa

Replacing <DATA> with <> means it will not read the __DATA__ section of the program-file itself, but instead read from STDIN (aka standard input).

hth

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (4)
As of 2024-04-23 23:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found