-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- serde for most neurons - better I/O across boundary - more consistent use of ScoreMatrix - benchmarks and tests
- Loading branch information
Showing
21 changed files
with
782 additions
and
172 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,18 +1,22 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
"""Top-level package for nblast-rs.""" | ||
"""Top-level package for pynblast. | ||
The main entry point for this package is the `NblastArena` class. | ||
""" | ||
|
||
__author__ = """Chris L. Barnes""" | ||
__email__ = "[email protected]" | ||
|
||
from .pynblast import get_version as _get_version, ResamplingArbor | ||
from .pynblast import get_version as _get_version, ResamplingArbor, backend as _backend | ||
|
||
__version__ = _get_version() | ||
__version_info__ = tuple(int(n) for n in __version__.split(".")) | ||
__version_info__ = tuple(int(n) for n in __version__.split(".")[:3]) | ||
|
||
from .util import rectify_tangents, Idx, Symmetry | ||
from .arena import NblastArena | ||
from .score_matrix import ScoreMatrix | ||
from .smat_builder import ScoreMatrixBuilder | ||
|
||
__all__ = [ | ||
"NblastArena", | ||
|
@@ -21,4 +25,5 @@ | |
"rectify_tangents", | ||
"Idx", | ||
"ResamplingArbor", | ||
"ScoreMatrixBuilder", | ||
] |
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
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
Oops, something went wrong.