NeFut Logo NeFut
Admin Login

[CS.DS] Exploiting Low Scanwidth to Resolve Soft Polytomies

Published at: 2026-06-30 22:00 Last updated: 2026-07-01 09:22
#algorithm #Data Structure #Graph

Abstract

Phylogenetic networks allow modeling reticulate evolution, capturing events such as hybridization and horizontal gene transfer. A fundamental computational problem in this context is the Tree Containment problem, which asks whether a given phylogenetic network is compatible with a given phylogenetic tree. However, the classical statement of the problem is not robust to poorly supported branches in biological data, possibly leading to false negatives. To address this, a relaxed version that accounts for uncertainty, called Soft Tree Containment, has been introduced by Bentert, Malík, and Weller.

We present an algorithm that solves Soft Tree Containment in $2^{O(\Delta_T \cdot k \cdot \log(k))} \cdot n^{O(1)}$ time, where $k = \operatorname{sw}(\Gamma) + \Delta_N$, with $\Delta_T$ and $\Delta_N$ denoting the maximum out-degrees in the tree and the network, respectively, and $\operatorname{sw}(\Gamma)$ denoting the "scanwidth" of a given tree extension of the network, while $n$ is the input size. Our approach leverages the fact that phylogenetic networks encountered in practice often exhibit low scanwidth, making the problem more tractable.

Blogger's Review: This algorithm demonstrates effective utilization of low scanwidth when addressing uncertainty, significantly improving the efficiency of solving the Soft Tree Containment problem. It holds considerable theoretical and practical value for phylogenetic analysis in bioinformatics, especially when data quality is suboptimal.

Original Source: https://arxiv.org/abs/2511.20771

[h] Back to Home