@sjcrh/proteinpaint-types 2.98.2-1 → 2.99.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/dataset.ts +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sjcrh/proteinpaint-types",
3
- "version": "2.98.2-1",
3
+ "version": "2.99.0",
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
@@ -567,10 +567,9 @@ export type GeneExpressionQuery = GeneExpressionQueryGdc | GeneExpressionQueryNa
567
567
 
568
568
  export type SingleCellGeneExpressionNative = {
569
569
  src: 'native'
570
- /** path to R rds or HDF5 files, each is a gene-by-cell matrix for a sample, with ".rdx" suffix. missing files are detected and handled */
570
+ /** path to HDF5 files. for now only hdf5 is supported.
571
+ each is a gene-by-cell matrix for a sample, with ".h5" suffix. missing files are detected and handled */
571
572
  folder: string
572
- /** HDF5 or RDS file, will deprecate RDS file later */
573
- storage_type: 'HDF5' | 'RDS'
574
573
  /** dynamically added getter */
575
574
  get?: (q: any) => any
576
575
  /** cached gene exp bins */
@@ -1012,6 +1011,8 @@ type MatrixSettings = {
1012
1011
  * tb.filter?.values[0]?.dt === 4).isOrdered */
1013
1012
  sortByCNV?: boolean
1014
1013
  cnvUnit?: 'log2ratio' | 'segmedian'
1014
+ /** whether to show white cell border for SNVindel in oncoPrint mode */
1015
+ oncoPrintSNVindelCellBorder?: boolean
1015
1016
  }
1016
1017
 
1017
1018
  type NumericDictTermClusterSettings = {