-
Notifications
You must be signed in to change notification settings - Fork 2
Update BDC data model to further support genomic data #148
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
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
0d62014
add yaml files to branch
ciresiemanym d4cbada
remove incorrect data_format from submitted_methylation
ciresiemanym afce635
format new node yamls
ciresiemanym 22fc634
fix properties ref
ciresiemanym 37def7e
remove 'common/' from term refs
ciresiemanym 42d0fc1
further fix format of props
ciresiemanym 1d9ad23
fix links
ciresiemanym f0fbd50
add type to required props
ciresiemanym baef72f
Update submitted_expression_array.yaml
ciresiemanym c106325
Update submitted_genotyping_array.yaml
ciresiemanym c3d95eb
Update reference_file.yaml
ciresiemanym File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -87,6 +87,7 @@ properties: | |
| - ALT | ||
| - AMB | ||
| - ANN | ||
| - ARR | ||
| - AVRO | ||
| - BCF | ||
| - BED | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,95 @@ | ||
| $schema: "http://json-schema.org/draft-04/schema#" | ||
|
|
||
| id: "submitted_expression_array" | ||
| title: Submitted Expression Array | ||
| type: object | ||
| namespace: https://dcp.bionimbus.org/ | ||
| category: data_file | ||
| program: '*' | ||
| project: '*' | ||
| description: > | ||
| Data file containing raw data from an expression array. | ||
| additionalProperties: false | ||
| submittable: true | ||
| validators: null | ||
|
|
||
| systemProperties: | ||
| - id | ||
| - project_id | ||
| - created_datetime | ||
| - updated_datetime | ||
| - state | ||
| - file_state | ||
| - error_type | ||
|
|
||
| links: | ||
| - exclusive: false | ||
| required: true | ||
| subgroup: | ||
| - name: core_metadata_collections | ||
| backref: submitted_expression_arrays | ||
| label: data_from | ||
| target_type: core_metadata_collection | ||
| multiplicity: many_to_many | ||
| required: false | ||
| - name: aliquots | ||
| backref: submitted_expression_arrays | ||
| label: derived_from | ||
| target_type: aliquot | ||
| multiplicity: many_to_one | ||
| required: false | ||
|
|
||
| required: | ||
| - type | ||
| - submitter_id | ||
| - file_name | ||
| - file_size | ||
| - md5sum | ||
| - data_category | ||
| - data_type | ||
| - data_format | ||
| - experimental_strategy | ||
| - platform | ||
|
|
||
| uniqueKeys: | ||
| - [id] | ||
| - [project_id, submitter_id] | ||
|
|
||
| properties: | ||
| $ref: "_definitions.yaml#/data_file_properties" | ||
|
|
||
| data_category: | ||
| term: | ||
| $ref: "_terms.yaml#/data_category" | ||
| enum: | ||
| - Transcriptome Profiling | ||
|
|
||
| data_format: | ||
| term: | ||
| $ref: "_terms.yaml#/data_format" | ||
| enum: | ||
| - CEL | ||
|
|
||
| data_type: | ||
| term: | ||
| $ref: "_terms.yaml#/data_type" | ||
| enum: | ||
| - Raw Intensities | ||
|
|
||
| experimental_strategy: | ||
| term: | ||
| $ref: "_terms.yaml#/experimental_strategy" | ||
| enum: | ||
| - Expression Array | ||
|
|
||
| platform: | ||
| term: | ||
| $ref: "_terms.yaml#/platform" | ||
| enum: | ||
| - GeneChip U133 Plus 2.0 | ||
| - GeneChip U133A | ||
|
|
||
| aliquots: | ||
| $ref: "_definitions.yaml#/to_one" | ||
| core_metadata_collections: | ||
| $ref: "_definitions.yaml#/to_many" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,91 @@ | ||
| $schema: "http://json-schema.org/draft-04/schema#" | ||
|
|
||
| id: "submitted_genotyping_array" | ||
| title: Submitted Genotyping Array | ||
| type: object | ||
| namespace: https://dcp.bionimbus.org/ | ||
| category: data_file | ||
| program: '*' | ||
| project: '*' | ||
| description: > | ||
| Data file containing raw data from a genotyping array. | ||
| additionalProperties: false | ||
| submittable: true | ||
| validators: null | ||
|
|
||
| systemProperties: | ||
| - id | ||
| - project_id | ||
| - created_datetime | ||
| - updated_datetime | ||
| - state | ||
| - file_state | ||
| - error_type | ||
|
|
||
| links: | ||
| - exclusive: false | ||
| required: true | ||
| subgroup: | ||
| - name: core_metadata_collections | ||
| backref: submitted_genotyping_arrays | ||
| label: data_from | ||
| target_type: core_metadata_collection | ||
| multiplicity: many_to_many | ||
| required: false | ||
| - name: aliquots | ||
| backref: submitted_genotyping_arrays | ||
| label: derived_from | ||
| target_type: aliquot | ||
| multiplicity: many_to_one | ||
| required: false | ||
|
|
||
| required: | ||
| - type | ||
| - submitter_id | ||
| - file_name | ||
| - file_size | ||
| - md5sum | ||
| - data_category | ||
| - data_type | ||
| - data_format | ||
| - experimental_strategy | ||
| - platform | ||
|
|
||
| uniqueKeys: | ||
| - [id] | ||
| - [project_id, submitter_id] | ||
|
|
||
| properties: | ||
| $ref: "_definitions.yaml#/data_file_properties" | ||
|
|
||
| data_category: | ||
| term: | ||
| $ref: "_terms.yaml#/data_category" | ||
| enum: | ||
| - Copy Number Variation | ||
|
|
||
| data_type: | ||
| $ref: "_terms.yaml#/data_type" | ||
| enum: | ||
| - Raw Intensities | ||
|
|
||
| data_format: | ||
| $ref: "_terms.yaml#/data_format" | ||
| enum: | ||
| - CEL | ||
|
|
||
| experimental_strategy: | ||
| $ref: "_terms.yaml#/experimental_strategy" | ||
| enum: | ||
| - Genotyping Array | ||
|
|
||
| platform: | ||
| $ref: "_terms.yaml#/platform" | ||
| enum: | ||
| - Affymetrix | ||
| - Affymetrix SNP 6.0 | ||
|
|
||
| aliquots: | ||
| $ref: "_definitions.yaml#/to_one" | ||
| core_metadata_collections: | ||
| $ref: "_definitions.yaml#/to_many" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -70,8 +70,6 @@ properties: | |
| term: | ||
| $ref: "_terms.yaml#/data_format" | ||
| enum: | ||
| - ARR | ||
| - CEL | ||
| - IDAT | ||
|
|
||
| assay_method: | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.