-
Notifications
You must be signed in to change notification settings - Fork 32
Added genetic diversity fields - Fixes #1610 #1611
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
Open
arschat
wants to merge
26
commits into
staging
Choose a base branch
from
ac-genetic-diversity-Issue1610
base: staging
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
6640701
Added ethnicity genetic diversity fields
arschat 1615c72
Added language genetic diversity fields
arschat 7dd118b
Added residence and place of birth genetic diversity fields
arschat f75abbd
Added dietary state fields
arschat d56461e
Added reproduction genetic diversity fields
arschat 3b37ae4
Removed trailing whitespaces
arschat 7049d18
Ran human_readable_json.py script
arschat 836c795
Updated update_log.csv
arschat 078808e
Added diet_meat in place of dietary_state
arschat af5cc71
Merge branch 'staging' of github.com:HumanCellAtlas/metadata-schema i…
arschat b47e9d0
Merge branch 'staging' of github.com:HumanCellAtlas/metadata-schema i…
arschat 697794d
Fixed diet_meat_consumption field name
arschat 9e47276
Added dependency for ethnicity_question field.
arschat 0773d49
Added ancestry genetic fields.
arschat e6eae2d
Replaced special characters in ethnicity_question.
arschat ad34acf
Removed ancestry_genetic fields to be added in Liver
arschat 19c68b3
Updated place_of_birth_duration definition
arschat e359985
Removed ancestry_genetic dependecies.
arschat e25686d
Updated examples in genetic diversity values
arschat a16c5e4
Replaced special character in diet description
arschat 32d999a
Added residence module in human_specific
arschat 6717c3c
Updated update_log.csv
arschat dc1ef4e
Added reproduction_history module
arschat a9056e0
Removed unnecessary space
arschat e8f4a70
Fixed names of new modules
arschat d9bcedc
Added user friendly name for reproduction_history
arschat 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
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
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
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
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,57 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"description": "Reproduction history of the donor.", | ||
"additionalProperties": false, | ||
"minProperties": 1, | ||
"title": "Reproduction history", | ||
"name": "reproduction_history", | ||
"type": "object", | ||
"properties": { | ||
"describedBy": { | ||
"description": "The URL reference to the schema.", | ||
"type": "string", | ||
"pattern" : "^(http|https)://schema.(.*?)humancellatlas.org/module/biomaterial/(([0-9]{1,}.[0-9]{1,}.[0-9]{1,})|([a-zA-Z]*?))/human_specific" | ||
}, | ||
"schema_version": { | ||
"description": "The version number of the schema in major.minor.patch format.", | ||
"type": "string", | ||
"pattern": "^[0-9]{1,}.[0-9]{1,}.[0-9]{1,}$", | ||
"example": "4.6.1" | ||
}, | ||
"menarche_age": { | ||
"description": "Age at menarche, rounded to nearest whole number.", | ||
"type": "integer", | ||
"user_friendly": "Menarche age", | ||
"example": "13; 12; 16", | ||
"bionetworks": ["genetic diversity"] | ||
}, | ||
"menopause_status": { | ||
"description": "Menopausal status of donor at time of sample collection.", | ||
"type": "string", | ||
"enum": [ | ||
"pre-menopausal", | ||
"peri-menopausal", | ||
"post-menopausal", | ||
"post-menopausal (induced)" | ||
], | ||
"user_friendly": "Menopause status", | ||
"example": "pre-menopausal; peri-menopausal; post-menopausal; post-menopausal (induced)", | ||
"guidelines": "Should be one of: pre-menopausal; peri-menopausal; post-menopausal; post-menopausal (induced)", | ||
"bionetworks": ["genetic diversity"] | ||
}, | ||
"parity": { | ||
"description": "Number of children (full-term pregnancies) the donor has given birth to at time of sample collection.", | ||
"type": "integer", | ||
"user_friendly": "Full term pregnancy - parity", | ||
"example": "0; 2; 3", | ||
"bionetworks": ["genetic diversity"] | ||
}, | ||
"gravidity": { | ||
"description": "Number of pregnancies the donor has had at time of sample collection.", | ||
"type": "integer", | ||
"user_friendly": "Pregnancy - gravidity", | ||
"example": "2; 3; 5", | ||
"bionetworks": ["genetic diversity"] | ||
} | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
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.