@sjcrh/proteinpaint-types 2.79.7 → 2.80.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/package.json +1 -1
- package/src/dataset.ts +1 -2
- package/src/termsetting.ts +4 -0
package/package.json
CHANGED
package/src/dataset.ts
CHANGED
|
@@ -942,9 +942,8 @@ type Termdb = {
|
|
|
942
942
|
dataDownloadCatch?: DataDownloadCatch
|
|
943
943
|
helpPages?: URLEntry[]
|
|
944
944
|
multipleTestingCorrection?: MultipleTestingCorrection
|
|
945
|
-
/** regression settings for neuro-oncology
|
|
945
|
+
/** regression settings for neuro-oncology datasets:
|
|
946
946
|
- no interaction terms
|
|
947
|
-
- report event counts of cox coefficients
|
|
948
947
|
- hide type III stats and miscellaneous statistical tests */
|
|
949
948
|
neuroOncRegression?: boolean
|
|
950
949
|
urlTemplates?: {
|
package/src/termsetting.ts
CHANGED
|
@@ -43,6 +43,10 @@ export type NoTermPromptOptsEntry = {
|
|
|
43
43
|
text?: string
|
|
44
44
|
html?: string
|
|
45
45
|
q?: Q
|
|
46
|
+
/** whether or not opt is invalid */
|
|
47
|
+
invalid?: boolean
|
|
48
|
+
/** message displayed when opt is invalid */
|
|
49
|
+
invalidMsg?: string
|
|
46
50
|
}
|
|
47
51
|
|
|
48
52
|
type NumericContEditOptsEntry = {
|