#!/bin/sh
MANDIR=debian/mans
mkdir -p $MANDIR
help2man --no-info --no-discard-stderr \
         --name='run the genome abundance similarity correction step' \
            --version-string='SVNr18' correct_abundances > $MANDIR/correct_abundances.1
help2man --no-info --no-discard-stderr \
         --name='calculate the genome abundance similarity matrix' \
            --version-string='SVNr18' create_matrix > $MANDIR/create_matrix.1
help2man --no-info --no-discard-stderr \
         --name='perform a sanity check on the mapping results (SAM file)' \
            --version-string="SVNr18" quality_check > $MANDIR/quality_check.1
help2man --no-info --no-discard-stderr \
         --name='run a read mapper to map reads to reference genomes' \
            --version-string="SVNr18" run_mappers > $MANDIR/run_mappers.1
