|
|||||||||
| Home >> All >> org >> biomage >> [ QuantitationType overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.biomage.QuantitationType
Class QuantitationType

java.lang.Objectorg.biomage.Common.Extendable
org.biomage.Common.Describable
org.biomage.Common.Identifiable
org.biomage.QuantitationType.QuantitationType
- All Implemented Interfaces:
- org.biomage.Interface.HasAuditTrail, org.biomage.Interface.HasChannel, org.biomage.Interface.HasConfidenceIndicators, org.biomage.Interface.HasDataType, org.biomage.Interface.HasDescriptions, org.biomage.Interface.HasPropertySets, org.biomage.Interface.HasScale, org.biomage.Interface.HasSecurity, java.io.Serializable
- Direct Known Subclasses:
- SpecializedQuantitationType, StandardQuantitationType
- public abstract class QuantitationType
- extends org.biomage.Common.Identifiable
- implements java.io.Serializable, org.biomage.Interface.HasChannel, org.biomage.Interface.HasDataType, org.biomage.Interface.HasScale, org.biomage.Interface.HasConfidenceIndicators
- extends org.biomage.Common.Identifiable
A method for calculating a single datum of the matrix (e.g. raw intensity, background, error).
| Nested Class Summary |
| Nested classes inherited from class org.biomage.Interface.HasConfidenceIndicators |
org.biomage.Interface.HasConfidenceIndicators.ConfidenceIndicators_list |
| Nested classes inherited from class org.biomage.Interface.HasAuditTrail |
org.biomage.Interface.HasAuditTrail.AuditTrail_list |
| Nested classes inherited from class org.biomage.Interface.HasDescriptions |
org.biomage.Interface.HasDescriptions.Descriptions_list |
| Nested classes inherited from class org.biomage.Interface.HasPropertySets |
org.biomage.Interface.HasPropertySets.PropertySets_list |
| Field Summary | |
private org.biomage.BioAssay.Channel |
channel
The optional channel associated with the QuantitationType. |
private org.biomage.Interface.HasConfidenceIndicators.ConfidenceIndicators_list |
confidenceIndicators
The association between a ConfidenceIndicator and the QuantitationType its is an indicator for. |
private org.biomage.Description.OntologyEntry |
dataType
The specific type for the quantitations. |
(package private) boolean |
isBackground
Indicates whether the quantitation has been measured from the background or from the feature itself. |
private org.biomage.Description.OntologyEntry |
scale
Indication of how to interpret the value. |
| Fields inherited from class org.biomage.Common.Identifiable |
|
| Fields inherited from class org.biomage.Common.Describable |
|
| Fields inherited from class org.biomage.Common.Extendable |
|
| Constructor Summary | |
QuantitationType()
Default constructor. |
|
QuantitationType(org.xml.sax.Attributes atts)
Attribute constructor. |
|
| Method Summary | |
void |
addToConfidenceIndicators(ConfidenceIndicator confidenceIndicator)
Method to add ConfidenceIndicator to ConfidenceIndicators_list |
void |
addToConfidenceIndicators(int position,
ConfidenceIndicator confidenceIndicator)
Method to add ConfidenceIndicator at position to ConfidenceIndicators_list |
org.biomage.BioAssay.Channel |
getChannel()
Get method for channel |
org.biomage.Interface.HasConfidenceIndicators.ConfidenceIndicators_list |
getConfidenceIndicators()
Get method for confidenceIndicators |
org.biomage.Description.OntologyEntry |
getDataType()
Get method for dataType |
ConfidenceIndicator |
getFromConfidenceIndicators(int position)
Method to get ConfidenceIndicator from ConfidenceIndicators_list |
boolean |
getIsBackground()
Get method for isBackground |
org.biomage.Description.OntologyEntry |
getScale()
Get method for scale |
void |
removeElementAtFromConfidenceIndicators(int position)
Method to remove by position from ConfidenceIndicators_list |
void |
removeFromConfidenceIndicators(ConfidenceIndicator confidenceIndicator)
Method to remove first ConfidenceIndicator from ConfidenceIndicators_list |
void |
setChannel(org.biomage.BioAssay.Channel channel)
Set method for channel |
void |
setConfidenceIndicators(org.biomage.Interface.HasConfidenceIndicators.ConfidenceIndicators_list confidenceIndicators)
Set method for confidenceIndicators |
void |
setDataType(org.biomage.Description.OntologyEntry dataType)
Set method for dataType |
void |
setIsBackground(boolean isBackground)
Set method for isBackground |
void |
setScale(org.biomage.Description.OntologyEntry scale)
Set method for scale |
void |
writeAssociations(java.io.Writer out)
writeAssociations |
void |
writeAttributes(java.io.Writer out)
writeAttributes |
void |
writeMAGEML(java.io.Writer out)
writeMAGEML |
| Methods inherited from class org.biomage.Common.Identifiable |
getIdentifier, getName, setIdentifier, setName |
| Methods inherited from class org.biomage.Common.Describable |
addToAuditTrail, addToAuditTrail, addToDescriptions, addToDescriptions, getAuditTrail, getDescriptions, getFromAuditTrail, getFromDescriptions, getSecurity, removeElementAtFromAuditTrail, removeElementAtFromDescriptions, removeFromAuditTrail, removeFromDescriptions, setAuditTrail, setDescriptions, setSecurity |
| Methods inherited from class org.biomage.Common.Extendable |
addToPropertySets, addToPropertySets, getFromPropertySets, getPropertySets, removeElementAtFromPropertySets, removeFromPropertySets, setPropertySets |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
isBackground
boolean isBackground
- Indicates whether the quantitation has been measured from the
background or from the feature itself.
channel
private org.biomage.BioAssay.Channel channel
- The optional channel associated with the QuantitationType.
dataType
private org.biomage.Description.OntologyEntry dataType
- The specific type for the quantitations. From a controlled
vocabulary of {float, int, boolean, etc.}
scale
private org.biomage.Description.OntologyEntry scale
- Indication of how to interpret the value. From a suggested
vocabulary of {LINEAR | LN | LOG2 |LOG10 | FOLD_CHANGE | OTHER}
confidenceIndicators
private org.biomage.Interface.HasConfidenceIndicators.ConfidenceIndicators_list confidenceIndicators
- The association between a ConfidenceIndicator and the
QuantitationType its is an indicator for.
| Constructor Detail |
QuantitationType
public QuantitationType()
- Default constructor.
QuantitationType
public QuantitationType(org.xml.sax.Attributes atts)
- Attribute constructor.
Looks up the attributes in the parameter and casts them from strings
appropriately
| Method Detail |
writeMAGEML
public void writeMAGEML(java.io.Writer out) throws java.io.IOException
- writeMAGEML
This method is responsible for assembling the attribute and association data into XML. It creates the object tag and then calls the writeAttributes and writeAssociation methods.
writeAttributes
public void writeAttributes(java.io.Writer out) throws java.io.IOException
- writeAttributes
This method is responsible for assembling the attribute data into XML. It calls the super method to write out all attributes of this class and it's ancestors.
writeAssociations
public void writeAssociations(java.io.Writer out) throws java.io.IOException
- writeAssociations
This method is responsible for assembling the association data into XML. It calls the super method to write out all associations of this class's ancestors.
setIsBackground
public void setIsBackground(boolean isBackground)
- Set method for isBackground
getIsBackground
public boolean getIsBackground()
- Get method for isBackground
setChannel
public void setChannel(org.biomage.BioAssay.Channel channel)
- Set method for channel
- Specified by:
setChannelin interfaceorg.biomage.Interface.HasChannel
getChannel
public org.biomage.BioAssay.Channel getChannel()
- Get method for channel
- Specified by:
getChannelin interfaceorg.biomage.Interface.HasChannel
setDataType
public void setDataType(org.biomage.Description.OntologyEntry dataType)
- Set method for dataType
- Specified by:
setDataTypein interfaceorg.biomage.Interface.HasDataType
getDataType
public org.biomage.Description.OntologyEntry getDataType()
- Get method for dataType
- Specified by:
getDataTypein interfaceorg.biomage.Interface.HasDataType
setScale
public void setScale(org.biomage.Description.OntologyEntry scale)
- Set method for scale
- Specified by:
setScalein interfaceorg.biomage.Interface.HasScale
getScale
public org.biomage.Description.OntologyEntry getScale()
- Get method for scale
- Specified by:
getScalein interfaceorg.biomage.Interface.HasScale
setConfidenceIndicators
public void setConfidenceIndicators(org.biomage.Interface.HasConfidenceIndicators.ConfidenceIndicators_list confidenceIndicators)
- Set method for confidenceIndicators
- Specified by:
setConfidenceIndicatorsin interfaceorg.biomage.Interface.HasConfidenceIndicators
getConfidenceIndicators
public org.biomage.Interface.HasConfidenceIndicators.ConfidenceIndicators_list getConfidenceIndicators()
- Get method for confidenceIndicators
- Specified by:
getConfidenceIndicatorsin interfaceorg.biomage.Interface.HasConfidenceIndicators
addToConfidenceIndicators
public void addToConfidenceIndicators(ConfidenceIndicator confidenceIndicator)
- Method to add ConfidenceIndicator to ConfidenceIndicators_list
- Specified by:
addToConfidenceIndicatorsin interfaceorg.biomage.Interface.HasConfidenceIndicators
addToConfidenceIndicators
public void addToConfidenceIndicators(int position,
ConfidenceIndicator confidenceIndicator)
- Method to add ConfidenceIndicator at position to
ConfidenceIndicators_list
- Specified by:
addToConfidenceIndicatorsin interfaceorg.biomage.Interface.HasConfidenceIndicators
getFromConfidenceIndicators
public ConfidenceIndicator getFromConfidenceIndicators(int position)
- Method to get ConfidenceIndicator from ConfidenceIndicators_list
- Specified by:
getFromConfidenceIndicatorsin interfaceorg.biomage.Interface.HasConfidenceIndicators
removeElementAtFromConfidenceIndicators
public void removeElementAtFromConfidenceIndicators(int position)
- Method to remove by position from ConfidenceIndicators_list
- Specified by:
removeElementAtFromConfidenceIndicatorsin interfaceorg.biomage.Interface.HasConfidenceIndicators
removeFromConfidenceIndicators
public void removeFromConfidenceIndicators(ConfidenceIndicator confidenceIndicator)
- Method to remove first ConfidenceIndicator from
ConfidenceIndicators_list
- Specified by:
removeFromConfidenceIndicatorsin interfaceorg.biomage.Interface.HasConfidenceIndicators
|
|||||||||
| Home >> All >> org >> biomage >> [ QuantitationType overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC