Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/scripts/nmr-cli/src/prediction/parsePredictionCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const predictionOptions: { [key in keyof GenerateSpectrumOptions]: Options } = {
nbPoints: {
type: 'number',
description: 'Number of points',
default: 1024,
default: 2 ** 18, // 256k points
},
lineWidth: {
type: 'number',
Expand Down Expand Up @@ -146,7 +146,7 @@ async function predictNMR(options: PredictionArgs): Promise<void> {
solvent,
from,
to,
nbPoints = 1024,
nbPoints = 2 ** 18, // 256K
frequency = 400,
lineWidth = 1,
tolerance = 0.001,
Expand Down
Loading