%Original author: Theodore P.~Pavlic %Author: Frédéric CHEVALIER %Created in: 2009-11-29 %Modified in: 2011-12-21 %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 [english]{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} %----------------------------- % Last Name: CHEVALIER \\ First Name: Frédéric \\ Sex: male \\ Date of birth: 15$^{th}$ may 1984\\ Citizenship: French\\ Marital status: single %------------------------------------- \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 243 & \\ 27 rue du Pontreau & \textit{Tel.:} +33 (0)6 43 46 89 09 \\ 86000 Poitiers France & \textit{E-mail:} \href{mailto:frederic.d.chevalier@gmail.com} {frederic.d.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} %------------------ % \textbf{Education and Research Assistant}% \hfill \textbf{October 2010 to August 2011} \begin{outerlist} \item[] \href{http://www.univ-poitiers.fr/}{\textbf{University of Poitiers}}, Poitiers, France \begin{innerlist} \item M.S. level \begin{innerlist2} \item Teaching: 16h of Tutorials -- 37h of Practical Courses \item Domain: Immunology, Ecophysiology \item Main Masters: \begin{innerlist3} \item Research Master in Biology, Ecology, Evolution \item Master \textit{Erasmus Mundus} EMAE (European Master in Applied Ecology) \end{innerlist3} \end{innerlist2} \blankline \item B.S. level \begin{innerlist2} \item Teaching: 54h of Tutorials -- 112h of Practical Courses \item Domain: Sensory functions, Neuroanatomy, Comparative anatomy \item Main Bachelors: \begin{innerlist3} \item Bachelor in Ecology and Organism Biology \item Bachelor in Life Sciences and Geology \end{innerlist3} \end{innerlist2} \end{innerlist} \end{outerlist} \blankline \textbf{PhD} (with Honors) \hfill \textbf{October 2007 to June 2011} \begin{outerlist} \item[] \href{http://www.univ-poitiers.fr/}{\textbf{University of Poitiers}}, Poitiers, France \begin{innerlist} \item Thesis topic: \emph{Wolbachia} symbiosis: impacts on immunity and immunocompetence of its host \textit{Armadillidium vulgare} (crustacean isopod) \begin{innerlist2} \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 Funding: \href{http://dr.education.fr/Alloc_doc/}{PhD Research Fellowship} -- {Tutoring Fellowship} \item[] \end{innerlist2} \item Graduate school formations: \begin{innerlist2} \item Electron and optic microscopy \item Team management initiation \item Education formations \item TOEIC \end{innerlist2} \end{innerlist} \end{outerlist} \blankline \textbf{Teaching Tutoring} \hfill \textbf{October 2007 to September 2010} \begin{outerlist} \item[] \href{http://www.univ-poitiers.fr/}{\textbf{University of Poitiers}}, Poitiers, France \begin{innerlist} \item M.S. level \begin{innerlist2} \item Teaching: 16h of Tutorials -- 37h of Practical Courses \item Domain: Ecophysiology \item Main Masters: \begin{innerlist3} \item Research Master in Biology, Ecology, Evolution \item Master \textit{Erasmus Mundus} EMAE (European Master in Applied Ecology) \end{innerlist3} \end{innerlist2} \blankline \item B.S. level \begin{innerlist2} \item Teaching: 6h of Tutorials -- 74h of Practical Courses \item Domains: Sensory functions, Neuroanatomy, Comparative anatomy \item Main Bachelors: \begin{innerlist3} \item Bachelor in Ecology and Organism Biology \item Bachelor in Life Sciences and Geology \end{innerlist3} \end{innerlist2} \end{innerlist} \end{outerlist} \blankline \textbf{M.S., Functional Ecology: from molecules to natural population} (with Honors) -- Advisor: \href{mailto:mitta@univ-perp.fr}{Professor Guillaume MITTA} \hfill \textbf{September 2005 to June 2007} \begin{outerlist} \item[] \href{http://www.univ-perp.fr/fr/index.html}{\textbf{University Via Domitia}}, Perpignan, France \begin{innerlist} \item Third training course: Intra-specific variation of the virulence in the host/parasitoid \emph{Drosophila melanogaster}/\emph{Leptopilina boulardi} model: Search of target proteins of virulence factor \hfill \textbf{January 2007 to June 2007} \begin{innerlist2} \item Supervisor: \href{mailto:poirie@antibes.inra.fr}{Professor Marylène POIRIÉ} \item Funding: \href{http://wwww.enseignementsup-recherche.gouv.fr/enseignementsup/bourses.htm/}{Merit Fellowship}, 2006--2007 \item Laboratory: Equipe Génétique Evolutive des Interactions Parasitaires, UMR CNRS 1112, Centre INRA, Sophia-Antipolis, France \end{innerlist2} \blankline \item Second training course: Story of LaRD (Large Retrotransposon Derivative): Evolution of \emph{Dasheng} element across \emph{Oriza} genus \hfill \textbf{July 2006 to September 2006} \begin{innerlist2} \item Supervisor: \href{mailto:panaud@univ-perp.fr}{Professor Olivier PANAUD} \item Laboratory: Laboratoire Génome et Développement des Plantes, UMR CNRS 5096, University of Perpignan, France \end{innerlist2} \blankline \item First training course: The compatibility in \emph{Biomphalaria glabrata}/\emph{Echinostoma capro$\-$ni} model: Suppression subtractive hybridization library and tissular expression of candidate genes \hfill \textbf{January 2006 to June 2006} \begin{innerlist2} \item Supervisor: \href{mailto:mitta@univ-perp.fr}{Professor Guillaume MITTA} \item Laboratory: Laboratoire de Parasitologie Fonctionnelle et Évolutive, UMR CNRS 5555, University of Perpignan, France \end{innerlist2} \end{innerlist} \end{outerlist} \blankline \textbf{B.S., Phytosciences} (with Honors) \hfill \textbf{September 2002 to June 2005} \begin{outerlist} \item[] \href{http://www.univ-perp.fr/fr/index.html}{\textbf{University Via Domitia}}, Perpignan, France \begin{innerlist} \item Molecular Biology, Plant ecology, Organic chemistry \end{innerlist} \end{outerlist} %-------------------------------- \section{Supervision of students} %-------------------------------- % \textit{Bachelor student} \begin{outerlist} \item Romain PIGEAULT: Characterization of hemocyte functions \hfill \textbf{May to June 2010} \end{outerlist} \blankline \textit{Master student} \begin{outerlist} \item Joa MANGOMBI: Characterization of the phenoxidase activity type in the terrestrial isopods \hfill \textbf{April to June 2011} \end{outerlist} %--------------------- \section{Publications} %--------------------- % \textit{Feminizing \emph{Wolbachia}: A transcriptomics approach with insights on the 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. Accepted in \href{http://www.biomedcentral.com/bmcmicrobiol/}{BMC Microbiology}.\\ \textit{\emph{Armadillidium vulgare} – \emph{Wolbachia} association: Impacts on host immune system and immunocompetence}. \textbf{Frédéric Chevalier}, Mathieu Sicard, Joanne Bertaux, Juline Herbinière, Franck Morel, Didier Bouchon, Pierre Grève \& Christine Braquart-Varnier. \href{http://www.istib-2011.si/uploads/media/ISTIB_2011_Proceedings.pdf}{Proceedings of the 8$^{th}$ International Symposium of Terrestrial Isopod Biology 2011}.\\ \textit{The first reference transcriptome in isopods}. \textbf{Frédéric Chevalier}, Juline Herbinière-Gabo$\-$reau, Delphine Charif, Guillaume Mitta, Frédéric Gavory, Patrick Wincker, Pierre Grève, Christine Braquart-Varnier, Didier Bouchon. \href{http://www.istib-2011.si/uploads/media/ISTIB_2011_Proceedings.pdf}{Proceedings of the 8$^{th}$ International Symposium of Terrestrial Isopod Biology 2011}.\\ \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 \& Christine Braquart-Varnier. \href{http://dx.doi.org/10.1371/journal.pone.0018531}{PLoS One 2011 6(4):e18531}.\\ \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 \& Christine Braquart-Varnier. \href{http://dx.doi.org/10.1007/s00114-010-0699-2}{Naturwissenschaften 2010 97(9):819-826}.\\ \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 \& 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} (\footnotemark[1]presenting author) \begin{outerlist} \item \href{http://www.istib-2011.si/}{8$^{th}$ International Symposium of Terrestrial Isopod Biology}: \textit{\emph{Armadillidium vulgare} – \emph{Wolbachia} association: Impacts on host immune system and immunocompetence}. \textbf{Frédéric Chevalier}\footnotemark[1], Mathieu Sicard, Joanne Bertaux, Juline Herbinière, Franck Morel, Didier Bouchon, Pierre Grève \& Christine Braquart-Varnier. Bled, Slovenia, June 19$^{th}$ to 23$^{rd}$ 2011. \textbf{Price : Third best presentation.} \item \href{http://www.istib-2011.si/}{8$^{th}$ International Symposium of Terrestrial Isopod Biology}: \textit{The first reference transcriptome in isopods}. \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\footnotemark[1]. Bled, Slovenia, June 19$^{th}$ to 23$^{rd}$ 2011. \item Immuninv: \textit{\emph{Wolbachia} symbiosis and immunity in \emph{Armadillidium vulgare}: interactions and impacts}. \textbf{Frédéric Chevalier}, Joanne Bertaux, Mathieu Sicard, Juline Herbinière, Didier Bouchon, Pierre Grève \& Christine Braquart-Varnier\footnotemark[1]. Nice, France, May 4$^{th}$ to 6$^{th}$ 2011 \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, California, 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$^{rd}$ 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$^{st}$ to 23$^{rd}$ 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$^{rd}$ 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$^{rd}$ to 25$^{th}$ 2008. \end{outerlist} \blankline \textit{Poster communications} (\footnotemark[1]presenting author) \begin{outerlist} \item \href{http://www.cnrs.fr/insb/cjm/archives/2011/docs/Sorci_Milinski_2011_web.pdf}{Jacques Monod Conferences}: \textit{\emph{Wolbachia} symbiosis and \emph{Armadilidium vulgare} immunity: interactions and impacts}. \textbf{Frédéric Chevalier}, Joanne Bertaux, Mathieu Sicard, Juline Herbinière, Didier Bouchon, Pierre Grève \& Christine Braquart-Varnier\footnotemark[1]. Roscoff, France, September 3$^{rd}$ to 7$^{th}$ 2011. \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, California, 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$^{st}$ to 23$^{rd}$ 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$^{st}$ 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$^{st}$ to 23$^{rd}$ 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/archives/2009/docs/Theopold_Ferrandon_2009_web.pdf}{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$^{rd}$ to 27$^{th}$ 2009. \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/index.php?option=com_content&view=article&id=39:cost-training-school-advances-in-symbiosis-research-march-13-19-2010&catid=7:activities&Itemid=18}{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{Scientific services} %---------------------------- % \textit{Reviewer activities} \begin{outerlist} \item Reviewer for \href{http://www.elsevier.com/wps/find/journaldescription.cws_home/506033/description#description}{Gene} \end{outerlist} %---------------------------- \section{Technical \\ Skills} %---------------------------- % \textit{Experimental skills} \begin{outerlist} \item Nucleic acids: DNA extraction, RNA extraction, Southern, Northern, PCR, RT-PCR, qPCR, RT-qPCR, cDNA library conception, DNA cloning, Sanger sequencing, \emph{in situ} hybridization \item Proteins: Protein extraction, 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, sample preparation for electron microscopy \item Microbiology: Fungi cultures (yeast and \textit{Metarhizium anisopliae}), bacteria cultures, bacteria injections, bacterial and yeast transformations (heat shock or electroporation) \item Breeding: flies (\textit{Drosophila}), woodlice (terrestrial isopods) \end{outerlist} \blankline \textit{Bioinformatic skills} \begin{outerlist} \item Nucleic and protein sequence similarity search: \href{http://blast.ncbi.nlm.nih.gov/Blast.cgi}{\textsc{Blast}} (local or online blast) \item Protein domain similarity search: \href{http://crisceb.unina2.it/angelo/PROTEIN_TOOLS/PROSCAN/}{ProScan}, \href{http://www.ncbi.nlm.nih.gov/Structure/cdd/wrpsb.cgi}{Conserved Domain Search} \item Nucleic and protein sequence alignment: \href{http://www.mbio.ncsu.edu/BioEdit/bioedit.html}{\textsc{Bioedit}}, \href{http://www.clustal.org/}{Clustal}, \href{http://guidance.tau.ac.il/overview.html}{Guidance}, \href{http://bioinfo.genotoul.fr/multalin/multalin.html}{\textsc{Multalin}}, \href{http://mafft.cbrc.jp/alignment/software/}{\textsc{Mafft}}, \href{http://www.ebi.ac.uk/goldman-srv/prank/prank/}{\textsc{Prank}}, \href{http://smart.embl-heidelberg.de/}{\textsc{Smart}} \item Survival rate analysis: \href{http://en.wikipedia.org/wiki/Logrank_test}{LogRank test} and \href{http://en.wikipedia.org/wiki/Proportional_hazards_models}{Cox Models} \item New-generation sequencing data analysis (notions): \href{http://sourceforge.net/apps/mediawiki/mira-assembler/index.php?title=Main_Page}{\textsc{Mira}} (sequence assembly), \href{http://www.phrap.org/phredphrapconsed.html}{Phred / Phrap / Consed} (sequence assembly), \href{http://samtools.sourceforge.net/}{SAMtools} (sequence alignment), \href{http://www.sanger.ac.uk/resources/software/artemis/}{Artemis} (genome annotation), \href{http://bio-bwa.sourceforge.net/}{BWA} (sequence alignment), \href{http://cufflinks.cbcb.umd.edu/}{Cufflinks} (RNA-Seq data analysis) \end{outerlist} %\newpage %--------------------- \section{Other skills} %--------------------- % \textit{Informatic skills} \begin{outerlist} \item Statistic softwares: \href{http://www.r-project.org/}{R program}, \textsc{Jmp} \item Programming: UNIX shell scripting, R scripting \item Applications: Microsoft Office, \href{http://why.openoffice.org/}{OpenOffice.org}, \href{http://www.libreoffice.org/}{LibreOffice} for GNU/Linux or Windows platforms, \href{http://en.wikipedia.org/wiki/LaTeX}{\LaTeX{}}, \href{http://en.wikipedia.org/wiki/BibTeX}{B\textsc{ib}\TeX{}} \item Image processing: \href{http://rsbweb.nih.gov/ij/}{ImageJ}, \href{http://www.gimp.org/}{GIMP}, \href{http://inkscape.org/?lang=en}{Inkscape} \item Operating systems: GNU/Linux (Ubuntu, Mandriva, Debian distributions), Microsoft Windows (2000/XP/Vista/7) \end{outerlist} \blankline \textit{Language skills} \begin{outerlist} \item English: 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} %---------------------------------- \section{Responsibility activities} %---------------------------------- % \textbf{Administrative responsabilities} \begin{outerlist} \item[] \textit{\href{http://ed-icbg.univ-poitiers.fr/}{ICBG graduate 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 Secretary 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{Science Festival} \begin{innerlist} \item Presentation of the thematics of the laboratory Ecology, Evolution, Symbiosis to public \hfill \textbf{November 2009} \item Presentation of the thematics of the laboratory Ecology, Evolution, Symbiosis 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 Bachelor courses of study \item Presentation of the Research Master in Biology, Ecology, Evolution \item Presentation of the Master \textit{Erasmus Mundus} EMAE (European Master in Applied Ecology) \item Presentation of the Professional Master in Ecological Engineering \end{innerlist} \end{outerlist} %---------------- \section{Hobbies} %---------------- % \textbf{Musical activities} \begin{outerlist} \item[] \textit{Trumpeter} \begin{innerlist} \item Certificate of Music obtained in the Conservatory of Perpignan (France) (12 years of study) \hfill \textbf{June 2004} \item Member of the Municipal Orchestra of Perpignan \hfill \textbf{September 2001 to December 2006} \end{innerlist} \end{outerlist} \blankline \end{document} %%%%%%%%%%%%%%%%%%%%%%%%%% End CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%%%