Skip to content

Commit 2f52072

Browse files
Merge pull request #440 from Ensembl/lcampbell/1.3.0_bump
Fix for mkdocs deployment
2 parents 2ceba8f + 335a30f commit 2f52072

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ to install the project.
1313
1. [Install](install.md)
1414
2. [Usage](usage.md)
1515
3. [Code of Conduct](code_of_conduct.md)
16-
4. [Code reference](reference/)
16+
4. [Code reference](reference/ensembl/io/genomio)
1717

1818
## Ehive pipelines
1919

src/python/ensembl/io/genomio/assembly/download.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def establish_ftp(ftp_conn: FTP, ftp_url: str, accession: str) -> FTP:
6666
Args:
6767
ftp_conn: FTP class object.
6868
ftp_url: Specific FTP URL in connection request.
69-
sub_dir_path: Path of sub directory housing required data for download.
69+
accession: Genome accession required data for download.
7070
7171
Raises:
7272
UnsupportedFormatError: If `accession` does not follow INSDC's accession format.

src/python/ensembl/io/genomio/database/factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def format_db_data(server_url: URL, dbs: List[str], brc_mode: bool = False) -> L
3333
"""Returns a metadata list from the given databases on a server.
3434
3535
Args:
36-
server: Server URL where all the databases are hosted.
36+
server_url: Server URL where all the databases are hosted.
3737
dbs: List of database names.
3838
brc_mode: If true, assign ``BRC4.organism_abbrev`` as the species, and ``BRC4.component`` as the
3939
division. Otherwise, the species will be ``species.production_name`` and the division will be
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# See the NOTICE file distributed with this work for additional information
2+
# regarding copyright ownership.
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
"""External DB map module."""
16+
17+
from .db_map import *

0 commit comments

Comments
 (0)