in reply to How to write a perl script to grab the first 100 sequences to a 227,000 sequence file?

Here is one liner:
perl -ne 'print if $. <= 100' inputfile
  • Comment on Re: How to write a perl script to grab the first 100 sequences to a 227,000 sequence file?
  • Download Code