Skip to content

Commit

Permalink
High-pass EOG
Browse files Browse the repository at this point in the history
Changing the l_freq to None, high-pass filtering the EOG channel was disabled too.
  • Loading branch information
stfnrpplngr authored Apr 6, 2018
1 parent 21c52f9 commit 5b3fa30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/processing/04-python_filtering.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def run_filter(subject_id):
# High-pass EOG to get reasonable thresholds in autoreject
picks_eog = pick_types(raw.info, meg=False, eog=True)
raw.filter(
l_freq, None, picks=picks_eog, l_trans_bandwidth='auto',
1., None, picks=picks_eog, l_trans_bandwidth='auto',
filter_length='auto', phase='zero', fir_window='hann',
fir_design='firwin')
raw_out = raw_fname_out % (run, l_freq)
Expand Down

0 comments on commit 5b3fa30

Please sign in to comment.