Hierarchy (View Summary)

Constructors

Properties

bottom: any
color_function: any
config: any
image: any
legend_width: 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: any

      The chromosome

    • bpStart: any

      The start of the range from which to obtain features

    • bpEnd: any

      The end of the range from which to obtain features

    • force: any

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

    • data: any

      contains bp ber pixel and width of the canvas

    Returns Promise<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;
        }
    )[]