-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAINT: Update documentation and logging (#155)
* MAINT: Update documentation and logging - Nice new landing page - Added covenience makefile commands - improved logging of flagged epochs * FIX, MAINT: Bump iclabel version and ignore mne warning We already throw an error if the user has mne iclabel version less than .5, so added a pin for minimum version of .5 in the requirements file. MNE is also throwing a future warnign for an API kwarg change in epochs.get_data, where the current default copy=False is changing to copy=True. See mne-tools/mne-python#12121 . I'm a little worried about the additional copies we will incur every single time that we call that method, but I dont have a strong reason to stray from what MNE believes is a bug fix so lets go with it and see how it plays. * FIX, MAINT: Bumpg GH actions checkout versions - This should resolve the core issue of the runner not being able to find the most up to date mne_iclabel wheel. * FIX, TST: Install torch in doc building CI Since MNE iclabel 0.5, torch is NOT installed by default.
- Loading branch information
1 parent
0156e64
commit c84108c
Showing
12 changed files
with
79 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,49 @@ | ||
.. pyLossless documentation master file, created by | ||
sphinx-quickstart on Fri Jan 6 12:24:18 2023. | ||
You can adapt this file completely to your liking, but it should at least | ||
contain the root `toctree` directive. | ||
PyLossless EEG Processing Pipeline | ||
================================== | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:hidden: | ||
:layout: landing | ||
:description: Shibuya is a modern, responsive, customizable theme for Sphinx. | ||
|
||
install | ||
auto_examples/index.rst | ||
API/API_index | ||
contributing | ||
PyLossless :octicon:`pulse` | ||
=========================== | ||
|
||
.. rst-class:: lead | ||
|
||
EEG Processing Pipeline that is non-destructive, automated, and built on Python. | ||
|
||
.. grid:: | ||
|
||
.. grid-item-card:: | ||
.. container:: buttons | ||
|
||
|:mechanical_arm:| Automated | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
Automatic Processing Pipeline | ||
cleans your EEG data. |:broom:| | ||
`Docs <install.html>`_ | ||
`GitHub <https://github.com/lina-usc/pylossless>`_ | ||
|
||
|
||
.. grid-item-card:: | ||
.. grid:: 1 1 2 3 | ||
:gutter: 2 | ||
:padding: 0 | ||
:class-row: surface | ||
|
||
|:snake:| Built on Python | ||
^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
Ported from MATLAB for easier | ||
use and access! | ||
.. grid-item-card:: :octicon:`zap` Automated | ||
|
||
.. grid-item-card:: | ||
Fast, Open-source, and built on python. | ||
|
||
|:recycle:| Non-destructive | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
Keeps your EEG continuous, so | ||
you can epoch your data however | ||
and whenever you want to. | ||
.. grid-item-card:: :octicon:`pin` Non-destructive | ||
|
||
.. grid:: | ||
Keeps EEG continuous, noting bad channels, times, and independent components | ||
so you can reject them and epoch your data however and whenever you want to. | ||
|
||
.. grid-item-card:: | ||
.. grid-item-card:: :octicon:`telescope-fill` Streamlined Review | ||
|
||
|:pencil:| Artifacts are Noted | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
Bad channels, times, and | ||
components are stored as | ||
``Annotations`` in your | ||
raw data. | ||
Web dashboard built with helps you review the output and make | ||
informed decisions about your data. | ||
|
||
.. grid-item-card:: | ||
|
||
|:woman_technologist:| Streamlined Review | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
Web dashboard built with Plotly/Dash helps | ||
you Review the pipeline output and make | ||
informed decisions about your data | ||
|
||
.. image:: https://raw.githubusercontent.com/scott-huberty/wip_pipeline-figures/main/dashboard.png | ||
:alt: pylossless-qc-dashboard-screenshot | ||
:align: center | ||
:align: center | ||
|
||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:hidden: | ||
|
||
install | ||
auto_examples/index.rst | ||
API/API_index | ||
contributing | ||
Paper <https://www.biorxiv.org/content/10.1101/2024.01.12.575323v1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
PyLossless Tutorials | ||
^^^^^^^^^^^^^^^^^^^^ | ||
Tutorials | ||
^^^^^^^^^ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from ._utils import _icalabel_to_data_frame | ||
from ._utils import _icalabel_to_data_frame, _report_flagged_epochs | ||
from .html import _get_ics, _sum_flagged_times, _create_html_details |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,6 @@ mne_bids | |
pandas | ||
xarray | ||
scipy>=1.2.1 | ||
mne_icalabel | ||
mne_icalabel>=0.5.0 | ||
pyyaml | ||
scikit-learn |