Skip to content

Commit

Permalink
fixed few cli bugs and requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
khoroshevskyi committed Sep 24, 2024
1 parent 76edbbb commit 0cd9281
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bedboss/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def run_pep(
file_okay=True,
readable=True,
),
create_bedset: bool = typer.Option(False, help="Create a new bedset"),
create_bedset: bool = typer.Option(True, help="Create a new bedset"),
bedset_heavy: bool = typer.Option(
False, help="Run the heavy version of the bedbuncher pipeline"
),
Expand All @@ -160,9 +160,9 @@ def run_pep(
force_overwrite: bool = typer.Option(
False, help="Force overwrite the output files"
),
upload_qdrant: bool = typer.Option(False, help="Upload to Qdrant"),
upload_s3: bool = typer.Option(False, help="Upload to S3"),
upload_pephub: bool = typer.Option(False, help="Upload to PEPHub"),
upload_qdrant: bool = typer.Option(True, help="Upload to Qdrant"),
upload_s3: bool = typer.Option(True, help="Upload to S3"),
upload_pephub: bool = typer.Option(True, help="Upload to PEPHub"),
no_fail: bool = typer.Option(False, help="Do not fail on error"),
license_id: str = typer.Option(DEFAULT_LICENSE, help="License ID"),
standardize_pep: bool = typer.Option(False, help="Standardize the PEP using bedMS"),
Expand Down
1 change: 1 addition & 0 deletions requirements/requirements-all.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
logmuse>=0.2.7
coloredlogs>=15.0.1
eido>=0.2.3
peppy>=0.40.6
yacman>=0.8.4
requests>=2.28.2
Expand Down

0 comments on commit 0cd9281

Please sign in to comment.