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

Patch/classbrca #91

Merged
merged 4 commits into from
Mar 12, 2024
Merged
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
64 changes: 52 additions & 12 deletions GF.jsonld
Original file line number Diff line number Diff line change
Expand Up @@ -822,6 +822,17 @@
},
"sms:displayName" : "TseriesEnum",
"sms:required" : "sms:false"
}, {
"@id" : "bts:BRCAClassificationEnum",
"@type" : "rdfs:Class",
"rdfs:comment" : "TBD",
"rdfs:label" : "BRCAClassificationEnum",
"rdfs:subClassOf" : [ ],
"schema:isPartOf" : {
"@id" : "http://schema.biothings.io/"
},
"sms:displayName" : "BRCAClassificationEnum",
"sms:required" : "sms:false"
}, {
"@id" : "bts:DissociationMethodEnum",
"@type" : "rdfs:Class",
Expand Down Expand Up @@ -3398,16 +3409,25 @@
"sms:displayName" : "CellBarcodeLength",
"sms:required" : "sms:false"
}, {
"@id" : "bts:ClassBRCA1",
"@type" : "rdfs:Class",
"rdfs:comment" : "BRCA1 grouping.",
"rdfs:label" : "ClassBRCA1",
"rdfs:subClassOf" : [ ],
"@id" : "bts:ClassBRCA1",
"schema:isPartOf" : {
"@id" : "http://schema.biothings.io/"
},
"sms:displayName" : "ClassBRCA1",
"sms:required" : "sms:false"
"sms:required" : "sms:false",
"schema:rangeIncludes" : [ {
"@id" : "bts:Pathogenic"
}, {
"@id" : "bts:LikelyPathogenic"
}, {
"@id" : "bts:VUS"
}, {
"@id" : "bts:Negative"
} ],
"rdfs:label" : "ClassBRCA1",
"rdfs:comment" : "The BRCA1 classification categorizes genetic test results for the BRCA1 gene into four options, pathogenic (mutation known to increase cancer risk), likely pathogenic (mutation probably increases cancer risk), variant of uncertain significance (VUS, unclear impact on cancer risk), and negative (no harmful mutations detected).",
"@type" : "rdfs:Class",
"sms:displayName" : "ClassBRCA1"
}, {
"@id" : "bts:SectionNumberinSequence",
"@type" : "rdfs:Class",
Expand Down Expand Up @@ -10544,16 +10564,25 @@
"sms:displayName" : "RRIDidentifier",
"sms:required" : "sms:false"
}, {
"@id" : "bts:ClassBRCA2",
"@type" : "rdfs:Class",
"rdfs:comment" : "BRCA2 grouping.",
"rdfs:label" : "ClassBRCA2",
"rdfs:subClassOf" : [ ],
"@id" : "bts:ClassBRCA2",
"schema:isPartOf" : {
"@id" : "http://schema.biothings.io/"
},
"sms:displayName" : "ClassBRCA2",
"sms:required" : "sms:false"
"sms:required" : "sms:false",
"schema:rangeIncludes" : [ {
"@id" : "bts:Pathogenic"
}, {
"@id" : "bts:LikelyPathogenic"
}, {
"@id" : "bts:VUS"
}, {
"@id" : "bts:Negative"
} ],
"rdfs:label" : "ClassBRCA2",
"rdfs:comment" : "The BRCA2 classification refers to the categorization of genetic test results for the BRCA2 gene into four options, pathogenic (mutation known to significantly increase cancer risk), likely pathogenic (mutation likely increases cancer risk), variant of uncertain significance (VUS, unclear impact on cancer risk), and negative (no harmful mutations detected).",
"@type" : "rdfs:Class",
"sms:displayName" : "ClassBRCA2"
}, {
"@id" : "bts:WhitelistCellBarcodeFileLink",
"@type" : "rdfs:Class",
Expand Down Expand Up @@ -13709,6 +13738,17 @@
},
"sms:displayName" : "Hereditary renal oncocytoma",
"sms:required" : "sms:false"
}, {
"@id" : "bts:VUS",
"@type" : "rdfs:Class",
"rdfs:comment" : "TBD",
"rdfs:label" : "VUS",
"rdfs:subClassOf" : [ ],
"schema:isPartOf" : {
"@id" : "http://schema.biothings.io/"
},
"sms:displayName" : "VUS",
"sms:required" : "sms:false"
}, {
"@id" : "bts:Radicalmastectomy",
"@type" : "rdfs:Class",
Expand Down
7 changes: 7 additions & 0 deletions modules/enums/Demographics.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
enums:
BRCAClassificationEnum:
permissible_values:
Pathogenic:
Likely Pathogenic:
VUS:
Negative:

SexEnum:
permissible_values:
Female:
Expand Down
10 changes: 6 additions & 4 deletions modules/slots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -416,15 +416,17 @@ slots:
description: The average number of cigarettes smoked per day.
annotations:
ClassBRCA1:
title: Class BRCA1
title: BRCA1 Classification
required: false
description: BRCA1 grouping.
description: 'The BRCA1 classification categorizes genetic test results for the BRCA1 gene into four options, pathogenic (mutation known to increase cancer risk), likely pathogenic (mutation probably increases cancer risk), variant of uncertain significance (VUS, unclear impact on cancer risk), and negative (no harmful mutations detected).'
annotations:
range: BRCAClassificationEnum
ClassBRCA2:
title: Class BRCA2
title: BRCA2 Classification
required: false
description: BRCA2 grouping.
description: 'The BRCA2 classification refers to the categorization of genetic test results for the BRCA2 gene into four options, pathogenic (mutation known to significantly increase cancer risk), likely pathogenic (mutation likely increases cancer risk), variant of uncertain significance (VUS, unclear impact on cancer risk), and negative (no harmful mutations detected).'
annotations:
range: BRCAClassificationEnum
ClinicalBiospecimenType:
title: Clinical Biospecimen Type
required: false
Expand Down