Skip to main content

scifor

Stop Writing Loops, Start Writing Analysis

scifor is the batch execution engine behind SciDB. It takes a function you've already written and runs it across every combination of experimental conditions — subjects, sessions, trials, whatever your data is organized by — automatically slicing your data to match each combination and collecting the results into a clean table.

It works in both Python and MATLAB, and it works standalone — no database required, just plain tables.

The Problem

Scientific data is almost always organized by conditions: subjects, sessions, trials, limbs, speeds. Processing it means writing nested loops that slice, call a function, and collect results:

for i = 1:numel(subjects)
    for j = 1:numel(sessions)
        rows = tbl(tbl.subject == subjects(i) & tbl.session == sessions(j), :);
        result = my_analysis(rows.emg);
        % ...now figure out where to put the result
    end
end

This gets worse as the number of conditions grows, and the loop logic buries the actual analysis. Every scientist writes some version of this, and it's never the interesting part.

How scifor Works

You tell scifor two things:

  1. Schema — which columns in your tables represent experimental conditions (the things you iterate over)
  2. Inputs — which tables to slice, and which values are just constants

Then scifor handles the rest: it loops over every combination, filters each table to the matching rows, calls your function, and collects the results.

MATLAB

scifor.set_schema(["subject", "session"]);

results = scifor.for_each(@my_analysis, ...
    struct('emg', data_table, 'cutoff_hz', 20), ...
    subject=[1, 2, 3], session=["pre", "post"]);

Python

from scifor import set_schema, for_each

set_schema(["subject", "session"])

results = for_each(
    my_analysis,
    inputs={"emg": data_table, "cutoff_hz": 20},
    subject=[1, 2, 3],
    session=["pre", "post"],
)

For each of the 6 combinations (3 subjects x 2 sessions), scifor filters data_table to the matching rows, passes the emg column to my_analysis along with the constant cutoff_hz=20, and collects the return value. The result is a table with subject, session, and output columns — one row per combination.

Your function doesn't need to know about looping, filtering, or metadata. It just receives data and returns a result.

What You Get Back

for_each returns a MATLAB table (or pandas DataFrame in Python) with one row per combination. Metadata columns come first, then the output:

subject session output
1 pre 0.82
1 post 1.47
2 pre 0.91
2 post 1.38
3 pre 0.76
3 post 1.22

If your function returns a table, its columns are flattened into the result alongside the metadata. If your function returns multiple outputs, you get multiple result tables.

Beyond the Basics

The examples above cover the most common case, but real pipelines have real-world complications. scifor has tools for each of them:

  • Fixed inputs — Pin one input to a specific condition while the others iterate. The classic case: comparing every session against a fixed baseline.

  • Merging tables — When your function needs columns from two separate tables (say, kinematics and force data), combine them into a single input per combination.

  • Column selection — Extract just the columns you need from a multi-column table before your function sees it.

  • File paths from metadata — When your data lives in files organized by condition (e.g., data/subject_1/trial_3.mat), generate the right file path for each combination automatically.

  • Row filtering — Apply column-based filters (like "only right-side trials" or "speed > 1.5") on top of the metadata filtering.

  • Dry run — Preview which combinations would be processed and what data would be passed, without actually running anything.

  • Distribute — When a function returns a vector of values that should each become their own row at a deeper schema level (e.g., splitting a trial into individual gait cycles), scifor can expand the output automatically.

See the API reference and batch processing guide for details on all of these.

Relationship to SciDB

scifor is the engine that powers scidb.for_each(). When used through SciDB, inputs are loaded from the database and outputs are saved back automatically. When used standalone (as scifor.for_each()), it works with plain MATLAB tables or pandas DataFrames — no database needed.

If you're already using SciDB, you're already using scifor under the hood. If you just want the loop orchestration without the database, use the scifor namespace directly.

Logging

scifor logs through the shared scistacklog facade with layer="scifor". At the default (INFO) level a run produces a concise narrative: a banner with truncated value previews (subject=12 values [s01, …, s12]), a progress line each time the outermost iterated key advances (rate-limited so fast runs stay silent), and an end-of-run summary that aggregates failures by reason:

for_each(compute_psd) done in 74.0s: completed=114, failed=3, total=120
failed: 3 × "ValueError: bad channel count" — subject=s03, session=2; … (+N more)

The first occurrence of each distinct failure reason is logged at WARN with the full traceback. Per-iteration [run]/[skip]/[done] lines are DEBUG — enable them with Log.set_level("DEBUG") or SCIDB_LOG_LEVEL=DEBUG. Dry-run output goes to stdout (it is the requested result, not logging).

Standalone (no scidb) usage gets the same console output automatically; when used through SciDB, the records also land in scidb.log.

Download files

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

Source Distribution

scifor-0.1.17.tar.gz (45.5 kB view details)

Uploaded Source

Built Distribution

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

scifor-0.1.17-py3-none-any.whl (50.7 kB view details)

Uploaded Python 3

File details

Details for the file scifor-0.1.17.tar.gz.

File metadata

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

File hashes

Hashes for scifor-0.1.17.tar.gz
Algorithm Hash digest
SHA256 c2f6e3d81cd6975fed0df8d354e7f419b0cf35e1bcb081d8ec7c05853940083c
MD5 f33dfbcbc0be48dc5e8febd8582e8a94
BLAKE2b-256 732743c9b4f9988d8f4bfb6e2691ccd04983ccf901b4082088a08fde168a4b99

See more details on using hashes here.

Provenance

The following attestation bundles were made for scifor-0.1.17.tar.gz:

Publisher: publish.yml on mtillman14/scistack

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

File details

Details for the file scifor-0.1.17-py3-none-any.whl.

File metadata

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

File hashes

Hashes for scifor-0.1.17-py3-none-any.whl
Algorithm Hash digest
SHA256 bc75837ed05ef9a83210722cdc99367879af36383ce5b85de7127aee82cbe7b3
MD5 b7347f3b94d80b654fc331ba5dbf62f4
BLAKE2b-256 97220c35932b5698b7249558fb8312869adcfbaad61e996aa6805acb9adf3571

See more details on using hashes here.

Provenance

The following attestation bundles were made for scifor-0.1.17-py3-none-any.whl:

Publisher: publish.yml on mtillman14/scistack

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

Release history Release notifications | RSS feed

0.1.29

2 files

0.1.28

2 files

0.1.26

2 files

0.1.21

2 files

0.1.20

2 files

0.1.19

2 files

0.1.18

2 files

This release

0.1.17 This release

2 files

0.1.16

2 files

0.1.14

2 files

0.1.13

2 files

0.1.11

2 files

0.1.10

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page