Hierarchy (View Summary)

Constructors

Properties

catColors: undefined | any[]
catNames: undefined | any[]
catNumbers: {}
color_function: any
config: any
feature_source: BamFeatureReader
numbers: any
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;
        }
    )[]

  • sets the categories with

    Parameters

    • col: any
    • data: Uint8Array

      The array holding the data

    • names: any[]

      a list of names

    • colors: any[]

      an array of colors

    • calculate: boolean = false
    • overideCatNumbers: boolean = false

    Returns void