to read sequences from 1 to 10 (i.e. 10 sequences) from input.faa file.
Application I have in mind for this, is to be able to efficiently get a manageable number of sequences from a large fasta file. For example, I have a FASTA file with 10k sequences, but I only want to work on sequences 1-100 now, later I will read 101-200, etc.
I'd like to be able to call
to read sequences from 1 to 10 (i.e. 10 sequences) from
input.faa
file.Application I have in mind for this, is to be able to efficiently get a manageable number of sequences from a large fasta file. For example, I have a FASTA file with 10k sequences, but I only want to work on sequences 1-100 now, later I will read 101-200, etc.