Hierarchy (View Summary)

Constructors

Properties

bottom: any
color_function: any
config: any
feature_source: undefined | BWSource
max_y: any
min_y: any
prev_coords: undefined | { x: number; y: number }
top: any
custom_tracks: {}

Methods

  • Parameters

    • genomicLocation: any
    • chr: any
    • yOffset: any
    • bpPerPixel: any

    Returns null

  • Retrieves the features requested, the default is just to get the features from the feature source

    Parameters

    • chr: string

      The chromosome

    • bpStart: integer

      The start of the range from which to obtain features

    • bpEnd: integer

      The end of the range from which to obtain features

    • force: boolean

      If true then cached features should not be used but fresh features retrieved

    • data: Object

      contains bp ber pixel and width of the canvas

    Returns any

  • Parameters

    • panel: any

    Returns (
        | {
            current_value: any;
            func: (x: any) => void;
            label: string;
            max?: undefined;
            min?: undefined;
            type: string;
        }
        | {
            current_value: any;
            func: (x: any) => void;
            label: string;
            max: number;
            min: number;
            type: string;
        }
        | {
            current_value?: undefined;
            func: () => void;
            label: string;
            max?: undefined;
            min?: undefined;
            type: string;
        }
        | { func: (v: any) => void; label: string; type: string; value: any }
    )[]