[EASY] fix max-category-items (#813)

* fix max-category-items

* match default for max category items

fe had 1000, be had 100
This commit is contained in:
Charlotte Weaver
2019-06-13 15:45:43 -07:00
committed by GitHub
parent 334b8bb8da
commit d5deb1579f
3 changed files with 3 additions and 5 deletions
+2 -2
View File
@@ -62,10 +62,10 @@ BIG_FILE_SIZE_THRESHOLD = 100 * 2**20 # 100MB
@click.option("--host", default="127.0.0.1", help="Host IP address")
@click.option(
"--max-category-items",
default=100,
default=1000,
metavar="",
show_default=True,
help="Limits the number of categorical annotation items displayed.",
help="Categories with more distinct values than this will not be displayed.",
)
@click.option(
"--diffexp-lfc-cutoff",