@weng-lab/genomebrowser-ui 0.4.0-beta.0 → 0.4.0-beta.2

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.
@@ -0,0 +1,5 @@
1
+ import { InferBigBedRow } from '@weng-lab/genomebrowser';
2
+ import { mohdAtacFdrPeaksSchema, mohdAtacPseudorepPeaksSchema } from './bigBedSchemas';
3
+ type MohdBigBedRow = InferBigBedRow<typeof mohdAtacFdrPeaksSchema> | InferBigBedRow<typeof mohdAtacPseudorepPeaksSchema>;
4
+ export declare function MohdBigBedTooltip(rect: MohdBigBedRow): import("react/jsx-runtime").JSX.Element;
5
+ export {};
@@ -0,0 +1,28 @@
1
+ import { MohdFileRowInfo } from './types';
2
+ export declare const mohdAtacFdrPeaksSchema: {
3
+ readonly name: "string";
4
+ readonly score: "number";
5
+ readonly strand: "string";
6
+ readonly signalValue: "number";
7
+ readonly pValue: "number";
8
+ readonly qValue: "number";
9
+ readonly peak: "number";
10
+ };
11
+ export declare const mohdAtacPseudorepPeaksSchema: {
12
+ readonly name: "string";
13
+ readonly score: "number";
14
+ readonly strand: "string";
15
+ readonly signalValue: "number";
16
+ readonly pValue: "number";
17
+ readonly qValue: "number";
18
+ readonly peak: "number";
19
+ };
20
+ export declare function getMohdBigBedSchema(row: MohdFileRowInfo): {
21
+ readonly name: "string";
22
+ readonly score: "number";
23
+ readonly strand: "string";
24
+ readonly signalValue: "number";
25
+ readonly pValue: "number";
26
+ readonly qValue: "number";
27
+ readonly peak: "number";
28
+ } | undefined;
@@ -9,6 +9,7 @@ export type MohdDataRow = {
9
9
  ome: string;
10
10
  site: string;
11
11
  sample_id: string;
12
+ kit_id?: string;
12
13
  file_type: string;
13
14
  filename: string;
14
15
  sex: string;
@@ -19,6 +20,7 @@ type MohdBaseRowInfo = {
19
20
  ome: MohdOme;
20
21
  site: string;
21
22
  sampleId: string;
23
+ kitId?: string;
22
24
  sex: string;
23
25
  status: string;
24
26
  description: string;