Skip to main content

Biosensor

A lightweight Python package with an attached local viewer that converts raw electrochemical instrument exports into one tidy dataframe schema, and lets you visually verify the parse before trusting the output.

Targets solo researchers and small labs working on immunosensor and biosensor cyclic voltammetry (CV) / DPV / SWV data who need a fast, local path from raw instrument export to usable data, without adopting an institutional ELN.

Supported formats (v1)

  • CH Instruments text export
  • Metrohm Nova (Autolab) text/CSV export
  • PalmSens .pssession (best-effort; see src/biosensor/readers/palmsens.py)
  • Generic delimited CSV: a named header, metadata lines before the header, or headerless two-column numeric (potential, current)

Format detection is content-based (file signature and header content), not filename-extension based.

Install

python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"

Library usage

from biosensor import load, batch_load, to_dataframe

result = load("cv01.txt")
df = to_dataframe(result.measurement)
print(result.qc.sanity_status)  # "ok" | "flagged" | "failed"

batch = batch_load("data/2026-08-05-run/")
df = batch.to_dataframe()          # all files, one tidy frame
qc_df = batch.qc_dataframe()       # per-file sanity status

Every reader converts its instrument-specific format into a Measurement (potential, current, scan rate, cycle number, technique, sample ID, analyte concentration, and a flexible technique_params dict for things like SWV frequency or DPV pulse width). QC state (sanity_status, review notes) lives in a separate QCRecord so the sanity heuristic can evolve without touching the measurement schema.

Viewer

Double-click the launcher for your platform (launcher.command on macOS, launcher.sh on Linux, launcher.bat on Windows). Each sets up the venv on first run, then starts the server and opens the browser:

./launcher.command      # macOS
./launcher.sh           # Linux
launcher.bat            # Windows
# or manually: source .venv/bin/activate && python viewer/app.py

Opens at http://127.0.0.1:5050. Three panes: file list on the left (live filter, ok/flagged/failed tabs), the CV curve (Plotly, zoom/pan) with Dataframe and Overlay tabs in the center, and a parse record on the right (quality check, instrument metadata, sample/concentration mapping). Load a single file or an entire folder, correct a wrong column mapping in-place (see a live preview before applying), override the quality flag manually, and export any file or the whole batch as CSV. Light/dark theme toggle in Settings.

Visual design follows the Tree Design System, with design tokens under viewer/static/tokens/.

The viewer is local, single-user, in-memory only; state resets on restart. This is intentional (see Non-goals below).

Tracing

Action-level tracing via traceact (file parse, batch upload, mapping correction, CSV export) writes to data/traces/traces.jsonl for local debugging. It isn't required to run the app, and it's gitignored.

Sanity-check heuristic (v1)

A simple curve-shape check, not anything trained: flags constant/flat current or potential (near-certain wrong column mapping), non-finite values, too few points, a single-direction sweep with no return cycle, and the absence of any peak/inflection in the current trace. Manual override is always available in the viewer.

Security

The viewer accepts arbitrary uploaded files and treats them as untrusted input:

  • Format detection inspects file content, never trusts the extension alone
  • Per-file byte and data-row limits bound parsing cost (see readers/base.py)
  • Any parse failure, including malformed or adversarial files, degrades to a per-file error, never a server crash
  • Filenames, sample IDs, and technique strings derived from file content are sanitized before display and CSV export (including a CSV-formula injection guard)
  • No macro or script execution in any format reader

Non-goals (v1)

Peak fitting, baseline correction, calibration curves, ML modeling, multi-user access, authentication, or cloud deployment. Four format readers is the v1 target, not exhaustive vendor coverage.

Sample data

sample_data/ has a synthetic ~27-file batch (all four formats) for exercising the viewer by hand: an IL6 immunosensor concentration series (CH Instruments, peak height scales with concentration), ferricyanide and blank references, Metrohm Nova DPV/CV, PalmSens sessions, a clean generic CSV, and two files that deliberately fail to parse (to exercise the batch error path). Point "Load a folder" at it. Regenerate with:

source .venv/bin/activate
python scripts/generate_sample_data.py

Tests

source .venv/bin/activate
pytest

Fixtures in tests/fixtures/ are synthetic (generated, not instrument exports) but shaped like each format's structure, including one unrecognizable file to exercise the error path.

Documentation

Project layout

src/biosensor/       # the library: schema, readers, core API, QC heuristic
viewer/                 # Flask + HTMX + Plotly local viewer
tests/                  # pytest suite + synthetic fixtures

Author

Built by Mo Shehu — mohammedshehu.com

Download files

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

Source Distribution

biosensor-1.0.0.tar.gz (27.2 kB view details)

Uploaded Source

Built Distribution

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

biosensor-1.0.0-py3-none-any.whl (22.1 kB view details)

Uploaded Python 3

File details

Details for the file biosensor-1.0.0.tar.gz.

File metadata

  • Download URL: biosensor-1.0.0.tar.gz
  • Upload date:
  • Size: 27.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for biosensor-1.0.0.tar.gz
Algorithm Hash digest
SHA256 f22830ef95f9531d45d342bc0d25b57398f2de601878122a96ad3a2cedd8c730
MD5 7b423cb1be05a7f803e9006cb913b2a8
BLAKE2b-256 49334326daf3c1f4dac39d252310d8ec2ca44d65f827c6b6de00a00ce76c2d82

See more details on using hashes here.

Provenance

The following attestation bundles were made for biosensor-1.0.0.tar.gz:

Publisher: publish.yml on shehuphd/biosensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file biosensor-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: biosensor-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 22.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for biosensor-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 556af39d3a636821781b35c011b7c9596bbe13c4b2712c632d9944e290327082
MD5 46438ee18402772c4815a53d426fabd0
BLAKE2b-256 d0a10a8ca8344aad79adacfd928467cc04e621e69e405e1d9c02038fab7813db

See more details on using hashes here.

Provenance

The following attestation bundles were made for biosensor-1.0.0-py3-none-any.whl:

Publisher: publish.yml on shehuphd/biosensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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