HPLC#

class pyopenms.HPLC#

Bases: object

Cython implementation of _HPLC

Original C++ documentation is available here

__init__()#

Overload:

__init__(self) None

Representation of a HPLC experiment

Overload:

__init__(self, in_0: HPLC) None

Methods

__init__

Overload:

getColumn(self)

Returns a reference to the column description

getComment(self)

Returns the comments

getFlux(self)

Returns the flux (in microliter/sec)

getGradient(self)

Returns a mutable reference to the used gradient

getInstrument(self)

Returns a reference to the instument name

getPressure(self)

Returns the pressure (in bar)

getTemperature(self)

Returns the temperature (in degree C)

setColumn(self, column)

Sets the column description

setComment(self, comment)

Sets the comments

setFlux(self, flux)

Sets the flux (in microliter/sec)

setGradient(self, gradient)

Sets the used gradient

setInstrument(self, instrument)

Sets the instument name

setPressure(self, pressure)

Sets the pressure (in bar)

setTemperature(self, temperature)

Sets the temperature (in degree C)

getColumn(self) bytes | str | String#

Returns a reference to the column description

getComment(self) bytes | str | String#

Returns the comments

getFlux(self) int#

Returns the flux (in microliter/sec)

getGradient(self) Gradient#

Returns a mutable reference to the used gradient

getInstrument(self) bytes | str | String#

Returns a reference to the instument name

getPressure(self) int#

Returns the pressure (in bar)

getTemperature(self) int#

Returns the temperature (in degree C)

setColumn(self, column: bytes | str | String) None#

Sets the column description

setComment(self, comment: bytes | str | String) None#

Sets the comments

setFlux(self, flux: int) None#

Sets the flux (in microliter/sec)

setGradient(self, gradient: Gradient) None#

Sets the used gradient

setInstrument(self, instrument: bytes | str | String) None#

Sets the instument name

setPressure(self, pressure: int) None#

Sets the pressure (in bar)

setTemperature(self, temperature: int) None#

Sets the temperature (in degree C)