Skip to content

Commit

Permalink
KPMP-5139: Update text
Browse files Browse the repository at this point in the history
  • Loading branch information
rlreamy committed Feb 20, 2024
1 parent 5441c5f commit e9f40f3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/components/DataViz/DataTypeSelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ class DataTypeSelector extends Component {
}
getDataTypeInfo = (dataType) => {
let copy = {
'sn': 'This single-nucleus dataset is comprised of Healthy Reference: tumor nephrectomy tissue originating from the KPMP Pilot 1 protocol, living and deceased donor tumor nephrectomy samples, and tissue biopsy samples from Human Biomolecular Atlas Program (HuBMAP) participants; CKD: biopsy samples from the KPMP Main Study protocol participants; and AKI: biopsy samples from the KPMP Main Study protocol participants.',
'sc': 'This single-cell dataset is comprised of Healthy Reference: biopsy samples from the Human Cell Atlas participants, CKD: biopsy samples from the KPMP Main Study protocol participants, and AKI: biopsy samples from the KPMP Main Study protocol participants.',
'sn': 'This single-nucleus dataset is comprised of Healthy Reference: KPMP HRT Living Donor protocol biopsies, KPMP HRT Percutaneous Nephrolithotomy protocol biopsies, tumor nephrectomy tissue originating from the KPMP Pilot 1 protocol living and deceased donor tumor nephrectomy samples, and tissue biopsy samples from Human Biomolecular Atlas Program (HuBMAP) participants; CKD: biopsy samples from the KPMP Main Study protocol participants; AKI: biopsy samples from the KPMP Main Study protocol participants; and DM-R: biopsy samples from the KPMP Main Study protocol participants.',
'sc': 'This single-cell dataset is comprised of Healthy Reference: KPMP HRT Living Donor protocol biopsies, KPMP HRT Percutaneous Nephrolithotomy protocol biopsies, and the Human Cell Atlas participants, CKD: biopsy samples from the KPMP Main Study protocol participants, and AKI: biopsy samples from the KPMP Main Study protocol participants.',
'rt': 'This regional transcriptomics dataset is comprised of Healthy Reference: tumor nephrectomy tissue originating from the KPMP Pilot 1 protocol and deceased donor nephrectomy samples, CKD: biopsy samples from the KPMP Main Study protocol participants and biopsy samples from the Diabetic Complications Consortium (DiaComp), and AKI: biopsy samples from the KPMP Main Study protocol participants.',
'rp': 'This regional proteomics dataset is comprised of Healthy Reference: tumor nephrectomy tissue originating from Ohio State University living donor tumor nephrectomy samples, CKD: biopsy samples from the KPMP Main Study protocol participants, and AKI: biopsy samples from the KPMP Main Study protocol participants.'
}
Expand Down
14 changes: 7 additions & 7 deletions src/components/ExpressionTables/ExpressionXCellType.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,20 +69,20 @@ class ExpressionXCellType extends Component {
name: 'cluster',
},
{
title: <span>CLUSTER (<i>predicted state</i>)</span>,
title: <span>CELL CLUSTER (<i>predicted state</i>)</span>,
name: 'clusterName',
getCellValue: row => this.parseClusterName(row)

},
{
title: <span># CELLS IN<br />CLUSTER</span>,
title: <span># CELLS IN<br />CELL CLUSTER</span>,
name: 'cellCount',
getCellValue: row => row.cellCount ? row.cellCount : 0
},
{
title: <span>MEAN<br />EXPRESSION <span className="icon-info"><FontAwesomeIcon className='kpmp-light-blue' id='mean-expression-info' icon={faInfoCircle} /></span>
<UncontrolledTooltip placement='bottom' target='mean-expression-info' >
Averaged expression values (logarithmic) for each cluster
Averaged expression values (logarithmic) for each cell cluster
</UncontrolledTooltip></span>,
name: 'avgExp',
getCellValue: row => formatNumberToPrecision(row.avgExp, 3)
Expand All @@ -98,7 +98,7 @@ class ExpressionXCellType extends Component {
{
title: <span>FOLD<br />CHANGE <span className="icon-info"><FontAwesomeIcon className='kpmp-light-blue' id='fold-change-info' icon={faInfoCircle} /></span>
<UncontrolledTooltip placement='bottom' target='fold-change-info' >
Log fold-change of the average expression between this cluster and all others. Positive values indicate that the feature is more highly expressed in this cluster.
Log fold-change of the average expression between this cell cluster and all others. Positive values indicate that the feature is more highly expressed in this cluster.
</UncontrolledTooltip></span>,
name: 'foldChange',
getCellValue: row => formatNumberToPrecision(row.foldChange, 3)
Expand Down Expand Up @@ -152,7 +152,7 @@ class ExpressionXCellType extends Component {
getColumnBands() {
return [
{
title: "CLUSTER VS ALL OTHERS",
title: "CELL CLUSTER VS ALL OTHERS",
children: [
{ columnName: 'foldChange'},
{ columnName: 'pVal' },
Expand Down Expand Up @@ -188,7 +188,7 @@ class ExpressionXCellType extends Component {
<React.Fragment>
<Row xs='12' className='mt-5'>
<Col xs='11'>
<h5><span>{this.props.gene}</span> Expression Comparison across Clusters in {formatTissueType(this.props.tissueType)}</h5>
<h5><span>{this.props.gene}</span> Expression Comparison across Cell Clusters in {formatTissueType(this.props.tissueType)}</h5>
<h6>NS = Not Significant</h6>
</Col>
<Col xs='1' className='text-end'>
Expand Down Expand Up @@ -227,7 +227,7 @@ class ExpressionXCellType extends Component {
</small>
<p></p>
<small>
For more information about the cell type, cluster, and state definitions, see the following pre-print: <a target="_blank" rel="noreferrer" href="https://www.biorxiv.org/content/10.1101/2021.07.28.454201v1">https://www.biorxiv.org/content/10.1101/2021.07.28.454201v1</a>
For more information about the cell type, cluster, and state definitions, see the following publication: <a target="_blank" rel="noreferrer" href="https://rdcu.be/dx5m9">Nature 619, 585–594 (2023)</a>
</small>
</Col>
</Row>
Expand Down

0 comments on commit e9f40f3

Please sign in to comment.