Skip to content

Commit 1efee06

Browse files
committed
Move also hash.rs to seeding/
1 parent 761ab51 commit 1efee06

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ pub mod aligner;
22
pub mod chainer;
33
pub mod cigar;
44
pub mod details;
5-
pub mod hash;
65
pub mod hit;
76
pub mod index;
87
pub mod insertsize;
File renamed without changes.

src/seeding/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
mod hash;
12
pub mod parameters;
23
pub mod strobes;
34
pub mod syncmers;

src/seeding/strobes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::collections::VecDeque;
22

3+
use super::{InvalidSeedingParameter, Syncmer};
34
use crate::index::REF_RANDSTROBE_HASH_MASK;
4-
use crate::seeding::{InvalidSeedingParameter, Syncmer};
55

66
pub const DEFAULT_AUX_LEN: u8 = 17;
77

src/seeding/syncmers.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
use std::cmp::min;
22
use std::collections::VecDeque;
33

4-
use crate::hash::xxh64;
5-
use crate::seeding::InvalidSeedingParameter;
4+
use super::InvalidSeedingParameter;
5+
use super::hash::xxh64;
66

77
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
88
pub struct Syncmer {

0 commit comments

Comments
 (0)