You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Version flag (standard CLI behavior: print and exit)
7193
+
parser.add_argument(
7194
+
"-v",
7195
+
"--version",
7196
+
action="version",
7197
+
version=f"%(prog)s {virasign_version}",
7198
+
help="Show installed Virasign version and exit.",
7199
+
)
7188
7200
7189
7201
parser.add_argument(
7190
7202
"-i", "--input",
@@ -7208,7 +7220,7 @@ def main(args=None):
7208
7220
dest="db_dir",
7209
7221
type=str,
7210
7222
default=None,
7211
-
help="Database storage root: folder that will contain RVDB/, RefSeq/, Custom/ (no extra Databases/ is appended; default without this flag: ./Databases).",
7223
+
help="Base directory for database storage. Virasign will create/use a Databases/ subfolder here (default without this flag: ./Databases). Example: --db-dir /data/project -> stores in /data/project/Databases/.",
7212
7224
)
7213
7225
7214
7226
parser.add_argument(
@@ -7286,7 +7298,7 @@ def main(args=None):
7286
7298
dest="cluster_identity",
7287
7299
help="Identity threshold for RVDB clustering (default: 0.98, i.e., 98%%). Only used if clustering is enabled with --enable-clustering."
0 commit comments