<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">HI Alex,<div><br></div><div>sorry ... I run the following two steps earler before BEM calculation:<div><br></div><div>mne_setup_source_space --subject $SUBJECT --overwrite --spacing 5 --cps&nbsp;</div><div><br></div><div>-should I be using different parameters: because I get:</div><div><br></div><div>files like&nbsp;$SUBJECT-5-src.fif with no ico<br><div><div>On Jan 5, 2014, at 3:08 PM, David I Leitman wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">HI here is what I do:<div><br></div><div><div>########################### Step-4: FORWARD MODEL SETUP ###########################</div><div>echo ++++++++++++++++++++++++++++++++++++Step-4: &nbsp;FORWARD MODEL SETUP</div><div>echo ++++++++++++++++++++++++++++++++++++Step-4: &nbsp;FORWARD MODEL SETUP</div><div>echo ++++++++++++++++++++++++++++++++++++Step-4: &nbsp;FORWARD MODEL SETUP</div><div><br></div><div># ## for meg only model use:</div><div>#mne_setup_forward_model --subject $SUBJECT --surf --ico 4 --homog --overwrite</div><div><br></div><div># ## alternatively use below</div><div>mne_setup_forward_model --subject $SUBJECT --surf --ico 4 --overwrite</div><div><br></div><div># ## create bem 3 shell models for eeg as well as model for meg&nbsp;</div><div># ## sometimes misalignment of surfaces can give the following error:</div><div># ## "Checking that inner skull surface is inside outer skull surface...[failed]</div><div># ## Surface inner skull is not completely inside surface outer skull(sum of solid angles = 1.8995e-16 * 4*PI).</div><div># ## Could't create the geometry file"</div><div># ## in such a case att eh following&nbsp;</div><div>if [ $? == 1 ]; then</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>mne_setup_forward_model --subject $SUBJECT --surf --ico 4 --overwrite --outershift 2.0</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>if [ $? == 1 ]; then</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>mne_setup_forward_model --subject $SUBJECT --surf --ico 4 --overwrite --outershift 2.0<span class="Apple-tab-span" style="white-space:pre">        </span>--innershift 1.0</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>fi</div><div>fi</div><div><br></div><div><br></div><div>to do the forward solution I do:</div><div><br></div><div><br></div><div><div>for file in $SUBJECTS_DIR/$SUBJECT/meg/${SUBJECT}_AR-epoched.fif;</div><div>&nbsp;do</div><div>&nbsp; echo $file</div><div>&nbsp; <span class="Apple-tab-span" style="white-space:pre">        </span>echo +++++++++++++++++++++++ doing Forward solution epoched fiffile</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>echo +++++++++++++++++++++++ doing Forward solution epoched fiffile</div><div>&nbsp;<span class="Apple-tab-span" style="white-space:pre">        </span>echo +++++++++++++++++++++++ doing Forward solutionepoched fiffile</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;# for MEG only</div><div>&nbsp; &nbsp;mne_do_forward_solution \</div><div>&nbsp; &nbsp;<span class="Apple-tab-span" style="white-space:pre">        </span>--subject $SUBJECT \</div><div>&nbsp; &nbsp;<span class="Apple-tab-span" style="white-space:pre">        </span>--src $SUBJECT-5-src.fif \</div><div>&nbsp; &nbsp; <span class="Apple-tab-span" style="white-space:pre">        </span>--bem $SUBJECT-5120-5120-5120-bem-sol.fif \</div><div>&nbsp; &nbsp; <span class="Apple-tab-span" style="white-space:pre">        </span>--meas $file \</div><div>&nbsp; &nbsp; <span class="Apple-tab-span" style="white-space:pre">        </span>--megonly \</div><div>&nbsp; &nbsp; <span class="Apple-tab-span" style="white-space:pre">        </span>--fwd ${SUBJECT}_AR-epoched-${SUBJECT}-5-meg-src-fwd.fif \</div><div>&nbsp; &nbsp; <span class="Apple-tab-span" style="white-space:pre">        </span>--overwrite</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp; # for EEG only</div><div>&nbsp; &nbsp;mne_do_forward_solution \</div><div>&nbsp; &nbsp;<span class="Apple-tab-span" style="white-space:pre">        </span>--subject $SUBJECT \</div><div>&nbsp; &nbsp;<span class="Apple-tab-span" style="white-space:pre">        </span>--src $SUBJECT-5-src.fif \</div><div>&nbsp; &nbsp;<span class="Apple-tab-span" style="white-space:pre">        </span>--bem $SUBJECT-5120-5120-5120-bem-sol.fif \</div><div>&nbsp; &nbsp;<span class="Apple-tab-span" style="white-space:pre">        </span>--meas $file \</div><div>&nbsp; &nbsp;<span class="Apple-tab-span" style="white-space:pre">        </span>--eegonly \</div><div>&nbsp; &nbsp;<span class="Apple-tab-span" style="white-space:pre">        </span>--fwd ${SUBJECT}_AR-epoched-${SUBJECT}-5-eeg-src-fwd.fif \</div><div>&nbsp; &nbsp;<span class="Apple-tab-span" style="white-space:pre">        </span>--overwrite</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;# for EEG &amp; MEEG only</div><div>&nbsp; &nbsp; mne_do_forward_solution \</div><div>&nbsp; &nbsp; <span class="Apple-tab-span" style="white-space:pre">        </span>--subject $SUBJECT \</div><div>&nbsp; &nbsp; <span class="Apple-tab-span" style="white-space:pre">        </span>--src $SUBJECT-5-src.fif \</div><div>&nbsp; &nbsp; <span class="Apple-tab-span" style="white-space:pre">        </span>--bem $SUBJECT-5120-5120-5120-bem-sol.fif \</div><div>&nbsp; &nbsp; <span class="Apple-tab-span" style="white-space:pre">        </span>--meas $file \</div><div>&nbsp; &nbsp; <span class="Apple-tab-span" style="white-space:pre">        </span>--fwd ${SUBJECT}_AR-epoched-${SUBJECT}-5-meg_eeg-src-fwd.fif \</div><div>&nbsp; &nbsp; <span class="Apple-tab-span" style="white-space:pre">        </span>--overwrite</div><div>&nbsp; &nbsp; done</div></div><div><br></div><div><br></div><div>so I am still not sure why I get the ico surface error. BTW I am using mne 2.7.4</div><div><br></div><div>thanks //dave</div><div><div>On Jan 5, 2014, at 2:31 PM, Alexandre Gramfort wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div>hi David,<br><br>how do you generate your source spaces? To use this tool, you should<br>use the -ico option.<br><br>Something like:<br><br>mne_setup_source_space --oct 6 --subject sample<br><br>for an oct 6 source space with approx 8000 locations or<br><br>mne_setup_source_space --ico 5 --subject sample<br><br>for an ico 5 source space with approx 20000 locations.<br><br>If you have an old MNE version use:<br><br>mne_setup_source_space --ico -6 --subject sample<br><br>for the oct 6.<br><br>Hope this helps,<br><br>Alex<br><br><br><br>On Sun, Jan 5, 2014 at 2:02 PM, David I Leitman<br>&lt;<a href="mailto:leitman@mail.med.upenn.edu">leitman@mail.med.upenn.edu</a>&gt; wrote:<br><blockquote type="cite">Hi all<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">I have been trying to run portions of the code contained in the example<br></blockquote><blockquote type="cite">"plot_label_from_stc.py" going through line by line thing are well until<br></blockquote><blockquote type="cite">this command:<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">func_labels, _ = mne.stc_to_label(stc_mean_label, src=src, smooth=5,<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;subjects_dir=subjects_dir, connected=True)<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">at this point i get the following output errors:<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">Reading labels from parcellation..<br></blockquote><blockquote type="cite">Triangle file: created by neuromag on Wed Feb 20 19:45:05 2013 nvert =<br></blockquote><blockquote type="cite">136162 ntri = 272320<br></blockquote><blockquote type="cite"> &nbsp;read 34 labels from<br></blockquote><blockquote type="cite">/mnt/thothdisk1/K_AWARD/K_DATA/MEG_DATA/L7689/label/lh.aparc.annot<br></blockquote><blockquote type="cite">Triangle file: created by neuromag on Wed Feb 20 22:57:01 2013 nvert =<br></blockquote><blockquote type="cite">138400 ntri = 276796<br></blockquote><blockquote type="cite"> &nbsp;read 34 labels from<br></blockquote><blockquote type="cite">/mnt/thothdisk1/K_AWARD/K_DATA/MEG_DATA/L7689/label/rh.aparc.annot<br></blockquote><blockquote type="cite">[done]<br></blockquote><blockquote type="cite">---------------------------------------------------------------------------<br></blockquote><blockquote type="cite">Exception &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Traceback (most recent call last)<br></blockquote><blockquote type="cite">&lt;ipython-input-223-de7294e7cf08&gt; in &lt;module&gt;()<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;&nbsp;&nbsp;6<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;&nbsp;&nbsp;7 func_labels, _ = mne.stc_to_label(stc_mean_label, src=src, smooth=5,<br></blockquote><blockquote type="cite">----&gt; 8 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;subjects_dir=subjects_dir,<br></blockquote><blockquote type="cite">connected=True)<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;&nbsp;&nbsp;9<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">/home/leitman/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/mne-0.7.1-py2.7.egg/mne/label.pyc<br></blockquote><blockquote type="cite">in stc_to_label(stc, src, smooth, connected, subjects_dir)<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;642 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;rr = [1e3 * src[0]['rr'], 1e3 * src[1]['rr']]<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;643 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;tris = [src[0]['tris'], src[1]['tris']]<br></blockquote><blockquote type="cite">--&gt; 644 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;src_conn = spatial_src_connectivity(src).tocsr()<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;645<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;646 &nbsp;&nbsp;&nbsp;&nbsp;labels = []<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">/home/leitman/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/mne-0.7.1-py2.7.egg/mne/utils.pyc<br></blockquote><blockquote type="cite">in dec(*args, **kwargs)<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;378 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return ret<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;379 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else:<br></blockquote><blockquote type="cite">--&gt; 380 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return function(*args, **kwargs)<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;381<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;382 &nbsp;&nbsp;&nbsp;&nbsp;# set __wrapped__ attribute so ?? in IPython gets the right<br></blockquote><blockquote type="cite">source<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">/home/leitman/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/mne-0.7.1-py2.7.egg/mne/source_estimate.pyc<br></blockquote><blockquote type="cite">in spatial_src_connectivity(src, dist, verbose)<br></blockquote><blockquote type="cite"> &nbsp;2216 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The connectivity matrix describing the spatial graph<br></blockquote><blockquote type="cite">structure.<br></blockquote><blockquote type="cite"> &nbsp;2217 &nbsp;&nbsp;&nbsp;&nbsp;"""<br></blockquote><blockquote type="cite">-&gt; 2218 &nbsp;&nbsp;&nbsp;&nbsp;return spatio_temporal_src_connectivity(src, 1, dist)<br></blockquote><blockquote type="cite"> &nbsp;2219<br></blockquote><blockquote type="cite"> &nbsp;2220<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">/home/leitman/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/mne-0.7.1-py2.7.egg/mne/utils.pyc<br></blockquote><blockquote type="cite">in dec(*args, **kwargs)<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;378 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return ret<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;379 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else:<br></blockquote><blockquote type="cite">--&gt; 380 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return function(*args, **kwargs)<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;381<br></blockquote><blockquote type="cite"> &nbsp;&nbsp;382 &nbsp;&nbsp;&nbsp;&nbsp;# set __wrapped__ attribute so ?? in IPython gets the right<br></blockquote><blockquote type="cite">source<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">/home/leitman/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/mne-0.7.1-py2.7.egg/mne/source_estimate.pyc<br></blockquote><blockquote type="cite">in spatio_temporal_src_connectivity(src, n_times, dist, verbose)<br></blockquote><blockquote type="cite"> &nbsp;2072 &nbsp;&nbsp;&nbsp;&nbsp;if dist is None:<br></blockquote><blockquote type="cite"> &nbsp;2073 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if src[0]['use_tris'] is None:<br></blockquote><blockquote type="cite">-&gt; 2074 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;raise Exception("The source space does not appear to be<br></blockquote><blockquote type="cite">an ico "<br></blockquote><blockquote type="cite"> &nbsp;2075 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"surface. Connectivity cannot be<br></blockquote><blockquote type="cite">extracted from "<br></blockquote><blockquote type="cite"> &nbsp;2076 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"non-ico source spaces.")<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">Exception: The source space does not appear to be an ico surface.<br></blockquote><blockquote type="cite">Connectivity cannot be extracted from non-ico source spaces.<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">Do you have any suggestions when query<br></blockquote><blockquote type="cite">inverse_operator['src']<br></blockquote><blockquote type="cite">Out[227]: &lt;SourceSpaces: [&lt;'surf', n_vertices=136162, n_used=5759&gt;, &lt;'surf',<br></blockquote><blockquote type="cite">n_vertices=138400, n_used=5838&gt;]&gt;<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">so I think the space should be an ico surface<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">thanks //dave<br></blockquote><blockquote type="cite">David I. Leitman PhD<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">Research Assistant Professor<br></blockquote><blockquote type="cite">Department of Psychiatry-<br></blockquote><blockquote type="cite">Neuropsychiatry program<br></blockquote><blockquote type="cite">Perelman School of Medicine<br></blockquote><blockquote type="cite">University of Pennsylvania<br></blockquote><blockquote type="cite">Gates Pavilion 10th floor room 1042<br></blockquote><blockquote type="cite">3400 Spruce St<br></blockquote><blockquote type="cite">Philadelphia, PA 19104-4283<br></blockquote><blockquote type="cite">P: (215) 662-7389<br></blockquote><blockquote type="cite">F: (215) 662-7903<br></blockquote><blockquote type="cite">E: <a href="mailto:leitman@mail.med.upenn.edu">leitman@mail.med.upenn.edu</a><br></blockquote><blockquote type="cite">Faculty page: <a href="http://www.med.upenn.edu/apps/faculty/index.php/g275/p8174343">http://www.med.upenn.edu/apps/faculty/index.php/g275/p8174343</a><br></blockquote><blockquote type="cite">Lab website:<br></blockquote><blockquote type="cite"> <a href="http://davidileitman.com/">http://davidileitman.com</a><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">The information contained in this e-mail message is intended only for the<br></blockquote><blockquote type="cite">personal and confidential use of the recipient(s) named above. &nbsp;If the<br></blockquote><blockquote type="cite">reader of this message is not the intended recipient or an agent responsible<br></blockquote><blockquote type="cite">for delivering it to the intended recipient, you are hereby notified that<br></blockquote><blockquote type="cite">you have received this document in error and that any review, dissemination,<br></blockquote><blockquote type="cite">distribution, or copying of this message is strictly prohibited. &nbsp;If you<br></blockquote><blockquote type="cite">have received this communication in error, please notify the the<br></blockquote><blockquote type="cite">Neuropsychiatry Section immediately by e-mail, and delete the original<br></blockquote><blockquote type="cite">message.<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite"><br></blockquote></div></blockquote></div><br><div apple-content-edited="true">
<div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><div style="font-weight: normal; font-style: normal; font-family: Helvetica; font-size: 16px; "><font class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-span" style="font-size: 10px; "><br class="webkit-block-placeholder"></span></font></div><div style="font-weight: normal; font-style: normal; font-family: Helvetica; font-size: 16px; "><font class="Apple-style-span" face="'Lucida Grande'" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-span" style="font-size: 10px; ">P: (215) 662-7389</span></font></div><div style="font-weight: normal; font-style: normal; font-family: Helvetica; font-size: 16px; "><font class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-span" style="font-size: 10px; ">F: (215) 662-7903</span></font></div><div style="font-weight: normal; font-style: normal; font-family: Helvetica; font-size: 16px; "><font class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-span" style="font-size: 10px; ">E:&nbsp;<a href="mailto:leitman@mail.med.upenn.edu">leitman@mail.med.upenn.edu</a></span></font></div></div></div></span></div></span></div></span></div></span></div></span></div></span></div></span></div></span></div></span></div></div></div><span class="Apple-style-span" style="font-family: 'Lucida Grande'; font-size: x-small; ">Faculty page:<span class="Apple-tab-span" style="white-space: pre; ">        </span></span><a href="http://www.med.upenn.edu/apps/faculty/index.php/g275/p8174343" style="font-size: 11px; ">http://www.med.upenn.edu/apps/faculty/index.php/g275/p8174343</a><div><span class="Apple-style-span" style="font-family: 'Lucida Grande'; font-size: x-small; ">Lab website:</span></div><div><span class="Apple-style-span" style="font-family: 'Lucida Grande'; font-size: x-small; ">&nbsp;</span><span class="Apple-style-span" style="font-family: 'Lucida Grande'; font-size: x-small; "><a href="http://davidileitman.com/">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. &nbsp;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. &nbsp;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 class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><div style="font-weight: normal; font-style: normal; font-family: Helvetica; font-size: 16px; "><font class="Apple-style-span" face="'Lucida Grande'" size="2"><span class="Apple-style-span" style="font-size: 10px; "><br></span></font></div></div></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"><br class="Apple-interchange-newline">
</div>
<br></div></div>_______________________________________________<br>Mne_analysis mailing list<br><a href="mailto:Mne_analysis@nmr.mgh.harvard.edu">Mne_analysis@nmr.mgh.harvard.edu</a><br>https://mail.nmr.mgh.harvard.edu/mailman/listinfo/mne_analysis<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>http://www.partners.org/complianceline . 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 class="Apple-style-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; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><div style="font-weight: normal; font-style: normal; font-family: Helvetica; font-size: 16px; "><font class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-span" style="font-size: 10px; "><br class="webkit-block-placeholder"></span></font></div><div style="font-weight: normal; font-style: normal; font-family: Helvetica; font-size: 16px; "><font class="Apple-style-span" face="'Lucida Grande'" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-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 class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-span" style="font-size: 10px; ">P: (215) 662-7389</span></font></div><div style="font-weight: normal; font-style: normal; font-family: Helvetica; font-size: 16px; "><font class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-span" style="font-size: 10px; ">F: (215) 662-7903</span></font></div><div style="font-weight: normal; font-style: normal; font-family: Helvetica; font-size: 16px; "><font class="Apple-style-span" face="Lucida Grande" size="2"><span class="Apple-style-span" style="font-size: 10px; ">E:&nbsp;<a href="mailto:leitman@mail.med.upenn.edu">leitman@mail.med.upenn.edu</a></span></font></div></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 class="Apple-style-span" style="font-family: 'Lucida Grande'; font-size: x-small; ">Faculty page:<span class="Apple-tab-span" style="white-space: pre; ">        </span></span><a href="http://www.med.upenn.edu/apps/faculty/index.php/g275/p8174343" style="font-size: 11px; ">http://www.med.upenn.edu/apps/faculty/index.php/g275/p8174343</a><div><span class="Apple-style-span" style="font-family: 'Lucida Grande'; font-size: x-small; ">Lab website:</span></div><div><span class="Apple-style-span" style="font-family: 'Lucida Grande'; font-size: x-small; ">&nbsp;</span><span class="Apple-style-span" style="font-family: 'Lucida Grande'; font-size: x-small; "><a href="http://davidileitman.com">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. &nbsp;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. &nbsp;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 class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-variant: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><div style="font-weight: normal; font-style: normal; font-family: Helvetica; font-size: 16px; "><font class="Apple-style-span" face="'Lucida Grande'" size="2"><span class="Apple-style-span" style="font-size: 10px; "><br></span></font></div></div></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></span><br class="Apple-interchange-newline">
</div>
<br></div></div></body></html>