Skip to content

Commit

Permalink
clean up imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamtaranto committed Sep 20, 2024
1 parent 52556b1 commit 012df80
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,28 +1,23 @@
// Standard library imports
use std::collections::hash_map::IntoIter;
use std::collections::{HashMap, HashSet};
use std::fs::File;
use std::io::{BufWriter, Write};

// External crate imports
use anyhow::{anyhow, Result};
use log::debug;
use pyo3::exceptions::PyValueError;
use pyo3::prelude::*;
use pyo3::PyResult;
// use rayon::prelude::*;

use anyhow::{anyhow, Result};
use std::collections::HashMap;

extern crate needletail;
use needletail::{parse_fastx_file, FastxReader, Sequence};

// use sourmash::sketch::nodegraph::Nodegraph;
use sourmash::_hash_murmur;
//use sourmash::_hash_murmur;
use sourmash::encodings::HashFunctions;
// use sourmash::sketch::nodegraph::Nodegraph;
use sourmash::signature::SeqToHashes;

use pyo3::PyResult;
use std::fs::File;
use std::io::{BufWriter, Write};
extern crate needletail;
use needletail::{parse_fastx_file, FastxReader, Sequence};

// Set version variable
const VERSION: &str = env!("CARGO_PKG_VERSION");
Expand Down

0 comments on commit 012df80

Please sign in to comment.