File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ auto cut() -> void
265
265
266
266
if (not h)
267
267
{
268
- fatal (" Unrecognized file type (not proper FASTA format)" );
268
+ fatal (" Unrecognized file type (not proper FASTA format)" ); // unreachable
269
269
}
270
270
271
271
auto const filesize = fasta_get_size (h);
@@ -315,7 +315,7 @@ auto cut() -> void
315
315
316
316
if (pattern == nullptr )
317
317
{
318
- fatal (" No cut pattern string specified with --cut_pattern" );
318
+ fatal (" No cut pattern string specified with --cut_pattern" ); // unreachable
319
319
}
320
320
321
321
int const n = strlen (pattern);
@@ -328,7 +328,7 @@ auto cut() -> void
328
328
int cut_fwd = -1 ;
329
329
int cut_rev = -1 ;
330
330
331
- int j = 0 ;
331
+ int j = 0 ; // number of nucleotides (pattern minus cutting sites)
332
332
for (int i = 0 ; i < n ; i++)
333
333
{
334
334
unsigned char const x = pattern[i];
You can’t perform that action at this time.
0 commit comments