Skip to content

Commit 9ddf17f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 16a8ed9 commit 9ddf17f

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

docs/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1+
furo
2+
myst-nb
13
# Requirements file for ReadTheDocs, check .readthedocs.yml.
24
# To build the module reference correctly, make sure every external package
35
# under `install_requires` in `setup.cfg` is also listed here!
46
# sphinx_rtd_theme
57
myst-parser[linkify]
68
sphinx>=3.2.1
7-
myst-nb
8-
furo
99
sphinx-autodoc-typehints

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
"""
2-
Setup file for ensembldb.
3-
Use setup.cfg to configure your project.
2+
Setup file for ensembldb.
3+
Use setup.cfg to configure your project.
44
5-
This file was generated with PyScaffold 4.6.
6-
PyScaffold helps you to put up the scaffold of your new Python project.
7-
Learn more under: https://pyscaffold.org/
5+
This file was generated with PyScaffold 4.6.
6+
PyScaffold helps you to put up the scaffold of your new Python project.
7+
Learn more under: https://pyscaffold.org/
88
"""
99

1010
from setuptools import setup

src/ensembldb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717

1818
from .record import EnsDbRecord
1919
from .registry import EnsDbRegistry
20-
from .ensdb import EnsDb
20+
from .ensdb import EnsDb

src/ensembldb/ensdb.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def genes(self, filter: Optional[Dict[str, Union[str, List[str]]]] = None) -> Ge
8383
entrez_col = ", g.entrezid" if has_entrez else ""
8484

8585
query = f"""
86-
SELECT
86+
SELECT
8787
g.gene_id, g.gene_name, g.gene_biotype,
8888
g.seq_name, g.gene_seq_start, g.gene_seq_end, g.seq_strand{entrez_col},
8989
c.seq_length
@@ -130,7 +130,7 @@ def transcripts(self, filter: Optional[Dict[str, Union[str, List[str]]]] = None)
130130
A GenomicRanges object containing transcript coordinates and metadata.
131131
"""
132132
query = """
133-
SELECT
133+
SELECT
134134
t.tx_id, t.tx_biotype, t.gene_id,
135135
t.tx_seq_start, t.tx_seq_end,
136136
g.seq_name, g.seq_strand, g.gene_name,

tests/conftest.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
"""
2-
Dummy conftest.py for ensembldb.
2+
Dummy conftest.py for ensembldb.
33
4-
If you don't know what this is for, just leave it empty.
5-
Read more about conftest.py under:
6-
- https://docs.pytest.org/en/stable/fixture.html
7-
- https://docs.pytest.org/en/stable/writing_plugins.html
4+
If you don't know what this is for, just leave it empty.
5+
Read more about conftest.py under:
6+
- https://docs.pytest.org/en/stable/fixture.html
7+
- https://docs.pytest.org/en/stable/writing_plugins.html
88
"""
99

1010
# import pytest

0 commit comments

Comments
 (0)