org.biojava.nbio.structure.io.StructureProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biojava-structure Show documentation
Show all versions of biojava-structure Show documentation
The protein structure modules of BioJava.
/*
* BioJava development code
*
* This code may be freely distributed and modified under the
* terms of the GNU Lesser General Public Licence. This should
* be distributed with the code. If you do not have a copy,
* see:
*
* http://www.gnu.org/copyleft/lesser.html
*
* Copyright for this code is held jointly by the individual
* authors. These should be listed in @author doc comments.
*
* For more information on the BioJava project and its aims,
* or to join the biojava-l mailing list, visit the home page
* at:
*
* http://www.biojava.org/
*
*/
package org.biojava.nbio.structure.io;
import org.biojava.nbio.structure.PdbId;
import org.biojava.nbio.structure.Structure;
import org.biojava.nbio.structure.StructureException;
import java.io.IOException;
/**
* A class that can provide a protein structure object from somewhere.
*
* @author Andreas Prlic
* @since 3.2
*/
public interface StructureProvider {
/**
* Get the structure for a PDB ID
*
* @param pdbId
* @return
*/
Structure getStructureById(String pdbId) throws StructureException,IOException;
/**
* Get the structure for a PDB ID
*
* @param pdbId
* @return
*/
Structure getStructureById(PdbId pdbId) throws StructureException,IOException;
/**
* Set the parameters that should be used for file parsing
*
* @param params FileParsingParameters
*/
void setFileParsingParameters(FileParsingParameters params);
/**
* Get the parameters that should be used for file parsing
*
* @return the FileParsingParameters that are configuring the behavior of the parser
*/
FileParsingParameters getFileParsingParameters();
}