| 234 | } |
| 235 | |
| 236 | pub(crate) trait FromBam { |
| 237 | fn from_bam(bam_path: &Path) -> Result<Self> |
| 238 | where |
| 239 | Self: Sized; |
| 240 | } |
| 241 | |
| 242 | impl FromBam for Region { |
| 243 | fn from_bam(bam_path: &Path) -> Result<Self> { |
nothing calls this directly
no outgoing calls
no test coverage detected