gitextract_a9n8s440/ ├── .cargo/ │ └── config.toml ├── .github/ │ └── workflows/ │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── src/ │ ├── avx2_seeding.rs │ ├── cmdline.rs │ ├── constants.rs │ ├── contain.rs │ ├── inference.rs │ ├── inspect.rs │ ├── lib.rs │ ├── main.rs │ ├── seeding.rs │ ├── sketch.rs │ └── types.rs ├── test_files/ │ ├── k12_R1.fq │ ├── k12_R2.fq │ ├── list.txt │ ├── pair_list1.txt │ ├── pair_list2.txt │ ├── sample_list.txt │ ├── single_sample.txt │ ├── t1.fq │ └── t2.fq └── tests/ ├── integration_test.rs └── unit_test.rs