Class TargetDecoyPoint
java.lang.Object
eu.isas.peptideshaker.scoring.targetdecoy.TargetDecoyPoint
- All Implemented Interfaces:
Serializable
This class represents a target/decoy hit in its simplest form.
- Author:
- Marc Vaudel
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidDecreases the decoy counter.voidDecreases the target counter.voidIncreases the decoy counter.voidIncreases the target counter.
-
Field Details
-
nTarget
public int nTargetThe number of target hits at this point. -
nDecoy
public int nDecoyThe number of decoy hits at this point. -
p
public double pThe posterior error probability associated to this point.
-
-
Constructor Details
-
TargetDecoyPoint
public TargetDecoyPoint()Constructor.
-
-
Method Details
-
increaseTarget
public void increaseTarget()Increases the target counter. -
increaseDecoy
public void increaseDecoy()Increases the decoy counter. -
decreaseTarget
public void decreaseTarget()Decreases the target counter. -
decreaseDecoy
public void decreaseDecoy()Decreases the decoy counter.
-