-
Notifications
You must be signed in to change notification settings - Fork 17
/
build_docs.py
executable file
·101 lines (83 loc) · 4.11 KB
/
build_docs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/usr/bin/env python3
import extern
import logging
import argparse
import io
from os.path import dirname, join
import os
def remove_before(marker, string_to_process):
splitter = '\n# ' + marker + '\n'
if splitter not in string_to_process:
raise Exception("Marker '{}' not found in string".format(marker))
return splitter + string_to_process.split(splitter)[1]
def get_version(relpath):
"""Read version info from a file without importing it"""
for line in io.open(join(dirname(__file__), relpath), encoding="cp437"):
if "__version__" in line:
if '"' in line:
return line.split('"')[1]
elif "'" in line:
return line.split("'")[1]
if __name__ == '__main__':
parent_parser = argparse.ArgumentParser(add_help=False)
# parent_parser.add_argument('--debug', help='output debug information', action="store_true")
# parent_parser.add_argument('--version', help='output version information and quit', action='version', version=repeatm.__version__)
parent_parser.add_argument('--quiet', help='only output errors', action="store_true")
args = parent_parser.parse_args()
# Setup logging
debug = True
if args.quiet:
loglevel = logging.ERROR
else:
loglevel = logging.DEBUG
logging.basicConfig(level=loglevel, format='%(asctime)s %(levelname)s: %(message)s', datefmt='%m/%d/%Y %I:%M:%S %p')
# Update [RELEASE_TAG] in installation.md
version = get_version('singlem/version.py')
logging.info("Updating [RELEASE_TAG] in Installation.md to {}".format(version))
with open('docs/Installation.md.in') as f:
installation = f.read()
installation = installation.replace('[RELEASE_TAG]', version)
with open('docs/Installation.md', 'w') as f:
f.write(installation)
logging.info("Done updating [RELEASE_TAG] in Installation.md to {}".format(version))
subdir_and_commands = [
['tools', ['data','pipe','appraise','summarise','renew','supplement','microbial_fraction']],
['advanced', ['makedb','query','condense','seqs','create','metapackage']]
]
for subdir, commands in subdir_and_commands:
for subcommand in commands:
cmd_stub = "singlem {} --full-help-roff |pandoc - -t markdown-multiline_tables-simple_tables-grid_tables -f man |sed 's/\\\\\\[/[/g; s/\\\\\\]/]/g; s/^: //'".format(subcommand)
man_usage = extern.run(cmd_stub)
subcommand_prelude = 'docs/preludes/{}_prelude.md'.format(subcommand)
if os.path.exists(subcommand_prelude):
# Remove everything before the options section
splitters = {
'pipe': 'COMMON OPTIONS',
'microbial_fraction': 'OPTIONS',
'data': 'OPTIONS',
'summarise': 'TAXONOMIC PROFILE INPUT',
'makedb': 'REQUIRED ARGUMENTS',
'appraise': 'INPUT OTU TABLE OPTIONS',
'seqs': 'OPTIONS',
'metapackage': 'OPTIONS',
}
logging.info("For ROFF for command {}, removing everything before '{}'".format(
subcommand, splitters[subcommand]))
man_usage = remove_before(splitters[subcommand], man_usage)
with open('docs/{}/{}.md'.format(subdir, subcommand),'w') as f:
f.write('---\n')
f.write('title: SingleM {}\n'.format(subcommand))
f.write('---\n')
f.write('# singlem {}\n'.format(subcommand))
with open(subcommand_prelude) as f2:
f.write(f2.read())
f.write(man_usage)
else:
man_usage = remove_before('DESCRIPTION', man_usage)
with open('docs/{}/{}.md'.format(subdir, subcommand),'w') as f:
f.write('---\n')
f.write('title: SingleM {}\n'.format(subcommand))
f.write('---\n')
f.write('# singlem {}\n'.format(subcommand))
f.write(man_usage)
extern.run("doctave build")