@weng-lab/genomebrowser-ui 0.3.4 → 0.3.6-beta.0
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/{src/TrackSelect/Custom/TF-ChIP-Canonical-Motifs-w-Trimmed.json → dist/TrackSelect/Custom/TF-ChIP-Canonical-Motifs-w-Trimmed.json.d.ts} +4 -1
- package/dist/TrackSelect/Custom/TfPeaks.d.ts +5 -0
- package/dist/genomebrowser-ui.es.js +2728 -937
- package/dist/genomebrowser-ui.es.js.map +1 -1
- package/dist/lib.d.ts +2 -0
- package/package.json +2 -2
- package/src/TrackSelect/Custom/TfPeaks.tsx +306 -65
- package/src/TrackSelect/Custom/green-motifs.json +20428 -0
- package/src/lib.ts +3 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
{
|
|
1
|
+
declare const _default: {
|
|
2
2
|
"ADNP": {
|
|
3
3
|
"ppm": [
|
|
4
4
|
[0.07484923731819794, 0.21213196168854204, 0.07023767293366442, 0.6427811280595956],
|
|
@@ -42205,3 +42205,6 @@
|
|
|
42205
42205
|
]
|
|
42206
42206
|
}
|
|
42207
42207
|
}
|
|
42208
|
+
;
|
|
42209
|
+
|
|
42210
|
+
export default _default;
|
|
@@ -3,6 +3,11 @@ type OverlayInteractionRect = Rect & {
|
|
|
3
3
|
source: "base" | "overlay";
|
|
4
4
|
matchedName?: string;
|
|
5
5
|
pwm?: number[][];
|
|
6
|
+
tfName?: string;
|
|
7
|
+
expRatio?: string;
|
|
8
|
+
cCREId?: string;
|
|
9
|
+
experimentId?: string;
|
|
10
|
+
expSupport?: Record<string, Record<string, string>>;
|
|
6
11
|
};
|
|
7
12
|
type OverlayBigBedConfig = CustomTrackConfig<OverlayInteractionRect> & {
|
|
8
13
|
primaryUrl: string;
|