class Bio::PepXML::Peptide

Named ‘Peptide’ but really mean Spectra. Just too hard to change

Attributes

identifier[RW]

Name of the spectra

parent_proteins[RW]

Public Class Methods

new() click to toggle source
# File lib/pep_xml.rb, line 25
def initialize
  @parent_proteins = []
end

Public Instance Methods

redundancy() click to toggle source

TODO: right now this just always returns 1. It should really be working out redundancy properly by comparison of peptide sequences, but this isn’t yet parsed this info

# File lib/pep_xml.rb, line 31
def redundancy
  1
end