mne_kit2fiff STI problem

Hi everyone,

I have been experiencing a rather bizarre problem with the conversion tool
mne_kit2fiff and I was wondering if someone could help. After converting my
data, the synthetic trigger channel remains empty even though there is the
trigger channels are present in the txt file and have the appropriate
amplitude changes. I have tried changing the threshold but all the
triggering event information remains lost.

I have linked below a five second sample of my data. Here, I can see the
channels with the appropriate trigger information but it does not appear in
the fif file after conversion. It also includes the raw text file,
parameter files and a shell script to run it (with minor changes needed for
path).

https://www.dropbox.com/s/milaotpkss7xlk2/sample.zip

Best,

Hi Teon,

sorry for taking long to get back to you.

You need to set the "--stimthresh 2e-11"

mne_kit2fiff --elp ${subject}.elp --hsp ${subject}.hsp --sns sns.txt
--hpi coregis.txt --raw ${subject}.txt --out ${subject}_raw.fif --stim
${triggers} --aligntol 6 --lowpass 30 --stimthresh 2e-11

for figure this out I loaded the sample.txt file in python and plotted
channel 166

$import pylab as pl
$import numpy as np
$data = np.loadtxt('sample.txt')
$pl.plot(data[166])

best,
Alex