File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ The main class that provides this functionality is the [AtomCache](http://www.bi
99It is hidden inside the StructureIO class, that we already encountered earlier.
1010
1111<pre >
12- Structure structure = StructureIO.getStructure("4hhb");
12+ Structure structure = StructureIO.getStructure("4hhb");
1313</pre >
1414
1515is the same as
1616
1717<pre >
18- AtomCache cache = new AtomCache();
19- cache.getStructure("4hhb");
18+ AtomCache cache = new AtomCache();
19+ cache.getStructure("4hhb");
2020</pre >
2121
2222
@@ -31,12 +31,12 @@ you can configure the AtomCache by setting the PDB_DIR system property
3131 -DPDB_DIR=/wherever/you/want/
3232</pre >
3333
34- An alternative is to hard-code the path in this way:
34+ An alternative is to hard-code the path in this way (but setting it as a property is better style)
3535
3636<pre >
37- AtomCache cache = new AtomCache();
37+ AtomCache cache = new AtomCache();
3838
39- cache.setPath("/path/to/pdb/files/");
39+ cache.setPath("/path/to/pdb/files/");
4040</pre >
4141
4242## File Parsing Parameters
You can’t perform that action at this time.
0 commit comments