From 5523fb82ba4bf2a8cede81dba9afcb5d6c42e639 Mon Sep 17 00:00:00 2001 From: timoast <4591688+timoast@users.noreply.github.com> Date: Tue, 1 Oct 2024 13:02:24 +0800 Subject: [PATCH] Update docs --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 12c974b..fc28842 100644 --- a/src/main.rs +++ b/src/main.rs @@ -29,7 +29,8 @@ enum Commands { #[arg(short, long, default_value = "stats")] output_prefix: String, - /// Column to sort the row and column statistics by (e.g., "Sum", "Mean", "Variance") + /// Column to sort the row and column statistics by + /// Can be one of: NonZeroCount, Sum, Mean, Variance, StdDev, Min, Max #[arg(short, long)] sort_by: Option, },