Skip to content

Commit

Permalink
fix: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-aksamentov committed Dec 8, 2023
1 parent c72f417 commit f89ccc1
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages_rs/nextclade-web/src/hooks/useRunSeqAutodetect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,6 @@ export function groupByDatasets(records: MinimizerSearchRecord[]) {

byDataset = { ...byDataset, [name]: { records: selectedRecords, meanScore } }
}

console.info(
sortBy(Object.entries(byDataset), ([_, val]) => -val.meanScore)
.map(([name, val]) => `${name.padEnd(60)} ${val.meanScore.toFixed(4)}`)
.join('\n'),
)
return byDataset
}

Expand Down

0 comments on commit f89ccc1

Please sign in to comment.