Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consolidate unused files, modules, notebooks, tests #227

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions echopop/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from .computation.semivariogram import SemiVariogram
from .survey import Survey

__all__ = ["Survey", "SemiVariogram"]
__all__ = ["Survey"]

from _echopop_version import version as __version__ # noqa
29 changes: 0 additions & 29 deletions echopop/computation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,29 +0,0 @@
from .bin_dataset import generate_bin_ds
from .bootstrapping import Bootstrapping
from .cv import run_jolly_hampton
from .kriging import Kriging, krig_param_type, krig_type_dict
from .kriging_variables import ComputeKrigingVariables
from .length_age_variables import (
get_kriging_len_age_biomass,
get_len_age_abundance,
get_transect_len_age_biomass,
)
from .semivariogram import SemiVariogram, vario_param_type, vario_type_dict
from .transect_results import ComputeTransectVariables

__all__ = [
"ComputeTransectVariables",
"generate_bin_ds",
"ComputeKrigingVariables",
"run_jolly_hampton",
"Kriging",
"Bootstrapping",
"SemiVariogram",
"krig_type_dict",
"krig_param_type",
"vario_type_dict",
"vario_param_type",
"get_len_age_abundance",
"get_transect_len_age_biomass",
"get_kriging_len_age_biomass",
]
Loading