每天早上一封邮件,把昨天的 AI 梳理好订阅邮件

METAL LAB

GenEx: A Graph-Based Representational Paradigm for SARS-CoV-2 Variant Detection via Codon Co-occurrence Networks

arXiv:2608.182382026-08-20

把病毒基因序列变成密码子关系网络图,用来区分新冠变异株

以往区分新冠变异株(Beta、Gamma、Delta、Omicron)的方法把基因序列当作一条直线字符串逐字比对,忽略了序列内部复杂的相互关系。研究团队开发了名为GenEx的流程,把基因序列切成密码子(三个碱基一组)单位,再构建成图(由节点和连线组成的关系网络),表现密码子之间的邻近或共现关系。从这些图中提取超过25种结构特征,训练23种机器学习模型后,识别变异株的准确率最高达到98.75%。

他们做了什么

  1. 先把基因序列切成密码子,再用两种方法构图:LAPCG只连接相邻的密码子,MSCG则捕捉多个距离范围内共同出现的密码子关系。
  2. 从每张图中提取超过25种特征,包括节点数量、最短路径长度、密度等结构指标,以及基于特征值的谱特征。
  3. 用奇异值分解(SVD)得到的奇异值平方(σ²)代替传统特征值,使不同变异株之间的差异更明显。
  4. 在23种机器学习模型上测试后,MSCG方法表现最佳,准确率达98.75%,同时比传统PMI方法运行速度快1.88倍。
  5. 每个变异株都呈现出独特的图结构指纹,例如Omicron的匹配数是其他变异株的18倍,Delta的结构最稳定一致,这揭示了仅靠序列比对的系统发育分析所看不到的进化规律。
Fig. 1: Overview of the GenEx framework for SARS-CoV-2 variant detection using a graph-based approach. The pipeline begins with genome sequence acquisition from NCBI GenBank, followed by preprocessing steps including quality filtering, codon segmentation into triplets, and sequence alignment. Codon co-occurrence graphs are then constructed using two methods—LAPCG (linear-time adjacency-based) and MSCG (multi-scale co-occurrence)—to form weighted undirected graphs. From these graphs, both topological and spectral features are extracted to create high-dimensional feature vectors. These features are used to train and evaluate multiple machine learning models for variant classification. The framework outputs include high-accuracy variant predictions, feature importance analysis, statistical validation, structural graph insights, and evolutionary pattern comparisons.
Fig. 1: Overview of the GenEx framework for SARS-CoV-2 variant detection using a graph-based approach. The pipeline begins with genome sequence acquisition from NCBI GenBank, followed by preprocessing steps including quality filtering, codon segmentation into triplets, and sequence alignment. Codon co-occurrence graphs are then constructed using two methods—LAPCG (linear-time adjacency-based) and MSCG (multi-scale co-occurrence)—to form weighted undirected graphs. From these graphs, both topological and spectral features are extracted to create high-dimensional feature vectors. These features are used to train and evaluate multiple machine learning models for variant classification. The framework outputs include high-accuracy variant predictions, feature importance analysis, statistical validation, structural graph insights, and evolutionary pattern comparisons.
TABLE I: Comparison of Prior Work and Proposed Method
AspectPrior WorkOur Method
Biological unitNucleotide / segmentCodon
RepresentationSequence / static graphCo-occurrence graph
Temporal modelingNoYes
Learning frameworkCNN / Transformer / rulesML on graph features
ExplainabilityPost-hocIntrinsic (graph-based)
Multi-task reuseLimitedYes
Fig. 2: Individual and Combined structural profiles for Beta, Gamma, Delta, and Omicron
Fig. 2: Individual and Combined structural profiles for Beta, Gamma, Delta, and Omicron
TABLE II: Benchmark summary: accuracy and runtime across graph construction methods.
MethodBest Model(s)AccuracyRuntime (s)
PMI baselineCatBoost96.25%272.3
LAPCGLightGBM, Grad. Boost96.25%196.2
MSCGMLP, Bagging Classifier98.75%144.6
Fig. 3: Parallel-coordinate comparison of ten structural graph features across four SARS-CoV-2 variants of concern (Beta, Oct 2020; Gamma, Nov 2020; Delta, Apr 2021; Omicron, Nov 2021). Each polyline represents one variant; color encodes variant class. The ten axes correspond to: second eigenvalue (sev), average shortest path length (aspl), Wiener index (wi), top eigenvalue (tev), radius (r), graph energy (ge), diameter (d), average clustering coefficient (aclu), average closeness centrality (aclo), and transitivity (t). All values are min–max normalised to [0,1]. Omicron consistently occupies the highest band across spectral and centrality axes (ge, aclu, aclo), while Delta remains near the minimum on most features, highlighting a sharp structural divergence between these two variants.
Fig. 3: Parallel-coordinate comparison of ten structural graph features across four SARS-CoV-2 variants of concern (Beta, Oct 2020; Gamma, Nov 2020; Delta, Apr 2021; Omicron, Nov 2021). Each polyline represents one variant; color encodes variant class. The ten axes correspond to: second eigenvalue (sev), average shortest path length (aspl), Wiener index (wi), top eigenvalue (tev), radius (r), graph energy (ge), diameter (d), average clustering coefficient (aclu), average closeness centrality (aclo), and transitivity (t). All values are min–max normalised to [0,1]. Omicron consistently occupies the highest band across spectral and centrality axes (ge, aclu, aclo), while Delta remains near the minimum on most features, highlighting a sharp structural divergence between these two variants.
TABLE III: Comparison of GenEx with gene annotation tools and SARS-CoV-2 variant classification methods. Gene annotation accuracies reflect nucleotide-level sensitivity; variant classification accuracies reflect multi-class accuracy. † Whole-genome support assumes availability of a closely related reference.
MethodTypeTaskAccuracy (reported)Whole GenomeReference
GENSCANAb initio HMMGene annotation∼70 - 80% (protein-level)[2]
GeneMark-ES/ETAb initio (self-train)Gene annotation35.7 – 75.8% (nucleotide)[10]
SNAPAb initio HMMGene annotation77 - 80% (nucleotide)[9]
GlimmerHMMAb initio HMMGene annotation∼9 – 43% (some datasets)[11]
MAKER2Annotation pipelineGene annotation68.60% (nucleotide)[8]
AUGUSTUSAb initio + evidenceGene annotation82–92% (gene-level)[14]
BRAKER2Hybrid (RNA-seq + HMM)Gene annotation>AUGUSTUS (+2–3%)[7]
Helixer (DL)Deep learningGene annotation86.8% (reported)[15]
k-mer + SVMTraditional MLVariant classification∼92.01%Various
CNN-LSTMDeep learningVariant classification∼95–97%PartialVarious
GenEx LAPCG (Ours)Graph + ML (O⁡(n))Variant classification96.25%This work
GenEx MSCG (Ours)Graph + ML (multi-scale)Variant classification98.75%This work
Fig. 4: Hierarchical Clustering of SARS-CoV-2 Variants by Graph Features. The ten features in x-axis correspond to: second eigenvalue (sev), average shortest path length (aspl), Wiener index (wi), top eigenvalue (tev), radius (r), graph energy (ge), diameter (d), average clustering coefficient (aclu), average closeness centrality (aclo), and transitivity (t). All values are min–max normalised to [0,1]. Omicron consistently occupies the highest band across spectral and centrality axes (ge, aclu, aclo), while Delta remains near the minimum on most features, highlighting a sharp structural divergence between these two variants.
Fig. 4: Hierarchical Clustering of SARS-CoV-2 Variants by Graph Features. The ten features in x-axis correspond to: second eigenvalue (sev), average shortest path length (aspl), Wiener index (wi), top eigenvalue (tev), radius (r), graph energy (ge), diameter (d), average clustering coefficient (aclu), average closeness centrality (aclo), and transitivity (t). All values are min–max normalised to [0,1]. Omicron consistently occupies the highest band across spectral and centrality axes (ge, aclu, aclo), while Delta remains near the minimum on most features, highlighting a sharp structural divergence between these two variants.

为什么重要

该方法无需参照序列或比对步骤即可快速分类大规模病毒基因组数据,适合用于近乎实时的新变异株监测。它也为超越新冠病毒、扩展到其他病毒或生物体的基因分析提供了一个新的结构分析框架。

本文术语

  • 密码子 · 由三个核苷酸组成、编码一个氨基酸的基本单位
  • PMI(点互信息) · 衡量两个事物共同出现频率是否高于随机预期的指标
  • 奇异值分解(SVD) · 将矩阵分解为多个成分以揭示数据核心结构的数学方法
  • 方差分析(ANOVA) · 检验多个群体之间平均值差异是否具有统计显著性的方法
  • 匹配数 · 图中互不重叠的最大连接(边)集合的大小

论文原文摘要(英文)

Genomic analysis on viruses such as SARS-CoV-2 variants: Beta, Gamma, Delta, and Omicron is heavily dominated by classical bioinformatics methods, including Sequence Alignment, Phylogenetic Analysis, and Mutation Frequency Statistics. These approaches use pairwise codon or nucleotide distance matrices to analyze gene sequences, treating them as linear strings rather than capturing their complex contextual interdependencies. We proposed GenEx, a pip

作者 · Arefin Amin, Labiba Faiza Karim, M. Monir Uddin

在 arXiv 阅读

最新论文

全部论文 →

METAL LAB 最新报道

图片来源: Arefin Amin et al., arXiv:2608.18238, CC BY 4.0