PeptideIdentificationList#

class pyopenms.PeptideIdentificationList#

Bases: object

Cython implementation of _PeptideIdentificationList

Original C++ documentation is available here

A container for peptide identifications from multiple spectra.

__init__()#

Overload:

__init__(self) None

Overload:

__init__(self, in_0: PeptideIdentificationList) None

Methods

__init__

at(self, in_0)

Returns the peptide identification at the given index with bounds checking

back(self)

Returns the last peptide identification in the container

clear(self)

Removes all peptide identifications from the container

empty(self)

Returns true if the container is empty

front(self)

Returns the first peptide identification in the container

push_back(self, in_0)

Adds a peptide identification to the end of the container

size(self)

Returns the number of peptide identifications

at(self, in_0: int) PeptideIdentification#

Returns the peptide identification at the given index with bounds checking

back(self) PeptideIdentification#

Returns the last peptide identification in the container

clear(self) None#

Removes all peptide identifications from the container

empty(self) bool#

Returns true if the container is empty

front(self) PeptideIdentification#

Returns the first peptide identification in the container

push_back(self, in_0: PeptideIdentification) None#

Adds a peptide identification to the end of the container

size(self) int#

Returns the number of peptide identifications