You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: structure/caching.md
+30-1Lines changed: 30 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
Local PDB Installations
2
2
=======================
3
3
4
-
BioJava can automatically download and install most of the data files required. Those downloads
4
+
BioJava can automatically download and install most of the data files that it needs. Those downloads
5
5
will happen only once. Future requests for the data file will re-use the local copy.
6
6
7
7
The main class that provides this functionality is the [AtomCache](http://www.biojava.org/docs/api/org/biojava/bio/structure/align/util/AtomCache.html).
@@ -39,3 +39,32 @@ An alternative is to hard-code the path in this way:
39
39
cache.setPath("/path/to/pdb/files/");
40
40
</pre>
41
41
42
+
## File Parsing Parameters
43
+
44
+
The AtomCache also provides access to configuring various options that are available during the
45
+
parsing of files. The [FileParsingParameters](http://www.biojava.org/docs/api/org/biojava/bio/structure/io/FileParsingParameters.html)
46
+
class is the main place to influence the level of detail and as a consequence the speed with which files can be loaded.
47
+
48
+
This example turns on the use of chemical components when loading a structure. (See also the [next chapter](chemcomp.md))
0 commit comments