<div dir="ltr">Hi will,<div><br></div><div>could you share a small snippet (e.g. 100 ms) of your data like that:</div><div><br></div><div>raw.crop(None, 0.1)</div><div><div class="gmail_extra">raw.save(&#39;my-ctf-raw.fif&#39;)</div>

<div class="gmail_extra"><br></div><div class="gmail_extra">I suspect there is some channel type in your data whic is not classified as one of these:</div><div class="gmail_extra"><br></div><div class="gmail_extra"><div class="gmail_extra">

[&#39;eeg&#39;, &#39;eog&#39;, &#39;ecg&#39;, &#39;emg&#39;, &#39;ref_meg&#39;, &#39;stim&#39;, &#39;resp&#39;, &#39;misc&#39;, &#39;chpi&#39;, &#39;syst&#39;, &#39;ias&#39;, &#39;exci&#39;]</div></div><div class="gmail_extra">

<br></div><div class="gmail_extra">Maybe your reference channels are not marked as such.</div><div class="gmail_extra">You could try to identify them by name and remove them just for the purpose of plotting using </div><div class="gmail_extra">

<br></div><div class="gmail_extra">`raw.drop_channels(channel_names)`</div><div class="gmail_extra"><br></div><div class="gmail_extra">Best,</div><div class="gmail_extra">Denis</div><div class="gmail_extra"><br></div><div class="gmail_extra">

<div class="gmail_quote">On Wed, Jul 30, 2014 at 6:00 PM,  <span dir="ltr">&lt;<a href="mailto:wgraves@psychology.rutgers.edu" target="_blank">wgraves@psychology.rutgers.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">

Hello MNE Experts,<br>
<br>
In trying to deal with CTF files for the first, time I&#39;m running into some<br>
issues that I don&#39;t understand and hope someone can easily help with. I<br>
used the mne_ctf2fiff command to convert to fiff, but I can&#39;t visualize<br>
the resulting file in mne_browse_raw (it loads without error but just<br>
looks blank). Similarly, all the steps for loading a segment of the file<br>
as raw data in mne_python work without error, until I do &quot;raw.plot()&quot;,<br>
when I get this error:<br>
<br>
In [20]: raw.plot()<br>
---------------------------------------------------------------------------<br>
RuntimeError                              Traceback (most recent call last)<br>
&lt;ipython-input-20-d4ffb847f525&gt; in &lt;module&gt;()<br>
----&gt; 1 raw.plot()<br>
<br>
/home/wgraves/data/ld_meg/scripts/src/mne/mne/fiff/base.pyc in plot(raw,<br>
events, duration, start, n_channels, bgcolor, color, bad_color,<br>
event_color, scalings, remove_dc, order, show_options, title, show, block)<br>
    846         return plot_raw(raw, events, duration, start, n_channels,<br>
bgcolor,<br>
    847                         color, bad_color, event_color, scalings,<br>
remove_dc,<br>
--&gt; 848                         order, show_options, title, show, block)<br>
    849<br>
    850     @verbose<br>
<br>
/home/wgraves/data/ld_meg/scripts/src/mne/mne/viz.pyc in plot_raw(raw,<br>
events, duration, start, n_channels, bgcolor, color, bad_color,<br>
event_color, scalings, remove_dc, order, show_options, title, show, block)<br>
   2778     inds = np.concatenate(inds).astype(int)<br>
   2779     if not len(inds) == len(info[&#39;ch_names&#39;]):<br>
-&gt; 2780         raise RuntimeError(&#39;Some channels not classified, please<br>
report &#39;<br>
   2781                            &#39;this problem&#39;)<br>
   2782<br>
<br>
RuntimeError: Some channels not classified, please report this problem<br>
<br>
Unfortunately, the data were collected in short epochs keyed to the events<br>
rather than continuously. My original plan was to use<br>
mne.fiff.concatenate_raws to concatenate across epochs/events, but I<br>
couldn&#39;t figure out how to make that work either (perhaps because I don&#39;t<br>
know what the &quot;raw&quot; argument is supposed to look like, and I can&#39;t find an<br>
example).<br>
<br>
Anyway, I would gratly appreciate any help or insight anyone can share.<br>
<br>
Thanks,<br>
Will<br>
<br>
_______________________________________________<br>
Mne_analysis mailing list<br>
<a href="mailto:Mne_analysis@nmr.mgh.harvard.edu">Mne_analysis@nmr.mgh.harvard.edu</a><br>
<a href="https://mail.nmr.mgh.harvard.edu/mailman/listinfo/mne_analysis" target="_blank">https://mail.nmr.mgh.harvard.edu/mailman/listinfo/mne_analysis</a><br>
<br>
<br>
The information in this e-mail is intended only for the person to whom it is<br>
addressed. If you believe this e-mail was sent to you in error and the e-mail<br>
contains patient information, please contact the Partners Compliance HelpLine at<br>
<a href="http://www.partners.org/complianceline" target="_blank">http://www.partners.org/complianceline</a> . If the e-mail was sent to you in error<br>
but does not contain patient information, please contact the sender and properly<br>
dispose of the e-mail.<br>
<br>
</blockquote></div><br></div></div></div>