Skip to content

epycloud profile

Manage disease/project-specific configuration profiles.

Usage

epycloud profile SUBCOMMAND [OPTIONS]

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.

epycloud profile list

current

Show the currently active profile.

epycloud profile current

use

Activate a specific profile.

epycloud profile use PROFILE

create

Create a new profile.

epycloud profile create NAME [OPTIONS]

Options: - --from PROFILE - Copy settings from existing profile - --template TEMPLATE - Use predefined template (flu, covid, rsv)

edit

Edit profile configuration.

epycloud profile edit PROFILE

show

Display profile details.

epycloud profile show PROFILE

delete

Delete a profile.

epycloud profile delete PROFILE [--force]

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)

See Also