%Original author :Theodore P.~Pavlic %Author: Frédéric CHEVALIER %Created in: 2009-11-29 %Modified in: 2011-03-23 %source: http://links.tedpavlic.com/tex/tpavlic_cv.tex %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% NOTE: If you find that it says %% %% %% %% 1 of ?? %% %% %% %% at the bottom of your first page, this means that the AUX file %% %% was not available when you ran LaTeX on this source. Simply RERUN %% %% LaTeX to get the ``??'' replaced with the number of the last page %% %% of the document. The AUX file will be generated on the first run %% %% of LaTeX and used on the second run to fill in all of the %% %% references. %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%% Document Setup %%%%%%%%%%%%%%%%%%%%%%%%%%%% % Don't like 10pt? Try 11pt or 12pt \documentclass[10pt]{article} \usepackage[utf8]{inputenc} %\usepackage [french]{babel} % This is a helpful package that puts math inside length specifications \usepackage{calc} % This is a helpful package that puts color in your document \usepackage{xcolor} % This is a helpful package that format footnote \usepackage{footmisc} % Layout: Puts the section titles on left side of page \reversemarginpar % % PAPER SIZE, PAGE NUMBER, AND DOCUMENT LAYOUT NOTES: % % The next \usepackage line changes the layout for CV style section % headings as marginal notes. It also sets up the paper size as either % letter or A4. By default, letter was used. If A4 paper is desired, % comment out the letterpaper lines and uncomment the a4paper lines. % % As you can see, the margin widths and section title widths can be % easily adjusted. % % ALSO: Notice that the includefoot option can be commented OUT in order % to put the PAGE NUMBER *IN* the bottom margin. This will make the % effective text area larger. % % IF YOU WISH TO REMOVE THE ``of LASTPAGE'' next to each page number, % see the note about the +LP and -LP lines below. Comment out the +LP % and uncomment the -LP. % % IF YOU WISH TO REMOVE PAGE NUMBERS, be sure that the includefoot line % is uncommented and ALSO uncomment the \pagestyle{empty} a few lines % below. % %% Use these lines for letter-sized paper %\usepackage[paper=letterpaper, % %includefoot, % Uncomment to put page number above margin % marginparwidth=1.2in, % Length of section titles % marginparsep=.05in, % Space between titles and text % margin=1in, % 1 inch margins % includemp]{geometry} %% Use these lines for A4-sized paper \usepackage[paper=a4paper, %includefoot, % Uncomment to put page number above margin marginparwidth=30.5mm, % Length of section titles marginparsep=1.5mm, % Space between titles and text margin=20mm, % 25mm margins includemp]{geometry} %% More layout: Get rid of indenting throughout entire document \setlength{\parindent}{0in} %% This gives us fun enumeration environments. compactitem will be nice. \usepackage{paralist} %% Reference the last page in the page number % % NOTE: comment the +LP line and uncomment the -LP line to have page % numbers without the ``of ##'' last page reference) % % NOTE: uncomment the \pagestyle{empty} line to get rid of all page % numbers (make sure includefoot is commented out above) % \usepackage{fancyhdr,lastpage} \pagestyle{fancy} %\pagestyle{empty} % Uncomment this to get rid of page numbers \fancyhf{}\renewcommand{\headrulewidth}{0pt} \fancyfootoffset{\marginparsep+\marginparwidth} \newlength{\footpageshift} \setlength{\footpageshift} {0.5\textwidth+0.5\marginparsep+0.5\marginparwidth-2in} \lfoot{\hspace{\footpageshift}% \parbox{4in}{\, \hfill % \arabic{page} of \protect\pageref*{LastPage} % +LP % \arabic{page} % -LP \hfill \,}} % Finally, give us PDF bookmarks \usepackage{color,hyperref} \definecolor{darkblue}{rgb}{0.0,0.0,0.3} \hypersetup{colorlinks,breaklinks, linkcolor=darkblue,urlcolor=darkblue, anchorcolor=darkblue,citecolor=darkblue} %%%%%%%%%%%%%%%%%%%%%%%% End Document Setup %%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%% Helper Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%% % The title (name) with a horizontal rule under it % % Usage: \makeheading{name} % % Place at top of document. It should be the first thing. \newcommand{\makeheading}[1]% {\hspace*{-\marginparsep minus \marginparwidth}% \begin{minipage}[t]{\textwidth+\marginparwidth+\marginparsep}% {\large \bfseries #1}\\[-0.15\baselineskip]% \rule{\columnwidth}{1pt}% \end{minipage}} % The section headings % % Usage: \section{section name} % % Follow this section IMMEDIATELY with the first line of the section % text. Do not put whitespace in between. That is, do this: % % \section{My Information} % Here is my information. % % and NOT this: % % \section{My Information} % % Here is my information. % % Otherwise the top of the section header will not line up with the top % of the section. Of course, using a single comment character (%) on % empty lines allows for the function of the first example with the % readability of the second example. \renewcommand{\section}[2]% {\pagebreak[2]\vspace{2.5\baselineskip}% \phantomsection\addcontentsline{toc}{section}{#1}% \hspace{0in}% \marginpar{ % \raggedright \scshape \textcolor{blue}{#1}}#2}%colored section \raggedright \scshape #1}#2}%classical section % An itemize-style list with lots of space between items \newenvironment{outerlist}[1][\enskip\textbullet]% {\begin{itemize}[#1]}{\end{itemize}% \vspace{-.6\baselineskip}} % An environment IDENTICAL to outerlist that has better pre-list spacing % when used as the first thing in a \section \newenvironment{lonelist}[1][\enskip\textbullet]% {\vspace{-\baselineskip}\begin{list}{#1}{% \setlength{\partopsep}{0pt}% \setlength{\topsep}{0pt}}} {\end{list} \vspace{-.6\baselineskip}} % An itemize-style list with little space between items \newenvironment{innerlist}[1][\enskip\textbullet]% {\begin{compactitem}[#1]}{\end{compactitem}} \newenvironment{innerlist2}[1][\enskip -]% {\begin{compactitem}[#1]}{\end{compactitem}} \newenvironment{innerlist3}[1][\enskip $\succ$]% {\begin{compactitem}[#1]}{\end{compactitem}} % To add some paragraph space between lines. % This also tells LaTeX to preferably break a page on one of these gaps % if there is a needed pagebreak nearby. \newcommand{\blankline}{\quad\pagebreak[2]} % Footnote style \DefineFNsymbols*{asterisks}{*{**}{***}{****}{*****}{******}{*******}} \setfnsymbol{asterisks} \renewcommand{\thefootnote}{\fnsymbol{footnote}} %%%%%%%%%%%%%%%%%%%%%%%% End Helper Commands %%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%% Begin CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%% \begin{document} \makeheading{Frédéric CHEVALIER} %----------------------------- \section{Personal Information} %----------------------------- % Name: CHEVALIER \\ Firstname: Frédéric \\ Sex: male \\ Date of birth: 15$^{th}$ may 1984\\ Citizenship: French %------------------------------------- \section{Personal Contact Information} %------------------------------------- % % NOTE: Mind where the & separators and \\ breaks are in the following % table. % % ALSO: \rcollength is the width of the right column of the table % (adjust it to your liking; default is 1.85in). % \newlength{\rcollength}\setlength{\rcollength}{6.5cm}% % \begin{tabular}[t]{@{}p{\textwidth-\rcollength}p{\rcollength}} Appartement 7 & \\ 73 Promenade des Cours & \textit{Tel.:} +33 (0)6 74 48 56 21 \\ 86000 Poitiers France & \textit{E-mail:} \href{mailto:f15.chevalier@gmail.com} {f15.chevalier@gmail.com}\\ \end{tabular} %----------------------------------------- \section{Professional Contact Information} %----------------------------------------- % % NOTE: Mind where the & separators and \\ breaks are in the following % table. % % ALSO: \rcollength is the width of the right column of the table % (adjust it to your liking; default is 1.85in). % %\newlength{\rcollength}\setlength{\rcollength}{6.5cm}% % \href{http://ecoevol.labo.univ-poitiers.fr/spip.php?rubrique32}% {Laboratory Ecology, Evolution, Symbiosis} \\ \begin{tabular}[t]{@{}p{\textwidth-\rcollength}p{\rcollength}} %\href{http://ecoevol.labo.univ-poitiers.fr/spip.php?rubrique32}% % {Laboratory Ecology, Evolution, Symbiosis} & \\ UMR CNRS 6556 & \textit{Voice:} +33 (0)5 49 36 62 46 \\ \href{http://www.univ-poitiers.fr/}{University of Poitiers} & \textit{Fax:} +33 (0)5 49 45 40 15 \\ 40 avenue du Recteur Pineau & \textit{E-mail:} \href{mailto:frederic.chevalier@univ-poitiers.fr} {frederic.chevalier@univ-poitiers.fr}\\ 86022 Poitiers Cedex France & \textit{www:} \href{http://ecoevol.labo.univ-poitiers.fr/?lang=en}{ecoevol.labo.univ-poitiers.fr}\\ \end{tabular} %--------------------------- \section{Research Interests} %--------------------------- % Symbiosis, Host-Symbiont Interaction, Immunity, Immunocompetence, University education %------------------ \section{Education} %------------------ % \href{http://www.univ-poitiers.fr/}{\textbf{University of Poitiers}}, Poitiers, France \begin{outerlist} \item[] \textit{PhD} \hfill \textbf{October 2007 to present} \begin{innerlist} \item Thesis topic: \emph{Wolbachia} symbiosis: immunity involvement and hosts immunocompetence outcome \item Supervisors: \href{mailto:christine.braquart@univ-poitiers.fr} {Doctor Christine BRAQUART-VARNIER} -- \href{mailto:pierre.greve@univ-poitiers.fr} {Professor Pierre GRÈVE} \item Area of study: Impacts of \emph{Wolbachia} presence on host immunity \end{innerlist} \end{outerlist} \blankline \href{http://www.univ-perp.fr/en/index.html}{\textbf{Via Domitia University}}, Perpignan, France \begin{outerlist} \item[] \textit{M.S., Fonctional Ecology} (with Honors) \hfill \textbf{September 2005 to June 2007} \begin{innerlist} \item Thesis topic: Understanding of interactions bewtween organisms and environment from molecular to ecology levels \item Advisor: \href{mailto:mitta@univ-perp.fr} {Professor Guillaume MITTA} \item Area of study: Molecular biology and ecology \end{innerlist} \item[] \textit{B.S., Phytosciences} (with Honors) \hfill \textbf{September 2002 to June 2005} \begin{innerlist} \item Area of study: Molecular biology and plant ecology \end{innerlist} \end{outerlist} %--------------- \section{Awards} %--------------- % \href{http://www.enseignementsup-recherche.gouv.fr}{\textbf{Ministère de l'enseignement supérieur et de la recherche}} \begin{innerlist} \item \href{http://dr.education.fr/Alloc_doc/}{PhD Research Fellowship} 2007--2010 \item {Tutoring Fellowship} 2007--2010 \item \href{http://wwww.enseignementsup-recherche.gouv.fr/enseignementsup/bourses.htm/}{Merit Fellowship}, 2006--2007 \end{innerlist} \newpage %---------------------------- \section{Academic Experience} %---------------------------- % \href{http://www.univ-poitiers.fr}{\textbf{University of Poitiers}}, Poitiers, France \begin{outerlist} \item[] \textit{PhD Student}% \hfill \textbf{October 2007 to present} \begin{innerlist} \item \href{http://dr.education.fr/Alloc_doc/}{PhD Research Fellowship} 2007--2010 \end{innerlist} \end{outerlist} \begin{outerlist} \item[] \textit{Teaching Tutoring}% \hfill \textbf{October 2007 to present} \begin{innerlist} \item Master Level \begin{innerlist2} \item Master Biology, Ecology, Evolution \begin{innerlist3} \item M2 -- HPLC applications in biology -- 2h of Practical Course \end{innerlist3} \item Master \textit{Erasmus Mundus} EMAE (European Master in Applied Ecology) \begin{innerlist3} \item M1 -- Ecophysiology -- 7h of Practical Course \end{innerlist3} \item Master Ecology Engineering \begin{innerlist3} \item M1 -- Ecophysiology -- 16h of Practical Course \end{innerlist3} \item Master General Biology and Earth and Univers Sciences \begin{innerlist3} \item M1 -- Evolution of the main functions -- 5h of Tutorials -- 6h of Practical Course \end{innerlist3} \end{innerlist2} \end{innerlist} \begin{innerlist} \item Bachelor Level \begin{innerlist2} \item Bachelor Ecology and Biology of Organisms \begin{innerlist3} \item L3 -- Sensory functions -- 21h of Practical Course \item L2 -- Evolution of organization plan -- 6h of Tutorials -- 13h of Practical Course \end{innerlist3} \item Licence Biology, Geology and Earth and Univers Sciences \begin{innerlist3} \item L3 -- Neuroanatomy -- 16h of Practical Course \item L2 -- Methodology -- 24h of Practical Course \end{innerlist3} \end{innerlist2} \end{innerlist} \end{outerlist} \blankline \href{http://www.univ-perp.fr/en/index.html}{\textbf{Via Domitia University}}, Perpignan, France \begin{outerlist} \item[] \textit{Graduate Student}% \hfill \textbf{September 2005 to June 2007} \begin{innerlist} \item \href{http://wwww.enseignementsup-recherche.gouv.fr/enseignementsup/bourses.htm/}{Merit Fellowship}, 2006--2007 \end{innerlist} \item[] \textit{Graduate Research}% \begin{innerlist} \item Third training course \hfill \textbf{January 2007 to June 2007} \begin{innerlist2} \item Thesis topic: Intra-specific variation of the virulence in the host/parasitoïd \emph{Drosophila melanogaster}/\emph{Leptopilina boulardi} model: Search of target proteins of virulence factor \item Supervisor: \href{mailto:poirie@antibes.inra.fr}{Professor Marylène POIRIÉ} \end{innerlist2} \end{innerlist} \begin{innerlist} \item Second training course \hfill \textbf{July 2006 to September 2006} \begin{innerlist2} \item Thesis topic: Story of LaRD (Large Retrotransposon Derivative): Evolution of \emph{Dasheng} element across \emph{Oriza} genus \item Supervisor: \href{mailto:panaud@univ-perp.fr}{Professor Olivier PANAUD} \end{innerlist2} \end{innerlist} \begin{innerlist} \item First training course \hfill \textbf{January 2006 to June 2006} \begin{innerlist2} \item Thesis topic: The compatibility in \emph{Biomphalaria glabrata}/\emph{Echinostoma capro$\-$ni} model: Suppression subtractive hybridization library and tissular expression of candidate genes \item Supervisor: \href{mailto:mitta@univ-perp.fr}{Professor Guillaume MITTA} \end{innerlist2} \end{innerlist} \end{outerlist} %---------------------------------- \section{Responsibility activities} %---------------------------------- % \textbf{Administrative responsabilities} \begin{outerlist} \item[] \textit{\href{http://ed-icbg.univ-poitiers.fr/}{ICBG doctoral school}} \hfill \textbf{October 2007 to June 2009} \begin{innerlist} \item PhD student delegate \end{innerlist} \item[] \textit{\href{http://www.ciescentre.fr/index.php?id=3}{CIES Centre (teaching monitor formation)}} \hfill \textbf{October 2007 to June 2009} \begin{innerlist} \item Teaching monitor delegate \end{innerlist} \end{outerlist} \blankline \textbf{Associative responsabilities} \begin{outerlist} \item[] \textit{\href{http://moniteurs.poitiers.free.fr/index.php/TEMPO/TEMPO}{TEMPO association (association of PhD student and teaching monitor of Poitiers)}} \begin{innerlist} \item President of the association \hfill \textbf{May 2009 to May 2010} \item Vice President of the association \hfill \textbf{May 2008 to May 2009} \end{innerlist} \item[] \textit{\href{http://adbep.asso.univ-poitiers.fr/index.html}{ADBEP association (association of PhD student in biology and ecology of Poiters)}} \begin{innerlist} \item Secretairy of the association \hfill \textbf{October 2008 to October 2009} \item Delegate of the association in the \href{http://www.biotechno.asso.fr/}{BioTechno} network \end{innerlist} \end{outerlist} %--------------------------------------------- \section{Information dissemination activities} %--------------------------------------------- % \textbf{Scientific dissemination} \begin{outerlist} \item[] \textit{Fête de la Science} \begin{innerlist} \item Presentation of laboratory thematics to public \hfill \textbf{November 2009} \item Presentation of laboratory thematics to public \hfill \textbf{October 2007} \end{innerlist} \end{outerlist} \blankline \textbf{Teaching dissemination} \begin{outerlist} \item[] \textit{University open house} \begin{innerlist} \item Presentation of the different courses of study \hfill \textbf{January 2010} \item Presentation of the different courses of study \hfill \textbf{February 2009} \end{innerlist} \end{outerlist} %---------------------- \section{Publications} %---------------------- % \textit{\emph{Wolbachia}-isopod interactions: Expression of immune-response genes in \emph{Armadillidium vulgare}}. \textbf{Frédéric Chevalier}, Juline Herbinière-Gaboreau, Delphine Charif, Guillaume Mitta, Frédéric Gavory, Patrick Wincker, Pierre Grève, Christine Braquart-Varnier, Didier Bouchon. \textit{in prep}\\ \linebreak \textit{The immune cellular effectors of terrestrial isopod \emph{Armadillidium vulgare}: Meeting with their invaders, \emph{Wolbachia}}. \textbf{Frédéric Chevalier}, Juline Herbinière-Gaboreau, Joanne Bertaux, Maryline Raimond, Franck Morel, Didier Bouchon, Pierre Grève and Christine Braquart-Varnier. \href{http://dx.doi.org/10.1371/journal.pone.0018531}{PLoS One 2011 \textit{in press}}\\ \linebreak \textit{Variations of immune parameters in terrestrial isopods: a matter of Gender, Aging and \emph{Wolbachia}}. Mathieu Sicard, \textbf{Frédéric Chevalier}, Mickaël De Vlechouver, Didier Bouchon, Pierre Grève and Christine Braquart-Varnier. \href{http://dx.doi.org/10.1007/s00114-010-0699-2}{Naturwissenschaften 2010 97(9):819-826}\\ \linebreak \textit{Evolutionary dynamics of an ancient retrotransposon family provides insights into evolution of genome size in the genus \emph{Oryza}}. Jetty S. S. Ammiraju, Andrea Zuccolo, Yeisoo Yu, Xiang Song, Benoit Piegu, \textbf{Frederic Chevalier}, Jason G. Walling, Jianxin Ma, Jayson Talag, Darshan S. Brar, Phillip J. SanMiguel, Ning Jiang, Scott A. Jackson, Olivier Panaud and Rod A. Wing.\href{http://www3.interscience.wiley.com/journal/118488726/abstract}{The Plant Journal 2007 52(2):342-5}. %---------------------------------- \section{Conference Participations} %---------------------------------- % \textit{Oral communications} \begin{outerlist} \item \href{http://wolbachia2010.neb.com/}{6$^{th}$ Internation \emph{Wolbachia} Conference}: \textit{Impact of \emph{Wolbachia} symbiosis on immune system and immunocompetence of crustacean isopods}. \textbf{Frédéric Chevalier}\footnotemark[1], Mathieu Sicard, Joanne Bertaux, Juline Herbinière, Didier Bouchon, Pierre Grève \& Christine Braquart-Varnier. Pacific Grove, Calfornia, USA, June 9$^{th}$ to 14$^{th}$ 2010 \item \href{http://www.cost-fa0701.com/}{COST-FA0701 COST International Training School "Advances in Symbiosis Research"}: \textit{\emph{Wolbachia} symbiosis and crustacean immunity: When the small ones bully the big one}. \textbf{Frédéric Chevalier}\footnotemark[1], Pierre Grève \& Christine Braquart-Varnier. Rehovot, Israel, March 14$^{th}$ 2010. \item \href{http://www.cost-fa0701.com/}{COST-FA0701 Action Workshop}: \textit{\emph{Wolbachia} symbiosis: Impacts on terrestrial isopod immune system}. \textbf{Frédéric Chevalier}, Juline Herbinière, Mathieu Sicard, Pierre Grève, Christine Braquart-Varnier \& Didier Bouchon\footnotemark[1]. Madeira Island, Portugal, January 20$^{th}$ to 23$^{th}$ 2010. \item Microbiology Day of Poitiers: \textit{Wolbachia ($\alpha$-proteobacteria) effects on immune cellular effectors of \emph{Armadillidium vulgare} (crustacean, terrestrial isopod)}. \textbf{Frédéric Chevalier}\footnotemark[1], Pierre Grève \& Christine Braquart-Varnier. Poitiers, France, December 9$^{th}$ 2009. \item Immuninv: \textit{\emph{Wolbachia} effects on immune effectors of \emph{Armadillidium vulgare} (crustacean, terrestrial isopod)}. \textbf{Frédéric Chevalier}\footnotemark[1], Juline Herbinière, Mathieu Sicard, Maryline Raimond, Franck Morel, Pierre Grève \& Christine Braquart-Varnier. Poi$\-$tiers France, October 21$^{th}$ to 23$^{th}$ 2009. \item PhD Student Day: \textit{\emph{Wolbachia} effects on immune effectors of \emph{Armadillidium vulgare} (crustacean, terrestrial isopod)}. \textbf{Frédéric Chevalier}\footnotemark[1], Juline Herbinière, Mathieu Sicard, Maryline Raimond, Franck Morel, Pierre Grève \& Christine Braquart-Varnier. Poitiers, France, June 25$^{th}$ 2009. \item REID (French network of continue interaction ecology): \textit{\emph{Wolbachia} effects on immune cellular effectors of \emph{Armadillidium vulgare} (crustacean, terrestrial isopod)}. \textbf{Frédéric Chevalier}\footnotemark[1], Juline Herbinière, Mathieu Sicard, Maryline Raimond, Fran$\-$ck Morel, Pierre Grève \& Christine Braquart-Varnier. Amiens, France, January 14$^{th}$ to 15$^{th}$ 2009. \item Immuninv: \textit{\emph{Wolbachia} ($\alpha$-proteobacteria) symbiosis in terrestrial crustaceans: interactions with immune system.} Juline Herbinière, \textbf{Frédéric Chevalier}, Maryline Raimond, Mathieu Sicard, Jean-Marc Strub, Pierre Grève \& Christine Braquart-Varnier\footnotemark[1]. Montpellier, France, May 23$^{th}$ to 25$^{th}$ 2008. \item Immuninv (French community of invertebrate immunologists): \textit{\emph{Wolbachia} effects on immune cellular effectors of \emph{Armadillidium vulgare} (crustacean, terrestrial isopod)}. \textbf{Frédéric Chevalier}\footnotemark[1], Juline Herbinière, Mathieu Sicard, Maryline Raimond, Franck Morel, Pierre Grève \& Christine Braquart-Varnier. Montpellier, France, May 23$^{th}$ to 25$^{th}$ 2008. \footnotetext[1]{Presenting author} \end{outerlist} \blankline \textit{Poster communications} \begin{outerlist} \item \href{http://wolbachia2010.neb.com/}{6$^{th}$ Internation \emph{Wolbachia} Conference}: \textit{FISHing \emph{Wolbachia}: let woodlice catch your eyes}. Joanne Bertaux, \textbf{Frédéric Chevalier}, Christine Braquart-Varnier, Mathieu Sicard, Pierre Grève \& Didier Bouchon\footnotemark[1]. Pacific Grove, Calfornia, USA, June 9$^{th}$ to 14$^{th}$ 2010. \item Immuninv: \textit{Vous Vous En Fishez, Des Cloportes ? Pas \emph{Wolbachia} !} Joanne Bertaux\footnotemark[1], \textbf{Frédéric Chevalier}, Christine Braquart-Varnier, Mathieu Sicard, Pierre Grève \& Didier Bouchon. Poitiers, France, October 21$^{th}$ to 23$^{th}$ 2009. \item Immuninv: \textit{Immunocompetence, aging and \emph{Wolbachia}.} \textbf{Frédéric Chevalier}\footnotemark[1], Mickael De Vlechouver, Didier Bouchon, Pierre Grève, Christine Braquart-Varnier \& Mathieu Sicard. Poitiers, France, October 21$^{th}$ to 23$^{th}$ 2009. \item Immuninv (French community of invertebrate immunologists): \textit{\emph{Wolbachia} symbiosis: impacts on terrestrial isopod immune system}. \textbf{Frédéric Chevalier}\footnotemark[1], Mathieu Sicard, Juline Herbinière, Franck Morel, Didier Bouchon, Pierre Grève \& Christine Braquart-Varnier. Poitiers, France, October 21$^{th}$ to 23$^{th}$ 2009. \item \href{http://www.union.wisc.edu/symbiosis}{6$^{th}$ International Symbiosis Society}: \textit{\emph{Wolbachia} symbiosis: Impacts on terrestrial isopod immune system}. \textbf{Frédéric Chevalier}, Mathieu Sicard\footnotemark[1], Juline Herbinière, Franck Morel, Didier Bouchon, Pierre Grève \& Christine Braquart-Varnier. Madison, Wisconsin, USA, August 9$^{th}$ to 15$^{th}$ 2009. \item \href{http://www.cost-fa0701.com/}{COST-FA0701 Action Workshop Immunity and Symbiosis}: \textit{Immunocompetence, aging and \emph{Wolbachia}}. \textbf{Frédéric Chevalier}\footnotemark[1], Mickael De Vlechouver, Didier Bouchon, Pierre Grève, Christine Braquart-Varnier \& Mathieu Sicard. Aussois, France, May 27$^{th}$ to 30$^{th}$ 2009. \item \href{http://www.cnrs.fr/insb/cjm/}{Jacques Monod Conferences}: \textit{\emph{Wolbachia} symbiosis: Impacts on terrestrial isopod immune system.} \textbf{Frédéric Chevalier}, Juline Herbinière, Mathieu Sicard, Franck Morel, Didier Bouchon, Pierre Grève \& Christine Braquart-Varnier\footnotemark[1]. Aussois, France, May 23$^{th}$ to 27$^{th}$ 2009. %\footnotetext[1]{Presenting author} \end{outerlist} %-------------------------------------- \section{Training school participation} %-------------------------------------- % \href{http://www.agri.huji.ac.il/index-eng.html}{\textbf{The Hebrew University of Jerusalem}}, Rehovot, Israël \begin{outerlist} \item[] \textit{\href{http://www.cost-fa0701.com/}{COST Training School} - Advances in Symbiosis Research} \hfill \textbf{March 13$^{th}$ to 19$^{th}$ 2009} \begin{innerlist} \item Aims : state of the art in the symbiosis research domain in the COST Action FA0701. \item Advisor : \href{mailto:yuval@agri.huji.ac.il} {Professeur Boaz YUVAL} \item Topic : symbiosis study and associated techniques. \end{innerlist} \end{outerlist} %---------------------------- \section{Technical \\ Skills} %---------------------------- % \textit{Experimental skills} \begin{outerlist} \item Nucleic acids: DNA extraction, RNA extraction, PCR, RT-PCR, qPCR, RT-qPCR, cDNA library conception, DNA cloning, Sanger sequencing, \emph{in situ} hybridization \item Proteins: Western blot, quantification of enzyme activity, protein expression in heterologous system, interaction detection (two hybrid system), HPLC protein purification \item Cell biology: flow cytometry, apoptotic labelling (TUNEL and Annexin labelling), cell separation on gradient, manual and automated cell counting, epifluorescent microscopy, confocal microscopy, electron microscopy \item Microbiology: fungi cultures, bacteria cultures, bacteria injections \end{outerlist} \blankline \textit{Bioinformatic skills} \begin{outerlist} \item \href{http://blast.ncbi.nlm.nih.gov/Blast.cgi}{\textsc{Blast}}: local and online blast local, automated blast, conserved domain search tools (CDS) \item \href{http://www.mbio.ncsu.edu/BioEdit/bioedit.html}{\textsc{Bioedit}}: nucleotide and protein alignment (ClustalX), analysis of sequencing chromatogram,... \item Alignment algorithms: Clustal, \href{http://bioinfo.genotoul.fr/multalin/multalin.html} {\textsc{Multalin}}, MAFFT, PRANK, Guidance \item Statistic: R software, Jump software \end{outerlist} %\newpage %--------------------- \section{Other skills} %--------------------- % \textit{Informatic skills} \begin{outerlist} \item Programming: UNIX shell scripting, R scripting \item Applications: \TeX{}, \LaTeX{}, B\textsc{ib}\TeX{}, Microsoft Office, OpenOffice, LibreOffice and other office suites for GNU/Linux or Windows platforms \item Operating systems: GNU/Linux (Distributions Ubuntu, Mandriva, Debian), Microsoft Windows (2000/XP/Vista/7) \end{outerlist} \blankline \textit{Language skills} \begin{outerlist} \item Anglais : good working knowledge, TOEIC result 735/990 (oral comprehension 330/495, writting 405/495) (corresponding to CECRL level B1) \item Spanish: good comprehension \item Latin: good comprehension \end{outerlist} \end{document} %%%%%%%%%%%%%%%%%%%%%%%%%% End CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%%%