diff --git a/pyprep/prep_pipeline.py b/pyprep/prep_pipeline.py index 099391e..492a542 100644 --- a/pyprep/prep_pipeline.py +++ b/pyprep/prep_pipeline.py @@ -6,7 +6,6 @@ import mne from mne.utils import check_random_state -from pyprep.find_noisy_channels import NoisyChannels from pyprep.reference import Reference from pyprep.removeTrend import removeTrend from pyprep.utils import _set_diff, _union # noqa: F401 @@ -184,12 +183,6 @@ def raw(self): def fit(self): """Run the whole PREP pipeline.""" - noisy_detector = NoisyChannels(self.raw_eeg, random_state=self.random_state) - noisy_detector.find_bad_by_nan_flat() - # unusable_channels = _union( - # noisy_detector.bad_by_nan, noisy_detector.bad_by_flat - # ) - # reference_channels = _set_diff(self.prep_params["ref_chs"], unusable_channels) # Step 1: 1Hz high pass filtering if len(self.prep_params["line_freqs"]) != 0: self.EEG_new = removeTrend( diff --git a/pyproject.toml b/pyproject.toml index 143f0dd..1aeeb2b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,8 +29,6 @@ classifiers = [ "Intended Audience :: Science/Research", "Intended Audience :: Developers", "License :: OSI Approved", - "Topic :: Software Development", - "Topic :: Scientific/Engineering", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Operating System :: MacOS",