File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ int main(){
8686 std::cout << " Primer indice wrong. Expected: " << primer_indices[primer_ctr] << " . Got: " << cand_primer.get_indice () << std::endl;
8787 }
8888 // Check start pos
89- if ((uint) aln->core .pos != read_start_pos[primer_ctr]){
89+ if (aln->core .pos != ( int ) read_start_pos[primer_ctr]){
9090 success = -1 ;
9191 std::cout << " Incorrect start position" << std::endl;
9292 }
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ int main(){
110110 std::cout << " Primer indice wrong. Expected: " << rev_primer_indices[primer_ctr] << " . Got: " << cand_primer.get_indice () << std::endl;
111111 }
112112 }
113- if (aln->core .pos != read_start_pos[primer_ctr]){
113+ if (aln->core .pos != ( int ) read_start_pos[primer_ctr]){
114114 success = -1 ;
115115 std::cout << " Start pos didn't match" << std::endl;
116116 }
You can’t perform that action at this time.
0 commit comments