Source code for bioio_base.reader_metadata

#!/usr/bin/env python
# -*- coding: utf-8 -*-

from abc import ABC, abstractmethod
from typing import List

from .reader import Reader

###############################################################################


[docs] class ReaderMetadata(ABC):
[docs] @staticmethod @abstractmethod def get_supported_extensions() -> List[str]: pass
[docs] @staticmethod @abstractmethod def get_reader() -> Reader: pass