Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[INFRA] Update submodules #208

Merged
merged 3 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/hibf
Submodule hibf updated 195 files
2 changes: 1 addition & 1 deletion lib/seqan3
Submodule seqan3 updated 93 files
+2 −2 .github/workflows/ci_cmake.yml
+2 −2 .github/workflows/ci_coverage.yml
+3 −3 .github/workflows/ci_documentation.yml
+7 −2 .github/workflows/ci_linux.yml
+2 −2 .github/workflows/ci_macos.yml
+2 −2 .github/workflows/ci_misc.yml
+2 −2 .github/workflows/cron_api.yml
+2 −2 .github/workflows/cron_avx2.yml
+2 −2 .github/workflows/cron_latest_libraries.yml
+3 −3 .github/workflows/deploy_documentation.yaml
+2 −2 .github/workflows/ram_usage.yml
+2 −2 .github/workflows/update_cookbook.yml
+11 −0 CHANGELOG.md
+2 −10 build_system/seqan3-config.cmake
+1 −1 include/seqan3/alignment/aligned_sequence/debug_stream_alignment.hpp
+1 −1 include/seqan3/alignment/configuration/align_config_on_result.hpp
+1 −4 include/seqan3/alignment/matrix/all.hpp
+1 −1 include/seqan3/alignment/matrix/detail/trace_directions.hpp
+1 −1 include/seqan3/alignment/matrix/detail/trace_matrix_full.hpp
+2 −3 include/seqan3/alignment/pairwise/alignment_algorithm.hpp
+2 −2 include/seqan3/alignment/pairwise/alignment_result.hpp
+1 −1 include/seqan3/alignment/pairwise/detail/concept.hpp
+1 −1 include/seqan3/alignment/pairwise/detail/policy_alignment_result_builder.hpp
+30 −13 include/seqan3/alphabet/composite/alphabet_variant.hpp
+6 −4 include/seqan3/alphabet/composite/semialphabet_any.hpp
+1 −1 include/seqan3/alphabet/views/translate.hpp
+1 −1 include/seqan3/alphabet/views/translate_join.hpp
+6 −6 include/seqan3/argument_parser/argument_parser.hpp
+1 −4 include/seqan3/argument_parser/detail/format_parse.hpp
+0 −3 include/seqan3/contrib/parallel/serialised_resource_pool.hpp
+3 −3 include/seqan3/contrib/std/chunk_view.hpp
+2 −2 include/seqan3/contrib/std/join_with_view.hpp
+3 −2 include/seqan3/contrib/std/zip_view.hpp
+1 −2 include/seqan3/contrib/stream/bz2_ostream.hpp
+1 −2 include/seqan3/contrib/stream/gz_ostream.hpp
+1 −1 include/seqan3/core/add_enum_bitwise_operators.hpp
+3 −3 include/seqan3/core/algorithm/detail/execution_handler_parallel.hpp
+1 −1 include/seqan3/core/debug_stream/debug_stream_type.hpp
+1 −1 include/seqan3/core/detail/strong_type.hpp
+10 −2 include/seqan3/core/platform.hpp
+1 −1 include/seqan3/io/sam_file/detail/format_sam_base.hpp
+6 −9 include/seqan3/io/sam_file/format_sam.hpp
+6 −12 include/seqan3/io/sam_file/header.hpp
+1 −1 include/seqan3/io/sam_file/sam_flag.hpp
+0 −13 include/seqan3/io/sam_file/sam_tag_dictionary.hpp
+1 −1 include/seqan3/search/configuration/on_result.hpp
+1 −1 include/seqan3/search/detail/policy_search_result_builder.hpp
+3 −1 include/seqan3/search/fm_index/fm_index.hpp
+2 −2 include/seqan3/search/search_result.hpp
+1 −0 include/seqan3/utility/container/aligned_allocator.hpp
+2 −1 include/seqan3/utility/container/small_string.hpp
+10 −10 include/seqan3/utility/parallel/detail/reader_writer_manager.hpp
+4 −10 include/seqan3/utility/simd/all.hpp
+1 −1 include/seqan3/utility/simd/detail/builtin_simd_intrinsics.hpp
+0 −4 include/seqan3/utility/simd/detail/debug_stream_simd.hpp
+2 −2 include/seqan3/utility/simd/detail/simd_algorithm_avx2.hpp
+1 −5 include/seqan3/utility/simd/views/all.hpp
+1 −1 include/seqan3/utility/simd/views/to_simd.hpp
+12 −1 include/seqan3/utility/tuple/split.hpp
+5 −1 include/seqan3/utility/type_traits/basic.hpp
+1 −1 include/seqan3/utility/views/interleave.hpp
+1 −1 include/seqan3/utility/views/pairwise_combine.hpp
+10 −5 include/seqan3/utility/views/repeat.hpp
+1 −1 test/documentation/.vercel/install.sh
+27 −2 test/documentation/DoxygenLayout.xml
+1 −1 test/documentation/doc_usr/CMakeLists.txt
+17 −7 test/documentation/seqan3_doxygen_cfg.in
+1 −1 test/documentation/seqan3_footer.html.in
+1 −1 test/documentation/seqan3_header.html
+1 −1 test/unit/alignment/configuration/align_config_common_test.cpp
+1 −1 test/unit/alignment/decorator/gap_decorator_test.cpp
+1 −1 test/unit/alignment/scoring/scoring_scheme_test.cpp
+20 −20 test/unit/alphabet/composite/alphabet_variant_test.cpp
+39 −37 test/unit/alphabet/composite/composite_integration_test.cpp
+1 −1 test/unit/alphabet/container/bitpacked_sequence_test.cpp
+1 −1 test/unit/argument_parser/detail/format_help_test.cpp
+2 −2 test/unit/contrib/parallel/buffer_queue_parallel_test.cpp
+0 −1 test/unit/core/configuration/pipeable_config_element_test.cpp
+1 −2 test/unit/core/range/detail/adaptor_for_view_without_args_test.cpp
+1 −1 test/unit/io/sam_file/format_bam_test.cpp
+9 −1 test/unit/io/sam_file/sam_file_format_test_template.hpp
+50 −50 test/unit/io/sequence_file/sequence_file_format_fastq_test.cpp
+57 −57 test/unit/io/structure_file/format_vienna_test.cpp
+3 −2 test/unit/io/views/detail/take_until_view_test.cpp
+1 −1 test/unit/search/configuration/search_config_common_test.cpp
+0 −2 test/unit/search/search_scheme_algorithm_test.cpp
+2 −2 test/unit/utility/container/dynamic_bitset_test.cpp
+0 −2 test/unit/utility/detail/bits_of_test.cpp
+2 −2 test/unit/utility/simd/simd_algorithm_test.cpp
+5 −0 test/unit/utility/tuple/pod_tuple_test.cpp
+6 −0 test/unit/utility/tuple/pop_front_test.cpp
+6 −0 test/unit/utility/tuple/split_test.cpp
+4 −0 test/unit/utility/type_traits/basic_test.cpp
2 changes: 1 addition & 1 deletion lib/sharg-parser
Submodule sharg-parser updated 77 files
+1 −1 .clang-format
+271 −0 .cmake-format.yaml
+2 −2 .codecov.yml
+3 −10 .github/ISSUE_TEMPLATE/release-checklist.md
+9 −0 .github/dependabot.yml
+10 −22 .github/workflows/api.yml
+60 −0 .github/workflows/ci_cmake.yml
+16 −58 .github/workflows/ci_coverage.yml
+61 −0 .github/workflows/ci_documentation.yml
+22 −60 .github/workflows/ci_linux.yml
+17 −60 .github/workflows/ci_macos.yml
+21 −110 .github/workflows/ci_misc.yml
+0 −173 .github/workflows/clang_format.yml
+10 −12 .github/workflows/documentation.yml
+84 −0 .github/workflows/lint.yml
+2 −2 .github/workflows/readme_snippet.yml
+6 −0 .github/workflows/scripts/gcov.sh
+2 −2 .github/workflows/update_cookbook.yml
+23 −1 CHANGELOG.md
+4 −5 CMakeLists.txt
+7 −5 README.md
+31 −26 build_system/sharg-config-version.cmake
+55 −98 build_system/sharg-config.cmake
+0 −1 build_system/sharg-install.cmake
+4 −3 doc/about/api/index.md
+6 −2 doc/setup/quickstart_cmake/index.md
+8 −7 include/sharg/detail/format_base.hpp
+12 −12 include/sharg/detail/format_parse.hpp
+22 −21 include/sharg/detail/format_tdl.hpp
+8 −3 include/sharg/enumeration_names.hpp
+7 −4 include/sharg/parser.hpp
+2 −2 include/sharg/version.hpp
+1 −1 submodules/tool_description_lib
+3 −3 test/api_stability/1.0.0/0001-API-FIX-Print-common-options-at-the-end-of-the-help-.patch
+3 −3 test/api_stability/1.0.0/0002-NOAPI-Update-copyright.patch
+49 −0 test/api_stability/1.0.0/0003-API-FIX-Check-app_name-at-parse.patch
+102 −0 test/api_stability/1.0.0/0004-FIX-API-tdl-support.patch
+26 −13 test/coverage/CMakeLists.txt
+1 −1 test/documentation/.vercel/install.sh
+6 −4 test/documentation/CMakeLists.txt
+1 −1 test/documentation/DoxygenLayout.xml.in
+21 −23 test/documentation/doc_dev/CMakeLists.txt
+16 −20 test/documentation/doc_usr/CMakeLists.txt
+157 −0 test/documentation/doxygen-awesome/doxygen-awesome-darkmode-toggle.js
+85 −0 test/documentation/doxygen-awesome/doxygen-awesome-fragment-copy-button.js
+81 −0 test/documentation/doxygen-awesome/doxygen-awesome-interactive-toc.js
+51 −0 test/documentation/doxygen-awesome/doxygen-awesome-paragraph-link.js
+70 −0 test/documentation/doxygen-awesome/doxygen-awesome-tabs.js
+2,522 −0 test/documentation/doxygen-awesome/doxygen-awesome.css
+12 −15 test/documentation/sharg-doxygen.cmake
+91 −287 test/documentation/sharg.css
+0 −205 test/documentation/sharg_dark.css
+15 −9 test/documentation/sharg_doxygen_cfg.in
+1 −1 test/documentation/sharg_footer.html.in
+94 −0 test/documentation/sharg_header.html
+84 −0 test/external_project/CMakeLists.txt
+48 −0 test/external_project/find-package-diagnostics.cmake
+30 −0 test/external_project/install-sharg.cmake
+36 −0 test/external_project/sharg_fetch_content_zip/CMakeLists.txt
+25 −0 test/external_project/sharg_installed/CMakeLists.txt
+37 −0 test/external_project/sharg_setup_tutorial/CMakeLists.txt
+22 −0 test/external_project/sharg_submodule_add_subdirectory/CMakeLists.txt
+24 −0 test/external_project/sharg_submodule_find_package/CMakeLists.txt
+13 −0 test/external_project/src/hello_world.cpp
+7 −7 test/header/CMakeLists.txt
+11 −6 test/header/generate_header_source.cmake
+8 −11 test/snippet/CMakeLists.txt
+1 −1 test/snippet/readme_sneak_peek.out
+10 −4 test/unit/CMakeLists.txt
+18 −17 test/unit/detail/CMakeLists.txt
+1 −1 test/unit/detail/format_ctd_test.cpp
+43 −55 test/unit/detail/format_cwl_test.cpp
+1 −1 test/unit/detail/format_help_test.cpp
+4 −4 test/unit/parser/CMakeLists.txt
+2 −2 test/unit/std/CMakeLists.txt
+2 −2 test/unit/test/CMakeLists.txt
+1 −1 test/unit/test/tmp_filename_test.cpp
8 changes: 4 additions & 4 deletions src/display_layout/process_file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ void process_file(std::string const & filename,
while (infile.read(hash_data, hash_bytes))
{
current_kmers.push_back(hash);
sketch.add(hash_data, hash_bytes);
sketch.add(hash);
}
}
else
{
while (infile.read(hash_data, hash_bytes))
{
sketch.add(hash_data, hash_bytes);
sketch.add(hash);
}
}
}
Expand All @@ -66,7 +66,7 @@ void process_file(std::string const & filename,
for (uint64_t hash_value : seq | minimizer_view)
{
current_kmers.push_back(hash_value);
sketch.add(reinterpret_cast<char *>(&hash_value), sizeof(hash_value));
sketch.add(hash_value);
}
}
}
Expand All @@ -76,7 +76,7 @@ void process_file(std::string const & filename,
{
for (uint64_t hash_value : seq | minimizer_view)
{
sketch.add(reinterpret_cast<char *>(&hash_value), sizeof(hash_value));
sketch.add(hash_value);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/measure_hyperloglog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ int main(int argc, char const * argv[])
control.insert(hash);
for (auto & sketch : sketches)
{
sketch.add(reinterpret_cast<char *>(&hash), sizeof(hash));
sketch.add(hash);
}
}

Expand Down
4 changes: 2 additions & 2 deletions test/api/layout/hibf_statistics_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ TEST(hibf_statistics, only_merged_on_top_level)
stats.hibf_layout.max_bins.emplace_back(std::vector<size_t>{0u}, 0u);
stats.hibf_layout.max_bins.emplace_back(std::vector<size_t>{1u}, 0u);

stats.hibf_layout.user_bins.emplace_back(0u, std::vector<size_t>{0u}, 2u, 0u);
stats.hibf_layout.user_bins.emplace_back(1u, std::vector<size_t>{1u}, 2u, 0u);
stats.hibf_layout.user_bins.emplace_back(std::vector<size_t>{0u}, 0u, 2u, 0u);
stats.hibf_layout.user_bins.emplace_back(std::vector<size_t>{1u}, 0u, 2u, 1u);
}

testing::internal::CaptureStdout();
Expand Down
14 changes: 7 additions & 7 deletions test/api/sketch/read_hll_files_into_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ struct read_hll_files_into_test : public ::testing::Test

TEST_F(read_hll_files_into_test, basic)
{
size_t const k{16};
size_t const kmer_size{16};
size_t const b{5};
seqan::hibf::sketch::hyperloglog expected{b};

Expand All @@ -46,14 +46,14 @@ TEST_F(read_hll_files_into_test, basic)
sequence_file_type seq_file{input_file};

// put every sequence in this file into the sketch
for (auto && [seq] : seq_file)
for (auto && [seq_vec] : seq_file)
{
// we have to go C-style here for the seqan::hibf::sketch::hyperloglog Interface
char const * it = &(*seq.begin());
char const * const end = it + seq.size() - k + 1;
std::string_view const seq{seq_vec.begin(), seq_vec.end()};

for (; it != end; ++it)
expected.add(it, k);
for (size_t pos = 0; pos + kmer_size <= seq.size(); ++pos) // substr is [pos, pos + len)
{
expected.add(seq.substr(pos, kmer_size));
}
}

chopper::sketch::read_hll_files_into(data(""), test_filenames, target);
Expand Down