Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic-mahe committed Jan 11, 2025
1 parent 75cf78a commit e5afc2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sff_convert.cc
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ auto sff_convert(struct Parameters const & parameters) -> void

uint32_t const read_data_length = ((2 * sff_header.flows_per_read) + (3 * read_header.number_of_bases));
uint32_t const read_data_padded_length = memory_alignment * ((read_data_length + max_padding_length) / memory_alignment);
uint32_t const read_data_padding_length = read_data_padded_length - read_data_length;
uint32_t const read_data_padding_length = read_data_padded_length - read_data_length; // refactoring: replace with compute_padding_length()

skip_sff_section(fp_sff, read_data_padding_length, "read data padding");
filepos += read_data_padding_length;
Expand Down

0 comments on commit e5afc2e

Please sign in to comment.