descend_template_phylogeny_alifestd

descend_template_phylogeny_alifestd(phylogeny_df: ~pandas.core.frame.DataFrame, seed_column: ~hstrat.genome_instrumentation.HereditaryStratigraphicColumn, extant_ids: ~typing.Iterable[int] | None = None, progress_wrap: ~typing.Callable = <function <lambda>>) List[HereditaryStratigraphicColumn]

Generate a population of hereditary stratigraphic columns that could have resulted from the template phylogeny.

Parameters

phylogeny_dfpandas.DataFrame

Phylogeny record as an alife-standard DataFrame.

seed_columnHereditaryStratigraphicColumn

Hereditary stratigraphic column to seed at root node of phylogeny.

Returned hereditary stratigraphic column population will be generated as if repeatedly calling CloneDescendant() on seed_column. As such, specifies configuration (i.e., differentia bit width and stratum retention policy) for returned columns. May already have strata deposited, which will be incorporated into generated extant population.

extant_idsoptional list of int

Which organisms should hereditary stratigraphic columns be created for?

Designates content and order of returned list of hereditary stratigraphic column, with id values corresponding to “id” column in phylogeny_df.

If None, hereditary stratigraphic columns will be created for all phylogenetic leaves (organisms without offspring) in order of appearance in phylogeny_df.

progress_wrapCallable, default identity function

Wrapper applied around generation iterator and row generator for final phylogeny compilation process.

Pass tqdm or equivalent to display progress bars.

Returns

list of HereditaryStratigraphicColumn

Population of hereditary stratigraphic columns for extant lineage members (i.e., phylogeny leaf nodes).

Columns ordered in order of appearance of corresponding extant organism id.