Skip to content

Commit a44d299

Browse files
author
Andreas Prlic
committed
small improvements
1 parent 972904a commit a44d299

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

structure/bioassembly.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Let's load both representations of hemoglobin PDB ID [1HHO](http://www.rcsb.org/
7373
</tr>
7474
</table>
7575

76-
As we can see, the two representations are quite different!
76+
As we can see, the two representations are quite different! When investigating protein interfaces, ligand binding and for many other applications, you always want to work with the biological assemblies!
7777

7878
## Further Reading
7979

structure/firststeps.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ BioJava automatically downloads the PDB file for hemoglobin [4HHB](http://www.r
3030
</tr>
3131
</table>
3232

33-
34-
3533
This demonstrates two things:
3634

3735
+ BioJava can automatically download and install files locally (more on this in Chapter 4)
@@ -43,6 +41,14 @@ If you already have a local PDB installation, you can configure where BioJava sh
4341
-DPDB_DIR=/wherever/you/want/
4442
</pre>
4543

44+
## Memory consumption
45+
46+
Talking about startup properties, it is also good to mention the fact that many PDB entries are large molecules and the default 64k memory allowance for Java applications is not sufficient in many cases. BioJava contains several built-in caches which automatically adjust to the available memory. As such, the more memory you grant your Java applicaiton, the better it can utilize the caches and the better the performance will be. Change the maximum heap space of your Java VM with this startup parameter:
47+
48+
<pre>
49+
-Xmx1G
50+
</pre>
51+
4652
## A Quick 3D View
4753

4854
If you have the *biojava-structure-gui* module installed, you can quickly visualise a [Structure](http://www.biojava.org/docs/api/org/biojava/bio/structure/Structure.html) via this:

0 commit comments

Comments
 (0)