Skip to content

Commit

Permalink
Update janus_core/helpers/post_process.py
Browse files Browse the repository at this point in the history
Co-authored-by: ElliottKasoar <[email protected]>
  • Loading branch information
oerc0122 and ElliottKasoar committed Oct 14, 2024
1 parent 28e4600 commit da7363d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions janus_core/helpers/post_process.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Module for post-processing trajectories."""
1;4000;35c
from collections.abc import Sequence
from itertools import combinations_with_replacement
from typing import Optional, Union
Expand Down Expand Up @@ -278,7 +277,7 @@ def compute_vaf(

if fft:
vafs = np.fft.fft(vafs, axis=0)
lags = np.fft.fftfreq(nsteps, time_step)
lags = np.fft.fftfreq(n_steps, time_step)

vafs = (
lags,
Expand Down

0 comments on commit da7363d

Please sign in to comment.