PTreeGenerator
1.0
Simple phylogenetic tree generation from multiple sequence alignment.
|
Functions | |
def | uniqueCombinationsGenerator |
A generator of unique combinations of size n from the given list of items. | |
def | combinationsGenerator |
A generator of all non-unique combinations (permutations) of size n from the given list of items. |
def ptreegen.utilities.combination_utils.combinationsGenerator | ( | items, | |
n | |||
) |
A generator of all non-unique combinations (permutations) of size n from the given list of items.
items | an iterable to be processed |
n | size of each of the combinations generated |
Definition at line 29 of file combination_utils.py.
def ptreegen.utilities.combination_utils.uniqueCombinationsGenerator | ( | items, | |
n | |||
) |
A generator of unique combinations of size n from the given list of items.
items | an iterable to be processed |
n | size of each of the unique combinations generated |
Definition at line 14 of file combination_utils.py.