MEDYAN.FilaTipIdx
Union{}
An index identifying a specific filament tip (either the minus end or plus end).
This index may be invalidated by mutations (e.g., filament removal or severing). Use a Tag{FilaTipIdx} for a long-term reference that remains valid across mutations.
Constructors
FilaTipIdx(): Creates a null tip indexFilaTipIdx(fila_idx::FilaIdx, is_minus_end::Bool): Creates a tip index for the specified filament and endFilaTipIdx(c::Context, x, ::typeof(-)): Get the minus-end tipFilaTipIdx(c::Context, x, ::typeof(+)): Get the plus-end tipFilaTipIdx(c::Context, f::FilaTipIdx): Re-resolve a tip indexFilaTipIdx(c::Context, t::Tag{FilaTipIdx}): Construct from a tagFilaTipIdx(c::Context, x::Union{FilaIdx, FilaMonoIdx, FilaTipIdx, Tag}, is_minus_end::Bool): Construct from various filament references
Fields
fila_idx::FilaIdx: The filament this tip belongs tois_minus_end::Bool:truefor minus end,falsefor plus end
Related Functions
See fila_tip_tags, make_fila!.