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

Add unfixed for Fixative type #413

Merged
merged 2 commits into from
May 30, 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
2 changes: 1 addition & 1 deletion HTAN.model.csv
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ Acquisition Method Type,Records the method of acquisition or source for the spec
Other Acquisition Method,A custom acquisition method,,Acquisition Method Other Specify,,FALSE,Biospecimen,,,
Acquisition Method Other Specify,A custom acquisition method [Text - max length 100 characters],,,,TRUE,Biospecimen,,,
Preservation Method,Text term that represents the method used to preserve the sample.,"Cryopreserved, Cryopreservation in liquid nitrogen - dead tissue, Cryopreservation in dry ice - dead tissue, Cryopreservation in liquid nitrogen - live cells, Formalin fixed paraffin embedded - FFPE, Formalin fixed-unbuffered, Formalin fixed-buffered, Fresh, Fresh dissociated and single cell sorted into plates in NP40 buffer, OCT, Snap Frozen, Frozen, Negative 80 Deg C, Liquid Nitrogen, Fresh dissociated, Fresh dissociated and single cell sorted, Fresh dissociated and single cell sorted into plates, Methacarn fixed paraffin embedded - MFPE, unknown, Not Reported",,,TRUE,Biospecimen,,,
Fixative Type,Text term to identify the type of fixative used to preserve a tissue specimen,"Acetone, Alcohol, Formalin, Glutaraldehyde, OCT media, RNAlater, Saline, 95% Ethanol, Dimidoester, Carbodiimide, Dimethylacetamide, Para-benzoquinone, PAXgene tissue, TCL lysis buffer, NP40 lysis buffer, Methacarn, Cryo-store, Carnoy's Fixative, Polaxamer, Other, None, unknown",,,TRUE,Biospecimen,,https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=65078&version=3.0,
Fixative Type,Text term to identify the type of fixative used to preserve a tissue specimen,"Acetone, Alcohol, Formalin, Glutaraldehyde, OCT media, RNAlater, Saline, 95% Ethanol, Dimidoester, Carbodiimide, Dimethylacetamide, Para-benzoquinone, PAXgene tissue, TCL lysis buffer, NP40 lysis buffer, Methacarn, Cryo-store, Carnoy's Fixative, Polaxamer, Other, None, unknown, Unfixed",,,TRUE,Biospecimen,,https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=65078&version=3.0,
Fixation Duration,"The length of time, from beginning to end, required to process or preserve biospecimens in fixative (measured in minutes)",,,,TRUE,Biospecimen,,https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=5230144&version=1.0,
Ischemic Time,"Duration of time, in seconds, between when the specimen stopped receiving oxygen and when it was preserved or processed. Integer value.",,,,FALSE,Biospecimen,,https://data.humancellatlas.org/metadata/dictionary/biomaterial/specimen_from_organism#specimen_from_organism-state_of_specimen-gross_description,
Ischemic Temperature,Specify whether specimen experienced warm or cold ischemia.,"Warm Ischemia, Cold Ischemia, Ambient air, 4C wet ice, Negative -20C, Dry Ice, Liquid Nitrogen, unknown",,,FALSE,Biospecimen,,https://data.humancellatlas.org/metadata/dictionary/biomaterial/specimen_from_organism#specimen_from_organism-state_of_specimen-gross_description,
Expand Down
20 changes: 20 additions & 0 deletions HTAN.model.jsonld
Original file line number Diff line number Diff line change
Expand Up @@ -27693,6 +27693,9 @@
},
{
"@id": "bts:Unknown"
},
{
"@id": "bts:Unfixed"
}
],
"sms:displayName": "Fixative Type",
Expand Down Expand Up @@ -57110,6 +57113,23 @@
"sms:required": "sms:false",
"sms:validationRules": []
},
{
"@id": "bts:Unfixed",
"@type": "rdfs:Class",
"rdfs:comment": "TBD",
"rdfs:label": "Unfixed",
"rdfs:subClassOf": [
{
"@id": "bts:FixativeType"
}
],
"schema:isPartOf": {
"@id": "http://schema.biothings.io"
},
"sms:displayName": "Unfixed",
"sms:required": "sms:false",
"sms:validationRules": []
},
{
"@id": "bts:WarmIschemia",
"@type": "rdfs:Class",
Expand Down