Skip to content

Commit 0e25b2b

Browse files
authored
Merge pull request #71 from cokelaer/main
add missing dependency on bs4
2 parents 8566cdd + 05d1cb4 commit 0e25b2b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ packages = [
4444
sequana_lora = "sequana_pipelines.lora.main:main"
4545

4646
[tool.poetry.group.dev.dependencies]
47+
bs4 = "^4"
4748
ruff = "^0.0.264"
4849
pytest = "^7.0.1"
4950
black = "^23.3.0"

sequana_pipelines/lora/main.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ def convert(self, value, param, ctx):
241241
accordingly to '_[12]'.""",
242242
)
243243
@click.option(
244-
"--reference",
245-
"reference",
244+
"--reference-file",
245+
"reference_file",
246246
default=None,
247247
show_default=False,
248248
type=click.Path(exists=True, file_okay=True),
@@ -270,6 +270,7 @@ def main(**options):
270270
cfg.input_directory = os.path.abspath(options.input_directory)
271271
cfg.input_pattern = options.input_pattern
272272
cfg.input_csv = os.path.abspath(options.input_csv) if options.input_csv else ""
273+
cfg.reference_file = os.path.abspath(options.reference_file) if options.reference_file else ""
273274

274275
# prokka
275276
cfg.prokka.do = True if (options.do_prokka or options.mode == "bacteria") else False

0 commit comments

Comments
 (0)