Dataset Viewer
Auto-converted to Parquet Duplicate
transfer_type
stringclasses
2 values
train_dataset
stringclasses
5 values
test_dataset
stringclasses
2 values
model
stringclasses
3 values
auroc
float64
0.49
0.74
auroc_ci_low
float64
0.42
0.68
auroc_ci_high
float64
0.57
0.8
n_train
int64
155
748
n_test
int64
248
296
is_challenge
bool
2 classes
notes
float64
individual_dev_to_val
GSE161731
GSE100150
physics_4_topk
0.692122
0.623624
0.756192
155
248
false
null
individual_dev_to_val
GSE161731
GSE73072
physics_4_topk
0.533784
0.473201
0.60372
155
296
true
null
individual_dev_to_val
GSE63990
GSE100150
physics_4_topk
0.531132
0.461037
0.604578
280
248
false
null
individual_dev_to_val
GSE63990
GSE73072
physics_4_topk
0.531958
0.469423
0.602759
280
296
true
null
individual_dev_to_val
GSE60244
GSE100150
physics_4_topk
0.730513
0.665681
0.78917
158
248
false
null
individual_dev_to_val
GSE60244
GSE73072
physics_4_topk
0.530542
0.47029
0.602493
158
296
true
null
individual_dev_to_val
GSE236713
GSE100150
physics_4_topk
0.664259
0.598284
0.731228
155
248
false
null
individual_dev_to_val
GSE236713
GSE73072
physics_4_topk
0.541819
0.481569
0.61273
155
296
true
null
pooled_dev_to_val
pooled_dev
GSE100150
physics_4_topk
0.492122
0.419673
0.567959
748
248
false
null
pooled_dev_to_val
pooled_dev
GSE73072
physics_4_topk
0.532095
0.467764
0.599367
748
296
true
null
pooled_dev_to_val
pooled_dev
GSE100150
sweeney7
0.639628
0.567042
0.70865
593
248
false
null
pooled_dev_to_val
pooled_dev
GSE100150
herberg2
0.744823
0.680937
0.804772
313
248
false
null

CBRN Physics Features

Pre-computed physics-informed distributional features for pathogen-agnostic biological threat detection in gene expression data.

Overview

This dataset contains per-sample and per-group features computed from the shape of gene expression distributions rather than the identity of individual genes. The four core features — Gini coefficient, Shannon entropy, normalized entropy, and Zipf exponent — are platform-agnostic: they require no gene annotation, no probe mapping, and no platform-specific normalization.

These features enable:

  • Cross-platform infection detection (AUROC 0.720 across 5 microarray/RNA-seq platforms)
  • Radiation biodosimetry from tissue gene expression (AUROC 0.793)
  • Dose-response modeling with monotonic feature-dose relationships

Dataset Structure

File Description Rows Key Columns
infection/per_sample_features.csv Per-sample features across 10 GEO infection datasets 1,954 gini, shannon_entropy, normalized_entropy, zipf_gamma, dataset, condition
infection/cross_dataset_transfer.csv Cross-dataset transfer AUROC (train on one platform, test on another) 51 train_dataset, test_dataset, auroc, model
infection/validation_transfer.csv Development-to-validation transfer with bootstrap 95% CI 12 train_dataset, test_dataset, auroc, ci_low, ci_high
radiation/per_sample_features.csv Per-sample features for brain, spleen, and skin tissue 82 tissue, radiation, group, gini, shannon_entropy
radiation/group_features.csv Taylor k exponent with bootstrap CI per condition group 12 tissue, group, taylor_k, ci_low, ci_high
dose_response/per_sample_features.csv Dose-response features across radiation doses (0-13 Gy) 82 tissue, dose_gy, gini, shannon_entropy

Total: 2,193 rows across 6 CSV files.

Features

Feature Formula Interpretation Range
Gini coefficient Lorenz curve area Expression inequality (0 = uniform, 1 = one gene dominates) [0, 1]
Shannon entropy H = -sum(p log p) Expression diversity (nats) [0, log n]
Normalized entropy H / log(n_expressed) Scale-free diversity, comparable across platforms [0, 1]
Zipf exponent (gamma) OLS slope of log(expr) vs log(rank) Power-law decay rate of ranked expression [-3, 0]
Taylor k OLS slope of log(Var) vs log(Mean) Noise scaling exponent (requires replicates) [1, 2]

Source Data

Features were computed from publicly available gene expression datasets:

  • Infection: 10 GEO datasets (GSE161731, GSE157103, GSE63990, GSE60244, GSE72829, GSE236713, GSE100150, GSE111368, GSE40012, GSE73072) spanning RNA-seq, Affymetrix, Illumina, and Agilent platforms
  • Radiation: 3 NASA GeneLab datasets (OSD-202 brain, OSD-211 spleen, OSD-237 skin)

Usage

import pandas as pd

# Load infection features
features = pd.read_csv("infection/per_sample_features.csv")

# Binary label: infected vs healthy
features["infected"] = (features["condition"] != "Healthy").astype(int)

# Train a simple classifier
from sklearn.linear_model import LogisticRegression
from sklearn.model_selection import cross_val_score

X = features[["gini", "shannon_entropy", "normalized_entropy", "zipf_gamma"]]
y = features["infected"]
scores = cross_val_score(LogisticRegression(), X, y, cv=5, scoring="roc_auc")
print(f"5-fold AUROC: {scores.mean():.3f} +/- {scores.std():.3f}")

Code

Full analysis pipeline, vendored feature computation library, and figure generation scripts:

github.com/jang1563/cbrn-physics-features

Citation

@software{kim2026physics,
  author = {Kim, Jangwoo},
  title = {Physics-Informed Distributional Features for CBRN Threat Detection},
  year = {2026},
  url = {https://github.com/jang1563/cbrn-physics-features},
  license = {MIT}
}
Downloads last month
6