The 10x Genomics Cloud CLI is a command line interface (CLI) that allows you to upload input files to projects in your 10x Genomics account, create projects from the command line, and manage other tasks related to your 10x Genomics account.
It is an executable that can be run directly and requires no compilation or installation.
The steps are operating system dependent. Please select the tab for your operating system below to continue.
Download the 10x Genomics Cloud CLI for your operating system and unpack it to a convenient location. Your Documents folder is a good default location.
If you’re using a Windows system, download the latest version here:
10x Genomics Cloud CLI for Windows v2.0.0
Alternatively, open Command Prompt (cmd.exe) and use the command below to download:
curl -f -o txg-windows-v2.0.0.zip https://cf.10xgenomics.com/cloud-cli/v2.0.0/txg-windows-v2.0.0.zip
Below is a step-by-step video guide which demonstrates how to install and run commands in the 10x Genomics Cloud CLI for Windows operating systems.
To run the 10x Genomics Cloud CLI, you need to enter the path to the executable.
Option 1: You can navigate into the executable's directory, for example txg-windows-v2.0.0
, and run the command from within the directory every time you want to run a command. For example:
cd C:/Documents/txg-windows-v2.0.0/
txg.exe help
Option 2: Or you can specify the full path to the executable every time you want to run a command. For example:
C:/Documents/txg-windows-v2.0.0/txg.exe help
Option 3: Or you can add the txg executable to your $PATH
. This means you can type txg.exe [command]
from anywhere to access the executable and run commands.
For instructions on adding files to $PATH
on Windows, read more here.
txg.exe [command] [flags]
Command | Description |
---|---|
analyses | Manage your analyses and download output files |
auth | Manage authentication |
files | Upload and manage FASTQ and image files. Added to TXG CLI in the v2.0 release. |
fastqs | Upload and manage FASTQs. We recommend moving to the files command when using TXG CLI v2.0 and higher. |
help | Help about any command |
projects | Manage projects |
references | Manage custom references |
Global flags
The 10x Genomics Cloud CLI supports a number of flags for every command.
Flags | Description |
---|---|
--access-token string | Specify an access token to use. Default: the saved token from txg.exe auth setup . |
-H, --header header | Extra header to include in the request when sending HTTP requests to a server. May be given multiple times to add multiple headers. Each header must be of the form 'Header: value'. Default: no extra headers. |
-h, --help | Display help and exit. |
-q, --quiet | Don't show progress or messages. Default: off. |
-v, --verbose | Display extra debugging information. Default: off. |
--version | Display version and exit. |
txg.exe auth [command]
Command | Description |
---|---|
txg.exe auth reset | Delete the saved access token (if it exists) |
txg.exe auth setup | Set up authentication. Interactively walk through the process of setting up authentication. Running this command will prompt you to visit the 10x Genomics Cloud Analysis site, copy your access token, and paste it here. The access token will then be saved locally and reused for subsequent requests. |
txg.exe auth verify | Verify the stored access token is valid and that the 10x Genomics Cloud Analysis service can be successfully reached. Returns a zero exit code if successful, nonzero otherwise. |
txg.exe files upload --project-id PROJECT-ID [insert path to input files]
Upload input files to a project in your account. For detailed instructions, view our tutorial here.
Flags | Description |
---|---|
-n, --new-project string | Create a new project with the specified name and immediately upload the FASTQs to it. |
-p, --project-id id | Upload the FASTQs to the project with the specified ID. The project ID is unique ID automatically created for each project. The project ID is provided in the upload command available in your project. |
-assumeyes | When txg asks if user would like to continue upload, automatically answer yes (Y ) |
txg.exe fastqs list PROJECT-ID
List FASTQ files for the specified project ID. You can find the ID of a project by running txg projects list
.
txg analyses download ANALYSIS-ID [flags]
Download output files from the specified analysis. If --file-id
is not present, all non-expired output files will be downloaded. If --file-id
is present, only the specified files will be downloaded.
By default, the files will be downloaded into the directory from which the command is run (typically the path/to/txg/
directory). To download to an alternate location, specify a file path using the --target-dir
argument.
At this time, only free file downloads are supported via the 10x Genomics Cloud CLI. Any downloads beyond the free quota must be initiated via curl
, wget
, or download in the web browser.
Flags | Description |
---|---|
--file-id string | Comma delimited list of file IDs (optional). |
--target-dir string | Target download directory (optional). |
txg analyses files ANALYSIS-ID
View a list of all non-expired output files for the specified analysis.
txg analyses list PROJECT-ID
Display a list of your completed analyses for the specified project.
txg analyses get ANALYSIS-ID
Show the details of the specified analysis. You can find the analysis ID of your analyses by running txg analyses list
.
txg.exe projects create --name NAME [--description DESC]
Create a new project with the specified name and optional description. The project name must be unique across all your projects.
Flags | Description |
---|---|
--description string | Project description (optional). |
--name string | Project name (required). |
txg.exe projects list [flags]
Display a list of your projects, optionally sorted by a specific field.
Flags | Description |
---|---|
--sort-by string | Sort the list by the specified field, which must be one of: id, name, created. Default: unsorted. |
txg.exe projects update PROJECT-ID [flags]
Update the name and/or description of the specified project. A project's ID can be displayed by running txg.exe projects list
.
Flags | Description |
---|---|
--description string | Set the project description. |
--name string | Set the project name. |
txg.exe references upload [insert path to reference directory]
Upload an uncompressed or compressed reference directory. For detailed instructions on uploading reference files to a project, view our tutorial here.
Flags | Description |
---|---|
--name string | Specify a name for your custom reference. If not specified, the directory name will be used as the name. This can be changed after upload is completed. |
txg.exe references delete REFERENCE-ID
Delete the specified custom reference. You can find the reference ID of your references by running txg.exe references list
.
txg references get REFERENCE-ID
Show the details of the specified custom reference. You can find the reference ID of your references by running txg.exe references list
.
txg.exe references list [FLAGS]
Display a list of your custom references, optionally sorted by a specific field.
Flags | Description |
---|---|
--sort-by string | Sort the list by the specified field, which must be one of: id, name, or created. Default: unsorted. |
txg.exe references update REFERENCE-ID [FLAGS]
Update one or more metadata fields associated with your custom reference. You can find the ID of a reference by running txg.exe references list
.
Flags | Description |
---|---|
--build-notes string | Specify how the custom reference was built (optional). |
--description string | Short description (optional). |
--name string | Set the reference name (required). |
--organism string | Scientific name of the organism followed by the common name in parentheses (optional). |
``