-
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
5ff2922
commit ee4062c
Showing
4 changed files
with
178 additions
and
2 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
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** | ||
|
||
The absolute count of a discrete assayable unit (e.g. chromosome, gene, or sequence). | ||
|
||
**Information Model** | ||
|
||
.. list-table:: | ||
:class: clean-wrap | ||
:header-rows: 1 | ||
:align: left | ||
:widths: auto | ||
|
||
* - Field | ||
- Type | ||
- Limits | ||
- Description | ||
* - type | ||
- string | ||
- 0..1 | ||
- MUST be "NumberCount" | ||
* - copies | ||
- integer | `Range <../vrs/vrs.yaml#/$defs/Range>`_ | ||
- 1..1 | ||
- The integral quantity of the subject in a system |
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,36 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"$id": "https://w3id.org/ga4gh/schema/catvrs/1.x/json/NumberCount", | ||
"title": "NumberCount", | ||
"type": "object", | ||
"maturity": "draft", | ||
"ga4ghDigest": { | ||
"keys": [ | ||
"copies" | ||
] | ||
}, | ||
"description": "The absolute count of a discrete assayable unit (e.g. chromosome, gene, or sequence).", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"const": "NumberCount", | ||
"default": "NumberCount", | ||
"description": "MUST be \"NumberCount\"" | ||
}, | ||
"copies": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "/ga4gh/schema/vrs/2.x/json/Range" | ||
}, | ||
{ | ||
"type": "integer" | ||
} | ||
], | ||
"description": "The integral quantity of the subject in a system" | ||
} | ||
}, | ||
"required": [ | ||
"copies" | ||
], | ||
"additionalProperties": false | ||
} |