How to use the refinem.plots.base_plot.BasePlot.__init__ function in refinem

To help you get started, we’ve selected a few refinem examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github dparks1134 / RefineM / refinem / plots / scatter.py View on Github external
def __init__(self, options):
        """Initialize."""
        BasePlot.__init__(self, options)
github dparks1134 / RefineM / refinem / plots / td_plots.py View on Github external
def __init__(self, options):
        """Initialize."""
        BasePlot.__init__(self, options)
github dparks1134 / RefineM / refinem / plots / cov_perc_plots.py View on Github external
def __init__(self, options):
        """Initialize."""
        BasePlot.__init__(self, options)
github dparks1134 / RefineM / refinem / plots / gc_cov_plot.py View on Github external
def __init__(self, options):
        """Initialize."""
        BasePlot.__init__(self, options)
github dparks1134 / RefineM / refinem / plots / cov_corr_plots.py View on Github external
def __init__(self, options):
        """Initialize."""
        BasePlot.__init__(self, options)
github dparks1134 / RefineM / refinem / plots / tetra_pca_plot.py View on Github external
def __init__(self, options):
        """Initialize."""
        BasePlot.__init__(self, options)

        self.pca_computed = False
        self.pc = None
        self.variance = None
github dparks1134 / RefineM / refinem / plots / gc_plots.py View on Github external
def __init__(self, options):
        """Initialize."""
        BasePlot.__init__(self, options)