A pedigree visualization tool based on dot format and visualized by graphviz
test load_attributes
attrs=load_attributes('data/default.yaml')
attrs
test readped
fam=readped('data/example_fam.ped')
fam
attrs=load_attributes('data/default.yaml')
famext=readped('data/example_fam_ext.ped',attrs)
famext
test plotped
dot = Digraph()
a=plotped(fam)
a
plotped(famext,attrs)
test get_args
args = get_args().parse_args('-p data/fam.ped -f svg'.split())
args
test GraphPed
dots=GraphPed(fam)
dots[0]
GraphPed(famext,attrs)[0]
test show
show(dots)