Skip to content

Commit

Permalink
Documentation - html and markdown updates
Browse files Browse the repository at this point in the history
  • Loading branch information
DerrickWood committed Feb 18, 2015
1 parent 6a7e388 commit 39f7e93
Show file tree
Hide file tree
Showing 10 changed files with 1,178 additions and 755 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ v0.10.5-beta:
* added kraken-translate for getting taxonomic names for each sequence
* added a --rebuild option to kraken-build
* turned off default name checking for PE reads; added --check-names option
* added plasmids to --download-library options
* added HTML manual, redirecting README to that

v0.10.4-beta:
* use GRCh38 for human genome library
Expand Down
755 changes: 0 additions & 755 deletions README

This file was deleted.

10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Kraken taxonomic sequence classification system
===============================================

Please see the [Kraken webpage] or the [Kraken manual]
for information on installing and operating Kraken.
A local copy of the [Kraken manual] is also present here
in the `docs/` directory (`MANUAL.html` and `MANUAL.markdown`).

[Kraken webpage]: http://ccb.jhu.edu/software/kraken/
[Kraken manual]: http://ccb.jhu.edu/software/kraken/MANUAL.html
351 changes: 351 additions & 0 deletions docs/MANUAL.html

Large diffs are not rendered by default.

751 changes: 751 additions & 0 deletions docs/MANUAL.markdown

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
all:
pandoc --title-prefix "Kraken Manual" \
--include-in-header head.html \
--include-before-body top.html \
--from markdown --to html \
--table-of-contents \
--css kraken.css \
--output MANUAL.html \
< MANUAL.markdown
Binary file added docs/bar-bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<link href='http://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic' rel='stylesheet' type='text/css'>
45 changes: 45 additions & 0 deletions docs/kraken.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
body {
background: #f0f0f0 url("bar-bg.png") top left repeat-y;
color: #333;
margin: 10px;
margin-left: 50px;
margin-bottom: 20px;
font-family: 'Ubuntu', sans-serif;
}

a { color: #00b0f0; }
a:visited { color: #0090f0; }
a:hover { color: #00d0ff; }
a:active { color: #00f0ff; }

.pretoc {
text-align: center;
font-size: 1.2em;
}
.title {
font-size: 2em;
font-weight: bold;
margin-bottom: 0;
}
.version {
font-size: 0.9em;
}
h1 {
color: #0090f0;
border-bottom: 1px #0090f0 solid;
margin-left: -10px;
margin-bottom: 3px;
}
h1 a {
color: #0090f0;
text-decoration: none;
}
div#confidence-score-table table th {
width: 7em;
}
pre {
margin-left: 4em;
}
code {
font-size: 1.2em;
}
9 changes: 9 additions & 0 deletions docs/top.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<div class="pretoc">
<p class="title">Kraken taxonomic sequence classification system</p>

<p class="version">Version 0.10.5-beta</p>

<p>Operating Manual</p>
</div>

<h1>Table of Contents</h1>

0 comments on commit 39f7e93

Please sign in to comment.