Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VRS references from 1.2 => 1.3 #186

Open
wants to merge 2 commits into
base: fix-vrs-schema-link
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$comment": "version: ga4gh-beacon-variant-v2.0.0",
"$comment": "version: ga4gh-beacon-variant-v2.1.0",
"$defs": {
"CaseLevelVariant": {
"description": "",
Expand Down Expand Up @@ -272,7 +272,7 @@
"type": "string"
},
"location": {
"$ref": "https://w3id.org/ga4gh/schema/vrs/1.2/vrs.json#/definitions/Location"
"$ref": "https://w3id.org/ga4gh/schema/vrs/1.3/vrs.json#/definitions/Location"
},
"referenceBases": {
"description": "Reference bases for this variant (starting from `start`). * Accepted values: IUPAC codes for nucleotides (e.g. `https://www.bioinformatics.org/sms/iupac.html`). * N is a wildcard, that denotes the position of any base, and can be used\n as a standalone base of any type or within a partially known sequence.\n* an *empty value* is used in the case of insertions with the maximally\n trimmed, inserted sequence being indicated in `AlternateBases`.",
Expand Down Expand Up @@ -557,10 +557,10 @@
"variation": {
"oneOf": [
{
"$ref": "https://w3id.org/ga4gh/schema/vrs/1.2/vrs.json#/definitions/MolecularVariation"
"$ref": "https://w3id.org/ga4gh/schema/vrs/1.3/vrs.json#/definitions/MolecularVariation"
},
{
"$ref": "https://w3id.org/ga4gh/schema/vrs/1.2/vrs.json#/definitions/SystemicVariation"
"$ref": "https://w3id.org/ga4gh/schema/vrs/1.3/vrs.json#/definitions/SystemicVariation"
},
{
"$ref": "#/$defs/LegacyVariation"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$schema: https://json-schema.org/draft/2020-12/schema
title: Genomic Variation
$comment: 'version: ga4gh-beacon-variant-v2.0.0'
$comment: 'version: ga4gh-beacon-variant-v2.1.0'
description: >-
Schema for a genomic variant entry.
type: object
Expand All @@ -10,8 +10,8 @@ required:
properties:
variation:
oneOf:
- $ref: https://w3id.org/ga4gh/schema/vrs/1.2/vrs.json#/definitions/MolecularVariation
- $ref: https://w3id.org/ga4gh/schema/vrs/1.2/vrs.json#/definitions/SystemicVariation
- $ref: https://w3id.org/ga4gh/schema/vrs/1.3/vrs.json#/definitions/MolecularVariation
- $ref: https://w3id.org/ga4gh/schema/vrs/1.3/vrs.json#/definitions/SystemicVariation
- $ref: '#/$defs/LegacyVariation'
variantInternalId:
description: >-
Expand Down Expand Up @@ -51,7 +51,7 @@ $defs:
- location
properties:
location:
$ref: https://w3id.org/ga4gh/schema/vrs/1.2/vrs.json#/definitions/Location
$ref: https://w3id.org/ga4gh/schema/vrs/1.3/vrs.json#/definitions/Location
variantType:
description: >-
The `variantType` declares the nature of the variation in relation
Expand Down
Loading