Skip to content

Commit

Permalink
increased length of genome standardization, updated bbuploader cli
Browse files Browse the repository at this point in the history
  • Loading branch information
khoroshevskyi committed Nov 19, 2024
1 parent f674080 commit 6f69bdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bedboss/bbuploader/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def upload_all(
False, help="Overwrite existing bedfiles. [Default: False]"
),
overwrite_bedset: bool = typer.Option(
False, help="Overwrite existing bedset. [Default: False]"
True, help="Overwrite existing bedset. [Default: False]"
),
rerun: bool = typer.Option(False, help="Re-run all the samples. [Default: False]"),
run_skipped: bool = typer.Option(
Expand Down
2 changes: 1 addition & 1 deletion bedboss/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def standardize_genome_name(input_genome: str, bedfile: str = None) -> str:
:param bedfile: path to bed file
:return: genome name string
"""
if not input_genome or len(input_genome) > 8:
if not input_genome or len(input_genome) > 10:
if bedfile:
predictor = ReferenceValidator()
return predictor.predict(bedfile) or ""
Expand Down

0 comments on commit 6f69bdf

Please sign in to comment.