✓ Verified 💻 Development ✓ Enhanced Data

Arc Creator

Create and populate Annotated Research Contexts (ARCs) following the nfdi4plants ARC specification.

Rating
4.1 (373 reviews)
Downloads
6,706 downloads
Version
1.0.0

Overview

Create and populate Annotated Research Contexts (ARCs) following the nfdi4plants ARC specification.

Complete Documentation

View Source →

ARC Creator

Create FAIR Digital Objects following the nfdi4plants ARC specification v3.0.0.

Prerequisites

  • git and git-lfs installed
  • ARC Commander CLI at ~/bin/arc (optional but recommended)
  • For DataHUB sync: Personal Access Token for git.nfdi4plants.org or datahub.hhu.de

Interactive ARC Creation Workflow

Guide the user through these phases in order. Ask questions conversationally — don't dump all questions at once. Batch 2-4 related questions per message.

Phase 1: Investigation Setup

Ask the user:

  • Investigation identifier (short, lowercase-hyphenated, e.g. cold-stress-arabidopsis)
  • Title (concise name for the investigation)
  • Description (textual description of the research goals)
  • Where to store the ARC locally (suggest /home/uranus/arc-projects//)
Then run scripts/create_arc.sh and set investigation metadata via:
bash
arc investigation update -i "<id>" --title "<title>" --description "<desc>"

Phase 2: Studies

For each study, ask:

  • Study identifier (e.g. plant-growth)
  • Title and description
  • Organism (for Characteristic [Organism])
  • Growth conditions (temperature, light, medium, etc.)
  • Source materials (what goes in — seeds, cell lines, etc.)
  • Sample materials (what comes out — leaves, roots, extracts, etc.)
  • Protocols — does the user have protocol documents to include?
  • Factors — what experimental variables are being tested? (e.g., temperature, genotype, treatment)
Create with:
bash
arc study init --studyidentifier "<id>"
arc study update --studyidentifier "<id>" --title "<title>" --description "<desc>"

Copy protocol files to studies//protocols/. Copy resource files to studies//resources/.

Phase 3: Assays

For each assay, ask:

  • Assay identifier (e.g. proteomics-ms, rnaseq, sugar-measurement)
  • Measurement type (e.g., protein expression profiling, transcription profiling, metabolite profiling)
  • Technology type (e.g., mass spectrometry, nucleotide sequencing, plate reader)
  • Technology platform (e.g., Illumina NovaSeq, Bruker timsTOF)
  • Data files — where are the raw data files? (will go into assays//dataset/)
  • Processed data — any processed output files?
  • Protocols — assay-specific protocols?
  • Performers — who performed this assay? (name, affiliation, role)
Create with:
bash
arc assay init -a "<id>" --measurementtype "<type>" --technologytype "<tech>"

Copy data to assays//dataset/, protocols to assays//protocols/.

Phase 4: Workflows (optional)

Ask if there are computational analysis steps. For each:

  • Workflow identifier (e.g. deseq2-analysis, heatmap-generation)
  • Description of what it does
  • Code files (scripts, notebooks)
  • Dependencies (Python packages, R libraries, Docker image)
Place code in workflows//. Note: workflow.cwl is REQUIRED by spec but often created later. Inform user.

Phase 5: Runs (optional)

Ask if there are computation outputs. For each:

  • Run identifier
  • Which workflow produced it
  • Output files (figures, tables, processed data)
Place outputs in runs//.

Phase 6: Contacts & Publications

Ask:

  • Investigation contacts (name, email, affiliation, role — at minimum the PI)
  • Publications (if any — DOI, PubMed ID, title, authors)
Add via:
bash
arc investigation person register --lastname "<last>" --firstname "<first>" --email "<email>" --affiliation "<aff>"

Phase 7: Git Commit & DataHUB Sync

  • Configure git user:
bash
git config user.name "<name>"
git config user.email "<email>"
  • Commit:
bash
git add -A
git commit -m "Initial ARC: <investigation title>"
  • Ask if the user wants to push to a DataHUB. If yes:
  • Ask which host (git.nfdi4plants.org, datahub.hhu.de, etc.)
  • Create remote repo (via browser or API)
  • Set remote and push

ISA Metadata Reference

For detailed ISA-XLSX fields, annotation table columns, and ontology references, read references/arc-spec.md.

Key Reminders

  • Assay data is immutable — never modify files in assays//dataset/ after initial placement
  • Studies describe materials, assays describe measurements
  • Workflows are code, runs are outputs
  • Git LFS for files > 100 MB: git lfs track ".fastq.gz" ".bam" "*.raw"
  • Don't store ARCs on OneDrive/Dropbox — Git + cloud sync causes conflicts
  • ARC Commander CLI reference: arc --help

Installation

Terminal bash

openclaw install arc-creator
    
Copied!

💻Code Examples

Create with:

create-with.sh
arc study init --studyidentifier "<id>"
arc study update --studyidentifier "<id>" --title "<title>" --description "<desc>"

1. Configure git user:

1-configure-git-user.sh
git config user.name "<name>"
git config user.email "<email>"

2. Commit:

2-commit.sh
git add -A
git commit -m "Initial ARC: <investigation title>"

Tags

#coding_agents-and-ides

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author ingogiebel
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install arc-creator