Skip to main content

polars-mas - a fast multiple association library for python backed by polars

Project description

polars-mas

A fast Python library for multiple association studies, built on Polars.

polars-mas is designed as a drop-in replacement for the R PheWAS package, providing 3-14x speedup while producing numerically identical results (within 1e-8 tolerance).

Features

  • Fast: Leverages Polars for efficient data processing with multi-threaded computation
  • Accurate: Produces results identical to the R PheWAS package
  • Flexible: Supports multiple regression models and input/output formats
  • PheCode-aware: Built-in PheCode definitions and sex-specific code handling

Supported Models

Model Use Case Flag
Firth logistic regression Binary outcomes (default) -m firth
Standard logistic regression Binary outcomes -m logistic
Linear regression Quantitative outcomes -m linear

Supported Formats

  • Input: Parquet, CSV, TSV, TXT (tab-delimited)
  • Output: Parquet, CSV, TSV, TXT

Installation

pip install polars-mas

Or with uv:

uv add polars-mas

Quick Start

Basic Usage

polars-mas \
  -i data.csv \
  -o results \
  -p exposure \
  -d i:10- \
  -c age,sex,bmi

This runs Firth logistic regression with:

  • exposure as the predictor
  • Columns 10 onwards as dependent variables (phecodes)
  • age, sex, bmi as covariates

PheWAS Analysis

polars-mas \
  -i phewas_data.parquet \
  -o phewas_results \
  -p genetic_variant \
  -d i:20-1850 \
  -c age,sex,pc1,pc2,pc3 \
  --phewas \
  -n 4 \
  -t 8

The --phewas flag enables automatic PheCode annotation in results.

CLI Reference

polars-mas [OPTIONS]

Input Options:
  -i, --input PATH              Input file (parquet, csv, tsv, txt)
  -o, --output PATH             Output file prefix
  -p, --predictors COLS         Predictor columns (comma-separated)
  -d, --dependents COLS         Dependent columns (comma-separated)
  -c, --covariates COLS         Covariate columns (comma-separated)
  -cc, --categorical-covariates Categorical covariate columns
  -nv, --null-values VALUES     Values to treat as null (comma-separated)
  -ot, --output-type TYPE       Output format: parquet, csv, tsv, txt

Association Parameters:
  -m, --model MODEL             firth (default), logistic, or linear
  -mc, --min-case-count N       Minimum cases/controls required (default: 20)
  -mcv, --missing-covariate-values
                                How to handle missing covariates:
                                fail, drop, forward, backward, min, max, mean, zero, one
  -qt, --quantitative           Dependent variables are quantitative

Performance:
  -n, --num-workers N           Number of worker processes (default: 1)
  -t, --threads N               Threads per worker (default: 2)

PheCode Options:
  --phewas                      PheCodes are dependent variables
  --flipwas                     PheCodes are predictor variables
  --sex-col COL                 Sex column name (default: sex)
  --female-code N               Code for female (default: 1)
  --male-only                   Include only male samples
  --female-only                 Include only female samples

Other:
  --dry-run                     Show configuration without running
  -v, --verbose                 Enable verbose logging
  -q, --quiet                   Suppress most output

Column Selection

Columns can be specified by name or index:

# By name in comma-separated list
-p age,sex,bmi

# By index (0-based)
-d i:10          # Column 10
-d i:10-20       # Columns 10-19
-d i:10-         # Column 10 to end

# Can be used in conjuction as well!
-c age,sex,i:8-12

Output

Results include:

Column Description
predictor Predictor variable name
dependent Dependent variable name
pval P-value (LRT for Firth)
beta Coefficient estimate
se Standard error
OR Odds ratio (logistic models)
ci_low, ci_high 95% confidence interval
cases, controls Sample counts (binary outcomes)
converged Model convergence status
bonferroni_significant Bonferroni-corrected significance
phenotype, category PheCode annotations (if --phewas)

Performance

See the benchmarks for detailed comparisons against the R PheWAS package.

Summary: polars-mas achieves 3-14x speedup depending on the number of covariates, with identical numerical results.

Current Limitations

The following features from the R PheWAS package are not yet implemented:

  • Multiple testing correction: Only Bonferroni correction is available (FDR/BH planned)
  • Variable transformations: RINT and log transformations are not yet functional
  • Covariate scaling: Standard and min-max scaling not yet implemented
  • Parallel workers: Currently works best with one polars worker; -n flag reserved for future use. More threads with the -t option is fine.
  • Python API: Only CLI interface is currently documented; programmatic API in development

Roadmap

Planned features for future releases:

  • FDR (Benjamini-Hochberg) multiple testing correction
  • Rank-based inverse normal transformation (RINT)
  • Log transformation for dependent variables
  • Covariate standardization options
  • True parallel processing with multiple workers
  • Python API with DataFrame input/output
  • Manhattan and QQ plot generation
  • ICD-to-PheCode mapping utilities

Requirements

  • Python >= 3.11
  • polars >= 1.9.0
  • firthmodels >= 0.4.0
  • statsmodels >= 0.14.4

License

MIT

Citation

If you use polars-mas in your research, please cite:

polars-mas: A fast Python library for multiple association studies
https://github.com/PheWAS/polars-mas

Related Projects

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

polars_mas-0.4.0.tar.gz (634.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

polars_mas-0.4.0-py3-none-any.whl (45.4 kB view details)

Uploaded Python 3

File details

Details for the file polars_mas-0.4.0.tar.gz.

File metadata

  • Download URL: polars_mas-0.4.0.tar.gz
  • Upload date:
  • Size: 634.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.22

File hashes

Hashes for polars_mas-0.4.0.tar.gz
Algorithm Hash digest
SHA256 ee55864cc596abd4104ed55f377292357c480b5cf2dbc5230a761377aab32726
MD5 eb6b355c8b3bc6b0002246e28aab9b65
BLAKE2b-256 0f1acfa9a579f85f5c1674a68c06301106f57776432a376226693d9a156b2e64

See more details on using hashes here.

File details

Details for the file polars_mas-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: polars_mas-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 45.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.22

File hashes

Hashes for polars_mas-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b9def9e1a7edb2079300fac6f6926b738e5670d61e521ff226756c573bd16c86
MD5 394c96d1283af3f2fe8bb97a896d86d3
BLAKE2b-256 092ce4cfd645ea0a51ccbed27130b49c6ddb1dd2b926545e9f13622da711ef5a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page