# collections create

## Synopsis

```shell
omics publisher collections create
  --name=TEXT
  --description=FILE|TEXT
  --slug=TEXT
  [--tags=TAG1,TAG2,...]
```

## Description

Create a new collection with the specified metadata. Collections are used to organize and manage data in the publisher.

## Examples

Create a collection with basic metadata.

```shell
omics publisher collections create \
  --name "My Collection" \
  --description "A collection of genomic data" \
  --slug my-collection
```

Create a collection with tags for categorization.

```shell
omics publisher collections create \
  --name "Cancer Genomics" \
  --description "Cancer-related genomic datasets" \
  --slug cancer-genomics \
  --tags "cancer,genomics,research"
```

Load the description from a file.

```shell
omics publisher collections create \
  --name "My Collection" \
  --description @description.md \
  --slug my-collection
```

## Flags

### `--name`=`TEXT`

The name of the collection you want to create or manage.

### `--description`=`FILE|TEXT`

A short summary or explanation of the purpose or contents of the collection. Use `@<path>` to load from a file.

### `--slug`=`TEXT`

A unique identifier for the collection, often used in URLs for easy reference. Must be unique across all collections.

### `--tags`=`TAG1,TAG2,...`

A comma-separated list of tags to categorize and organize the collection.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.omics.ai/products/command-line-interface/reference/publisher/collections-create.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
