-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewTree
More file actions
executable file
·70 lines (57 loc) · 2.21 KB
/
Copy pathViewTree
File metadata and controls
executable file
·70 lines (57 loc) · 2.21 KB
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# vim:fileencoding=utf-8
import os
import sys
import argparse
from Bio import Phylo
_LICENSE = """
http://www.github.org/jbpease/mixtape
MixTAPE: Mix of Tools for Analysis in Phylogenetics and Evolution
This file is part of MixTAPE.
MixTAPE is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
MixTAPE is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with MixTAPE. If not, see <http://www.gnu.org/licenses/>.
"""
def generate_argparser():
parser = argparse.ArgumentParser(
description=__doc__,
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
epilog=_LICENSE)
parser.add_argument('treefile', nargs='?', type=argparse.FileType('r'),
default=sys.stdin,
help="input newick tree file")
parser.add_argument('--out', type=os.path.abspath,
default=sys.stdout, help="output fasta file")
parser.add_argument('--figsize', type=float, nargs=2,
help="fixed height/width in inches for figure")
return parser
def main(arguments=None):
arguments = arguments if arguments is not None else sys.argv[1:]
parser = generate_argparser()
args = parser.parse_args(args=arguments)
tree = Phylo.read(args.treefile, 'newick')
tree.root_at_midpoint()
tree.ladderize()
if args.out.endswith(".pdf"):
from matplotlib import pyplot as plt
if args.figsize is not None:
fig = plt.figure(figsize=(args.figsize[0], args.figsize[1]), )
else:
fig = plt.figure()
ax1 = fig.add_subplot(111)
Phylo.draw(tree, axes=ax1, do_show=False)
fig.tight_layout()
fig.savefig(args.out)
else:
Phylo.draw_ascii(tree)
return ''
if __name__ == '__main__':
main()