-
Notifications
You must be signed in to change notification settings - Fork 32
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
Added enzymatic tissue dissociation fields #1599
base: staging
Are you sure you want to change the base?
Conversation
…nto ac-tissue-dissociation-Issue1592
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.
Minor comments and a change to the regex, otherwise LGTM!
}, | ||
"digestion_temperature": { | ||
"description": "Temperature of digestion in Celsius or in general terms (i.e. cold, warm, room temperature).", | ||
"pattern": "\\d+(\\.\\d+)?|frozen|cold|room temperature|warm", |
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.
Pattern must be anchored (And it should be grouped in order to properly capture alternative groups):
"pattern": "\\d+(\\.\\d+)?|frozen|cold|room temperature|warm", | |
"pattern": "^(\\d+(\\.\\d+)?|frozen|cold|room temperature|warm)$", |
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.
Otherwise, things like "11frozen", "frozencold" will be accepted https://regex101.com/r/iRzCpr/1
@@ -1 +1,6 @@ | |||
Schema,Change type,Change message,Version,Date | |||
type/protocol/biomaterial_collection/dissociation_protocol,minor,Changed of user_friendly name of reagent field,, |
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.
type/protocol/biomaterial_collection/dissociation_protocol,minor,Changed of user_friendly name of reagent field,, | |
type/protocol/biomaterial_collection/dissociation_protocol,minor,Changed user_friendly name of reagent field,, |
very very minor correction :)
#1592
Release notes
For
dissociation_protocol.json
schema:reagents
friendly name to distinguish withdigestion_solution
digestion_time
digesion_time_units
digestion_temperature
digestion_solution
Reviews requested