Class ProteinQuantificationDetails
java.lang.Object
eu.isas.reporter.quantificationdetails.ProteinQuantificationDetails
This class contains the quantitative information at the protein level.
- Author:
- Marc Vaudel
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetRatio(String reporterIonName, com.compomics.util.experiment.normalization.NormalizationFactors normalizationFactors) Returns the ratio of a given sample normalized if the given reporter ion quantification has normalization factors.getRawRatio(String reporterIonName) Returns the raw (not normalized) ratio of a given sample.getSharedRatio(String reporterIonName, com.compomics.util.experiment.normalization.NormalizationFactors normalizationFactors) Returns the ratio of a given sample normalized if the given reporter ion quantification has normalization factors.getSharedRawRatio(String reporterIonName) Returns the shared raw (not normalized) ratio of a given sample.getUniqueRatio(String reporterIonName, com.compomics.util.experiment.normalization.NormalizationFactors normalizationFactors) Returns the ratio of a given sample normalized if the given reporter ion quantification has normalization factors.getUniqueRawRatio(String reporterIonName) Returns the unique raw (not normalized) ratio of a given sample.voidsetRawRatio(String reporterIonName, double value) Sets a raw (not normalized) normalized ratio.voidsetSharedRawRatio(String reporterIonName, double value) Sets a shared raw (not normalized) normalized ratio.voidsetUniqueRawRatio(String reporterIonName, double value) Sets a unique raw (not normalized) normalized ratio.
-
Constructor Details
-
ProteinQuantificationDetails
public ProteinQuantificationDetails()
-
-
Method Details
-
getRatio
public Double getRatio(String reporterIonName, com.compomics.util.experiment.normalization.NormalizationFactors normalizationFactors) Returns the ratio of a given sample normalized if the given reporter ion quantification has normalization factors. null if not found.- Parameters:
reporterIonName- the index of sample of interestnormalizationFactors- the normalization factors- Returns:
- the ratio for this sample, null if not set
-
getUniqueRatio
public Double getUniqueRatio(String reporterIonName, com.compomics.util.experiment.normalization.NormalizationFactors normalizationFactors) Returns the ratio of a given sample normalized if the given reporter ion quantification has normalization factors. null if not found.- Parameters:
reporterIonName- the index of sample of interestnormalizationFactors- the normalization factors- Returns:
- the ratio for this sample, null if not set
-
setRawRatio
Sets a raw (not normalized) normalized ratio.- Parameters:
reporterIonName- the index of the samplevalue- the value of the raw (not normalized) ratio
-
getRawRatio
Returns the raw (not normalized) ratio of a given sample. null if not found.- Parameters:
reporterIonName- the index of sample of interest- Returns:
- the raw (not normalized) ratio for this sample, null if not set
-
setUniqueRawRatio
Sets a unique raw (not normalized) normalized ratio.- Parameters:
reporterIonName- the index of the samplevalue- the value of the raw (not normalized) ratio
-
getUniqueRawRatio
Returns the unique raw (not normalized) ratio of a given sample. null if not found.- Parameters:
reporterIonName- the index of sample of interest- Returns:
- the raw (not normalized) ratio for this sample, null if not set
-