<div dir="ltr">pdb is the Python debugger, see:<div><br></div><div><a href="https://docs.python.org/2/library/pdb.html">https://docs.python.org/2/library/pdb.html</a><br></div><div><br></div><div>But I really wouldn&#39;t recommend using a debugger to solve your problem with labels -- just to find out what the problem is (which I think we already have). It would be better to make it so the label is valid in the first place. Or if it is valid to have a label with non-increasing / non-unique vertices, then we should support it properly in mne-python.</div><div><br></div><div>You could also write a script to deduplicate the vertices in your label file. Label files are human-readable ASCII files, so you could even do it manually if you want. This gives you a clue as to the approximate line numbers you&#39;d need to remove:</div><div><br></div><div><div>(Pdb) p np.where(np.diff(vertices) == 0)[0]</div><div>array([840, 860, 862, 864, 866, 868])</div></div><div><br></div><div>HTH,</div><div>Eric</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, May 26, 2015 at 11:37 AM, David I Leitman <span dir="ltr">&lt;<a href="mailto:leitman@mail.med.upenn.edu" target="_blank">leitman@mail.med.upenn.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Hi Eric,<div> let me clarify:  How can I use pdb like you did below (...<span style="font-family:monospace,monospace">p np.unique(vertices).shape) to automatically remove a duplicate vertice?</span><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">//thanks dave<br></font><div><div><div class="h5"><div>On May 26, 2015, at 2:33 PM, David I Leitman &lt;<a href="mailto:leitman@mail.med.upenn.edu" target="_blank">leitman@mail.med.upenn.edu</a>&gt; wrote:</div><br></div></div><blockquote type="cite"><div><div class="h5"><div style="word-wrap:break-word">Hi Eric, <div>it is complicated but essentially, I have structural labels  derived from the aprac 2009 atlas I then pass an fmri activation label derived my fsl volumetric pipeline and warped into subject freesurfer space, and then within the intersection of these labels find the source center of gravity and generate a sphere with an 8mm diameter.<div><br></div><div>here is the script, attached...</div><div>given that it is a hack (perhaps idiosyncratic to my barouque processing stream) is this pdb function you use  a good way to check for duplicates?</div><div><br></div><div>thanks// dave</div><div><br></div><div><br></div><div><br><div><div>On May 26, 2015, at 12:18 PM, Eric Larson &lt;<a href="mailto:larson.eric.d@gmail.com" target="_blank">larson.eric.d@gmail.com</a>&gt; wrote:</div><br><blockquote type="cite"><div dir="ltr"><div>Hey David,</div><div><br></div>There appear to be duplicate vertices in your label (which I renamed to &quot;rh.label&quot;):<div><br></div><div><div><font face="monospace, monospace">&gt;&gt;&gt; import mne</font></div><div><font face="monospace, monospace">&gt;&gt;&gt; import numpy as np</font></div><div><font face="monospace, monospace">&gt;&gt;&gt; label = mne.read_label(&#39;rh.label&#39;)</font></div><div><font face="monospace, monospace">Traceback (most recent call last):</font></div><div><font face="monospace, monospace">...</font></div><div><font face="monospace, monospace">ValueError: Vertices must be ordered in increasing order.<br></font></div><div><font face="monospace, monospace">&gt;&gt;&gt; import pdb; <a href="http://pdb.pm/" target="_blank">pdb.pm</a>()</font></div><div><font face="monospace, monospace">&gt; /home/larsoner/custombuilds/mne-python/mne/label.py(206)__init__()</font></div><div><font face="monospace, monospace">-&gt; raise ValueError(&#39;Vertices must be ordered in increasing order.&#39;)</font></div><div><font face="monospace, monospace">(Pdb) p np.unique(vertices).shape<br></font></div><div><font face="monospace, monospace">(1081,)</font></div><div><font face="monospace, monospace">(Pdb) p vertices.shape</font></div><div><font face="monospace, monospace">(1087,)</font></div></div><div><br></div><div>How did you create this label? It might be possible for us to de-duplicate vertices or even reorder them when loading a label in mne-python, I&#39;d have to think about if that would create issues elsewhere. Please open an issue for it on GitHub and we can discuss more there.</div><div><br></div><div>Eric</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, May 26, 2015 at 7:13 AM, David Leitman <span dir="ltr">&lt;<a href="mailto:leitman@mail.med.upenn.edu" target="_blank">leitman@mail.med.upenn.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi all,<br>
<br>
<br>
 When I run the following: roi=mne.read_label(&#39;/mnt/thothdisk2/K_AWARD/K_DATA/MEG_DATA/L13420/label/rh.K_IFG_pars_tri_operc_FMRI_ZCUE.label&#39;)<br>
<br>
<br>
i get:<br>
/home/leitman/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/mne/label.pyc in __init__(self, vertices, pos, values, hemi, comment, name, filename, subject, color, verbose)<br>
    201         vertices = np.asarray(vertices)<br>
    202         if np.any(np.diff(vertices.astype(int)) &lt;= 0):<br>
--&gt; 203             raise ValueError(&#39;Vertices must be ordered in increasing order.&#39;)<br>
    204<br>
    205         if color is not None:<br>
<br>
ValueError: Vertices must be ordered in increasing order.<br>
<br>
yet the vertices are in the correct order?<br>
<br>
 I have attached the label file, any suggestions ?<br>
<br>
thanks// dave<br>
<br>_______________________________________________<br>
Mne_analysis mailing list<br>
<a href="mailto:Mne_analysis@nmr.mgh.harvard.edu" target="_blank">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>
_______________________________________________<br>Mne_analysis mailing list<br><a href="mailto:Mne_analysis@nmr.mgh.harvard.edu" target="_blank">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></blockquote></div><br><div>
<span style="border-collapse:separate;font-family:Helvetica;border-spacing:0px"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">David I. Leitman PhD</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px"><br></span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="&#39;Lucida Grande&#39;" size="2"><span style="font-size:10px">Research Assistant Professor</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">Department of Psychiatry-</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">Neuropsychiatry program</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">Perelman School of Medicine</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">University of Pennsylvania</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">Gates Pavilion 10th floor room 1042</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">3400 Spruce St</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">Philadelphia, PA 19104-4283</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">P: <a href="tel:%28215%29%20662-7389" value="+12156627389" target="_blank">(215) 662-7389</a></span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">F: <a href="tel:%28215%29%20662-7903" value="+12156627903" target="_blank">(215) 662-7903</a></span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">E: <a href="mailto:leitman@mail.med.upenn.edu" target="_blank">leitman@mail.med.upenn.edu</a></span></font></div></div></span></div></span></div></span></div></span></div></span></div></span></div></span></div></span></div></span></div></span></div></span></div></span><span style="font-family:&#39;Lucida Grande&#39;;font-size:x-small">Faculty page:<span style="white-space:pre-wrap">        </span></span><a href="http://www.med.upenn.edu/apps/faculty/index.php/g275/p8174343" style="font-size:11px" target="_blank">http://www.med.upenn.edu/apps/faculty/index.php/g275/p8174343</a><div><span style="font-family:&#39;Lucida Grande&#39;;font-size:x-small">Lab website:</span></div><div><span style="font-family:&#39;Lucida Grande&#39;;font-size:x-small"> </span><span style="font-family:&#39;Lucida Grande&#39;;font-size:x-small"><a href="http://davidileitman.com/" target="_blank">http://davidileitman.com</a></span></div><div><br></div><div>The information contained in this e-mail message is intended only for the personal and confidential use of the recipient(s) named above.  If the reader of this message is not the intended recipient or an agent responsible for delivering it to the intended recipient, you are hereby notified that you have received this document in error and that any review, dissemination, distribution, or copying of this message is strictly prohibited.  If you have received this communication in error, please notify the the Neuropsychiatry Section immediately by e-mail, and delete the original message.</div><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;border-spacing:0px"><div style="word-wrap:break-word"><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="&#39;Lucida Grande&#39;" size="2"><span style="font-size:10px"><br></span></font></div></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></span><br>
</div>
</div></div></div></div></div><span>&lt;K_plot_label_from_stc_v12.py&gt;</span><div style="word-wrap:break-word"><div></div></div></blockquote></div><span class=""><br><div>
<span style="border-collapse:separate;color:rgb(0,0,0);font-family:Helvetica;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">David I. Leitman PhD</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px"><br></span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="&#39;Lucida Grande&#39;" size="2"><span style="font-size:10px">Research Assistant Professor</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">Department of Psychiatry-</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">Neuropsychiatry program</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">Perelman School of Medicine</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">University of Pennsylvania</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">Gates Pavilion 10th floor room 1042</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">3400 Spruce St</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">Philadelphia, PA 19104-4283</span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">P: <a href="tel:%28215%29%20662-7389" value="+12156627389" target="_blank">(215) 662-7389</a></span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">F: <a href="tel:%28215%29%20662-7903" value="+12156627903" target="_blank">(215) 662-7903</a></span></font></div><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="Lucida Grande" size="2"><span style="font-size:10px">E: <a href="mailto:leitman@mail.med.upenn.edu" target="_blank">leitman@mail.med.upenn.edu</a></span></font></div></div></span></div></span></div></span></div></span></div></span></div></span></div></span></div></span></div></span></div></span></div></span></div></span><span style="font-family:&#39;Lucida Grande&#39;;font-size:x-small">Faculty page:<span style="white-space:pre-wrap">        </span></span><a href="http://www.med.upenn.edu/apps/faculty/index.php/g275/p8174343" style="font-size:11px" target="_blank">http://www.med.upenn.edu/apps/faculty/index.php/g275/p8174343</a><div><span style="font-family:&#39;Lucida Grande&#39;;font-size:x-small">Lab website:</span></div><div><span style="font-family:&#39;Lucida Grande&#39;;font-size:x-small"> </span><span style="font-family:&#39;Lucida Grande&#39;;font-size:x-small"><a href="http://davidileitman.com" target="_blank">http://davidileitman.com</a></span></div><div><br></div><div>The information contained in this e-mail message is intended only for the personal and confidential use of the recipient(s) named above.  If the reader of this message is not the intended recipient or an agent responsible for delivering it to the intended recipient, you are hereby notified that you have received this document in error and that any review, dissemination, distribution, or copying of this message is strictly prohibited.  If you have received this communication in error, please notify the the Neuropsychiatry Section immediately by e-mail, and delete the original message.</div><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="word-wrap:break-word"><div style="font-weight:normal;font-style:normal;font-family:Helvetica;font-size:16px"><font face="&#39;Lucida Grande&#39;" size="2"><span style="font-size:10px"><br></span></font></div></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></div></span><br></span><br>
</div>
<br></span></div></div></div></blockquote></div><br></div>