Class MMCIFFileReader

  • All Implemented Interfaces:
    StructureIOFile, StructureProvider

    public class MMCIFFileReader
    extends LocalPDBDirectory
    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);
    }
    
    Since:
    1.7
    Author:
    Andreas Prlic