(self, unique=False)
| 2082 | return self.length_unique if unique else self.length |
| 2083 | |
| 2084 | def get_min_matched_length(self, unique=False): |
| 2085 | return (self.min_matched_length_unique if unique |
| 2086 | else self.min_matched_length) |
| 2087 | |
| 2088 | def get_high_length(self, unique=False): |
| 2089 | return self.high_length_unique if unique else self.high_length |
no outgoing calls
no test coverage detected