From c34fa853a3659a05e67d78b337df99b65ba6070f Mon Sep 17 00:00:00 2001 From: Ben Soares Date: Wed, 17 May 2023 13:19:30 +0100 Subject: [PATCH] JAL-629 Changed some old -arg to --arg in help docs, and some other mailing list->discussion forum changes --- help/help/html/features/annotationsFormat.html | 2 +- help/help/html/features/biojsmsa.html | 2 +- help/help/html/features/featuresFormat.html | 2 +- help/help/html/features/groovy.html | 4 ++-- help/help/html/features/importvcf.html | 2 +- help/help/html/logging.html | 4 ++-- help/help/html/memory.html | 12 ++++++------ 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/help/help/html/features/annotationsFormat.html b/help/help/html/features/annotationsFormat.html index 3517929..71f3046 100755 --- a/help/help/html/features/annotationsFormat.html +++ b/help/help/html/features/annotationsFormat.html @@ -40,7 +40,7 @@ annotations files are imported into Jalview in the following ways:
diff --git a/help/help/html/features/importvcf.html b/help/help/html/features/importvcf.html index 7b699eb..ffc9fa7 100755 --- a/help/help/html/features/importvcf.html +++ b/help/help/html/features/importvcf.html @@ -109,7 +109,7 @@ VCF_ASSEMBLY=assembly19=GRCh37,hs37=GRCh37

These allow Work in Progress!

VCF support in Jalview is under active development. Please get - in touch via our mailing list if you have any questions, problems or + in touch via our discussion forum if you have any questions, problems or otherwise find it useful !

diff --git a/help/help/html/logging.html b/help/help/html/logging.html index 4d7e2e3..a7da021 100644 --- a/help/help/html/logging.html +++ b/help/help/html/logging.html @@ -210,8 +210,8 @@

For other queries or comments about Jalview, remember you can contact the Jalview team using email via the - Jalview - discussion list, on Twitter Jalview + Discussion Forum, on Twitter @Jalview, or for technical discussions, via the Jalview developer's chatroom at https://gitter.im/jalview/developers. diff --git a/help/help/html/memory.html b/help/help/html/memory.html index a326575..17dc557 100755 --- a/help/help/html/memory.html +++ b/help/help/html/memory.html @@ -95,12 +95,12 @@ /PATH_TO_JALVIEW/Jalview /path/to/file/mymemorysetting.jvl /path/to/alignments/myalignment.fa Alternatively, you can use the standard Jalview command line arguments with or without the jvl file (first), e.g.

-       /PATH_TO_JALVIEW/Jalview /path/to/file/mymemorysetting.jvl -open https://www.jalview.org/examples/jpred_msa.fasta -annotations https://www.jalview.org/examples/jpred_msa.seq.concise -colour Clustal
+ /PATH_TO_JALVIEW/Jalview /path/to/file/mymemorysetting.jvl --open https://www.jalview.org/examples/jpred_msa.fasta --annotations https://www.jalview.org/examples/jpred_msa.seq.concise --colour Clustal You can use command line arguments to control memory settings in Windows and macOS too:
In Windows you must use, e.g.
-      \PATH_TO_JALVIEW\Jalview.exe %HOMEPATH%\mymemorysetting.jvl -open %HOMEPATH%\myalignment.fa
+ \PATH_TO_JALVIEW\Jalview.exe %HOMEPATH%\mymemorysetting.jvl --open %HOMEPATH%\myalignment.fa In macOS you can use the macOS open command like this:
-      open /Applications/Jalview.app --args ~/mymemorysetting.jvl -open ~/myalignment.fa
(put + open /Applications/Jalview.app --args ~/mymemorysetting.jvl --open ~/myalignment.fa(put all the Jalview arguments after the --args parameter)

@@ -112,9 +112,9 @@
  • Command line arguments when using the executable jar (jalview-all.jar) or jalview.bin.Launcher
    If you are using the Jalview standalone executable jar (usually named jalview-all-....jar with a Jalview and Java version designation) or using jalview.bin.Launcher to start Jalview, - then you can set the jvmmempc and jvmmemmax values using application command line arguments -jvmmempc=PERCENT - and -jvmmemmax=MAXMEMORY respectively. PERCENT should be an integer between 1 and 100, and MAXMEMORY should be an amount of memory in bytes, or you can append a "k", "m", "g", or "t" to use units of kilobytes, megabytes, gigabytes or terabytes, e.g. -
    java -jar jalview-all-2.11.1.0-j1.8.jar -jvmmempc=50 -jvmmemmax=20g
    + then you can set the jvmmempc and jvmmemmax values using application command line arguments --jvmmempc=PERCENT + and --jvmmemmax=MAXMEMORY respectively. PERCENT should be an integer between 1 and 100, and MAXMEMORY should be an amount of memory in bytes, or you can append a "k", "m", "g", or "t" to use units of kilobytes, megabytes, gigabytes or terabytes, e.g. +
    java -jar jalview-all-2.11.1.0-j1.8.jar --jvmmempc=50 --jvmmemmax=20g
    (this example will launch Jalview with a maximum heap size of the smaller of 20GB or 50% of physical memory detected).
    The default value for jvmmempc is 90, whilst the default value for jvmmemmax is 32g if Jalview can determine a total physical memory size of the host system, and a more cautious 8g if Jalview is unable to determine a total physical memory size.

    -- 1.7.10.2