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
andwait_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
Built Distribution
File details
Details for the file magicpy-0.1.4.tar.gz
.
File metadata
- Download URL: magicpy-0.1.4.tar.gz
- Upload date:
- Size: 26.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db6f615b60671866d94aeb701f6b875d34e7a9ffa06859ef018500dc1a583fa8 |
|
MD5 | da6e26a84e9ec9970391804dc5ff3170 |
|
BLAKE2b-256 | e231b96497e3c4932cc606f19af62666e2caa6b34d7b30a2552b921b5d38809d |
File details
Details for the file magicpy-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: magicpy-0.1.4-py3-none-any.whl
- Upload date:
- Size: 25.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2174b245c5a99d23ac2e8f86f939d3b52a19f7be76870f109470b96f7ad704c9 |
|
MD5 | 1bcf2444fcf7751c6682e3b5a5c4f805 |
|
BLAKE2b-256 | d286d71214071d83652a614dbd318cbd1de6f2b794430e79fbeee9e3c06301e7 |