Skip to content

Commit 3a34515

Browse files
committed
Leave myself some todo notes to pick up from
1 parent c49f17d commit 3a34515

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/inverted.rs

+5
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,11 @@ impl Inverted {
178178
(sketch_results, sample_names)
179179
}
180180

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?
181186
fn build_inverted_index(
182187
genome_sketches: &Vec<Vec<u64>>,
183188
sketch_size: u64,

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,7 @@ pub fn main() -> Result<(), Error> {
473473
Ok(())
474474
}
475475

476+
// TODO check and enable this code
476477
// Commands::InvertedQuery {
477478
// query_seq_files,
478479
// query_file_list,

0 commit comments

Comments
 (0)