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

fix: SKFP-944 some fields from biospecimen reports were not resolved properly #117

Merged
merged 1 commit into from
Mar 6, 2024
Merged
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
14 changes: 7 additions & 7 deletions src/reports/biospecimen-data/configKfNext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ const biospecimens: SheetConfig = {
{ field: 'status', header: 'Sample Availability' },
{ field: 'volume', header: 'Volume' },
{ field: 'volume_unit', header: 'Volume Unit' },
{ field: 'method_of_sample_procurement', header: 'Method of Sample Procurement' },
{ field: 'mondo_code', header: 'Histological Diagnosis (MONDO)' },
{ field: 'ncit_code', header: 'Histological Diagnosis (NCIT)' },
{ field: 'source_text', header: 'Histological Diagnosis (Source Text)' },
{ field: 'source_text_tumor_location', header: 'Tumor Location (Source Text)' },
{ field: 'collection_method_of_sample_procurement', header: 'Method of Sample Procurement' },
{ field: 'diagnoses.diagnosis_mondo', header: 'Histological Diagnosis (MONDO)' },
{ field: 'diagnoses.diagnosis_ncit', header: 'Histological Diagnosis (NCIT)' },
{ field: 'diagnoses.source_text', header: 'Histological Diagnosis (Source Text)' },
{ field: 'diagnoses.source_text_tumor_location', header: 'Tumor Location (Source Text)' },
//FIXME { field: '', header: 'Tumor Descriptor (Source Text)' },
{ field: 'ncit_anatomy_site_id', header: 'Anatomical Site (NCIT)' },
{ field: 'anatomy_site', header: 'Anatomical Site (Source Text)' },
{ field: 'collection_ncit_anatomy_site_id', header: 'Anatomical Site (NCIT)' },
{ field: 'collection_anatomy_site', header: 'Anatomical Site (Source Text)' },
// TODO: Add this back when it's ready { field: 'ncit_id_tissue_type', header: 'Tissue Type (NCIT)' },
// TODO: Add this back when it's ready { field: 'tissue_type_source_text', header: 'Tissue Type (Source Text)' },
{ field: 'consent_type', header: 'Consent Type' },
Expand Down
Loading