Skip to content

Commit fa3c9f7

Browse files
author
Qingpeng Zhang
committed
fix tutorial and generate html file
1 parent b1009ea commit fa3c9f7

File tree

4 files changed

+823
-6
lines changed

4 files changed

+823
-6
lines changed

html4css1.css

+327
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,327 @@
1+
/*
2+
:Author: David Goodger ([email protected])
3+
:Id: $Id$
4+
:Copyright: This stylesheet has been placed in the public domain.
5+
6+
Default cascading style sheet for the HTML output of Docutils.
7+
8+
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
9+
customize this style sheet.
10+
*/
11+
12+
/* used to remove borders from tables and images */
13+
.borderless, table.borderless td, table.borderless th {
14+
border: 0 }
15+
16+
table.borderless td, table.borderless th {
17+
/* Override padding for "table.docutils td" with "! important".
18+
The right padding separates the table cells. */
19+
padding: 0 0.5em 0 0 ! important }
20+
21+
.first {
22+
/* Override more specific margin styles with "! important". */
23+
margin-top: 0 ! important }
24+
25+
.last, .with-subtitle {
26+
margin-bottom: 0 ! important }
27+
28+
.hidden {
29+
display: none }
30+
31+
a.toc-backref {
32+
text-decoration: none ;
33+
color: black }
34+
35+
blockquote.epigraph {
36+
margin: 2em 5em ; }
37+
38+
dl.docutils dd {
39+
margin-bottom: 0.5em }
40+
41+
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
42+
overflow: hidden;
43+
}
44+
45+
/* Uncomment (and remove this text!) to get bold-faced definition list terms
46+
dl.docutils dt {
47+
font-weight: bold }
48+
*/
49+
50+
div.abstract {
51+
margin: 2em 5em }
52+
53+
div.abstract p.topic-title {
54+
font-weight: bold ;
55+
text-align: center }
56+
57+
div.admonition, div.attention, div.caution, div.danger, div.error,
58+
div.hint, div.important, div.note, div.tip, div.warning {
59+
margin: 2em ;
60+
border: medium outset ;
61+
padding: 1em }
62+
63+
div.admonition p.admonition-title, div.hint p.admonition-title,
64+
div.important p.admonition-title, div.note p.admonition-title,
65+
div.tip p.admonition-title {
66+
font-weight: bold ;
67+
font-family: sans-serif }
68+
69+
div.attention p.admonition-title, div.caution p.admonition-title,
70+
div.danger p.admonition-title, div.error p.admonition-title,
71+
div.warning p.admonition-title, .code .error {
72+
color: red ;
73+
font-weight: bold ;
74+
font-family: sans-serif }
75+
76+
/* Uncomment (and remove this text!) to get reduced vertical space in
77+
compound paragraphs.
78+
div.compound .compound-first, div.compound .compound-middle {
79+
margin-bottom: 0.5em }
80+
81+
div.compound .compound-last, div.compound .compound-middle {
82+
margin-top: 0.5em }
83+
*/
84+
85+
div.dedication {
86+
margin: 2em 5em ;
87+
text-align: center ;
88+
font-style: italic }
89+
90+
div.dedication p.topic-title {
91+
font-weight: bold ;
92+
font-style: normal }
93+
94+
div.figure {
95+
margin-left: 2em ;
96+
margin-right: 2em }
97+
98+
div.footer, div.header {
99+
clear: both;
100+
font-size: smaller }
101+
102+
div.line-block {
103+
display: block ;
104+
margin-top: 1em ;
105+
margin-bottom: 1em }
106+
107+
div.line-block div.line-block {
108+
margin-top: 0 ;
109+
margin-bottom: 0 ;
110+
margin-left: 1.5em }
111+
112+
div.sidebar {
113+
margin: 0 0 0.5em 1em ;
114+
border: medium outset ;
115+
padding: 1em ;
116+
background-color: #ffffee ;
117+
width: 40% ;
118+
float: right ;
119+
clear: right }
120+
121+
div.sidebar p.rubric {
122+
font-family: sans-serif ;
123+
font-size: medium }
124+
125+
div.system-messages {
126+
margin: 5em }
127+
128+
div.system-messages h1 {
129+
color: red }
130+
131+
div.system-message {
132+
border: medium outset ;
133+
padding: 1em }
134+
135+
div.system-message p.system-message-title {
136+
color: red ;
137+
font-weight: bold }
138+
139+
div.topic {
140+
margin: 2em }
141+
142+
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
143+
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
144+
margin-top: 0.4em }
145+
146+
h1.title {
147+
text-align: center }
148+
149+
h2.subtitle {
150+
text-align: center }
151+
152+
hr.docutils {
153+
width: 75% }
154+
155+
img.align-left, .figure.align-left, object.align-left {
156+
clear: left ;
157+
float: left ;
158+
margin-right: 1em }
159+
160+
img.align-right, .figure.align-right, object.align-right {
161+
clear: right ;
162+
float: right ;
163+
margin-left: 1em }
164+
165+
img.align-center, .figure.align-center, object.align-center {
166+
display: block;
167+
margin-left: auto;
168+
margin-right: auto;
169+
}
170+
171+
.align-left {
172+
text-align: left }
173+
174+
.align-center {
175+
clear: both ;
176+
text-align: center }
177+
178+
.align-right {
179+
text-align: right }
180+
181+
/* reset inner alignment in figures */
182+
div.align-right {
183+
text-align: inherit }
184+
185+
/* div.align-center * { */
186+
/* text-align: left } */
187+
188+
ol.simple, ul.simple {
189+
margin-bottom: 1em }
190+
191+
ol.arabic {
192+
list-style: decimal }
193+
194+
ol.loweralpha {
195+
list-style: lower-alpha }
196+
197+
ol.upperalpha {
198+
list-style: upper-alpha }
199+
200+
ol.lowerroman {
201+
list-style: lower-roman }
202+
203+
ol.upperroman {
204+
list-style: upper-roman }
205+
206+
p.attribution {
207+
text-align: right ;
208+
margin-left: 50% }
209+
210+
p.caption {
211+
font-style: italic }
212+
213+
p.credits {
214+
font-style: italic ;
215+
font-size: smaller }
216+
217+
p.label {
218+
white-space: nowrap }
219+
220+
p.rubric {
221+
font-weight: bold ;
222+
font-size: larger ;
223+
color: maroon ;
224+
text-align: center }
225+
226+
p.sidebar-title {
227+
font-family: sans-serif ;
228+
font-weight: bold ;
229+
font-size: larger }
230+
231+
p.sidebar-subtitle {
232+
font-family: sans-serif ;
233+
font-weight: bold }
234+
235+
p.topic-title {
236+
font-weight: bold }
237+
238+
pre.address {
239+
margin-bottom: 0 ;
240+
margin-top: 0 ;
241+
font: inherit }
242+
243+
pre.literal-block, pre.doctest-block, pre.math, pre.code {
244+
margin-left: 2em ;
245+
margin-right: 2em }
246+
247+
pre.code .ln { color: grey; } /* line numbers */
248+
pre.code, code { background-color: #eeeeee }
249+
pre.code .comment, code .comment { color: #5C6576 }
250+
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
251+
pre.code .literal.string, code .literal.string { color: #0C5404 }
252+
pre.code .name.builtin, code .name.builtin { color: #352B84 }
253+
pre.code .deleted, code .deleted { background-color: #DEB0A1}
254+
pre.code .inserted, code .inserted { background-color: #A3D289}
255+
256+
span.classifier {
257+
font-family: sans-serif ;
258+
font-style: oblique }
259+
260+
span.classifier-delimiter {
261+
font-family: sans-serif ;
262+
font-weight: bold }
263+
264+
span.interpreted {
265+
font-family: sans-serif }
266+
267+
span.option {
268+
white-space: nowrap }
269+
270+
span.pre {
271+
white-space: pre }
272+
273+
span.problematic {
274+
color: red }
275+
276+
span.section-subtitle {
277+
/* font-size relative to parent (h1..h6 element) */
278+
font-size: 80% }
279+
280+
table.citation {
281+
border-left: solid 1px gray;
282+
margin-left: 1px }
283+
284+
table.docinfo {
285+
margin: 2em 4em }
286+
287+
table.docutils {
288+
margin-top: 0.5em ;
289+
margin-bottom: 0.5em }
290+
291+
table.footnote {
292+
border-left: solid 1px black;
293+
margin-left: 1px }
294+
295+
table.docutils td, table.docutils th,
296+
table.docinfo td, table.docinfo th {
297+
padding-left: 0.5em ;
298+
padding-right: 0.5em ;
299+
vertical-align: top }
300+
301+
table.docutils th.field-name, table.docinfo th.docinfo-name {
302+
font-weight: bold ;
303+
text-align: left ;
304+
white-space: nowrap ;
305+
padding-left: 0 }
306+
307+
/* "booktabs" style (no vertical lines) */
308+
table.docutils.booktabs {
309+
border: 0px;
310+
border-top: 2px solid;
311+
border-bottom: 2px solid;
312+
border-collapse: collapse;
313+
}
314+
table.docutils.booktabs * {
315+
border: 0px;
316+
}
317+
table.docutils.booktabs th {
318+
border-bottom: thin solid;
319+
text-align: left;
320+
}
321+
322+
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
323+
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
324+
font-size: 100% }
325+
326+
ul.auto-toc {
327+
list-style-type: none }

khmer-counting.bib

+20-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,32 @@
22
%% http://bibdesk.sourceforge.net/
33
44
5-
%% Created for Qingpeng Zhang at 2013-06-27 01:13:56 -0400
5+
%% Created for Qingpeng Zhang at 2013-06-27 01:26:17 -0400
66
77
88
%% Saved with string encoding Unicode (UTF-8)
99
1010
1111
12+
@article{Mackelprang2011,
13+
Abstract = {Permafrost contains an estimated 1672 Pg carbon (C), an amount roughly equivalent to the total currently contained within land plants and the atmosphere. This reservoir of C is vulnerable to decomposition as rising global temperatures cause the permafrost to thaw. During thaw, trapped organic matter may become more accessible for microbial degradation and result in greenhouse gas emissions. Despite recent advances in the use of molecular tools to study permafrost microbial communities, their response to thaw remains unclear. Here we use deep metagenomic sequencing to determine the impact of thaw on microbial phylogenetic and functional genes, and relate these data to measurements of methane emissions. Metagenomics, the direct sequencing of DNA from the environment, allows the examination of whole biochemical pathways and associated processes, as opposed to individual pieces of the metabolic puzzle. Our metagenome analyses reveal that during transition from a frozen to a thawed state there are rapid shifts in many microbial, phylogenetic and functional gene abundances and pathways. After one week of incubation at 5 $\,^{\circ}$C, permafrost metagenomes converge to be more similar to each other than while they are frozen. We find that multiple genes involved in cycling of C and nitrogen shift rapidly during thaw. We also construct the first draft genome from a complex soil metagenome, which corresponds to a novel methanogen. Methane previously accumulated in permafrost is released during thaw and subsequently consumed by methanotrophic bacteria. Together these data point towards the importance of rapid cycling of methane and nitrogen in thawing permafrost.},
14+
Author = {Mackelprang, Rachel and Waldrop, Mark P and DeAngelis, Kristen M and David, Maude M and Chavarria, Krystle L and Blazewicz, Steven J and Rubin, Edward M and Jansson, Janet K},
15+
Date-Added = {2013-06-27 05:16:27 +0000},
16+
Date-Modified = {2013-06-27 05:16:27 +0000},
17+
Doi = {10.1038/nature10576},
18+
Journal = {Nature},
19+
Journal-Full = {Nature},
20+
Mesh = {Alaska; Arctic Regions; Bacteria; Carbon; Carbon Cycle; DNA; Freezing; Genes, rRNA; Metagenome; Metagenomics; Methane; Nitrogen; Nitrogen Cycle; Oxidation-Reduction; Phylogeny; RNA, Ribosomal, 16S; Soil; Soil Microbiology; Temperature; Time Factors},
21+
Month = {Dec},
22+
Number = {7377},
23+
Pages = {368-71},
24+
Pmid = {22056985},
25+
Pst = {epublish},
26+
Title = {Metagenomic analysis of a permafrost microbial community reveals a rapid response to thaw},
27+
Volume = {480},
28+
Year = {2011},
29+
Bdsk-Url-1 = {http://dx.doi.org/10.1038/nature10576}}
30+
1231
@article{Howe2012,
1332
Abstract = {The large volumes of sequencing data required to sample complex environments deeply pose new challenges to sequence analysis approaches. De novo metagenomic assembly effectively reduces the total amount of data to be analyzed but requires significant computational resources. We apply two pre-assembly filtering approaches, digital normalization and partitioning, to make large metagenome assemblies more comput\ ationaly tractable. Using a human gut mock community dataset, we demonstrate that these methods result in assemblies nearly identical to assemblies from unprocessed data. We then assemble two large soil metagenomes from matched Iowa corn and native prairie soils. The predicted functional content and phylogenetic origin of the assembled contigs indicate significant taxonomic differences despite similar function. The assembly strategies presented are generic and can be extended to any metagenome; full source code is freely available under a BSD license.},
1433
Author = {Adina Chuang Howe and Janet Jansson and Stephanie A. Malfatti and Susannah G. Tringe and James M. Tiedje and C. Titus Brown},

0 commit comments

Comments
 (0)