about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2026-01-27 18:25:09 +0000
committerArun Isaac2026-01-27 18:25:09 +0000
commitd6f0caec53f0396fccfc40866255d2f8a22003fe (patch)
treef0d6513749e44a6b979175cb113b7477e0e10eb3
parentd3f765d1f9b8aaab1e1544a9643b659163285284 (diff)
downloadpyhegp-d6f0caec53f0396fccfc40866255d2f8a22003fe.tar.gz
pyhegp-d6f0caec53f0396fccfc40866255d2f8a22003fe.tar.lz
pyhegp-d6f0caec53f0396fccfc40866255d2f8a22003fe.zip
Remove key_blocks variable name in click.option.
The key_blocks variable name is optional since the click option has
the same name.
-rw-r--r--pyhegp/pyhegp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyhegp/pyhegp.py b/pyhegp/pyhegp.py
index 2a49cbd..3348095 100644
--- a/pyhegp/pyhegp.py
+++ b/pyhegp/pyhegp.py
@@ -218,7 +218,7 @@ def pool_command(pooled_summary_file, summary_files):
 @click.argument("phenotype-file", type=click.File("r"), required=False)
 @click.option("--summary", "-s", "summary_file", type=click.File("rb"),
               help="Summary statistics file")
-@click.option("--key-blocks", "-b", "key_blocks",
+@click.option("--key-blocks", "-b",
               type=click.INT,
               help=("Number of blocks to use in the block diagonal key matrix"
                     "  [default: ceil(number_of_samples/1500)]"))