> ## Documentation Index
> Fetch the complete documentation index at: https://primerlab-genomic.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# primerlab preset

> CLI reference for the primerlab preset command

Manage and view design presets.

## Synopsis

```bash theme={null}
primerlab preset <subcommand> [options]
```

## Subcommands

| Subcommand | Description                       |
| ---------- | --------------------------------- |
| `list`     | List all available presets        |
| `show`     | Show details of a specific preset |

## Examples

### List Presets

```bash theme={null}
primerlab preset list
```

**Output:**

```
📋 Available Presets:

  • long_range
  • high_gc

Use 'primerlab preset show <name>' for details.
```

### Show Preset Details

```bash theme={null}
primerlab preset show long_range
```

## Using Presets in Config

```yaml theme={null}
workflow: pcr

preset: long_range  # Apply preset parameters

input:
  sequence_path: "my_gene.fasta"

output:
  directory: "output_long_range"
```

Presets provide optimized parameters for specific use cases.
