We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e34c2ad commit 18f08c0Copy full SHA for 18f08c0
src/iterator.rs
@@ -140,6 +140,12 @@ impl<'a> AllPairIterator<'a> {
140
pub fn pair_count(&self) -> usize {
141
self.actual_pair_count
142
}
143
+
144
+ /// Export the prioritized pair list without performing alignments
145
+ /// Returns pairs as (seq1_idx, seq2_idx) in priority order
146
+ pub fn get_pairs(self) -> Vec<(usize, usize)> {
147
+ self.pair_iter.collect()
148
+ }
149
150
151
impl<'a> Iterator for AllPairIterator<'a> {
0 commit comments