Module: Bio::Sequence::QualityScore::Phred

Includes:
Converter
Defined in:
lib/bio/sequence/quality_score.rb

Overview

Bio::Sequence::QualityScore::Phred is a module having quality calculation methods for the PHRED quality score.

BioRuby internal use only (mainly from Bio::Fastq).

Instance Method Summary (collapse)

Methods included from Converter

#convert_nothing, #convert_scores_from_phred_to_solexa, #convert_scores_from_solexa_to_phred

Instance Method Details

- (Object) phred_p2q(probabilities) Also known as: p2q

Probability to PHRED score conversion.

The values may be truncated or incorrect if overflows/underflows occurred during the calculation.


Arguments:

  • (required) probabilities: (Array containing Float) probabilities

Returns

(Array containing Float) scores



119
120
121
122
123
124
125
# File 'lib/bio/sequence/quality_score.rb', line 119

def phred_p2q(probabilities)
  probabilities.collect do |p|
    p = Float::MIN if p < Float::MIN
    q = -10 * Math.log10(p)
    q.finite? ? q.round : q
  end
end

- (Object) phred_q2p(scores) Also known as: q2p

PHRED score to probability conversion.


Arguments:

  • (required) scores: (Array containing Integer) scores

Returns

(Array containing Float) probabilities (0<=p<=1)



96
97
98
99
100
101
102
103
104
105
106
# File 'lib/bio/sequence/quality_score.rb', line 96

def phred_q2p(scores)
  scores.collect do |q|
    r = 10 ** (- q / 10.0)
    if r > 1.0 then
      r = 1.0
    #elsif r < 0.0 then
    #  r = 0.0
    end
    r
  end
end

- (Object) quality_score_type

Type of quality scores.


Returns

(Symbol) the type of quality score.



87
88
89
# File 'lib/bio/sequence/quality_score.rb', line 87

def quality_score_type
  :phred
end