in reply to Printing all lines of a file using a perl one liner
You start with a problem statement who's solution is meaningless in the real world. Perl Golf is an interesting game, but I'm not sure that you really understand that you are playing golf? If this is not a golf competition, then why on earth would you write such code?
I do not see how this code makes any sense:
This code has nothing to do with the FASTA spec.chomp; @a=split(/\t/); $a[0]=~s/\s+//g; $a[1]=~s/\s+//g; $a[2]=~s/\s+//g; $a[3]=~s/\s+//g;
I highly recommend using the BIO Perl modules. The FastA format is simple and I wrote one parser at Re: Bio perl package - I think I've written more. But even so, I don't recommend my code as the end-all and be-all.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Printing all lines of a file using a perl one liner
by la (Novice) on Sep 29, 2011 at 17:03 UTC |