Scipion is an image processing framework for obtaining 3D models of macromolecular complexes using cryo-EM data. It integrates several software packages while presenting a unified interface.
Scipion provides a workflow-based environment that integrates multiple cryo-EM software packages into a single platform.
Key Features:
version: '3.8'
services:
scipion:
image: scipion/scipion:latest
container_name: dxflow-scipion
# Web interface port
ports:
- "8080:8080"
# Volumes
volumes:
- ./projects:/home/scipion/ScipionUserData/projects
- ./data:/home/scipion/ScipionUserData/data
# GPU support
deploy:
resources:
limits:
cpus: '16'
memory: 64G
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
# Environment
environment:
- DISPLAY=:0
- SCIPION_DOMAIN=localhost
# Create directories
mkdir -p projects data
# Deploy Scipion
dxflow compose create --identity scipion scipion.yml
dxflow compose start scipion
# Access web interface
# Open browser: http://localhost:8080
Workstation:
Start processing your cryo-EM data with Scipion's integrated workflow environment!