From db48b178b4b55ef4482737d43dae5bff378f49a5 Mon Sep 17 00:00:00 2001 From: tivdnbos Date: Mon, 9 Aug 2021 14:14:44 +0200 Subject: [PATCH] Update main.py --- package/pout2prot/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/pout2prot/main.py b/package/pout2prot/main.py index d9cf34d..7ad458d 100644 --- a/package/pout2prot/main.py +++ b/package/pout2prot/main.py @@ -7,7 +7,7 @@ # handling of command line (or config file) arguments def parse_args(): parser = argparse.ArgumentParser(description=__doc__) - parser.add_argument("input", help="A single pout file, or folder containing all input pout files that should be processed.") + parser.add_argument("input", help="A single pout file, folder containing all input pout files, or folder with sub folders (sample categories) containing pout files.") parser.add_argument("groups_output_file", help="File to which the found protein groups should be written to.") parser.add_argument("subgroups_output_file", help="File to which the found protein subgroups should be written to.") parser.add_argument("--occam", action="store_true", help="Use Occam's razor during the computation of the grouping process.", default=False)