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 b214858 commit 5e4232e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DataViz/RegionalProteomics.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class RegionalProteomics extends Component {
let tempResults = JSON.parse(JSON.stringify(results));
// The order b - a is important here because we want a reverse sort
let sortedResults = tempResults.sort(function (a, b) { return b.foldChange - a.foldChange; });
return sortedResults.map(({ region, fdrConfidence, coveragePct, numPeptides, numUniquePeptides, sampleCount, foldChange, adjPVal }) => {
return sortedResults.map(({ segment, fdrConfidence, coveragePct, numPeptides, numUniquePeptides, sampleCount, foldChange, pValLog10 }) => {
return {
region: segment,
fdrConfidence: fdrConfidence,
Expand Down

0 comments on commit 5e4232e

Please sign in to comment.