@sjcrh/proteinpaint-types 2.145.0 → 2.145.1-1
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/package.json +1 -1
- package/src/dataset.ts +2 -2
package/package.json
CHANGED
package/src/dataset.ts
CHANGED
|
@@ -703,6 +703,8 @@ type RnaseqGeneCount = {
|
|
|
703
703
|
samplesFile?: string
|
|
704
704
|
/** Storage_type for storing data (HDF5) */
|
|
705
705
|
storage_type: 'HDF5'
|
|
706
|
+
/** temporary h5 file format flag */
|
|
707
|
+
newformat?: boolean
|
|
706
708
|
}
|
|
707
709
|
|
|
708
710
|
/** the metabolite query */
|
|
@@ -742,8 +744,6 @@ export type GeneExpressionQueryNative = {
|
|
|
742
744
|
geneExpression2bins?: { [index: string]: any }
|
|
743
745
|
/** gene expression unit (e.g. 'FPKM') */
|
|
744
746
|
unit?: string
|
|
745
|
-
/** temporary h5 file format flag */
|
|
746
|
-
newformat?: boolean
|
|
747
747
|
}
|
|
748
748
|
|
|
749
749
|
export type GeneExpressionQuery = GeneExpressionQueryGdc | GeneExpressionQueryNative
|