File: README.md

package info (click to toggle)
q2cli 2024.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,120 kB
  • sloc: python: 8,231; sh: 88; makefile: 45
file content (30 lines) | stat: -rw-r--r-- 680 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# q2cli

![](https://github.com/qiime2/q2cli/workflows/ci-dev/badge.svg)

A [click-based](http://click.pocoo.org/) command line interface for [QIIME
2](https://github.com/qiime2/qiime2).

## Installation and getting help

Visit https://qiime2.org to learn more about q2cli and the QIIME 2 project.

## Enabling tab completion

### Bash

To enable tab completion in Bash, run the following command or add it to your
`.bashrc`/`.bash_profile`:

```bash
source tab-qiime
```

### ZSH

To enable tab completion in ZSH, run the following commands or add them to your
`.zshrc`:

```bash
autoload -Uz compinit && compinit && autoload bashcompinit && bashcompinit && source tab-qiime
```