Help for this page

Select Code to Download


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