From f7d1e4f1a5bf404861ca27824d739a4dc601f9be Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Sun, 9 Dec 2012 20:22:21 -0800 Subject: [PATCH] HTML output for man pages. --- TODO | 8 -------- doc/Makefile.am | 5 +++++ doc/fastq-uniq.1 | 2 +- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/TODO b/TODO index 7b06a07..59cc3b1 100644 --- a/TODO +++ b/TODO @@ -1,12 +1,4 @@ -Rename hash.h/c to hash_table.h/c. - -Seperate murmurhash into it's own file: hash.h/hash.c. - -Document fastq-sort. - -More comparison functions for fastq-sort. - Link against quip so we can run these tools on quip/fastq/bam/sam with one interface. diff --git a/doc/Makefile.am b/doc/Makefile.am index 16f345b..17a0982 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,4 +1,9 @@ dist_man_MANS = fastq-grep.1 fastq-kmers.1 fastq-match.1 fastq-uniq.1 fastq-sample.1 fastq-sort.1 +.1.html : + groff -man -Thtml < $< \ + | perl -pe 's//\n/' \ + > $@ +html-local : fastq-grep.html fastq-kmers.html fastq-match.html fastq-uniq.html fastq-sample.html fastq-sort.html diff --git a/doc/fastq-uniq.1 b/doc/fastq-uniq.1 index e3b2923..62ced37 100644 --- a/doc/fastq-uniq.1 +++ b/doc/fastq-uniq.1 @@ -1,7 +1,7 @@ .TH FASTQ-UNIQ 1 .SH NAME -fastq-uniq - print sequences matching a pattern +fastq-uniq - filter out reads with identical sequences .SH SYNOPSIS .B fastq-uniq [OPTION]... PATTERN [FILE]... -- 2.39.2