Skip to content

Commit

Permalink
fix download
Browse files Browse the repository at this point in the history
  • Loading branch information
zwright committed Dec 11, 2023
1 parent 509b3f2 commit b214858
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/DataViz/RegionalProteomics.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ class RegionalProteomics extends Component {
let sortedResults = tempResults.sort(function (a, b) { return b.foldChange - a.foldChange; });
return sortedResults.map(({ region, fdrConfidence, coveragePct, numPeptides, numUniquePeptides, sampleCount, foldChange, adjPVal }) => {
return {
region: region,
region: segment,
fdrConfidence: fdrConfidence,
coveragePct: coveragePct,
numPeptides: numPeptides,
numUniquePeptides: numUniquePeptides,
numSamples: sampleCount,
foldChange: formatNumberToPrecision(foldChange, 3),
pVal: formatNumberToPrecision(adjPVal, 3)
pVal: formatNumberToPrecision(pValLog10, 3)
}
});
};
Expand Down

0 comments on commit b214858

Please sign in to comment.