diff --git a/lightmotif-py/docs/api/index.rst b/lightmotif-py/docs/api/index.rst index 719c4398fe722caea3e858e1a871645d056f84cd..5346505cfab53269d02bd887e3cf0f52ef45f803 100644 --- a/lightmotif-py/docs/api/index.rst +++ b/lightmotif-py/docs/api/index.rst @@ -36,6 +36,25 @@ Matrices lightmotif.WeightMatrix lightmotif.ScoringMatrix + +Motif +----- + +.. autosummary:: + :nosignatures: + + lightmotif.Motif + + +Score +----- + +.. autosummary:: + :nosignatures: + + lightmotif.StripedScores + + Functions --------- diff --git a/lightmotif-py/docs/api/motif.rst b/lightmotif-py/docs/api/motif.rst new file mode 100644 index 0000000000000000000000000000000000000000..aed23cfbedb973f5b80cb7c55baa354cdbf7f738 --- /dev/null +++ b/lightmotif-py/docs/api/motif.rst @@ -0,0 +1,8 @@ +Motif +===== + +.. currentmodule:: lightmotif + +.. autoclass:: lightmotif.Motif + :special-members: __init__ + :members: diff --git a/lightmotif-py/docs/api/scores.rst b/lightmotif-py/docs/api/scores.rst new file mode 100644 index 0000000000000000000000000000000000000000..e7976d32d08a88926752d58890af53f6b1a0443c --- /dev/null +++ b/lightmotif-py/docs/api/scores.rst @@ -0,0 +1,8 @@ +StripedScores +============= + +.. currentmodule:: lightmotif + +.. autoclass:: lightmotif.StripedScores + :special-members: __init__ + :members: diff --git a/lightmotif-py/lightmotif/__init__.py b/lightmotif-py/lightmotif/__init__.py index 3085e53853469ccbcf44da3dbd827e46b3117e01..118129151839077386d76cf5dffe5cc3990afceb 100644 --- a/lightmotif-py/lightmotif/__init__.py +++ b/lightmotif-py/lightmotif/__init__.py @@ -7,9 +7,12 @@ from .lib import ( CountMatrix, WeightMatrix, ScoringMatrix, + Motif, + StripedScores, create, stripe, ) __author__ = lib.__author__ +__license__ = "MIT" __doc__ = lib.__doc__