Copy page
epycloud profile¶
Manage disease/project-specific configuration profiles.
Usage¶
Description¶
Manages disease or project-specific configuration profiles (flu, COVID-19, RSV, etc.). Profiles allow maintaining separate settings for different projects without modifying base configuration. Settings include experiment repository paths, default resource allocations, and project-specific configurations.
Subcommands¶
list¶
List all available profiles.
current¶
Show the currently active profile.
use¶
Activate a specific profile.
create¶
Create a new profile.
Options: - --from PROFILE - Copy settings from existing profile - --template TEMPLATE - Use predefined template (flu, covid, rsv)
edit¶
Edit profile configuration.
show¶
Display profile details.
delete¶
Delete a profile.
Examples¶
# List all profiles
epycloud profile list
# Show active profile
epycloud profile current
# Activate flu profile
epycloud profile use flu
# Create new profile from template
epycloud profile create mpox --template rsv
# Create test profile from existing
epycloud profile create flu-test --from flu
# Edit profile
epycloud profile edit flu
# Show profile details
epycloud profile show flu
# Delete profile
epycloud profile delete old-experiment
Exit Codes¶
| Code | Description |
|---|---|
0 | Success |
1 | Error (profile not found, validation failed) |
Related Commands¶
epycloud config- Base configuration managementepycloud config show- View merged configuration with active profile
See Also¶
- Configuration Guide - Configuration system and profiles
- Getting Started - Initial setup with profiles