Interface VectorifyOptions

interface VectorifyOptions {
    groupWidth?: number;
    intPower?: number;
    massPower?: number;
    maxNumberPeaks?: number;
    thresholdFactor?: number;
}

Properties

groupWidth?: number

When find a max can't be another max in a radius of this size.

Default

0

intPower?: number

Power applied to the abundance values.

Default

0.6

massPower?: number

Power applied to the mass values.

Default

3

maxNumberPeaks?: number

Maximum number of peaks for each mass spectrum (when it is Number.MAX_VALUE, there's no filter).

Default

Number.MAX_VALUE

thresholdFactor?: number

Every peak that is below the main peak times this factor fill be removed (when it is 0, there's no filter).

Default

0