8.4.3 How do I load a pedigree from a file containing a graph stored as an adjacency list?

PyPedal can read graphs stored in text files as adjacency lists, which is one way of representing directed graphs:
options = {}
options['pedfile'] = 'pedigree.adjlist'
options['messages'] = 'verbose'
options['pedname'] = 'Testing graphfile'
options['pedformat'] = 'asd'
example = pyp_newclasses.loadPedigree(options,pedsource='graphfile')
See About this document... for information on suggesting changes.