Skip to content

Commit

Permalink
Merge pull request #452 from KPMP/RP_Fix
Browse files Browse the repository at this point in the history
fix download
  • Loading branch information
zwright authored Dec 11, 2023
2 parents e09021c + 5e4232e commit 43919ee
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 43919ee

Please sign in to comment.