-
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
Showing
10 changed files
with
137 additions
and
8 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,17 @@ | ||
**Computational Definition** | ||
|
||
A representation of the constraints for matching knowledge about CNVs. | ||
|
||
**Information Model** | ||
|
||
|
||
.. list-table:: | ||
:class: clean-wrap | ||
:header-rows: 1 | ||
:align: left | ||
:widths: auto | ||
|
||
* - Field | ||
- Type | ||
- Limits | ||
- Description |
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,21 @@ | ||
**Computational Definition** | ||
|
||
Cat-VRS Constraints found in CategoricalCnvs. | ||
|
||
**Information Model** | ||
|
||
|
||
.. list-table:: | ||
:class: clean-wrap | ||
:header-rows: 1 | ||
:align: left | ||
:widths: auto | ||
|
||
* - Field | ||
- Type | ||
- Limits | ||
- Description | ||
* - constraints | ||
- _Not Specified_ | ||
- 0..1 | ||
- |
2 changes: 1 addition & 1 deletion
2
schema/cat-vrs/profiles/def/ProteinSequenceConsequenceProperties.rst
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,16 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"$id": "https://w3id.org/ga4gh/schema/cat-vrs/1.x/profiles/json/CategoricalCnv", | ||
"title": "CategoricalCnv", | ||
"type": "object", | ||
"maturity": "draft", | ||
"description": "A representation of the constraints for matching knowledge about CNVs.", | ||
"allOf": [ | ||
{ | ||
"$ref": "/ga4gh/schema/cat-vrs/1.x/profiles/json/CategoricalCnvProperties" | ||
}, | ||
{ | ||
"$ref": "/ga4gh/schema/cat-vrs/1.x/core/json/CategoricalVariant" | ||
} | ||
] | ||
} |
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/cat-vrs/1.x/profiles/json/CategoricalCnvProperties", | ||
"title": "CategoricalCnvProperties", | ||
"type": "object", | ||
"maturity": "draft", | ||
"description": "Cat-VRS Constraints found in CategoricalCnvs.", | ||
"properties": { | ||
"constraints": { | ||
"allOf": [ | ||
{ | ||
"contains": { | ||
"allOf": [ | ||
{ | ||
"$ref": "/ga4gh/schema/cat-vrs/1.x/core/json/DefiningContextConstraint" | ||
}, | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"relations": { | ||
"contains": { | ||
"const": "sequence_liftover" | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"contains": { | ||
"anyOf": [ | ||
{ | ||
"$ref": "/ga4gh/schema/cat-vrs/1.x/core/json/CopyCountConstraint" | ||
}, | ||
{ | ||
"$ref": "/ga4gh/schema/cat-vrs/1.x/core/json/CopyChangeConstraint" | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} | ||
}, | ||
"required": [] | ||
} |
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