biointerface 0.1.0__tar.gz → 0.2.2__tar.gz
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.
- {biointerface-0.1.0 → biointerface-0.2.2}/CONTRIBUTING.rst +37 -28
- biointerface-0.2.2/HISTORY.rst +14 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/PKG-INFO +65 -10
- biointerface-0.2.2/README.rst +96 -0
- biointerface-0.2.2/docs/_build/html/_static/file.png +0 -0
- biointerface-0.2.2/docs/_build/html/_static/minus.png +0 -0
- biointerface-0.2.2/docs/_build/html/_static/plus.png +0 -0
- biointerface-0.2.2/docs/biointerface.rst +21 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/docs/conf.py +30 -29
- {biointerface-0.1.0 → biointerface-0.2.2}/docs/installation.rst +5 -5
- biointerface-0.2.2/docs/modules.rst +7 -0
- biointerface-0.2.2/docs/usage.rst +194 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/pyproject.toml +4 -15
- biointerface-0.2.2/src/biointerface/__init__.py +9 -0
- biointerface-0.2.2/src/biointerface/core.py +410 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/src/biointerface.egg-info/PKG-INFO +65 -10
- {biointerface-0.1.0 → biointerface-0.2.2}/src/biointerface.egg-info/SOURCES.txt +6 -1
- {biointerface-0.1.0 → biointerface-0.2.2}/src/biointerface.egg-info/requires.txt +1 -1
- {biointerface-0.1.0 → biointerface-0.2.2}/tests/test_biointerface.py +1 -2
- biointerface-0.1.0/HISTORY.rst +0 -8
- biointerface-0.1.0/README.rst +0 -41
- biointerface-0.1.0/docs/usage.rst +0 -7
- biointerface-0.1.0/src/biointerface/__init__.py +0 -5
- biointerface-0.1.0/src/biointerface/biointerface.py +0 -138
- {biointerface-0.1.0 → biointerface-0.2.2}/AUTHORS.rst +0 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/LICENSE +0 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/MANIFEST.in +0 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/docs/Makefile +0 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/docs/authors.rst +0 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/docs/contributing.rst +0 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/docs/history.rst +0 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/docs/index.rst +0 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/docs/make.bat +0 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/docs/readme.rst +0 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/setup.cfg +0 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/src/biointerface.egg-info/dependency_links.txt +0 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/src/biointerface.egg-info/top_level.txt +0 -0
- {biointerface-0.1.0 → biointerface-0.2.2}/tests/__init__.py +0 -0
|
@@ -15,7 +15,7 @@ Types of Contributions
|
|
|
15
15
|
Report Bugs
|
|
16
16
|
~~~~~~~~~~~
|
|
17
17
|
|
|
18
|
-
Report bugs at https://
|
|
18
|
+
Report bugs at https://gitlab.com/MorfeoRenai/biointerface/-/issues.
|
|
19
19
|
|
|
20
20
|
If you are reporting a bug, please include:
|
|
21
21
|
|
|
@@ -26,13 +26,13 @@ If you are reporting a bug, please include:
|
|
|
26
26
|
Fix Bugs
|
|
27
27
|
~~~~~~~~
|
|
28
28
|
|
|
29
|
-
Look through the
|
|
29
|
+
Look through the Gitlab issues for bugs. Anything tagged with "bug" and "help
|
|
30
30
|
wanted" is open to whoever wants to implement it.
|
|
31
31
|
|
|
32
32
|
Implement Features
|
|
33
33
|
~~~~~~~~~~~~~~~~~~
|
|
34
34
|
|
|
35
|
-
Look through the
|
|
35
|
+
Look through the Gitlab issues for features. Anything tagged with "enhancement"
|
|
36
36
|
and "help wanted" is open to whoever wants to implement it.
|
|
37
37
|
|
|
38
38
|
Write Documentation
|
|
@@ -45,7 +45,7 @@ articles, and such.
|
|
|
45
45
|
Submit Feedback
|
|
46
46
|
~~~~~~~~~~~~~~~
|
|
47
47
|
|
|
48
|
-
The best way to send feedback is to file an issue at https://
|
|
48
|
+
The best way to send feedback is to file an issue at https://gitlab.com/MorfeoRenai/biointerface/-/issues.
|
|
49
49
|
|
|
50
50
|
If you are proposing a feature:
|
|
51
51
|
|
|
@@ -57,42 +57,49 @@ If you are proposing a feature:
|
|
|
57
57
|
Get Started!
|
|
58
58
|
------------
|
|
59
59
|
|
|
60
|
-
Ready to contribute? Here's how to set up
|
|
60
|
+
Ready to contribute? Here's how to set up BioInterface for local development.
|
|
61
61
|
|
|
62
|
-
1. Fork the
|
|
63
|
-
2. Clone your fork locally
|
|
62
|
+
1. Fork the BioInterface repo on Gitlab.
|
|
63
|
+
2. Clone your fork locally:
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
.. code-block:: console
|
|
66
66
|
|
|
67
|
-
|
|
67
|
+
$ git clone git@gitlab.com:your_name_here/biointerface.git
|
|
68
|
+
|
|
69
|
+
3. Install your local copy into a virtualenv. Assuming you have
|
|
70
|
+
virtualenvwrapper installed, this is how you set up your fork for local
|
|
71
|
+
development:
|
|
72
|
+
|
|
73
|
+
.. code-block:: console
|
|
68
74
|
|
|
69
75
|
$ mkvirtualenv biointerface
|
|
70
76
|
$ cd biointerface/
|
|
71
|
-
$
|
|
77
|
+
$ make requirements-dev
|
|
72
78
|
|
|
73
|
-
4. Create a branch for local development
|
|
79
|
+
4. Create a branch for local development:
|
|
74
80
|
|
|
75
|
-
|
|
81
|
+
.. code-block:: console
|
|
76
82
|
|
|
77
|
-
|
|
83
|
+
$ git checkout -b name-of-your-bugfix-or-feature
|
|
78
84
|
|
|
79
85
|
5. When you're done making changes, check that your changes pass flake8 and the
|
|
80
|
-
tests, including testing other Python versions with tox
|
|
86
|
+
tests, including testing other Python versions with tox:
|
|
87
|
+
|
|
88
|
+
.. code-block:: console
|
|
81
89
|
|
|
82
90
|
$ make lint
|
|
83
91
|
$ make test
|
|
84
|
-
Or
|
|
85
92
|
$ make test-all
|
|
86
93
|
|
|
87
|
-
|
|
94
|
+
6. Commit your changes and push your branch to Gitlab:
|
|
88
95
|
|
|
89
|
-
|
|
96
|
+
.. code-block:: console
|
|
90
97
|
|
|
91
98
|
$ git add .
|
|
92
99
|
$ git commit -m "Your detailed description of your changes."
|
|
93
100
|
$ git push origin name-of-your-bugfix-or-feature
|
|
94
101
|
|
|
95
|
-
7. Submit a pull request through the
|
|
102
|
+
7. Submit a pull request through the Gitlab website.
|
|
96
103
|
|
|
97
104
|
Pull Request Guidelines
|
|
98
105
|
-----------------------
|
|
@@ -103,16 +110,17 @@ Before you submit a pull request, check that it meets these guidelines:
|
|
|
103
110
|
2. If the pull request adds functionality, the docs should be updated. Put
|
|
104
111
|
your new functionality into a function with a docstring, and add the
|
|
105
112
|
feature to the list in README.rst.
|
|
106
|
-
3. The pull request should work for Python 3.
|
|
107
|
-
|
|
108
|
-
and make sure that the tests pass for all supported Python versions.
|
|
113
|
+
3. The pull request should work for Python 3.10, 3.11, 3.12 and 3.13,
|
|
114
|
+
and for PyPy. Make sure that the tests pass for all supported Python versions.
|
|
109
115
|
|
|
110
116
|
Tips
|
|
111
117
|
----
|
|
112
118
|
|
|
113
|
-
To run a subset of tests
|
|
119
|
+
To run a subset of tests:
|
|
120
|
+
|
|
121
|
+
.. code-block:: console
|
|
114
122
|
|
|
115
|
-
$ pytest tests.test_biointerface
|
|
123
|
+
$ pytest tests.test_biointerface
|
|
116
124
|
|
|
117
125
|
|
|
118
126
|
Deploying
|
|
@@ -120,13 +128,14 @@ Deploying
|
|
|
120
128
|
|
|
121
129
|
A reminder for the maintainers on how to deploy.
|
|
122
130
|
Make sure all your changes are committed (including an entry in HISTORY.rst).
|
|
123
|
-
Then run
|
|
131
|
+
Then run:
|
|
132
|
+
|
|
133
|
+
.. code-block:: console
|
|
124
134
|
|
|
125
|
-
$
|
|
126
|
-
$ git push
|
|
127
|
-
$ git push --tags
|
|
135
|
+
$ bump-my-version patch # possible: major / minor / patch
|
|
136
|
+
$ git push
|
|
137
|
+
$ git push --tags
|
|
128
138
|
|
|
129
|
-
Travis will then deploy to PyPI if tests pass.
|
|
130
139
|
|
|
131
140
|
Code of Conduct
|
|
132
141
|
---------------
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: biointerface
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: BioInterface is a python package capable of extracting Protein-DNA interfaces from PDB/mmCif structures.
|
|
5
5
|
Author-email: Alessandro Pandolfi <alessandro.pandolfi@protonmail.com>
|
|
6
6
|
Maintainer-email: Alessandro Pandolfi <alessandro.pandolfi@protonmail.com>
|
|
@@ -14,7 +14,7 @@ License-File: LICENSE
|
|
|
14
14
|
License-File: AUTHORS.rst
|
|
15
15
|
Requires-Dist: pandas
|
|
16
16
|
Requires-Dist: biopython
|
|
17
|
-
Requires-Dist: pdbnucleicacids>=0.2
|
|
17
|
+
Requires-Dist: pdbnucleicacids>=0.2
|
|
18
18
|
Provides-Extra: dev
|
|
19
19
|
Requires-Dist: coverage; extra == "dev"
|
|
20
20
|
Requires-Dist: mypy; extra == "dev"
|
|
@@ -29,31 +29,86 @@ BioInterface
|
|
|
29
29
|
.. image:: https://img.shields.io/pypi/v/biointerface.svg
|
|
30
30
|
:target: https://pypi.python.org/pypi/biointerface
|
|
31
31
|
|
|
32
|
-
.. image:: https://img.shields.io/travis/MorfeoRenai/biointerface.svg
|
|
33
|
-
:target: https://travis-ci.com/MorfeoRenai/biointerface
|
|
34
|
-
|
|
35
32
|
.. image:: https://readthedocs.org/projects/biointerface/badge/?version=latest
|
|
36
33
|
:target: https://biointerface.readthedocs.io/en/latest/?version=latest
|
|
37
34
|
:alt: Documentation Status
|
|
38
35
|
|
|
36
|
+
.. image:: https://gitlab.com/MorfeoRenai/biointerface/badges/main/coverage.svg
|
|
37
|
+
:target: https://gitlab.com/MorfeoRenai/biointerface/-/commits/main
|
|
38
|
+
:alt: Coverage Status
|
|
39
39
|
|
|
40
40
|
.. image:: https://pyup.io/repos/github/MorfeoRenai/biointerface/shield.svg
|
|
41
41
|
:target: https://pyup.io/repos/github/MorfeoRenai/biointerface/
|
|
42
42
|
:alt: Updates
|
|
43
43
|
|
|
44
44
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
45
|
+
BioInterface is a `Biopython <https://biopython.org/>`_ based package that extracts Protein-DNA
|
|
46
|
+
interfaces in a PDB structures.
|
|
48
47
|
|
|
49
48
|
* Free software: MIT license
|
|
50
49
|
* Documentation: https://biointerface.readthedocs.io.
|
|
51
50
|
|
|
52
51
|
|
|
53
|
-
|
|
52
|
+
Get Started
|
|
53
|
+
-----------
|
|
54
|
+
|
|
55
|
+
This is a little tutorial on how to use the BioInterface package.
|
|
56
|
+
|
|
57
|
+
The official release is found in the Python Package Index (PyPI)
|
|
58
|
+
|
|
59
|
+
.. code-block:: console
|
|
60
|
+
|
|
61
|
+
$ pip install biointerface
|
|
62
|
+
|
|
63
|
+
You can extract a single Protein-DNA interface from a single protein chain.
|
|
64
|
+
|
|
65
|
+
.. code-block:: python
|
|
66
|
+
|
|
67
|
+
from Bio.PDB.MMCIFParser import MMCIFParser
|
|
68
|
+
from biointerface import Interface, build_interfaces
|
|
69
|
+
|
|
70
|
+
# parse and build structure with Biopython
|
|
71
|
+
parser = MMCIFParser()
|
|
72
|
+
structure = parser.get_structure(
|
|
73
|
+
structure_id="1A02", filename="1a02-assembly1.cif"
|
|
74
|
+
)
|
|
75
|
+
|
|
76
|
+
# extract interface from a specific protein chain
|
|
77
|
+
face = Interface(
|
|
78
|
+
structure=structure,
|
|
79
|
+
protein_chain_id="F",
|
|
80
|
+
search_radius=5.0
|
|
81
|
+
)
|
|
82
|
+
face
|
|
83
|
+
|
|
84
|
+
.. code-block:: console
|
|
85
|
+
|
|
86
|
+
<Interface chains=F:BA contacts=258 search_radius=5.0>
|
|
87
|
+
|
|
88
|
+
Check the official documentation for more information.
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
Feaures
|
|
92
|
+
-------
|
|
93
|
+
|
|
94
|
+
* Extract one specific Protein-DNA interface in a PDB structure, given a protein chain id;
|
|
95
|
+
|
|
96
|
+
* Extract all Protein-DNA interfaces in a PDB structure;
|
|
97
|
+
|
|
98
|
+
* Get all interacting residues in a interface;
|
|
99
|
+
|
|
100
|
+
* Get all interacting atoms in a interface;
|
|
101
|
+
|
|
102
|
+
* Interface data as ``pandas`` DataFrame;
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
TODO
|
|
54
106
|
--------
|
|
55
107
|
|
|
56
|
-
*
|
|
108
|
+
* Extract continous bound DNA sequence
|
|
109
|
+
|
|
110
|
+
* Proper tests (WIP)
|
|
111
|
+
|
|
57
112
|
|
|
58
113
|
Credits
|
|
59
114
|
-------
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
============
|
|
2
|
+
BioInterface
|
|
3
|
+
============
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
.. image:: https://img.shields.io/pypi/v/biointerface.svg
|
|
7
|
+
:target: https://pypi.python.org/pypi/biointerface
|
|
8
|
+
|
|
9
|
+
.. image:: https://readthedocs.org/projects/biointerface/badge/?version=latest
|
|
10
|
+
:target: https://biointerface.readthedocs.io/en/latest/?version=latest
|
|
11
|
+
:alt: Documentation Status
|
|
12
|
+
|
|
13
|
+
.. image:: https://gitlab.com/MorfeoRenai/biointerface/badges/main/coverage.svg
|
|
14
|
+
:target: https://gitlab.com/MorfeoRenai/biointerface/-/commits/main
|
|
15
|
+
:alt: Coverage Status
|
|
16
|
+
|
|
17
|
+
.. image:: https://pyup.io/repos/github/MorfeoRenai/biointerface/shield.svg
|
|
18
|
+
:target: https://pyup.io/repos/github/MorfeoRenai/biointerface/
|
|
19
|
+
:alt: Updates
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
BioInterface is a `Biopython <https://biopython.org/>`_ based package that extracts Protein-DNA
|
|
23
|
+
interfaces in a PDB structures.
|
|
24
|
+
|
|
25
|
+
* Free software: MIT license
|
|
26
|
+
* Documentation: https://biointerface.readthedocs.io.
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
Get Started
|
|
30
|
+
-----------
|
|
31
|
+
|
|
32
|
+
This is a little tutorial on how to use the BioInterface package.
|
|
33
|
+
|
|
34
|
+
The official release is found in the Python Package Index (PyPI)
|
|
35
|
+
|
|
36
|
+
.. code-block:: console
|
|
37
|
+
|
|
38
|
+
$ pip install biointerface
|
|
39
|
+
|
|
40
|
+
You can extract a single Protein-DNA interface from a single protein chain.
|
|
41
|
+
|
|
42
|
+
.. code-block:: python
|
|
43
|
+
|
|
44
|
+
from Bio.PDB.MMCIFParser import MMCIFParser
|
|
45
|
+
from biointerface import Interface, build_interfaces
|
|
46
|
+
|
|
47
|
+
# parse and build structure with Biopython
|
|
48
|
+
parser = MMCIFParser()
|
|
49
|
+
structure = parser.get_structure(
|
|
50
|
+
structure_id="1A02", filename="1a02-assembly1.cif"
|
|
51
|
+
)
|
|
52
|
+
|
|
53
|
+
# extract interface from a specific protein chain
|
|
54
|
+
face = Interface(
|
|
55
|
+
structure=structure,
|
|
56
|
+
protein_chain_id="F",
|
|
57
|
+
search_radius=5.0
|
|
58
|
+
)
|
|
59
|
+
face
|
|
60
|
+
|
|
61
|
+
.. code-block:: console
|
|
62
|
+
|
|
63
|
+
<Interface chains=F:BA contacts=258 search_radius=5.0>
|
|
64
|
+
|
|
65
|
+
Check the official documentation for more information.
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
Feaures
|
|
69
|
+
-------
|
|
70
|
+
|
|
71
|
+
* Extract one specific Protein-DNA interface in a PDB structure, given a protein chain id;
|
|
72
|
+
|
|
73
|
+
* Extract all Protein-DNA interfaces in a PDB structure;
|
|
74
|
+
|
|
75
|
+
* Get all interacting residues in a interface;
|
|
76
|
+
|
|
77
|
+
* Get all interacting atoms in a interface;
|
|
78
|
+
|
|
79
|
+
* Interface data as ``pandas`` DataFrame;
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
TODO
|
|
83
|
+
--------
|
|
84
|
+
|
|
85
|
+
* Extract continous bound DNA sequence
|
|
86
|
+
|
|
87
|
+
* Proper tests (WIP)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
Credits
|
|
91
|
+
-------
|
|
92
|
+
|
|
93
|
+
This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
|
|
94
|
+
|
|
95
|
+
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
|
|
96
|
+
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
biointerface package
|
|
2
|
+
====================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
biointerface.core module
|
|
8
|
+
------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: biointerface.core
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: biointerface
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
#
|
|
20
20
|
import os
|
|
21
21
|
import sys
|
|
22
|
-
|
|
22
|
+
|
|
23
|
+
sys.path.insert(0, os.path.abspath(".."))
|
|
23
24
|
|
|
24
25
|
import biointerface
|
|
25
26
|
|
|
@@ -31,22 +32,22 @@ import biointerface
|
|
|
31
32
|
|
|
32
33
|
# Add any Sphinx extension module names here, as strings. They can be
|
|
33
34
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
|
34
|
-
extensions = [
|
|
35
|
+
extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode"]
|
|
35
36
|
|
|
36
37
|
# Add any paths that contain templates here, relative to this directory.
|
|
37
|
-
templates_path = [
|
|
38
|
+
templates_path = ["_templates"]
|
|
38
39
|
|
|
39
40
|
# The suffix(es) of source filenames.
|
|
40
41
|
# You can specify multiple suffix as a list of string:
|
|
41
42
|
#
|
|
42
43
|
# source_suffix = ['.rst', '.md']
|
|
43
|
-
source_suffix =
|
|
44
|
+
source_suffix = ".rst"
|
|
44
45
|
|
|
45
46
|
# The master toctree document.
|
|
46
|
-
master_doc =
|
|
47
|
+
master_doc = "index"
|
|
47
48
|
|
|
48
49
|
# General information about the project.
|
|
49
|
-
project =
|
|
50
|
+
project = "BioInterface"
|
|
50
51
|
copyright = "2025, Alessandro Pandolfi"
|
|
51
52
|
author = "Alessandro Pandolfi"
|
|
52
53
|
|
|
@@ -69,10 +70,10 @@ language = None
|
|
|
69
70
|
# List of patterns, relative to source directory, that match files and
|
|
70
71
|
# directories to ignore when looking for source files.
|
|
71
72
|
# This patterns also effect to html_static_path and html_extra_path
|
|
72
|
-
exclude_patterns = [
|
|
73
|
+
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
|
73
74
|
|
|
74
75
|
# The name of the Pygments (syntax highlighting) style to use.
|
|
75
|
-
pygments_style =
|
|
76
|
+
pygments_style = "sphinx"
|
|
76
77
|
|
|
77
78
|
# If true, `todo` and `todoList` produce output, else they produce nothing.
|
|
78
79
|
todo_include_todos = False
|
|
@@ -83,7 +84,7 @@ todo_include_todos = False
|
|
|
83
84
|
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
84
85
|
# a list of builtin themes.
|
|
85
86
|
#
|
|
86
|
-
html_theme =
|
|
87
|
+
html_theme = "alabaster"
|
|
87
88
|
|
|
88
89
|
# Theme options are theme-specific and customize the look and feel of a
|
|
89
90
|
# theme further. For a list of options available for each theme, see the
|
|
@@ -94,13 +95,13 @@ html_theme = 'alabaster'
|
|
|
94
95
|
# Add any paths that contain custom static files (such as style sheets) here,
|
|
95
96
|
# relative to this directory. They are copied after the builtin static files,
|
|
96
97
|
# so a file named "default.css" will overwrite the builtin "default.css".
|
|
97
|
-
html_static_path = [
|
|
98
|
+
html_static_path = ["_static"]
|
|
98
99
|
|
|
99
100
|
|
|
100
101
|
# -- Options for HTMLHelp output ---------------------------------------
|
|
101
102
|
|
|
102
103
|
# Output file base name for HTML help builder.
|
|
103
|
-
htmlhelp_basename =
|
|
104
|
+
htmlhelp_basename = "biointerfacedoc"
|
|
104
105
|
|
|
105
106
|
|
|
106
107
|
# -- Options for LaTeX output ------------------------------------------
|
|
@@ -109,15 +110,12 @@ latex_elements = {
|
|
|
109
110
|
# The paper size ('letterpaper' or 'a4paper').
|
|
110
111
|
#
|
|
111
112
|
# 'papersize': 'letterpaper',
|
|
112
|
-
|
|
113
113
|
# The font size ('10pt', '11pt' or '12pt').
|
|
114
114
|
#
|
|
115
115
|
# 'pointsize': '10pt',
|
|
116
|
-
|
|
117
116
|
# Additional stuff for the LaTeX preamble.
|
|
118
117
|
#
|
|
119
118
|
# 'preamble': '',
|
|
120
|
-
|
|
121
119
|
# Latex figure (float) alignment
|
|
122
120
|
#
|
|
123
121
|
# 'figure_align': 'htbp',
|
|
@@ -127,9 +125,13 @@ latex_elements = {
|
|
|
127
125
|
# (source start file, target name, title, author, documentclass
|
|
128
126
|
# [howto, manual, or own class]).
|
|
129
127
|
latex_documents = [
|
|
130
|
-
(
|
|
131
|
-
|
|
132
|
-
|
|
128
|
+
(
|
|
129
|
+
master_doc,
|
|
130
|
+
"biointerface.tex",
|
|
131
|
+
"BioInterface Documentation",
|
|
132
|
+
"Alessandro Pandolfi",
|
|
133
|
+
"manual",
|
|
134
|
+
),
|
|
133
135
|
]
|
|
134
136
|
|
|
135
137
|
|
|
@@ -138,9 +140,7 @@ latex_documents = [
|
|
|
138
140
|
# One entry per manual page. List of tuples
|
|
139
141
|
# (source start file, name, description, authors, manual section).
|
|
140
142
|
man_pages = [
|
|
141
|
-
(master_doc,
|
|
142
|
-
'BioInterface Documentation',
|
|
143
|
-
[author], 1)
|
|
143
|
+
(master_doc, "biointerface", "BioInterface Documentation", [author], 1)
|
|
144
144
|
]
|
|
145
145
|
|
|
146
146
|
|
|
@@ -150,13 +150,14 @@ man_pages = [
|
|
|
150
150
|
# (source start file, target name, title, author,
|
|
151
151
|
# dir menu entry, description, category)
|
|
152
152
|
texinfo_documents = [
|
|
153
|
-
(
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
153
|
+
(
|
|
154
|
+
master_doc,
|
|
155
|
+
"biointerface",
|
|
156
|
+
"BioInterface Documentation",
|
|
157
|
+
author,
|
|
158
|
+
"biointerface",
|
|
159
|
+
"BioInterface is a python package capable of extracting Protein-DNA \
|
|
160
|
+
interfaces from BioPython PDB structures.",
|
|
161
|
+
"Miscellaneous",
|
|
162
|
+
),
|
|
159
163
|
]
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
@@ -26,7 +26,7 @@ you through the process.
|
|
|
26
26
|
From sources
|
|
27
27
|
------------
|
|
28
28
|
|
|
29
|
-
The sources for BioInterface can be downloaded from the `
|
|
29
|
+
The sources for BioInterface can be downloaded from the `Gitlab repo`_.
|
|
30
30
|
|
|
31
31
|
You can either clone the public repository:
|
|
32
32
|
|
|
@@ -38,14 +38,14 @@ Or download the `tarball`_:
|
|
|
38
38
|
|
|
39
39
|
.. code-block:: console
|
|
40
40
|
|
|
41
|
-
$ curl -OJL https://
|
|
41
|
+
$ curl -OJL https://gitlab.com/MorfeoRenai/biointerface/tarball/main
|
|
42
42
|
|
|
43
43
|
Once you have a copy of the source, you can install it with:
|
|
44
44
|
|
|
45
45
|
.. code-block:: console
|
|
46
46
|
|
|
47
|
-
$
|
|
47
|
+
$ make install
|
|
48
48
|
|
|
49
49
|
|
|
50
|
-
..
|
|
51
|
-
.. _tarball: https://
|
|
50
|
+
.. _Gitlab repo: https://gitlab.com/MorfeoRenai/biointerface
|
|
51
|
+
.. _tarball: https://gitlab.com/MorfeoRenai/biointerface/tarball/main
|