1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
#!/bin/bash
# helper script to create first version of man pages
help2man -n "annotate VCF file, add filters or custom annotations" -N --help-option="-h" --no-discard-stderr --version-string="0.1.5" vcf-annotate > vcf-annotate.1
help2man -n "compare bgzipped and tabix indexed VCF files" -N --help-option="-h" --no-discard-stderr --version-string="0.1.5" vcf-compare > vcf-compare.1
help2man -n "concatenate VCF files" -N --help-option="-h" --no-discard-stderr --version-string="0.1.5" vcf-concat > vcf-concat.1
help2man -n "convert between VCF versions" -N --help-option="-h" --no-discard-stderr --version-string="0.1.5" vcf-convert > vcf-convert.1
help2man -n "create intersections, unions, complements on bgzipped and tabix indexed VCF or tab-delimited files" -N --help-option="-h" --no-discard-stderr --version-string="0.1.5" vcf-isec > vcf-isec.1
help2man -n "merge the bgzipped and tabix indexed VCF files" -N --help-option="-h" --no-discard-stderr --version-string="0.1.5" vcf-merge > vcf-merge.1
help2man -n "query VCF files" -N --help-option="-h" --no-discard-stderr --version-string="0.1.5" vcf-query > vcf-query.1
help2man -n "sort VCF file" -N --help-option="-h" --no-discard-stderr --version-string="0.1.5" vcf-sort > vcf-sort.1
help2man -n "statistic of VCF file" -N --help-option="-h" --no-discard-stderr --version-string="0.1.5" vcf-stats > vcf-stats.1
help2man -n "create subset of VCF file" -N --help-option="-h" --no-discard-stderr --version-string="0.1.5" vcf-subset > vcf-subset.1
help2man -n "convert to tabix" -N --help-option="-h" --no-discard-stderr --version-string="0.1.5" vcf-to-tab > vcf-to-tab.1
help2man -n "validate VCF file" -N --help-option="-h" --no-discard-stderr --version-string="0.1.5" vcf-validator > vcf-validator.1
|