-
Notifications
You must be signed in to change notification settings - Fork 21
refactor to have individuals and cohorts, and enable variant interpretation on one individual or a cohort (PR on a PR) #5230
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
base: data/portal-genomic-variants
Are you sure you want to change the base?
Conversation
…tation on one individual or a cohort
@@ -0,0 +1,13 @@ | |||
package org.molgenis.emx2.datamodels; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is just a test runner, I suppose handy right if we want to quickly test run
@@ -197,18 +197,22 @@ public TableMetadata getRefTable() { | |||
} | |||
} | |||
|
|||
TableMetadata result = null; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these fixes are to capture null exceptions. Could be seperate PR
data/_models/shared/Analyses.csv
Outdated
Variant intepretation analyses,Analyses,,,,,,,,,,,http://purl.obolibrary.org/obo/NCIT_C25391,Genome diagnostic variant interpretation analysis,Patient registry |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
renamed to Variant interpretation analyses. And then you can see that interpretation can be either on individual or cohort. Is that nice or crazy?
@@ -2,7 +2,7 @@ tableName,tableExtends,columnName,columnType,key,required,refSchema,refTable,ref | |||
Processes,,,,,,,,,,,http://purl.obolibrary.org/obo/NCIT_C29862,"An event (e.g., a sequencing run, a clinical observation) that belongs to an individual","Patient registry, FAIR Genomes" | |||
Processes,,,,,,,,,,,http://purl.obolibrary.org/obo/NCIT_C29862,"An event (e.g., a sequencing run, a clinical observation) that belongs to an individual","Patient registry, FAIR Genomes" | |||
Processes,,id,auto_id,1,TRUE,,,,,,http://purl.obolibrary.org/obo/NCIT_C25364,"One or more characters used to identify, name, or characterize the nature, properties, or contents of a thing","Patient registry, FAIR Genomes" | |||
Processes,,individuals,ref_array,,,,Individuals,,,,http://purl.obolibrary.org/obo/NCIT_C164337,A reference to one or more individuals associated to the process,"Patient registry, FAIR Genomes" | |||
Processes,,individual,ref,,,,Individuals,,,,http://purl.obolibrary.org/obo/NCIT_C164337,A reference to one or more individuals associated to the process,"Patient registry, FAIR Genomes" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should discuss if we want to make this also work on cohorts. But then 'consent' is a bit weird to model as process??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
btw what is difference between Analysis and Process?
Note, this is a PR on another PR not on master.