CLI renaming and phrasing (#385)

* Minor naming and phrasing changes from UX review

* category-selection-limit -> max-category-items
* Indicate load may taking a long time
* program -> command (for launch, prepare)
* debug -> verbose
* flask-debug -> debug

* Developer mode for debug

verbose on
open browser off

* move examples from epilogue to prefix
This commit is contained in:
Charlotte Weaver
2018-10-26 15:59:34 -07:00
committed by GitHub
parent 16b0741a6c
commit 6c23a72e5f
4 changed files with 30 additions and 26 deletions
+2 -2
View File
@@ -22,9 +22,9 @@ Sort order for methods
class ScanpyEngine(CXGDriver):
def __init__(self, data, layout_method=None, diffexp_method=None, category_selection_limit=100):
def __init__(self, data, layout_method=None, diffexp_method=None, max_category_items=100):
super().__init__(data, layout_method=layout_method, diffexp_method=diffexp_method,
category_selection_limit=category_selection_limit)
max_category_items=max_category_items)
self._validatate_data_types()
self._add_mandatory_annotations()
self.cell_count = self.data.shape[0]