Skip to content

Commit

Permalink
[DOC] Fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
MitraDarja committed Aug 24, 2023
1 parent 66a5de6 commit 0fcaa75
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions include/compare.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ void store_ibf(IBFType const & ibf,
}

/*! \brief Function that creates the string name of the used view.
* \param args The arguments about the view to be used.
* \param args If true, "Strobmer" is added to the name.
* \param args The arguments about the view to be used.
* \param underlying_strobemer If true, "Strobmer" is added to the name.
*/
std::string create_name(range_arguments & args, bool underlying_strobemer = false);

Expand Down
1 change: 0 additions & 1 deletion include/minions_minimiser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,6 @@ class minimiser_view<urng1_t, urng2_t>::basic_iterator
}
//!\}

//!\anchor basic_iterator_comparison
//!\name Comparison operators
//!\{

Expand Down
2 changes: 2 additions & 0 deletions include/modmer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,12 @@ class modmer_view : public std::ranges::view_interface<modmer_view<urng1_t>>
* \param[in] seed_used The seed used.
*/
template <typename other_urng1_t, typename other_urng2_t>
//!\cond
requires (std::ranges::viewable_range<other_urng1_t>
&& std::constructible_from<urng1_t, std::views::all_t<other_urng1_t>>
&& std::ranges::viewable_range<other_urng2_t>
&& std::constructible_from<urng2_t, std::views::all_t<other_urng2_t>>)
//!\endcond
explicit modmer_view(other_urng1_t && urange1, other_urng2_t && urange2, size_t const mod_used, uint64_t const seed_used) :
urange1{std::views::all(std::forward<other_urng1_t>(urange1))},
urange2{std::views::all(std::forward<other_urng2_t>(urange2))},
Expand Down
1 change: 0 additions & 1 deletion src/compare.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,6 @@ void match_strobemer(std::filesystem::path sequence_file1, std::filesystem::path
* \param sequence_file1 The first sequence file.
* \param sequence_file2 The second sequence file.
* \param input_view View that should be tested.
* \param compare_view View for comparison, should be kmer_hash view.
* \param method_name Name of the tested method.
* \param args The arguments about the view to be used, needed for strobemers.
*/
Expand Down

0 comments on commit 0fcaa75

Please sign in to comment.