From 463e561fd2dd097344d7191ab53d1743a98e3e14 Mon Sep 17 00:00:00 2001 From: Bryan Brancotte <bryan.brancotte@pasteur.fr> Date: Thu, 7 Apr 2022 21:56:01 +0200 Subject: [PATCH] Fix parser help for clean-project-data --- jass/__main__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jass/__main__.py b/jass/__main__.py index be37ec20..57971048 100644 --- a/jass/__main__.py +++ b/jass/__main__.py @@ -348,13 +348,14 @@ def get_parser(): parser_clean_pd = subparsers.add_parser( "clean-project-data", - help="compute joint statistics and generate plots for a given set of phenotypes", + help="Remove old projects that haven't been accessed recently", ) parser_clean_pd.add_argument( "--max-days-without-access", type=int, default=30, - help="Every project not access within the provided amount of days will be removed", + help="A project is marked for deletion if the number of days elapsed since " + "the last access is greater than the amount provided.", ) parser_clean_pd.set_defaults(func=w_clean_project_data) -- GitLab