We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c49f17d commit 3a34515Copy full SHA for 3a34515
src/inverted.rs
@@ -178,6 +178,11 @@ impl Inverted {
178
(sketch_results, sample_names)
179
}
180
181
+ // TODOs for possible efficiency (also check issues on github)
182
+ // - Change Vec<u32> to roaring bitmap
183
+ // - Implement phylogenetic ordering of some sort
184
+ // This might need to be a separate option. Would just doing it on the small sketch be ok?
185
+ // - u64 could be clipped and become u32?
186
fn build_inverted_index(
187
genome_sketches: &Vec<Vec<u64>>,
188
sketch_size: u64,
src/lib.rs
@@ -473,6 +473,7 @@ pub fn main() -> Result<(), Error> {
473
Ok(())
474
475
476
+ // TODO check and enable this code
477
// Commands::InvertedQuery {
478
// query_seq_files,
479
// query_file_list,
0 commit comments