Skip to content

Commit

Permalink
Reinstated missing -e option
Browse files Browse the repository at this point in the history
  • Loading branch information
richardmleggett committed Feb 7, 2014
1 parent 7cb8ff5 commit f87bae1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/nextclip.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ typedef struct {
/*----------------------------------------------------------------------*
* Globals
*----------------------------------------------------------------------*/
char single_junction_adaptor[] = "CTGTCTCTTATACACATCT";
char duplicate_junction_adaptor[] = "CTGTCTCTTATACACATCTAGATGTGTATAAGAGACAG";
char single_junction_adaptor[128] = "CTGTCTCTTATACACATCT";
char duplicate_junction_adaptor[128] = "CTGTCTCTTATACACATCTAGATGTGTATAAGAGACAG";
char* external_adaptors[2] = {"GATCGGAAGAGCACACGTCTGAACTCCAGTCAC", "GATCGGAAGAGCGTCGTGTAGGGAAAGAGTGT"};
int minimum_read_size = 25;
int strict_double_match = 34;
Expand Down Expand Up @@ -419,6 +419,9 @@ void parse_command_line(int argc, char* argv[], MPStats* stats)
case 'd':
remove_duplicates=1;
break;
case 'e':
use_category_e = 1;
break;
case 'h':
usage();
exit(0);
Expand Down

0 comments on commit f87bae1

Please sign in to comment.