> For the complete documentation index, see [llms.txt](https://docs.omics.ai/products/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.omics.ai/products/command-line-interface/reference/publisher/collections-create.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
