Package | Description |
---|---|
org.biojava.nbio.structure.io |
Input and Output of Structures
|
Modifier and Type | Class and Description |
---|---|
class |
BcifFileReader
Parse binary Cif files and provide capabilities to store them locally.
|
class |
CifFileReader
Parse text Cif files and provide capabilities to store them locally.
|
class |
MMCIFFileReader
How to parse an mmCif file:
public static void main(String[] args) throws Exception {
String filename = "/path/to/something.cif.gz" ;
StructureIOFile reader = new MMCIFFileReader();
Structure struc = reader.getStructure(filename);
System.out.println(struc);
}
|
class |
MMTFFileReader
A class to read MMTF files and cache them locally.
|
class |
PDBFileReader
The wrapper class for parsing a PDB file.
|
Copyright © 2000–2019 BioJava. All rights reserved.