Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scallops/cli/norm_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def run_pipeline_norm_features(arguments: argparse.Namespace):
else:
mad_scale_factor = float(mad_scale_factor)

robust = not arguments.no_robust
robust = not arguments.robust
dask_server_url = arguments.client
dask_cluster_parameters = (
load_json(arguments.dask_cluster) if arguments.dask_cluster is not None else {}
Expand Down
4 changes: 2 additions & 2 deletions scallops/cli/norm_features_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ def _create_parser(subparsers: argparse.ArgumentParser, default_help: bool) -> N
)

parser.add_argument(
"--no-robust",
help="Do not use robust statistics for normalization.",
"--robust",
help="Use robust statistics for normalization.",
action="store_true",
)
parser.add_argument(
Expand Down