Skip to content
Snippets Groups Projects
Commit 173d5ab7 authored by Martin Larralde's avatar Martin Larralde
Browse files

Cache the `Pipeline` used in `lightmotif::scan::Scanner`

parent 9f969d34
No related branches found
No related tags found
No related merge requests found
...@@ -66,6 +66,7 @@ pub struct Scanner<'a, A: Alphabet> { ...@@ -66,6 +66,7 @@ pub struct Scanner<'a, A: Alphabet> {
block_size: usize, block_size: usize,
row: usize, row: usize,
hits: Vec<Hit>, hits: Vec<Hit>,
pipeline: Pipeline<A, Dispatch>,
} }
impl<'a, A: Alphabet> Scanner<'a, A> { impl<'a, A: Alphabet> Scanner<'a, A> {
...@@ -79,6 +80,7 @@ impl<'a, A: Alphabet> Scanner<'a, A> { ...@@ -79,6 +80,7 @@ impl<'a, A: Alphabet> Scanner<'a, A> {
block_size: 512, block_size: 512,
row: 0, row: 0,
hits: Vec::new(), hits: Vec::new(),
pipeline: Pipeline::dispatch(),
} }
} }
...@@ -140,12 +142,12 @@ where ...@@ -140,12 +142,12 @@ where
type Item = Hit; type Item = Hit;
fn next(&mut self) -> Option<Self::Item> { fn next(&mut self) -> Option<Self::Item> {
while self.hits.is_empty() && self.row < self.seq.matrix().rows() { while self.hits.is_empty() && self.row < self.seq.matrix().rows() {
let pli = Pipeline::dispatch();
let end = (self.row + self.block_size) let end = (self.row + self.block_size)
.min(self.seq.matrix().rows().saturating_sub(self.seq.wrap())); .min(self.seq.matrix().rows().saturating_sub(self.seq.wrap()));
pli.score_rows_into(&self.pssm, &self.seq, self.row..end, &mut self.scores); self.pipeline
.score_rows_into(&self.pssm, &self.seq, self.row..end, &mut self.scores);
let matrix = self.scores.matrix(); let matrix = self.scores.matrix();
for c in pli.threshold(&self.scores, self.threshold) { for c in self.pipeline.threshold(&self.scores, self.threshold) {
let index = c.col * (self.seq.matrix().rows() - self.seq.wrap()) + self.row + c.row; let index = c.col * (self.seq.matrix().rows() - self.seq.wrap()) + self.row + c.row;
self.hits.push(Hit::new(index, matrix[c])); self.hits.push(Hit::new(index, matrix[c]));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment