Skip to content

Commit

Permalink
updated use fo ensembl_versions
Browse files Browse the repository at this point in the history
  • Loading branch information
iskandr committed Jan 11, 2024
1 parent 08a89c4 commit bc736b6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/pyensembl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ pyensembl.ensembl_release module
:undoc-members:
:show-inheritance:

pyensembl.ensembl_release_versions module
pyensembl.ensembl_versions module
-----------------------------------------

.. automodule:: pyensembl.ensembl_release_versions
.. automodule:: pyensembl.ensembl_versions
:members:
:undoc-members:
:show-inheritance:
Expand Down
2 changes: 1 addition & 1 deletion pyensembl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from .database import Database
from .download_cache import DownloadCache
from .ensembl_release import EnsemblRelease, cached_release
from .ensembl_release_versions import MAX_ENSEMBL_RELEASE
from .ensembl_versions import MAX_ENSEMBL_RELEASE
from .exon import Exon
from .genome import Genome
from .gene import Gene
Expand Down
2 changes: 1 addition & 1 deletion pyensembl/ensembl_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from weakref import WeakValueDictionary

from .genome import Genome
from .ensembl_release_versions import check_release_number, MAX_ENSEMBL_RELEASE
from .ensembl_versions import check_release_number, MAX_ENSEMBL_RELEASE
from .species import check_species_object, human

from .ensembl_url_templates import ENSEMBL_FTP_SERVER, make_gtf_url, make_fasta_url
Expand Down
2 changes: 1 addition & 1 deletion pyensembl/ensembl_url_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"""

from .species import Species, find_species_by_name
from .ensembl_release_versions import check_release_number
from .ensembl_versions import check_release_number

ENSEMBL_FTP_SERVER = "https://ftp.ensembl.org"

Expand Down
2 changes: 1 addition & 1 deletion pyensembl/species.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

from serializable import Serializable

from .ensembl_release_versions import MAX_ENSEMBL_RELEASE
from .ensembl_versions import MAX_ENSEMBL_RELEASE

# TODO: replace Serializable with data class

Expand Down

0 comments on commit bc736b6

Please sign in to comment.