-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bc45439
commit f9c7615
Showing
6 changed files
with
14 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.4.5 | ||
current_version = 0.4.6 | ||
commit = True | ||
tag = True | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
setup( | ||
author="Genomics and Machine Learning lab", | ||
author_email="[email protected]", | ||
python_requires=">=3.8", | ||
python_requires=">=3.7", | ||
classifiers=[ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Intended Audience :: Developers", | ||
|
@@ -49,6 +49,6 @@ | |
test_suite="tests", | ||
tests_require=test_requirements, | ||
url="https://github.com/BiomedicalMachineLearning/stLearn", | ||
version="0.4.5", | ||
version="0.4.6", | ||
zip_safe=False, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
__author__ = """Genomics and Machine Learning lab""" | ||
__email__ = "[email protected]" | ||
__version__ = "0.4.5" | ||
__version__ = "0.4.6" | ||
|
||
|
||
from . import add | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# from .base import lr | ||
# from .base_grouping import get_hotspots | ||
# from . import het | ||
# from .het import edge_core, get_between_spot_edge_array | ||
# from .merge import merge | ||
# from .permutation import get_rand_pairs | ||
from .analysis import load_lrs, grid, run, adj_pvals, run_lr_go, run_cci |