Skip to content
This repository was archived by the owner on Jan 25, 2023. It is now read-only.

Commit d710175

Browse files
authored
Merge pull request #290 from cyenyxe/develop
Added objects and fields descriptions
2 parents 423a2fe + 6984a26 commit d710175

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

beacon.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ components:
283283
- 'Y'
284284
- 'MT'
285285
Beacon:
286+
description: Metadata describing a beacon instance.
286287
type: object
287288
required:
288289
- id
@@ -350,7 +351,7 @@ components:
350351
additionalInfoKey1: additionalInfoValue1
351352
additionalInfoKey2: [ additionalInfoValue2, additionalInfoValue3]
352353
BeaconAlleleRequest:
353-
description: Allele request as interpreted by the beacon.
354+
description: Allele request made against the beacon. The allele must be mapped against a sequence in a genome, and a range can be optionally specified.
354355
type: object
355356
required:
356357
- referenceName
@@ -446,6 +447,7 @@ components:
446447
- MISS
447448
- NONE
448449
BeaconAlleleResponse:
450+
description: Response to a query for information about an allele, made against the beacon.
449451
type: object
450452
required:
451453
- beaconId
@@ -523,6 +525,7 @@ components:
523525
example:
524526
additionalInfoKey: additionalInfoValue
525527
BeaconDataset:
528+
description: A dataset available in the beacon.
526529
type: object
527530
required:
528531
- id
@@ -585,6 +588,7 @@ components:
585588
dataUseConditions:
586589
$ref: '#/components/schemas/DataUseConditions'
587590
BeaconDatasetAlleleResponse:
591+
description: Response containing information about an allele in a particular dataset.
588592
type: object
589593
required:
590594
- datasetId
@@ -608,17 +612,17 @@ components:
608612
variantCount:
609613
type: integer
610614
format: int64
611-
description: Number of variants matching the allele request in the dataset.
615+
description: Number of times the requested allele has been observed in the dataset.
612616
minimum: 0
613617
callCount:
614618
type: integer
615619
format: int64
616-
description: Number of calls matching the allele request in the dataset.
620+
description: Total number of calls in the dataset. Missing calls are not included.
617621
minimum: 0
618622
sampleCount:
619623
type: integer
620624
format: int64
621-
description: Number of samples matching the allele request in the dataset
625+
description: Number of samples in the dataset where the requested allele is found.
622626
minimum: 0
623627
note:
624628
type: string

0 commit comments

Comments
 (0)