A command-line tool for processing FHIR healthcare data through configurable pipeline steps.
Aether helps you:
- Extract patient data from a TORCH server using CRTDL query files
- Pseudonymize the data using a DIMP service to protect patient privacy
- Flatten FHIR data to CSV using SQL-on-FHIR ViewDefinitions
- Send processed data to FHIR servers or DSF transfer systems
For Linux and macOS:
curl -sSfL https://raw.githubusercontent.com/medizininformatik-initiative/aether/main/install.sh | sh
sudo mv aether /usr/local/bin/For manual installation or Windows, download the latest release.
Verify installation:
aether --helpCreate aether.yaml in your working directory:
services:
torch:
base_url: "https://your-torch-server.org"
username: "your-username"
password: "your-password"
dimp:
url: "http://your-dimp-server:32861/fhir"
pipeline:
enabled_steps:
- torch
- dimp
jobs_dir: "./jobs"aether pipeline start your-query.crtdlaether job list
aether pipeline status <job-id>aether pipeline continue <job-id>Apache License 2.0 - see LICENSE
