Diff Coverage

Diff: origin/master...HEAD, staged and unstaged changes

Source File Diff Coverage (%) Missing Lines
hyper_parallel/data/indexed/io.py 86.7% 477-478,566-567
hyper_parallel/data/indexed/io.py
473
474
475
476
477
478
479
480
481
    def __del__(self) -> None:
        """Clean up the object."""
        try:
            self.close()
        except (AttributeError, BufferError, ValueError):
            pass

    def __len__(self) -> int:
        """Get the number of sequences in the dataset
562
563
564
565
566
567
568
569
570
571
    def __del__(self) -> None:
        """Clean up the object."""
        try:
            self.close()
        except (AttributeError, BufferError, ValueError):
            pass


class _FileBinReader(_BinReader):
    """A _BinReader that reads from the data (.bin) file using a file pointer"""