FDRControl Module
Types and nested modules
| Type/Module | Description |
Functions and values
| Function or value | Description |
|
|
Full Usage:
calculatePEPValues totalCountF decoyCountF scoreF dataFreq
Parameters:
'a -> float
decoyCountF : 'a -> float
scoreF : 'a -> float
dataFreq : 'a[]
Returns: (float * float) list
|
|
Full Usage:
calculateQValueLogReg fdrEstimate bandwidth data isDecoy decoyScoreF targetScoreF
Parameters:
float
bandwidth : float
data : 'a[]
isDecoy : 'a -> bool
decoyScoreF : 'a -> float
targetScoreF : 'a -> float
Returns: float -> float
|
|
Full Usage:
calculateQValueStorey data isDecoy decoyScoreF targetScoreF
Parameters:
'a[]
isDecoy : 'a -> bool
decoyScoreF : 'a -> float
targetScoreF : 'a -> float
Returns: float -> float
|
|
Full Usage:
createQValueInput score isDecoy
Parameters:
float
isDecoy : bool
Returns: QValueInput
|
|
Full Usage:
createScoreTargetDecoyCount score decoyCount targetCount
Parameters:
float
decoyCount : float
targetCount : float
Returns: ScoreTargetDecoyCount
|
|
Full Usage:
createTargetDecoyHis bandwidth isDecoy decoyScoreF targetScoreF data
Parameters:
float
isDecoy : 'a -> bool
decoyScoreF : 'a -> float
targetScoreF : 'a -> float
data : 'a[]
Returns: (float * int * int * float) array
|
|
Full Usage:
getLogisticRegressionFunction x y epsilon
Parameters:
vector
y : vector
epsilon : float
Returns: float -> float
|
|
Full Usage:
initCalculateLin trace bandwidth isDecoy decoyScoreF targetScoreF data
Parameters:
string -> unit
bandwidth : float
isDecoy : 'a -> bool
decoyScoreF : 'a -> float
targetScoreF : 'a -> float
data : 'a[]
Returns: float -> float
|
Calculates monotonized PEP values for a target/decoy dataset based on the decoy/target ratio. Entries are binned with a given bandwidth as intital estiamtor based on the scores. Returns a function which maps from score to PEP value based on a fit of a linear function using linear regression. The linear regression is performed on the logit transformed pep values. The fit focuses on the pep values centered aound the middle of the score distribution
|
Full Usage:
logitTransformPepValues score pepVal
Parameters:
'a array
pepVal : float array
Returns: 'a array * float array
|
BioFSharp.Mz