generated from jnooree/c-like-templ
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #416 from seoklab/python/tools/tm
feat(python/tools/tm): provide TM-align interface
- Loading branch information
Showing
10 changed files
with
760 additions
and
92 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ Submodules | |
nuri.core | ||
nuri.fmt | ||
nuri.algo | ||
nuri.tools | ||
|
||
------------------- | ||
Top-level Functions | ||
|
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,37 @@ | ||
.. Project NuriKit - Copyright 2024 SNU Compbio Lab. | ||
SPDX-License-Identifier: Apache-2.0 | ||
========== | ||
nuri.tools | ||
========== | ||
|
||
.. currentmodule:: nuri.tools | ||
|
||
.. automodule:: nuri.tools | ||
|
||
-------- | ||
TM-tools | ||
-------- | ||
|
||
.. currentmodule:: nuri.tools.tm | ||
|
||
.. code-block:: python | ||
from nuri.tools import tm as tmtools | ||
.. automodule:: nuri.tools.tm | ||
:exclude-members: TMAlign | ||
|
||
This module provides ground-up reimplementation of TM-align algorithm based | ||
on the original TM-align code (version 20220412) by Yang Zhang. This | ||
implementation aims to reproduce the results of the original code while | ||
providing improved user interface and maintainability. Refer to the | ||
following paper for details of the algorithm. :footcite:`tm-align` | ||
|
||
.. footbibliography:: | ||
|
||
.. autoclass:: TMAlign | ||
:exclude-members: from_alignment | ||
|
||
.. automethod:: __init__ | ||
.. automethod:: from_alignment |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# | ||
# Project NuriKit - Copyright 2024 SNU Compbio Lab. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# |
Oops, something went wrong.