| 671 | } |
| 672 | |
| 673 | pub trait PlotOrder { |
| 674 | fn order(&mut self, max_read_depth: usize) -> Result<()>; |
| 675 | } |
| 676 | |
| 677 | impl PlotOrder for Vec<Read> { |
| 678 | /// Assigns given Reads their vertical position (row) in the read plot respecting the given max_read_depth by subsampling rows. |
nothing calls this directly
no outgoing calls
no test coverage detected