@sjcrh/proteinpaint-types 2.119.0-0 → 2.121.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.
- package/dist/brainImaging.js +1 -1
- package/dist/{chunk-T2CSA2MC.js → chunk-3ZT4UCFM.js} +366 -512
- package/dist/{chunk-4V46EBDF.js → chunk-5XRJ5ATE.js} +916 -1264
- package/dist/{chunk-BM3JLR6T.js → chunk-AGSW7G4T.js} +905 -1253
- package/dist/{chunk-J6SJ4M3S.js → chunk-F64WJMRL.js} +1094 -1306
- package/dist/{chunk-YURGGHZI.js → chunk-K7P6C6KU.js} +731 -1079
- package/dist/{chunk-GI4NNB34.js → chunk-LBGUOJR3.js} +366 -512
- package/dist/{chunk-OL4OMJSP.js → chunk-NCFUZ5VV.js} +903 -1139
- package/dist/{chunk-GD3KAF6V.js → chunk-QMWUUGEK.js} +457 -603
- package/dist/{chunk-DL4UYYVE.js → chunk-RX5EB2HL.js} +366 -512
- package/dist/{chunk-ROPNHRVV.js → chunk-SQBZAOWB.js} +366 -512
- package/dist/{chunk-7NNYHDAK.js → chunk-XPOHYEAY.js} +917 -1265
- package/dist/{chunk-UVOO2LBD.js → chunk-ZMOSABYP.js} +916 -1264
- package/dist/correlationVolcano.js +1 -1
- package/dist/index.js +12 -12
- package/dist/termdb.boxplot.js +1 -1
- package/dist/termdb.categories.js +1 -1
- package/dist/termdb.cluster.js +1 -1
- package/dist/termdb.descrstats.js +1 -1
- package/dist/termdb.numericcategories.js +1 -1
- package/dist/termdb.percentile.js +1 -1
- package/dist/termdb.termsbyids.js +1 -1
- package/dist/termdb.topTermsByType.js +1 -1
- package/dist/termdb.topVariablyExpressedGenes.js +1 -1
- package/dist/termdb.violin.js +1 -1
- package/package.json +1 -1
- package/src/filter.ts +12 -67
- package/src/genome.ts +1 -1
- package/src/routes/hicgenome.ts +1 -1
- package/src/routes/isoformlst.ts +1 -1
- package/src/routes/termdb.cohorts.ts +1 -1
- package/src/routes/termdb.singlecellData.ts +1 -1
- package/src/terms/categorical.ts +3 -3
- package/src/terms/condition.ts +2 -2
- package/src/terms/geneExpression.ts +3 -3
- package/src/terms/geneVariant.ts +58 -19
- package/src/terms/metaboliteIntensity.ts +4 -4
- package/src/terms/q.ts +1 -1
- package/src/terms/samplelst.ts +3 -3
- package/src/terms/singleCellCellType.ts +2 -2
- package/src/terms/singleCellGeneExpression.ts +4 -5
- package/src/terms/snp.ts +3 -3
- package/src/terms/snps.ts +4 -4
- package/src/terms/term.ts +14 -8
- package/src/terms/tw.ts +7 -8
- package/src/terms/updated-types.ts +5 -4
- package/src/termsetting.ts +4 -4
- package/src/test/numeric.type.spec.ts +2 -2
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
// temporary code file to hold updated type definitions
|
|
2
2
|
// as part of the tw router/handler refactor
|
|
3
3
|
|
|
4
|
-
import { CatTWTypes, CategoricalQ } from './categorical.ts'
|
|
5
|
-
import { NumTWTypes, NumericQ } from './numeric.ts'
|
|
4
|
+
import type { CatTWTypes, CategoricalQ } from './categorical.ts'
|
|
5
|
+
import type { NumTWTypes, NumericQ } from './numeric.ts'
|
|
6
|
+
import type { GvTW, GvQ } from './geneVariant.ts'
|
|
6
7
|
|
|
7
|
-
export type TermWrapper = CatTWTypes | NumTWTypes
|
|
8
|
+
export type TermWrapper = CatTWTypes | NumTWTypes | GvTW
|
|
8
9
|
|
|
9
|
-
export type Q = CategoricalQ | NumericQ // | other q
|
|
10
|
+
export type Q = CategoricalQ | NumericQ | GvQ // | other q
|
package/src/termsetting.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// TODO: will deprecate this code, should use client/termsetting/types.ts instead
|
|
2
|
-
import { VocabApi } from './vocab.ts'
|
|
3
|
-
import { TermWrapper, Q } from './terms/tw.ts'
|
|
4
|
-
import { Term } from './terms/term.ts'
|
|
5
|
-
import { Filter } from './filter.ts'
|
|
2
|
+
import type { VocabApi } from './vocab.ts'
|
|
3
|
+
import type { TermWrapper, Q } from './terms/tw.ts'
|
|
4
|
+
import type { Term } from './terms/term.ts'
|
|
5
|
+
import type { Filter } from './filter.ts'
|
|
6
6
|
|
|
7
7
|
/*
|
|
8
8
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { StartUnboundedBin, StopUnboundedBin, FullyBoundedBin, NumericTerm } from '../terms/numeric'
|
|
1
|
+
import type { StartUnboundedBin, StopUnboundedBin, FullyBoundedBin, NumericTerm } from '../terms/numeric'
|
|
2
2
|
|
|
3
3
|
/*
|
|
4
|
-
Non-asserted type definition tests
|
|
4
|
+
Non-asserted type definition tests: NOT FOR CI, for training only
|
|
5
5
|
|
|
6
6
|
For training only
|
|
7
7
|
- these tests are not meant to be written for all declared types
|