@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/dataset.ts +4 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sjcrh/proteinpaint-types",
3
- "version": "2.118.1-1",
3
+ "version": "2.118.2",
4
4
  "type": "module",
5
5
  "description": "Shared type definitions between ProteinPaint server and client code",
6
6
  "main": "src/index.ts",
package/src/dataset.ts CHANGED
@@ -587,11 +587,11 @@ type Probe2Cnv = {
587
587
  */
588
588
 
589
589
  type RnaseqGeneCount = {
590
- /** Name of the HDF5 or text file */
590
+ /** Name of the HDF5 file */
591
591
  file: string
592
592
  samplesFile?: string
593
- /** Storage_type for storing data (HDF5 or text). Will deprecate text files in the future */
594
- storage_type: 'text' | 'HDF5'
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 hdf5 is supported.
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 */