()
| 330 | } |
| 331 | |
| 332 | public void destroyAllBf() { |
| 333 | if (graph != null) { |
| 334 | graph.destroy(); |
| 335 | } |
| 336 | |
| 337 | if (screeningBf != null) { |
| 338 | screeningBf.destroy(); |
| 339 | screeningBf = null; |
| 340 | } |
| 341 | |
| 342 | dbgFPR = 0; |
| 343 | covFPR = 0; |
| 344 | } |
| 345 | |
| 346 | public static void checkInputFileFormat(String path) throws FileFormatException { |
| 347 | if (!FastaReader.isCorrectFormat(path) && !FastqReader.isCorrectFormat(path)) { |
no test coverage detected