-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix references and api index * try again * address comments from #48
- Loading branch information
Showing
5 changed files
with
76 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,58 @@ | ||
.. currentmodule:: historydag | ||
|
||
Python API for the ``historydag`` package | ||
Description | ||
----------- | ||
|
||
This page documents the API for the ``historydag`` package. | ||
The fundamental data structure implemented here is the :class:`HistoryDag`. | ||
This data structure provides efficient storage for collections of trees with | ||
internal node labels. In this package, we refer to such a tree as a _history_. | ||
A history can be represented as a tree-shaped :class:`HistoryDag` object. | ||
|
||
This package provides functions for: | ||
|
||
* creating histories from tree data, | ||
* merging histories together to create history DAGs, | ||
* doing efficient computation on collections of histories stored in history DAGs, and | ||
* accessing histories contained in a history DAG, and exporting them to other | ||
tree formats. | ||
|
||
Classes | ||
------- | ||
|
||
Top level classes. | ||
Top level classes, promoted from the ``dag`` module. | ||
|
||
.. autosummary:: | ||
:toctree: stubs | ||
|
||
HistoryDag | ||
HistoryDagNode | ||
|
||
Functions | ||
--------- | ||
|
||
Top level functions, promoted from the ``dag`` module. | ||
|
||
.. autosummary:: | ||
:toctree: stubs | ||
|
||
from_tree | ||
empty_node | ||
from_newick | ||
history_dag_from_newicks | ||
history_dag_from_etes | ||
history_dag_from_histories | ||
|
||
Modules | ||
------- | ||
|
||
.. autosummary:: | ||
:toctree: stubs | ||
|
||
dag | ||
sequence_dag | ||
mutation_annotated_dag | ||
utils | ||
parsimony | ||
compact_genome | ||
counterops |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters