-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookdown-demo.tex
3985 lines (3181 loc) · 163 KB
/
bookdown-demo.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% Options for packages loaded elsewhere
\PassOptionsToPackage{unicode}{hyperref}
\PassOptionsToPackage{hyphens}{url}
%
\documentclass[
]{book}
\usepackage{amsmath,amssymb}
\usepackage{lmodern}
\usepackage{iftex}
\ifPDFTeX
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{textcomp} % provide euro and other symbols
\else % if luatex or xetex
\usepackage{unicode-math}
\defaultfontfeatures{Scale=MatchLowercase}
\defaultfontfeatures[\rmfamily]{Ligatures=TeX,Scale=1}
\fi
% Use upquote if available, for straight quotes in verbatim environments
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
\IfFileExists{microtype.sty}{% use microtype if available
\usepackage[]{microtype}
\UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts
}{}
\makeatletter
\@ifundefined{KOMAClassName}{% if non-KOMA class
\IfFileExists{parskip.sty}{%
\usepackage{parskip}
}{% else
\setlength{\parindent}{0pt}
\setlength{\parskip}{6pt plus 2pt minus 1pt}}
}{% if KOMA class
\KOMAoptions{parskip=half}}
\makeatother
\usepackage{xcolor}
\usepackage{color}
\usepackage{fancyvrb}
\newcommand{\VerbBar}{|}
\newcommand{\VERB}{\Verb[commandchars=\\\{\}]}
\DefineVerbatimEnvironment{Highlighting}{Verbatim}{commandchars=\\\{\}}
% Add ',fontsize=\small' for more characters per line
\usepackage{framed}
\definecolor{shadecolor}{RGB}{248,248,248}
\newenvironment{Shaded}{\begin{snugshade}}{\end{snugshade}}
\newcommand{\AlertTok}[1]{\textcolor[rgb]{0.94,0.16,0.16}{#1}}
\newcommand{\AnnotationTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
\newcommand{\AttributeTok}[1]{\textcolor[rgb]{0.77,0.63,0.00}{#1}}
\newcommand{\BaseNTok}[1]{\textcolor[rgb]{0.00,0.00,0.81}{#1}}
\newcommand{\BuiltInTok}[1]{#1}
\newcommand{\CharTok}[1]{\textcolor[rgb]{0.31,0.60,0.02}{#1}}
\newcommand{\CommentTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textit{#1}}}
\newcommand{\CommentVarTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
\newcommand{\ConstantTok}[1]{\textcolor[rgb]{0.00,0.00,0.00}{#1}}
\newcommand{\ControlFlowTok}[1]{\textcolor[rgb]{0.13,0.29,0.53}{\textbf{#1}}}
\newcommand{\DataTypeTok}[1]{\textcolor[rgb]{0.13,0.29,0.53}{#1}}
\newcommand{\DecValTok}[1]{\textcolor[rgb]{0.00,0.00,0.81}{#1}}
\newcommand{\DocumentationTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
\newcommand{\ErrorTok}[1]{\textcolor[rgb]{0.64,0.00,0.00}{\textbf{#1}}}
\newcommand{\ExtensionTok}[1]{#1}
\newcommand{\FloatTok}[1]{\textcolor[rgb]{0.00,0.00,0.81}{#1}}
\newcommand{\FunctionTok}[1]{\textcolor[rgb]{0.00,0.00,0.00}{#1}}
\newcommand{\ImportTok}[1]{#1}
\newcommand{\InformationTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
\newcommand{\KeywordTok}[1]{\textcolor[rgb]{0.13,0.29,0.53}{\textbf{#1}}}
\newcommand{\NormalTok}[1]{#1}
\newcommand{\OperatorTok}[1]{\textcolor[rgb]{0.81,0.36,0.00}{\textbf{#1}}}
\newcommand{\OtherTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{#1}}
\newcommand{\PreprocessorTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textit{#1}}}
\newcommand{\RegionMarkerTok}[1]{#1}
\newcommand{\SpecialCharTok}[1]{\textcolor[rgb]{0.00,0.00,0.00}{#1}}
\newcommand{\SpecialStringTok}[1]{\textcolor[rgb]{0.31,0.60,0.02}{#1}}
\newcommand{\StringTok}[1]{\textcolor[rgb]{0.31,0.60,0.02}{#1}}
\newcommand{\VariableTok}[1]{\textcolor[rgb]{0.00,0.00,0.00}{#1}}
\newcommand{\VerbatimStringTok}[1]{\textcolor[rgb]{0.31,0.60,0.02}{#1}}
\newcommand{\WarningTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
\usepackage{longtable,booktabs,array}
\usepackage{calc} % for calculating minipage widths
% Correct order of tables after \paragraph or \subparagraph
\usepackage{etoolbox}
\makeatletter
\patchcmd\longtable{\par}{\if@noskipsec\mbox{}\fi\par}{}{}
\makeatother
% Allow footnotes in longtable head/foot
\IfFileExists{footnotehyper.sty}{\usepackage{footnotehyper}}{\usepackage{footnote}}
\makesavenoteenv{longtable}
\usepackage{graphicx}
\makeatletter
\def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi}
\def\maxheight{\ifdim\Gin@nat@height>\textheight\textheight\else\Gin@nat@height\fi}
\makeatother
% Scale images if necessary, so that they will not overflow the page
% margins by default, and it is still possible to overwrite the defaults
% using explicit options in \includegraphics[width, height, ...]{}
\setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio}
% Set default figure placement to htbp
\makeatletter
\def\fps@figure{htbp}
\makeatother
\setlength{\emergencystretch}{3em} % prevent overfull lines
\providecommand{\tightlist}{%
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
\setcounter{secnumdepth}{5}
\usepackage{booktabs}
\usepackage{amsthm}
\makeatletter
\def\thm@space@setup{%
\thm@preskip=8pt plus 2pt minus 4pt
\thm@postskip=\thm@preskip
}
\makeatother
\ifLuaTeX
\usepackage{selnolig} % disable illegal ligatures
\fi
\usepackage[]{natbib}
\bibliographystyle{plainnat}
\IfFileExists{bookmark.sty}{\usepackage{bookmark}}{\usepackage{hyperref}}
\IfFileExists{xurl.sty}{\usepackage{xurl}}{} % add URL line breaks if available
\urlstyle{same} % disable monospaced font for URLs
\hypersetup{
pdftitle={Metagenomics Workshop NCGR},
hidelinks,
pdfcreator={LaTeX via pandoc}}
\title{Metagenomics Workshop NCGR}
\author{}
\date{\vspace{-2.5em}}
\begin{document}
\maketitle
{
\setcounter{tocdepth}{1}
\tableofcontents
}
\hypertarget{community-profiling-and-metagenomics}{%
\chapter{Community Profiling and Metagenomics}\label{community-profiling-and-metagenomics}}
\hypertarget{microbes-were-the-first-life-forms-on-this-planet}{%
\section{Microbes were the first life forms on this planet}\label{microbes-were-the-first-life-forms-on-this-planet}}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
Earth declares its independence about 4600 MYA
\end{enumerate}
\begin{figure}
\centering
\includegraphics[width=1\textwidth,height=\textheight]{./Figures/EarthHistory.png}
\caption{WoudloperDerivative work: Hardwigg, Public domain, via Wikimedia Commons}
\end{figure}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{1}
\tightlist
\item
First photosynthetic bacteria 3.4 billion years ago (BYA)
\end{enumerate}
\begin{itemize}
\tightlist
\item
Used sunlight for energy to create biomass
\item
Anaerobic (anoxic photosynthesis)
\end{itemize}
\begin{figure}
\centering
\includegraphics[width=0.6\textwidth,height=\textheight]{./Figures/Stromatolite.png}
\caption{Muséum de Toulouse, CC BY-SA 4.0 \url{https://creativecommons.org/licenses/by-sa/4.0}, via Wikimedia Commons}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=0.6\textwidth,height=\textheight]{./Figures/Stromatolites_in_sharkbay.png}
\caption{Modern Stromatolites. Photo taken in March 2005 by Paul Harrison (Reading, UK) using a Sony CyberShot DSC-H1 digital camera.}
\end{figure}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{2}
\tightlist
\item
2.7 BYA first oxygen producers emerge
\end{enumerate}
\begin{itemize}
\tightlist
\item
Oxygen as waste product during respiration
\item
Most of the oxygen was sequestered and not readily available
\end{itemize}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{3}
\tightlist
\item
2.3 BYA atmosphere has oxygen
\item
500 million year ago (MYA) first terrestrial plants
\item
200 MYA mammals emerged
\item
13 MYA one of us makes all of us proud by learning how to fly
\item
10 MYA the branch of life currently called homo emerges
\item
400 years ago humans observe the first microbe under
a simple scope
\end{enumerate}
\hypertarget{there-would-be-no-life-without-microbes}{%
\subsubsection*{THERE WOULD BE NO LIFE WITHOUT MICROBES}\label{there-would-be-no-life-without-microbes}}
\addcontentsline{toc}{subsubsection}{THERE WOULD BE NO LIFE WITHOUT MICROBES}
\hypertarget{microbes-enable-habitability-on-earth-by-catalyzing-reactions-of-biogeochemical-cycles}{%
\subsection{Microbes enable habitability on Earth by catalyzing reactions of biogeochemical cycles}\label{microbes-enable-habitability-on-earth-by-catalyzing-reactions-of-biogeochemical-cycles}}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
The amount or \% of elements on Earth remains constant
\item
Recycling of these elements, flux, and bio-availability is
largely taken care of by microbes
\item
Best example to illustrate -- nitrogen
\end{enumerate}
\begin{itemize}
\tightlist
\item
78\% of Earths atm is N2
\item
Required for important biological processes
\item
In gaseous form it is unavailable
\item
In fact many processes are N2 limited
\item
Making N2 bioavailable in a form that can be
by eukaryotes is completely on the shoulders of microbes
\end{itemize}
\hypertarget{nitrogen-cycle}{%
\subsubsection{Nitrogen Cycle}\label{nitrogen-cycle}}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Nitrogen.png}
\caption{Nitrogen Cycle}
\end{figure}
\url{https://cdn.britannica.com/37/6537-050-CF14602B/ammonia-Nitrogen-fixation-nitrogen-form-means-nitrates-1909.jpg}
\hypertarget{carbon-cycle}{%
\subsubsection{Carbon Cycle}\label{carbon-cycle}}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Carbon2.png}
\caption{Carbon Cycle}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Carbon1.png}
\caption{Carbon Cycle}
\end{figure}
\url{https://www.pmel.noaa.gov/co2/story/Carbon+Cycle}
How many microbes??
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
40 million microbes in a gram of soil
\item
One million microbes in a ml of fresh water
\item
One trillion in a human body
\end{enumerate}
\hypertarget{microbes-are-abundantand-extremely-diverse}{%
\subsubsection*{MICROBES ARE ABUNDANT\ldots\ldots AND EXTREMELY DIVERSE!}\label{microbes-are-abundantand-extremely-diverse}}
\addcontentsline{toc}{subsubsection}{MICROBES ARE ABUNDANT\ldots\ldots AND EXTREMELY DIVERSE!}
\hypertarget{how-many-kinds-of-living-beings-are-there}{%
\section{How many kinds of living beings are there?}\label{how-many-kinds-of-living-beings-are-there}}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
Aristotle's Scala naturae
= \textbf{350 BC}
\end{enumerate}
\includegraphics[width=0.55\textwidth,height=\textheight]{./Figures/Scala1.png}
\includegraphics[width=0.4\textwidth,height=\textheight]{./Figures/Scala2.png}
\url{https://sites.google.com/site/aristotlethebiologist/aristotle-s-biology/great-chain-of-being}
\begin{figure}
\centering
\includegraphics[width=0.6\textwidth,height=\textheight]{./Figures/Scala3.png}
\caption{Ladder of Ascent and Descent of the Mind, 1305}
\end{figure}
\url{https://upload.wikimedia.org/wikipedia/commons/e/e9/Die_Leiter_des_Auf-_und_Abstiegs.jpg}
\hypertarget{yrs-later}{%
\subsection*{2000 yrs later}\label{yrs-later}}
\addcontentsline{toc}{subsection}{2000 yrs later}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{1}
\tightlist
\item
Edward Hitchcock
\begin{itemize}
\tightlist
\item
1840
\end{itemize}
\end{enumerate}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Hitchcock.png}
\caption{Tree of Life}
\end{figure}
\url{https://upload.wikimedia.org/wikipedia/commons/8/8f/Edward_Hitchcock_Paleontological_Chart.jpg}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{2}
\tightlist
\item
Ernst Haeckel
\begin{itemize}
\tightlist
\item
1879
\end{itemize}
\end{enumerate}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Haeckel.png}
\caption{Another Tree of Life}
\end{figure}
\url{https://upload.wikimedia.org/wikipedia/commons/d/de/Tree_of_life_by_Haeckel.jpg}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{3}
\tightlist
\item
Charles Darwin
\begin{itemize}
\tightlist
\item
1837
\item
The idea that species could have evolved from an ancestor
\item
This could have happened through transmutations
\item
Premise for trees today
\item
ALL METHODS DEPEND ON \textbf{OBSERVABLE MORPHOLOGICAL TRAITS} FOR CATEGORIZATION
\end{itemize}
\end{enumerate}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Darwin.png}
\caption{Tree of Life sketch}
\end{figure}
\hypertarget{what-happened-when-we-found-out-about-microbes}{%
\section{What happened when we found out about microbes?}\label{what-happened-when-we-found-out-about-microbes}}
\begin{figure}
\centering
\includegraphics[width=0.4\textwidth,height=\textheight]{./Figures/Microbes.png}
\caption{Microbes}
\end{figure}
\url{https://hms.harvard.edu/news/diet-gut-microbes-immunity}
\hypertarget{roadmap-to-where-we-are-now-with-determining-microbial-diversity}{%
\subsection*{Roadmap to where we are now with determining microbial diversity}\label{roadmap-to-where-we-are-now-with-determining-microbial-diversity}}
\addcontentsline{toc}{subsection}{Roadmap to where we are now with determining microbial diversity}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
Leeuwenhoek
\end{enumerate}
\begin{itemize}
\tightlist
\item
Father of microbiology
\item
Late 1600's
\item
Microscope
\end{itemize}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Microscope.png}
\caption{Original Microscope}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/leeuwenhoeck.png}
\caption{First Sketch of Microbes}
\end{figure}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{1}
\tightlist
\item
Robert Koch
\end{enumerate}
\begin{itemize}
\tightlist
\item
1890
\item
First time bringing microbes to the lab
\item
Cultivation of microbes
\end{itemize}
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/koch1.png}
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/koch2.png}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{2}
\tightlist
\item
Discovery of DNA structure
\end{enumerate}
\begin{itemize}
\tightlist
\item
Rosiland Franklin
\begin{itemize}
\tightlist
\item
1951
\end{itemize}
\end{itemize}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Rosalind1.png}
\caption{\url{https://en.wikipedia.org/wiki/Rosalind_Franklin\#/media/File:Rosalind_Franklin_(1920-1958).jpg}}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Rosalind2.png}
\caption{--- J. D. Bernal, 1958. Franklin's X-ray diagram of the B form of sodium thymonucleate (DNA) fibres, published in Nature on 25 April 1953, shows ``in striking manner the features characteristic of helical structures''}
\end{figure}
\begin{itemize}
\tightlist
\item
Frederick Sanger
\begin{itemize}
\tightlist
\item
1975
\end{itemize}
\end{itemize}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Sanger1.png}
\caption{\url{https://www.britannica.com/science/DNA-sequencing\#/media/1/422006/40224}}
\end{figure}
\begin{itemize}
\tightlist
\item
Carl Woese
\begin{itemize}
\tightlist
\item
1977
\item
Archaea
\item
Phylogenetic tree based on Woese et al.~rRNA analysis. The vertical line at bottom represents the last universal common ancestor (LUCA).
\end{itemize}
\end{itemize}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Woese1.png}
\caption{Maulucioni, CC BY-SA 3.0 \url{https://creativecommons.org/licenses/by-sa/3.0}, via Wikimedia Commons}
\end{figure}
\hypertarget{dna-structure}{%
\subsubsection*{DNA Structure}\label{dna-structure}}
\addcontentsline{toc}{subsubsection}{DNA Structure}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/DNA.png}
\caption{\url{https://www.genome.gov/genetics-glossary/Deoxyribonucleic-Acid}}
\end{figure}
\url{https://youtu.be/L9NriBoubWE}
\hypertarget{tree-of-life}{%
\section{Tree of Life}\label{tree-of-life}}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/TreeofLife06.png}
\caption{Ivica Letunic: Iletunic. Retraced by Mariana Ruiz Villarreal: LadyofHats, Public domain, via Wikimedia Commons}
\end{figure}
``Visible organisms represent the smallest sliver of life's diversity. Bacteria are the true lords of the world. They have been on this planet for billions of years and have irrevocably changed it, while diversifying into endless forms most wonderful and most beautiful.'' (The Atlantic)
Life just got weird!
\begin{figure}
\centering
\includegraphics[width=1\textwidth,height=\textheight]{./Figures/TreeofLife16.png}
\caption{Hug, L. A., Baker, B. J., Anantharaman, K., Brown, C. T., Probst, A. J., Castelle, C. J., \ldots{} \& Banfield, J. F. (2016). A new view of the tree of life. Nature microbiology, 1(5), 1-6.}
\end{figure}
\hypertarget{what-makes-microbes-so-special}{%
\section{What Makes Microbes so Special?}\label{what-makes-microbes-so-special}}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
-15oC/4oF to 130oC/266oF temperatures
\item
0 to 12.8 pH acidity
\item
More than 200 atm pressure
\item
4 miles deep into Earth's crust
\item
Up to 5kGy radiation
\end{enumerate}
\hypertarget{grand-prismatic-spring-ynp-183oc}{%
\subsection*{Grand Prismatic Spring -- YNP -- 183oC}\label{grand-prismatic-spring-ynp-183oc}}
\addcontentsline{toc}{subsection}{Grand Prismatic Spring -- YNP -- 183oC}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
Validates the importance of microbes and sums up life on Earth with boundaries.
\end{enumerate}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/GrandPrismatic.png}
\caption{Carsten Steger, CC BY-SA 4.0 \url{https://creativecommons.org/licenses/by-sa/4.0}, via Wikimedia Commons}
\end{figure}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{1}
\item
Microbes are constantly trying to evolve and get deeper and deeper into the hot springs
\item
Eukaryotes only surround this spring -- cannot survive close to the hot spring
\end{enumerate}
\hypertarget{the-great-plate-count-anomaly}{%
\subsection{The great ``plate count'' anomaly}\label{the-great-plate-count-anomaly}}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
Cultivation based cell counts are orders of magnitude lower than direct microscopic observation
\end{enumerate}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/PlateCount.png}
\caption{Parks, D. H., Rinke, C., Chuvochina, M., Chaumeil, P. A., Woodcroft, B. J., Evans, P. N., \ldots{} \& Tyson, G. W. (2017). Recovery of nearly 8,000 metagenome-assembled genomes substantially expands the tree of life. Nature microbiology, 2(11), 1533-1542.}
\end{figure}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{1}
\item
As microbiologists, we are able to cultivate only a small minority of naturally occurring microbes
\item
Our nucleic acid derived understanding of microbial diversity has rapidly outpaced our ability to culture new microbes
\end{enumerate}
\hypertarget{total-number-of-genomes-at-ncbi}{%
\subsection{Total number of genomes at NCBI}\label{total-number-of-genomes-at-ncbi}}
\textbf{Most Prokaryotes:}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
Haploid genome
\item
Single circular chromosome, plasmids
\item
Metabolic diversity
\item
Genetic malleability
\item
No nucleus
\item
Easy interspecies gene transfer
\end{enumerate}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Genomes1.png}
\caption{Plate Count Anomaly}
\end{figure}
\url{https://www.ncbi.nlm.nih.gov/genome/browse/\#!/overview/}
\hypertarget{roadmap-to-culture-independent-techniques}{%
\section{Roadmap to Culture Independent Techniques}\label{roadmap-to-culture-independent-techniques}}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
rRNA as an evolutionary marker
\end{enumerate}
\begin{itemize}
\tightlist
\item
1977
\item
(Woese and Fox, PNAS)
\end{itemize}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{1}
\tightlist
\item
Polymerase Chain Reaction
\end{enumerate}
\begin{itemize}
\tightlist
\item
1985
\item
(K. Mullis, Science)
\end{itemize}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{2}
\tightlist
\item
``Universal Primers'' for rRNA sequencing
\end{enumerate}
\begin{itemize}
\tightlist
\item
1985
\item
(N. Pace, PNAS)
\end{itemize}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{3}
\tightlist
\item
PCR amplification of 16S rRNA gene
\end{enumerate}
\begin{itemize}
\tightlist
\item
1989
\item
(Bottger, FEMS Microbiol)
\end{itemize}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{4}
\tightlist
\item
Curation and hosting of RDP
\end{enumerate}
\begin{itemize}
\tightlist
\item
Early 1990's
\item
(rRNA database) FTP
\end{itemize}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{5}
\tightlist
\item
Term `microbiome'
\end{enumerate}
\begin{itemize}
\tightlist
\item
2001
\item
coined by Lederberg and McCray
\end{itemize}
\hypertarget{microbiomes-and-their-significance}{%
\section{Microbiomes and their significance}\label{microbiomes-and-their-significance}}
\begin{itemize}
\tightlist
\item
Microbes do not work or function as a single entity
\item
Most microbial activities are performed by complex communities of microorganisms
\begin{itemize}
\tightlist
\item
\textbf{Microbiome}
\end{itemize}
\end{itemize}
\hypertarget{what-is-a-microbiome}{%
\subsection{What is a microbiome}\label{what-is-a-microbiome}}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
Totality of microbes in a defined environment, and their intricate interactions with each other and the surrounding environment
\end{enumerate}
\begin{itemize}
\tightlist
\item
A population of a single species is a culture(monoculture), extremely rare outside of lab and in some infections
\item
A microbiome is a mixed population of different microbial species
\item
MIXED COMMUNITY IS THE NORM!
\end{itemize}
\hypertarget{why-study-microbiomes}{%
\subsection{Why Study Microbiomes}\label{why-study-microbiomes}}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
Microbes modulate and maintain the atmosphere
\end{enumerate}
\begin{itemize}
\tightlist
\item
Critical elemental cycles (carbon, nitrogen, sulfur, iron,\ldots)
\item
Pollution control, clean up fuel leaks
\end{itemize}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{1}
\tightlist
\item
Microbes keep us healthy
\end{enumerate}
\begin{itemize}
\tightlist
\item
Protection from pathogens
\item
Absorption/production of nutrients in the gut
\item
Role in chronic diseases (obesity, Crohn's/IBD, arthritis\ldots)
\end{itemize}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{2}
\tightlist
\item
Microbes support plant growth and suppress plant disease
\end{enumerate}
\begin{itemize}
\tightlist
\item
Most complex communities reside in soil
\item
Crop productivity
\end{itemize}
\hypertarget{why-is-microbiome-research-new}{%
\subsection{Why is Microbiome Research New?}\label{why-is-microbiome-research-new}}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
Bias for microbes (especially pathogens) that are
cultivable
\end{enumerate}
\begin{itemize}
\tightlist
\item
Culture-based methods do not detect majority of microbes
\item
Only pathogens are easily detected
\item
And most microbes are not pathogens
\end{itemize}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{1}
\tightlist
\item
Availability of tools
\end{enumerate}
\begin{itemize}
\tightlist
\item
Discovery of culture independent techniques
\item
Amplicon sequencing and DNA sequencing
\end{itemize}
\begin{figure}
\centering
\includegraphics[width=1\textwidth,height=\textheight]{./Figures/MapofMicrobiome.png}
\caption{Morgan, X. C., Segata, N., \& Huttenhower, C. (2013). Biodiversity and functional genomics in the human microbiome. Trends in genetics, 29(1), 51-58.}
\end{figure}
\hypertarget{biodiversity-and-functional-genomics-in-the-human-microbiome}{%
\subsection{Biodiversity and functional genomics in the human microbiome}\label{biodiversity-and-functional-genomics-in-the-human-microbiome}}
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Metagenome.png}
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Metagenome2.png}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\item
Recovered over 150,000 microbial genomes from \textasciitilde10,000 metagenomes
\item
70,178 genomes assembled with higher than 90\% completeness
\item
3,796 SGBs (species-level genome bins) identified -77\% of the total representing species without any publicly available genomes
\end{enumerate}
\hypertarget{microbiome-projects-and-databases}{%
\subsection{Microbiome Projects and Databases}\label{microbiome-projects-and-databases}}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
American Gut Project
\item
Earth microbiome Project
\item
Human Oral Microbiome Database
\item
CardioBiome
\item
Human Microbiome Studies -- JCVI
\item
MetaSub -- Metagenomics and metadesign of Subways and Urban Biomes
\item
Gut microbiota for Health
\item
NASA: Study of the impact of long term space travel in the Astronaut's
microbiome
\item
Michigan microbiome project
\item
Coral microbiome project
\item
Seagrass microbiome project
\end{enumerate}
\hypertarget{structural-and-functional-approaches-to-study-microbiomes}{%
\section{Structural and Functional Approaches to study microbiomes}\label{structural-and-functional-approaches-to-study-microbiomes}}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/StructureFunction.png}
\caption{Alves, L. D. F., Westmann, C. A., Lovate, G. L., de Siqueira, G. M. V., Borelli, T. C., \& Guazzaroni, M. E. (2018). Metagenomic approaches for understanding new concepts in microbial science. International journal of genomics, 2018.}
\end{figure}
\hypertarget{s-rrna-as-an-evolutionary-chronometer}{%
\subsection{16S rRNA as an evolutionary chronometer}\label{s-rrna-as-an-evolutionary-chronometer}}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/16s.png}
\caption{Case, R. J., Boucher, Y., Dahllöf, I., Holmström, C., Doolittle, W. F., \& Kjelleberg, S. (2007). Use of 16S rRNA and rpoB genes as molecular markers for microbial ecology studies. Applied and environmental microbiology, 73(1), 278-288.}
\end{figure}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
Ubiquitous -- present in all known life (excluding viruses)
\item
Functionally constant wrt translation and secondary structure
\item
Evolves very slowly -- mutations are extremely rare
\item
Large enough to extract information for evolutionary inference
\item
Limited exchange -- limited examples of rRNA gene sharing between organisms
\end{enumerate}
\hypertarget{s-rrna-vs-rpob-rna-polymerase-ux3b2-subunit-gene}{%
\subsection{16S rRNA vs rpoB (RNA polymerase β subunit gene)}\label{s-rrna-vs-rpob-rna-polymerase-ux3b2-subunit-gene}}
\begin{figure}
\centering
\includegraphics[width=1\textwidth,height=\textheight]{./Figures/RpoB.png}
\caption{Case, R. J., Boucher, Y., Dahllöf, I., Holmström, C., Doolittle, W. F., \& Kjelleberg, S. (2007). Use of 16S rRNA and rpoB genes as molecular markers for microbial ecology studies. Applied and environmental microbiology, 73(1), 278-288.}
\end{figure}
\hypertarget{s-rrna-hypervariable-regions}{%
\subsubsection{16S rRNA hypervariable regions}\label{s-rrna-hypervariable-regions}}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Hypervariable1.png}
\caption{Yang, B., Wang, Y., \& Qian, P. Y. (2016). Sensitivity and correlation of hypervariable regions in 16S rRNA genes in phylogenetic analysis. BMC bioinformatics, 17(1), 1-8.}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth,height=\textheight]{./Figures/Hypervariable2.png}
\caption{Yang, B., Wang, Y., \& Qian, P. Y. (2016). Sensitivity and correlation of hypervariable regions in 16S rRNA genes in phylogenetic analysis. BMC bioinformatics, 17(1), 1-8.}
\end{figure}
Illustration of different hypervariable regions of 16S rRNA
\hypertarget{basic-workflow-for-16s-gene-based-sequencing}{%
\section{Basic Workflow for 16S Gene Based Sequencing}\label{basic-workflow-for-16s-gene-based-sequencing}}