-
Notifications
You must be signed in to change notification settings - Fork 8
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
20 changed files
with
118 additions
and
712 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
56 changes: 56 additions & 0 deletions
56
bycon/schemas/models/json/bycon-model/common/Interpretation.json
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,56 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"title": "Interpretation", | ||
"description": "This object intends to represent the interpretation of a genomic analysis, such as the report from a diagnostic laboratory. Source: Phenopackets v2 <https://phenopacket-schema.readthedocs.io/en/latest/interpretation.html#interpretation>", | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"description": "Interpretation identifier.", | ||
"type": "string", | ||
"examples": [ | ||
"CONSORTIUM:0000123456" | ||
] | ||
}, | ||
"progressStatus": { | ||
"type": "string", | ||
"enum": [ | ||
"UNKNOWN_PROGRESS", | ||
"IN_PROGRESS", | ||
"COMPLETED", | ||
"SOLVED", | ||
"UNSOLVED" | ||
] | ||
}, | ||
"diagnosis": { | ||
"$ref": "#/$defs/Diagnosis" | ||
}, | ||
"summary": { | ||
"type": "string", | ||
"description": "Additional data about this interpretation, e.g. free text summary." | ||
} | ||
}, | ||
"$defs": { | ||
"Diagnosis": { | ||
"properties": { | ||
"disease": { | ||
"$ref": "ontologyTerm.json" | ||
}, | ||
"genomicInterpretations": { | ||
"type": "array", | ||
"items": { | ||
"description": "TODO: Define class \"GenomicInterpretation\".", | ||
"type": "object" | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"disease" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"progressStatus" | ||
], | ||
"additionalProperties": true | ||
} |
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
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
44 changes: 44 additions & 0 deletions
44
bycon/schemas/models/src/bycon-model/common/Interpretation.yaml
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,44 @@ | ||
$schema: https://json-schema.org/draft/2020-12/schema | ||
title: Interpretation | ||
description: >- | ||
This object intends to represent the interpretation of a genomic analysis, such | ||
as the report from a diagnostic laboratory. | ||
Source: Phenopackets v2 <https://phenopacket-schema.readthedocs.io/en/latest/interpretation.html#interpretation> | ||
type: object | ||
properties: | ||
id: | ||
description: Interpretation identifier. | ||
type: string | ||
examples: | ||
- CONSORTIUM:0000123456 | ||
progressStatus: | ||
type: string | ||
enum: | ||
- UNKNOWN_PROGRESS | ||
- IN_PROGRESS | ||
- COMPLETED | ||
- SOLVED | ||
- UNSOLVED | ||
diagnosis: | ||
$ref: '#/$defs/Diagnosis' | ||
summary: | ||
type: string | ||
description: >- | ||
Additional data about this interpretation, e.g. free text summary. | ||
$defs: | ||
Diagnosis: | ||
properties: | ||
disease: | ||
$ref: ontologyTerm.yaml | ||
genomicInterpretations: | ||
type: array | ||
items: | ||
description: >- | ||
TODO: Define class "GenomicInterpretation". | ||
type: object | ||
required: | ||
- disease | ||
required: | ||
- id | ||
- progressStatus | ||
additionalProperties: true |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.