@sjcrh/proteinpaint-types 2.118.1-1 → 2.118.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.
- package/package.json +1 -1
- package/src/dataset.ts +4 -6
package/package.json
CHANGED
package/src/dataset.ts
CHANGED
|
@@ -587,11 +587,11 @@ type Probe2Cnv = {
|
|
|
587
587
|
*/
|
|
588
588
|
|
|
589
589
|
type RnaseqGeneCount = {
|
|
590
|
-
/** Name of the HDF5
|
|
590
|
+
/** Name of the HDF5 file */
|
|
591
591
|
file: string
|
|
592
592
|
samplesFile?: string
|
|
593
|
-
/** Storage_type for storing data (HDF5
|
|
594
|
-
storage_type: '
|
|
593
|
+
/** Storage_type for storing data (HDF5) */
|
|
594
|
+
storage_type: 'HDF5'
|
|
595
595
|
}
|
|
596
596
|
|
|
597
597
|
/** the metabolite query */
|
|
@@ -623,8 +623,6 @@ export type GeneExpressionQueryNative = {
|
|
|
623
623
|
samples?: number[]
|
|
624
624
|
/** dynamically added flag during launch */
|
|
625
625
|
nochr?: boolean
|
|
626
|
-
/** if true, the file is in HDF5 format */
|
|
627
|
-
hdf5File?: boolean
|
|
628
626
|
/** dynamically added getter */
|
|
629
627
|
get?: (param: any) => void
|
|
630
628
|
/** This dictionary is used to store/cache the default bins calculated for a geneExpression term when initialized in the fillTermWrapper */
|
|
@@ -635,7 +633,7 @@ export type GeneExpressionQuery = GeneExpressionQueryGdc | GeneExpressionQueryNa
|
|
|
635
633
|
|
|
636
634
|
export type SingleCellGeneExpressionNative = {
|
|
637
635
|
src: 'native'
|
|
638
|
-
/** path to HDF5 files. for now only
|
|
636
|
+
/** path to HDF5 files. for now only HDF5 is supported.
|
|
639
637
|
each is a gene-by-cell matrix for a sample, with ".h5" suffix. missing files are detected and handled */
|
|
640
638
|
folder: string
|
|
641
639
|
/** dynamically added getter */
|