-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee4062c
commit f87c702
Showing
5 changed files
with
108 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
**Computational Definition** | ||
|
||
A quantitative assessment of a unit within a system (e.g. genome, cell, etc.) relative to a baseline quantity. | ||
|
||
**Information Model** | ||
|
||
.. list-table:: | ||
:class: clean-wrap | ||
:header-rows: 1 | ||
:align: left | ||
:widths: auto | ||
|
||
* - Field | ||
- Type | ||
- Limits | ||
- Description | ||
* - type | ||
- string | ||
- 0..1 | ||
- MUST be "NumberChange" | ||
* - change | ||
- integer | `Range <../vrs/vrs.yaml#/$defs/Range>`_ | string | ||
- 0..1 | ||
- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"$id": "https://w3id.org/ga4gh/schema/catvrs/1.x/json/NumberChange", | ||
"title": "NumberChange", | ||
"type": "object", | ||
"maturity": "draft", | ||
"description": "A quantitative assessment of a unit within a system (e.g. genome, cell, etc.) relative to a baseline quantity.", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"const": "NumberChange", | ||
"default": "NumberChange", | ||
"description": "MUST be \"NumberChange\"" | ||
}, | ||
"change": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "/ga4gh/schema/vrs/2.x/json/Range" | ||
}, | ||
{ | ||
"type": "integer" | ||
}, | ||
{ | ||
"copyChange": null, | ||
"type": "string", | ||
"enum": [ | ||
"efo:0030069", | ||
"efo:0020073", | ||
"efo:0030068", | ||
"efo:0030067", | ||
"efo:0030064", | ||
"efo:0030070", | ||
"efo:0030071", | ||
"efo:0030072" | ||
], | ||
"description": "MUST be one of \"efo:0030069\" (complete genomic loss), \"efo:0020073\" (high-level loss), \"efo:0030068\" (low-level loss), \"efo:0030067\" (loss), \"efo:0030064\" (regional base ploidy), \"efo:0030070\" (gain), \"efo:0030071\" (low-level gain), \"efo:0030072\" (high-level gain)." | ||
} | ||
], | ||
"required": [ | ||
"change" | ||
] | ||
} | ||
}, | ||
"required": [], | ||
"additionalProperties": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters