Title: Tracking the neural dynamics underlying variations in flow/attentional states at the timescale of second
The project is composed of a python package flow and of a Unity task. The python
package can be installed on all platforms and uses psychopy
to control an oddball auditory paradigm.
On macOS or Windows, the python package can be installed in a virtual environment with
pip or uv (drop-in replacement for pip, recommended):
$ uv pip install git+https://github.com/fcbg-platforms/meg-flowOn Linux, psychopy requires the following manual step prior
to the installation of the flow package:
-
wxPythonwhich can be retrieved here for your platform, or compiled locally. -
the system dependencies:
$ sudo apt install libusb-1.0-0-dev portaudio19-dev libasound2-dev libsdl2-2.0-0
-
the following
ulimits:$ sudo groupadd --force psychopy $ sudo usermod -aG psychopy $USER $ sudo nano /etc/security/limits.d/99-psychopylimits.confSet the content of
99-psychopylimits.confto:@psychopy - nice -20 @psychopy - rtprio 50 @psychopy - memlock unlimited
Important
As of writing, psychopy is still limited to Python 3.10, thus make sure to create a virtual environment with a compatible version of Python.
The flow package has 2 command-line entry-points:
forward-force: to stream the sensor force to Unity.
$ flow forward-force --helpoddball: to start the oddball paradigm.
$ flow oddball --helpThe oddball paradigm can be halted and resumed via ZMQ messages.
An example is provided in script/zmq-control.py.