@weng-lab/genomebrowser-ui 0.3.2 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/TrackSelect/{CustomTracks → Custom}/TfPeaks.d.ts +2 -0
- package/dist/genomebrowser-ui.es.js +764 -914
- package/dist/genomebrowser-ui.es.js.map +1 -1
- package/dist/lib.d.ts +0 -1
- package/package.json +3 -2
- package/src/TrackSelect/Custom/TF-ChIP-Canonical-Motifs-w-Trimmed.json +42207 -0
- package/src/TrackSelect/{CustomTracks → Custom}/TfPeaks.tsx +133 -3
- package/src/lib.ts +0 -2
- package/test/main.tsx +1 -1
|
@@ -2,12 +2,14 @@ import { CustomTrackConfig, Rect } from '@weng-lab/genomebrowser';
|
|
|
2
2
|
type OverlayInteractionRect = Rect & {
|
|
3
3
|
source: "base" | "overlay";
|
|
4
4
|
matchedName?: string;
|
|
5
|
+
pwm?: number[][];
|
|
5
6
|
};
|
|
6
7
|
type OverlayBigBedConfig = CustomTrackConfig<OverlayInteractionRect> & {
|
|
7
8
|
primaryUrl: string;
|
|
8
9
|
overlayUrl: string;
|
|
9
10
|
baseColor?: string;
|
|
10
11
|
overlayColor?: string;
|
|
12
|
+
filter?: string[];
|
|
11
13
|
};
|
|
12
14
|
export declare const PEAKS_BIGBED_URL = "https://users.wenglab.org/gaomingshi/no_trim.TF_name.rPeaks.bb";
|
|
13
15
|
export declare const DECORATOR_BIGBED_URL = "https://users.wenglab.org/gaomingshi/no_trim.TF_name.decorator.bb";
|