3 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
4 * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
6 * This file is part of Jalview.
8 * Jalview is free software: you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 <head><title>Memory Settings</title></head>
23 <strong>Memory Usage Settings for Jalview</strong>
26 <p>Jalview sometimes runs out of memory. This is because of the way that Java
27 runs on a computer - what is actually run is a program called a virtual machine
28 (the JVM) which executes the java instructions. The JVM has limits on the memory
29 that can be allocated to the java program - and you might need to increase them
30 if you are working with particularly large datasets.<br>
31 If Jalview has not explicitly told you that it has run out of memory, then a
32 common sign is that a function that normally works seems to have no effect when
33 working with a larger set of sequences (this might include open dialog boxes
34 for saving PNG files, or when interpreting the result of a web service calculation).</p>
35 <p><em>Jalview Memory Usage Monitor</em>: If you are concerned about memory, or think that things might be behaving
36 strangely because of a shortage of memory, then you can check this by enabling the
37 memory usage monitor. This is done by selecting the <strong>Tools→Show Memory Usage</strong>
38 option. Once enabled, the memory usage monitor displays the currently
39 available memory, the total memory, and the percentage free at the
40 bottom left hand side of the Jalview Desktop window's background.</p>
41 <p><em>Increasing the memory available to Jalview</em><br>
42 The way you increase the memory settings for the JVM depends on which installation
43 of Jalview you use:</p>
45 <li><em><font size="3">Web Start Version</font></em>
46 <p>JavaWS sets the JVM parameters through special tags in the JNLP file. You'll
47 need to <a href="jalviewjnlp.html">make your own jnlp file</a> and add the following parameter into the
48 <resources> element.
50 <j2se version="1.5+" initial-heap-size="500M" max-heap-size="1000M"/>
52 Save the jnlp file somewhere and then - if you start Jalview through your
53 web browser, point your browser at the file's url, othewise simply run javaws
54 with the file location as its argument. The file's url is something like :<br>
56 file://<full path to file>
58 If jalview doesn't start up, see <a href="#memsetting">below</a>. You'll have
59 to edit the above settings in the JNLP file using a text editor, save it,
60 and try starting Jalview with it once more.
62 <li><em><font size="3">Install Anywhere version</font></em>
63 <p> You need to change the InstallAnywhere configuration settings for the
64 application. These are found in different places depending upon which operating
67 <li><em>Unix/Windows</em>
68 <p> Take a look inside the Jalview program installation directory (this
69 might be in C:\Program Files\Jalview on windows). You should find a
70 file called 'Jalview.lax' in it - make a backup, and then add the following
71 lines to the end of the original file :
73 lax.nl.java.option.java.heap.size.max=1000m
74 lax.nl.java.option.java.heap.size.initial=500m
76 Case and (lack of) spaces are important here! Do not add any spaces after
77 the m in each line, and do not put any spaces before 'lax'.<br>
78 Also there MUST be a carriage return after the final line.
82 <p>The lines you need to change are in the <em>Info.plist</em> file inside
83 the <em>Jalview.app/Contents</em> directory (which is where the installAnywhere
84 installation was made) :
86 <key&ht;VMOptions</key&ht;
88 ! <string>-Xms2M</string>
89 ! <string>-Xmx64M</string>
92 Exchange the above two string tags for :
94 <string>-Xms500M</string>
95 <string>-Xmx1000M</string>
100 <li><font size="3"><em>In all cases</em></font><br>
101 Save the file and try to start Jalview in the normal way. If it doesn't start,
104 <font size="3"><em>Jalview doesn't start... What do the memory settings mean ?<a name="memsetting"></a></em></font>
105 <p> The 1000m value corresponds to the maximum number of megabytes of space that
106 java objects can occupy. The 500m is the initial heap size that java will run
107 in - increasing this can speed up memory allocation if you know you will need
108 500 meg of memory to begin with (ie it should speed up loading large alignments).
110 <p> If, after setting the initial and maximum heap size to some large value, you
111 cannot actually start Jalview, then the max and initial sizes are too big for
112 your machine (there seems to be a physical limit related to physical RAM - email
113 the usual address to enlighten us if you know better!). Our experiments found
114 1000m to be the biggest setting that could be used on a 1GB machine. Just try
115 reducing the sizes until Jalview starts up properly! </p>