Skip to content

Commit

Permalink
[MISC] automatic linting
Browse files Browse the repository at this point in the history
  • Loading branch information
seqan-actions committed Sep 13, 2024
1 parent 3f558e1 commit 705a633
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion util/applications/src/iScience/generate_reads_refseq.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@ void run_program(cmd_arguments const & arguments)
{
auto const & read = result_per_bin[bin_idx][read_idx];
quality.resize(read.size(), seqan3::assign_rank_to(40u, seqan3::phred42{}));
fout.emplace_back(read, arguments.bin_path[bin_idx].stem().stem().string() + std::to_string(read_idx), quality);
fout.emplace_back(read,
arguments.bin_path[bin_idx].stem().stem().string() + std::to_string(read_idx),
quality);
}
}
}
Expand Down

0 comments on commit 705a633

Please sign in to comment.