Skip to content

Commit 5c52449

Browse files
committed
fix code style issues
1 parent 158c5fd commit 5c52449

14 files changed

+461
-361
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.3232888.svg)](https://doi.org/10.5281/zenodo.3232888)
44
[![Travis](https://secure.travis-ci.org/DeepRank/pdb2sql.svg?branch=master)](https://travis-ci.org/DeepRank/pdb2sql)
55
[![Coverage Status](https://coveralls.io/repos/github/DeepRank/pdb2sql/badge.svg)](https://coveralls.io/github/DeepRank/pdb2sql)
6-
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/7cce335b21cc49d6bb3ff9878d6ac904)](https://www.codacy.com/manual/CunliangGeng/pdb2sql?utm_source=github.com&utm_medium=referral&utm_content=DeepRank/pdb2sql&utm_campaign=Badge_Grade)
6+
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/7cce335b21cc49d6bb3ff9878d6ac904)](https://www.codacy.com/manual/CunliangGeng/pdb2sql?utm_source=github.com&utm_medium=referral&utm_content=DeepRank/pdb2sql&utm_campaign=Badge_Grade)
77
[![Documentation Status](https://readthedocs.org/projects/pdb2sql/badge/?version=latest)](https://pdb2sql.readthedocs.io/en/latest/?badge=latest)
88

9-
109
PDB2SQL is a Python package that allows to use SQL queries to handle PDB files.
1110
This project grew out of the developement of DeepRank.
1211

13-
- Source code: https://github.com/DeepRank/pdb2sql
14-
- Documentation: https://pdb2sql.readthedocs.io
12+
- Source code: <https://github.com/DeepRank/pdb2sql>
13+
- Documentation: <https://pdb2sql.readthedocs.io>
1514

1615
It provides:
17-
- a powerful `pdb2sql` object to manipulate PDB data in SQL database
18-
- strcuture transformation functions (rotations, translations...)
19-
- useful capablities to
20-
- calculate structure interface (contact atoms and residues)
21-
- calculate structure similarity (iRMSD, lRMSD, FNAT, DockQ...)
16+
17+
- a powerful `pdb2sql` object to manipulate PDB data in SQL database
18+
- strcuture transformation functions (rotations, translations...)
19+
- useful capablities to
20+
- calculate structure interface (contact atoms and residues)
21+
- calculate structure similarity (iRMSD, lRMSD, FNAT, DockQ...)

docs/source/backup.py

Lines changed: 0 additions & 22 deletions
This file was deleted.

docs/source/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
# add these directories to sys.path here. If the directory is relative to the
1111
# documentation root, use os.path.abspath to make it absolute, like shown here.
1212
#
13+
import pdb2sql
1314
import os
1415
import sys
1516

@@ -27,7 +28,6 @@
2728
copyright = '2019, Netherlands eScience Center'
2829
author = 'Nicolas Renaud'
2930

30-
import pdb2sql
3131
# The full version, including alpha/beta/rc tags
3232
release = pdb2sql.__version__
3333

@@ -100,14 +100,14 @@
100100
'numpy': ('http://docs.scipy.org/doc/numpy/', None)
101101
}
102102

103-
## autosummary
103+
# autosummary
104104
# Make _autosummary files and include them
105105
autosummary_generate = True
106106
# autosummary_imported_members = True
107107

108108

109-
## ipython
109+
# ipython
110110
ipython_warning_is_error = False
111111
ipython_execlines = [
112112
"import numpy as np",
113-
]
113+
]

0 commit comments

Comments
 (0)