Skip to content

Commit

Permalink
Merge pull request #33 from hicsail/chore/filter-description
Browse files Browse the repository at this point in the history
updated filter description for tooltip
  • Loading branch information
ZimLim authored Feb 21, 2024
2 parents b9dfc3e + 814cb43 commit 899cc1f
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/types/Filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ export type Filter =
};

export const brainDataFilters: Filter[] = [
{ name: 'nppmih_hours', variableName: 'Postmortem Interval (Hours)', type: 'slider', npCategory: false, max: 160, min: 0, description: 'Postmortem Hours Description' },
{ name: 'age_death', variableName: 'Age of Death', type: 'slider', npCategory: false, max: 120, min: 0, description: 'Age of death description' },
{ name: 'nprin', variableName: 'RNA Integrity Number', type: 'slider', npCategory: false, max: 10, min: 0, description: 'RNA Integrity Description' },
{ name: 'nppmih_hours', variableName: 'Postmortem Interval (Hours)', type: 'slider', npCategory: false, max: 160, min: 0, description: 'Hours for Postmortem interval (PMI): time between death and brain removal' },
{ name: 'age_death', variableName: 'Age of Death', type: 'slider', npCategory: false, max: 120, min: 0, description: 'Age at death' },
{ name: 'nprin', variableName: 'RNA Integrity Number', type: 'slider', npCategory: false, max: 10, min: 0, description: 'RNA integrity number' },
{
name: 'npfrotispre',
variableName: 'Frozen tissue present',
type: 'option',
npCategory: true,
optionType: 'radio',
options: { Right: 1, Left: 2, NA: 3 },
description: 'Frozen Tissue Present Description'
description: 'Frozen Tissue Present'
},
{
name: 'npfix',
Expand All @@ -58,7 +58,7 @@ export const brainDataFilters: Filter[] = [
npCategory: true,
optionType: 'radio',
options: { Formalin: 1, Paraformaldehyde: 2, Other: 7 },
description: 'Fixative description'
description: 'Fixative'
},
{
name: 'npinf',
Expand All @@ -70,7 +70,7 @@ export const brainDataFilters: Filter[] = [
No: 0,
Yes: 1
},
description: 'Observed Infarcts description'
description: 'Presence of old infarcts, observed grossly'
},
{
name: 'npftdt7',
Expand All @@ -82,7 +82,7 @@ export const brainDataFilters: Filter[] = [
No: 0,
Yes: 1
},
description: 'CTE description'
description: 'Chronic traumatic encephalopathy (CTE)'
},
{
name: 'npavas',
Expand All @@ -98,7 +98,7 @@ export const brainDataFilters: Filter[] = [
'Not Assessed': 8,
'Missing/Unknown': 9
},
description: 'Atherosclerosis severity description'
description: 'Presence and severity of atherosclerosis'
},
{
name: 'pathmnd',
Expand All @@ -115,7 +115,7 @@ export const brainDataFilters: Filter[] = [
'Not Assessed': 8,
'Missing/Unknown': 9
},
description: 'ALS description'
description: 'Neuropathological presence of ALS/Motor neuron disease'
},
{
name: 'pathad',
Expand All @@ -127,7 +127,7 @@ export const brainDataFilters: Filter[] = [
No: 0,
Yes: 1
},
description: 'Derived AD dementia description'
description: 'Neuropathological presence of Alzheimers disease'
},
{
name: 'relatauo',
Expand All @@ -139,7 +139,7 @@ export const brainDataFilters: Filter[] = [
No: 0,
Yes: 1
},
description: 'Age-related tauopathy'
description: 'Primary age-related tauopathy (PART; requires NFTs present with Braak stage <= IV, usually III or lower)'
},
{
name: 'npftdtau',
Expand All @@ -151,7 +151,7 @@ export const brainDataFilters: Filter[] = [
No: 0,
Yes: 1
},
description: 'FTLD pathology description'
description: 'FTLD with tau pathology (FTLD-tau) or other tauopathy'
},
{
name: 'npftdtdp',
Expand All @@ -163,7 +163,7 @@ export const brainDataFilters: Filter[] = [
No: 0,
Yes: 1
},
description: 'TDP-43 description'
description: 'FTLD with TDP-43 pathology (FTLD-TDP)'
},
{
name: 'nphipscl',
Expand All @@ -178,6 +178,6 @@ export const brainDataFilters: Filter[] = [
Present: 3,
'Missing/Unknown': 9
},
description: 'Hippocampal sclerosis description'
description: 'Hippocampal sclerosis (CA1 and/or subiculum'
}
];

0 comments on commit 899cc1f

Please sign in to comment.