sdf-parser
    Preparing search index...

    Interface LabelStatistic

    Statistics for a single SDF field label, as returned in ParseResult.statistics.

    interface LabelStatistic {
        always: boolean;
        counter: number;
        isNumeric: boolean;
        keep: boolean;
        label: string;
        maxValue?: number;
        minValue?: number;
    }
    Index

    Properties

    always: boolean

    Whether every molecule in the result contains this field.

    counter: number

    Number of molecules that contain this field.

    isNumeric: boolean

    Whether all parsed values are numeric.

    keep: boolean

    Whether this field is included in the output (not excluded).

    label: string

    Field label name.

    maxValue?: number

    Maximum numeric value, only set when isNumeric is true.

    minValue?: number

    Minimum numeric value, only set when isNumeric is true.