Skip to main content

Toolbox to control MagVenture TMS stimulators

Project description

MagicPy

This toolbox can be used to communicate with MagVenture TMS stimulators via python.
For the most part it's just a python translation of the Magventure part of the MAGIC toolbox (https://github.com/nigelrogasch/MAGIC). If you use this toolbox, please also cite the original MAGIC toolbox.

This is no official tool, for use at own risk.

Installation

Via pip:

pip install magicpy

Or clone the repository and install:

git clone https://gitlab.gwdg.de/tms-localization/utils/magicpy
cd magicpy
python setup.py

It has been tested with python>=3.7 on Windows and Linux, I guess it should also work with MacOS - feel free to drop me a line if this is the case.

Usage

  • Connect the stimulator control port to a serial port of your computer.
  • Find out which port it is:
import magicpy as mp
mp.list_serial_ports()
> /dev/ttyS0: ttyS0 [PNP0501]
  • Initialize MagVenture() object and connect:
stimulator = mp.MagVenture('/dev/ttyS0')     # Initialize the stimulator object
stimulator.connect()                         # This opens the serial connection
  • Optionally, you can provide a direct connection via the parallel port in addition to the serial port connection to trigger the stimulator via a fast TTL pulse.
stimulator = mp.MagVenture('/dev/ttyS0', ttl_port=0)  # Initialize the stimulator object and use parallport /dev/parport0 for TTL pulses
stimulator.connect()                                  # This opens the serial connection

Now you're ready to go:

# send single, biphasic pulse with reversed current direction, 50%MSI:
stimulator.arm()                                   # Enable stimulator
stimulator.set_amplitude(50)                       # Set stimulation intensity to 50% MSO

# Setting pulse settings like this takes a few setting:
stimulator.set_current_dir('Reversed')  
stimulator.set_waveform('Biphasic')

# To speed this up, provide all settings at once:
stimulator.set_waveform(waveform='Biphasic', current_dir='Reversed', n_pulses_per_burst=2, ipi=1, baratio=1)

resp, error = stimulator.fire(get_response=True)   # Send TMS pulse and get stimulator response. 

stimulator.disarm()                                # Disable
stimulator.disconnect()                            # Free port access when you're done

print(resp)                                        # You can use the stimulator response to the TMS pulse to log youre experiment
print(stimulator.get_status())                     # Some more stimulator settings 

Caveats

  • Using the serial connection to control the stimulator does not deactivate the stimulators menu. It's possible (and perfectly fine) to change parameters at the stimulator after setting them with this toolbox. Per se, the toolbox is not notified about changes made at the stimulator itself. This means you should not rely your data analysis on the settings you sent to the stimulator, but rather use the logfiles of the actual stimulations.
  • You can send TMS pulses via the control conection if you don't mind the high lag and jitter. If timing is important always send trigger pulses via TTL to the TriggerIn port of the stimulator(jitter = 12µs) instead (MagVenture(ttl_port=...)).
  • When playing around with this toolbox make sure the TMS coil is not placed on any electronic devices...

Troubleshooting

No communication with stimulator

  • Check connection. The stimulator might have two serial ports, try the other. You're computer might have several ports, did you specifiy the correct one?
  • USB2serial adapters might cause problems. They need to provide the correct baudrate (=38400), not all are cabable of it.
  • stimulator.port.read() should give you something after pressing buttons on the stimulator menu. If this is not the case, it's most probably a hardware/driver related issue.

Occasional problems fetching information from the stimulator

  • Increase the waittime after sending a command to the stimulator before reading the response. Use the wait_s and wait_l parameters while initializing the stimulator object:
stimulator = mp.MagVenture('/dev/ttyS0', wait_s=3, wait_l=8)  # Set waittime to 3 seconds and 8 seconds

Stimulator stops responding to commands sent via serial until restart

  • This seems to happen if malformed commands are sent to the stimulator. This might be a bug in this toolbox or due to newer stimulator fimware versions. Feel free to open an issue about it.

Citation

Please cite this software when using magicPy in your studies:
Numssen, O. (2022). magicPy. DOI: 10.13140/RG.2.2.15964.46722.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

magicpy-0.1.4.tar.gz (26.8 kB view hashes)

Uploaded Source

Built Distribution

magicpy-0.1.4-py3-none-any.whl (25.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page