pyaragorn 0.1.0__cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pyaragorn might be problematic. Click here for more details.

@@ -0,0 +1 @@
1
+ cython_extension(lib LINKS aragorn)
pyaragorn/__init__.py ADDED
@@ -0,0 +1,36 @@
1
+ from . import lib
2
+ from .lib import (
3
+ __version__,
4
+ Gene,
5
+ TRNAGene,
6
+ TMRNAGene,
7
+ RNAFinder,
8
+ ARAGORN_VERSION,
9
+ TRANSLATION_TABLES,
10
+ )
11
+
12
+ __doc__ = lib.__doc__
13
+ __all__ = [
14
+ "Gene",
15
+ "TRNAGene",
16
+ "TMRNAGene",
17
+ "RNAFinder",
18
+ "ARAGORN_VERSION",
19
+ "TRANSLATION_TABLES",
20
+ ]
21
+
22
+ __author__ = "Martin Larralde <martin.larralde@embl.de>"
23
+ __license__ = "GPL-3.0-or-later"
24
+
25
+ # Small addition to the docstring: we want to show a link redirecting to the
26
+ # rendered version of the documentation, but this can only work when Python
27
+ # is running with docstrings enabled
28
+ if __doc__ is not None:
29
+ __doc__ += """See Also:
30
+ An online rendered version of the documentation for this version
31
+ of the library on
32
+ `Read The Docs <https://pyaragorn.readthedocs.io/en/v{}/>`_.
33
+
34
+ """.format(
35
+ __version__
36
+ )