Hierarchy (View Summary)

Constructors

Properties

color_function: any
config: any
disableButtons: boolean
height: number
ignoreTrackMenu: boolean
name: string
order: number
count: number
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

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