Skip to content

Commit

Permalink
explicitly initializing primer variables
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaceves committed Feb 3, 2023
1 parent 5b047bc commit d0e2ad0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/primer_bed.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ class primer {
uint32_t start; // 0 based
uint32_t end; // 0 based
std::string name;
int score;
int score = 0;
char strand;
int16_t pair_indice;
int16_t indice;
uint32_t read_count;
uint32_t read_count = 0;

public:
std::string get_name();
Expand Down

0 comments on commit d0e2ad0

Please sign in to comment.