From: Ben Soares Date: Thu, 1 Aug 2019 15:20:19 +0000 (+0100) Subject: JAL-3384 Added -out to showUsage and clarguments help text X-Git-Url: http://source.jalview.org/gitweb/?p=jalview.git;a=commitdiff_plain;h=refs%2Fheads%2Fimprovement%2FJAL-3384_Redirect_stdout_and_stdin_to_files JAL-3384 Added -out to showUsage and clarguments help text --- diff --git a/help/help/html/features/clarguments.html b/help/help/html/features/clarguments.html index 60db069..3674dcc 100644 --- a/help/help/html/features/clarguments.html +++ b/help/help/html/features/clarguments.html @@ -47,6 +47,16 @@
Use the given Jalview properties file instead of users default.
+ + +
-out FILE
+
+ Redirect all output and error messaging to FILE. +
+ If FILE is a relative path, this will be relative to the Jalview app directory. +
+ +
-features FILE/URL
diff --git a/src/jalview/bin/Jalview.java b/src/jalview/bin/Jalview.java index 0fc92f9..61d81c2 100755 --- a/src/jalview/bin/Jalview.java +++ b/src/jalview/bin/Jalview.java @@ -797,6 +797,7 @@ public class Jalview "Usage: jalview -open [FILE] [OUTPUT_FORMAT] [OUTPUT_FILE]\n\n" + "-nodisplay\tRun Jalview without User Interface.\n" + "-props FILE\tUse the given Jalview properties file instead of users default.\n" + + "-out FILE\tRedirect output and error messages to FILE.\n" + "-colour COLOURSCHEME\tThe colourscheme to be applied to the alignment\n" + "-annotations FILE\tAdd precalculated annotations to the alignment.\n" + "-tree FILE\tLoad the given newick format tree file onto the alignment\n"