Class MmtfSummaryDataBean
java.lang.Object
org.biojava.nbio.structure.io.mmtf.MmtfSummaryDataBean
Class to store the summary data for a given structure.
- Author:
- Anthony Bradley
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
void
setAllAtoms
(List<Atom> allAtoms) void
setAllChains
(List<Chain> allChains) void
setChainIdToIndexMap
(Map<String, Integer> chainIdToIndexMap) void
setNumBonds
(int numBonds)
-
Constructor Details
-
MmtfSummaryDataBean
public MmtfSummaryDataBean()
-
-
Method Details
-
getAllChains
- Returns:
- the list of chains (in all models) in the structure
-
setAllChains
- Parameters:
allChains
- the list of chains (in all models) in the structure
-
getAllAtoms
- Returns:
- the list of atoms (in all models) in the structure
-
setAllAtoms
- Parameters:
allAtoms
- the list of atoms (in all models) in the structure
-
getNumBonds
- Returns:
- the number of covalent bonds in the structure
-
setNumBonds
- Parameters:
numBonds
- the number of covalent bonds in the structure
-
getChainIdToIndexMap
- Returns:
- the map of chain ids (strings asymId) to the index of that chain in the allChains list. This only applies for the first model in the structure.
-
setChainIdToIndexMap
- Parameters:
chainIdToIndexMap
- the map of chain ids (strings asymId) to the index of that chain in the allChains list. This only applies for the first model in the structure.
-