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

Update StudyResult.dataItem property #166

Merged
merged 1 commit into from
Jul 9, 2024
Merged
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
18 changes: 11 additions & 7 deletions schema/va-spec/core-im/core-im-source.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -187,14 +187,18 @@ $defs:
description: >-
The specific subject or experimental unit in a Study that data in the StudyResult object is about.
e.g. a particular variant in a population allele frequency dataset like ExAC or gnomAD.
dataItems:
type: array
ordered: false
items:
$ref: "#/$defs/DataItem"
dataItem:
type: object
additionalProperties: false
description: >-
A Data Item that is included in the StudyResult because it pertains to the entity that is the 'focus'.
This data can directly describe this focus, or represent metadata about data in the Result were generated.
An item of data that is included in the StudyResult because it pertains to the 'focus' of the result.
This data can directly describe this 'focus' (e.g. the population frequency of an allele focus), or
represent metadata about how data about the 'focus' were generated (e.g the sequencing method used to
determine this allele frequency).
comment: >-
Note that in profiles of the StudyResult class, 'dataItem' is typically specialized into one or more
datatype-specific properties that are defined to capture a specifc kind of data. e.g. 'focusAlleleCount'
and 'focusAlleleFrequency' in a CohortAlleleFrequencyStudyResult profile.
sourceDataSet:
extends: derivedFrom
items:
Expand Down
Loading