- or download this
my $reader = Compress::DSRC::Archive->new;
my $seq = Compress::DSRC::FastqRecord->new;
while ($reader->next_seq($seq)) {
# do something with $seq
}
- or download this
my $reader = Compress::DSRC::Archive->new;
while (my $seq = $reader->next_seq) {
# do something with $seq
}
- or download this
#include "Globals.h"
...
};