Skip to content

Experiments

An experiment is the central unit of work in MINT. It has a unique type-scoped code, a type, a status, optional dates, optional collaborators, one design-data payload, and analysis results keyed by plugin.

[Screenshot: experiment detail page with header, design panel, analyze tab, and results tab]

Anatomy

FieldDescription
CodeAuto-assigned, globally unique, and derived from the experiment type (LCM-EXP-001, DR-EXP-001, …).
TitleHuman-readable label. Editable any time.
TypeSelected at creation; determines the design schema and plugin allowlists.
Statusplanned, ongoing, completed, or cancelled. See Lifecycle.
OwnerThe user who created it.
CollaboratorsPer-experiment role overrides on top of project membership.
Design dataOne JSON payload owned by the experiment-design or full plugin.
Analysis resultsJSON outputs keyed by plugin ID. A plugin can keep its own run history inside its result payload.
ArtifactsUploaded files (RAW data, plates, sequence sheets, etc.).

Create an experiment

From a project page, click New experiment on the Experiments tab.

[Screenshot: new-experiment modal with type selector and design fields]

FieldNotes
TitleRequired.
TypeRequired. Populated from installed EXPERIMENT_DESIGN and FULL plugins (e.g., LC-MS sequence, drug-response panel). If empty, ask your admin to install a relevant plugin.
Design dataThe form here is rendered by the type's plugin; it's whatever the plugin author defined.
Collaborators (optional)Add now or later. New collaborators are added with the collaborator role; the creator is stored as owner.

Click Create. You land on the new experiment in planned status.

Lifecycle

   planned ──▶ ongoing ──▶ completed
      │          │
      └──────────┴──▶ cancelled ──▶ planned
StatusMeaningWho can write
plannedDesign is being filled in. No data uploaded yet.Users with experiments.edit and visibility
ongoingData is being collected; analysis can run. Moving here auto-fills start_date if empty.Same as planned
completedFinal state. Moving here auto-fills end_date if empty.Same as planned unless a plugin blocks writes
cancelledTerminal off-ramp for planned/ongoing work. Can be reactivated only to planned.Same as planned

Core MINT validates only the cancelled rules above. Plugins can be stricter: many gate writes on ongoing or completed, and some require completed before publishing downstream results.

[Screenshot: status pill control showing the three states]

Plugin interaction

Plugin types interact with experiments differently:

TypeExperiment role
STATICCan read experiment context for viewers or reference tools, but cannot write design data or analysis results.
ANALYSISReads existing experiments and writes its own entry under analysis_results plus produced artifacts.
EXPERIMENT_DESIGNOwns an experiment type and writes that experiment's design_data.
FULLOwns design data and can also write analysis results/artifacts.

A given experiment has exactly one design-owning plugin, selected by its type, but it can be analyzed by many ANALYSIS or FULL plugins over time.

See Plugins for the full plugin model.

Collaborators

Experiment visibility depends on access.experimentVisibilityMode:

ModeBehavior
open (default)Users with experiments.view can list/read experiments broadly.
restrictedNon-admin users see experiments they created, collaborate on, or can access through project membership.

Write actions are still gated by system permissions such as experiments.edit and experiments.delete. To grant visibility on a single experiment, add collaborators:

Collaborator roleEffect
collaboratorCan see the experiment even if they are not a project member
ownerCan manage collaborators and delete the experiment; MINT keeps at least one owner

Collaborators are stored on the experiment itself (in collaborators), not on the project. They survive even if the user is later removed from the project. See Members & roles for the underlying RBAC.

Search and filters

The experiments list inside a project supports:

FilterNotes
Statusplanned / ongoing / completed / cancelled
TypeFaceted by installed experiment types
OwnerAnyone in the project
Created inDate range
Free textSearches name and notes

[Screenshot: experiments list with multiple filters applied]

Deleting experiments

Deleting an experiment currently removes the experiment row. Treat it as irreversible from the UI and make sure your platform database backups cover the recovery window your lab needs. Plugin-owned tables and external artifacts should define their own cleanup or retention policy.

Next

Plugins — the full plugin model → Marketplace — install and request plugins → Members & roles — collaborators and overrides

MINT is open source. Made by the Morscher Lab.