R image for the running of the autoFlow.R script: https://github.com/agusinac/OmicFlow
10K+
OmicFlow expects your sample metadata to follow a simple, but strict structure so that all datasets are compatible and validated up‑front.
Your metadata should be provided as a CSV (or TSV) file where each row = one sample and the first line should be a header.
Additional columns are allowed and will be ignored during the metadata validation step.
SAMPLE_ID ➡ every row must have a unique, non‑empty sample identifier._ or dashes - instead.Example:
| SAMPLE_ID | FEATURE_ID | SAMPLEPAIR_ID | CONTRAST_Treatment | VARIABLE_Age |
|---|---|---|---|---|
| S1 | OTU0001 | P1 | Drug | 42 |
| S2 | OTU0002 | P1 | Placebo | 36 |
| S3 | OTU0003 | P2 | Drug | 51 |
| Column | Type | Rules |
|---|---|---|
SAMPLE_ID | string | Unique, no spaces, one per sample row |
| Column | Type | Rules |
|---|---|---|
FEATURE_ID | string | Optional — no spaces. Naming of the feature identifiers to include or exclude certain features |
SAMPLEPAIR_ID | string | Optional — no spaces. Use when samples are paired and belong to an individual source/subject |
You can define extra variables using special prefixes:
CONTRAST_... → grouping/category labels used in differential comparisonsCONTRAST_Treatment with values Drug / PlaceboVARIABLE_... → numeric or string variables for statistical analysisVARIABLE_Age with values 42, 51, etc.The pattern-based columns are only used during the autoFlow function. At the moment only columns with prefix CONTRAST_ are supported.
NOTE: Symbolic links do not work with mounting, please only copy the original file!
Example: Outputs a report.html file in current work directory
docker run -it --rm -v \
"$(pwd)":/data \ # Mount the data in a temporary directory
-w /data \ # set working directory
-u $(id -u):$(id -g) \ # non-root user
agusinac/autoflow:1.4.0 \
autoflow \ # autoflow R script
-b /data/biom_with_taxonomy_hdf5.biom \
-m /data/metadata.tsv
For additional options please run autoflow -h
If you are having issues, please create an issue
Content type
Image
Digest
sha256:0926ea057…
Size
1.2 GB
Last updated
7 months ago
docker pull agusinac/autoflow