BioLab/CLAUDE.md
ltadeu6 afe65f4245
Atualiza CLAUDE.md e README com processo de build de release e downloads
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-28 18:25:49 -03:00

5.5 KiB
Raw Blame History

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

What is BioLab

BioLab Parameter Explorer is a scientific web application that estimates kinetic parameters for microbial growth and substrate consumption models. Given time-series measurements of biomass (cells, g/L) and residual substrate (g/L), it runs Particle Swarm Optimization (PSO) over seven built-in kinetic models and ranks them by the Akaike Information Criterion (AIC).

The app is packaged with Apache Cordova and targets Electron (desktop), Android, and Browser.

Commands

Tests (run from www/)

cd www && node tests/demo.mjs
cd www && node tests/synthetic-search.mjs
# or both at once:
cd www && npm test

Tests use Node.js directly — no test runner or build step needed.

Run / build (Electron)

nix-shell --run "cordova run electron"           # dev run

Release build produces an AppImage (Linux) in two steps — cordova-electron bundles electron-builder v24 which ignores the Linux target, so electron-builder v26 from devDependencies is called directly:

nix-shell --run "cordova build electron --release"   # prepare platform
nix-shell --run "node_modules/.bin/electron-builder --linux AppImage --config res/electron/build.json"
# output: platforms/electron/build/BioLab-1.0.0.AppImage

Build release APK (Android)

Signing keys are managed via agenix (android-signing-env). Use --packageType=apk to force APK output instead of AAB:

android-signing-env python3 -c "
import json, os
cfg = {'android': {'release': {
    'keystore': os.environ['ANDROID_KEYSTORE_PATH'],
    'keystoreType': 'pkcs12',
    'alias': os.environ['ANDROID_KEY_ALIAS'],
    'storePassword': os.environ['ANDROID_KEYSTORE_PASSWORD'],
    'password': os.environ['ANDROID_KEY_PASSWORD']
}}}
open('/tmp/biolab-build.json','w').write(__import__('json').dumps(cfg))
"
nix-shell --run "ANDROID_HOME=\$HOME/Android/Sdk ANDROID_SDK_ROOT=\$HOME/Android/Sdk \
  GRADLE_USER_HOME=\$(pwd)/.gradle \
  cordova build android --release --buildConfig /tmp/biolab-build.json -- --packageType=apk"
rm /tmp/biolab-build.json
# output: platforms/android/app/build/outputs/apk/release/app-release.apk

Build release .exe (Windows VM)

# VM: user@192.168.122.187, cordova global at C:\Users\User\AppData\Roaming\npm\cordova.cmd
ssh user@192.168.122.187 "cd C:\\Users\\user\\BioLab && git pull && C:\\Users\\User\\AppData\\Roaming\\npm\\cordova.cmd build electron --release"
scp "user@192.168.122.187:C:/Users/user/BioLab/platforms/electron/build/BioLab Setup 1.0.0.exe" /tmp/
# output: /tmp/BioLab Setup 1.0.0.exe

Run on Android (dev)

# Set up environment first (or source env.sh):
source env.sh
# env.sh sets ANDROID_HOME, ANDROID_SDK_ROOT, PATH entries for the SDK,
# and isolates Gradle cache to ./.gradle, then calls `cordova run android`.

Serve in browser

cordova run browser
# or just open www/index.html via any static file server

Architecture

www/
  index.html        — single-page app; all UI logic is an inline <script type="module">
  src/
    conhecidos.js   — pure functions: the seven kinetic µ(S) equations + Pirt
    runge-kutta.js  — RK4 solver (RK4) and point interpolator (RK4getvalue)
    Objective.js    — Objective class: wraps experimental data + ODE, computes normalized SSR
    PSO.js          — PSO class: initializes swarm, runs iterations, exposes pos_best_g / err_best_g
    search.js       — orchestrates everything: builds ODE functions (model × Pirt coupling),
                       runs PSO per model, renders Plotly charts, computes AIC, sorts results
    rrandom.js      — Math.random wrapper used by PSO
  tests/
    demo.mjs              — smoke test: PSO converges to a finite error
    synthetic-search.mjs  — accuracy test: PSO recovers known Monod params from synthetic data
  assets/
    dados.json      — default experimental dataset loaded on page start

Data flow

  1. index.html collects experimental data, PSO hyperparameters, and per-model parameter bounds from the form.
  2. It calls main(data, { alg, bounds, onProgress }) exported from search.js.
  3. For each of the seven models, search.js constructs an ODE function (<model>Pirt) that couples a growth-rate formula from conhecidos.js with the Pirt substrate consumption equation.
  4. An Objective instance wraps the ODE and experimental data. It normalizes residuals by column mean before summing squared errors — this makes SSR dimensionless and comparable across variables with different scales.
  5. PSO minimizes the objective over the parameter bounds, producing pos_best_g (best parameter vector).
  6. RK4 integrates the ODE at 500 internal steps; RK4getvalue interpolates from that solution to exact experimental time points.
  7. After all models complete, results are sorted by AIC and a comparison table is rendered.

Key design constraints

  • The frontend is no-build: ES modules loaded directly in the browser; no bundler.
  • www/package.json has "type": "module" so Node can run the tests with native ESM imports.
  • External CDN dependencies: KaTeX (math rendering), Plotly (charts). Both are loaded in index.html; search.js assumes Plotly and katex are globals.
  • The Objective constructor detects column order from header keywords (Portuguese and English), so column order in the data table matters only when headers are absent or unrecognized.
  • PSO uses Math.random directly — synthetic-search.mjs patches it with a deterministic LCG for reproducible test results.