Skip to content

cloudgene install

Installs an application from a zip file or a cloudgene.yaml file to your local repository.

Command

cloudgene install <location>

Parameters

Parameter Required Description
<location> yes The location of the application. This could be a URL to zip or yaml file or the filename of a local zip or yaml file. Moreover, it can be the name of a github repository in the following format <owner>/<repository>[/<subdir>]

Examples

Http Urls

Install application from a URL:

cloudgene install http://myserver.com/myapplication.zip

Local File

Install application from a zip file:

cloudgene install /path/to/myapplication.zip

Install application from a cloudgene.yaml file:

cloudgene install /path/to/myapplication/cloudgene.yaml

GitHub

Install application from GitHub repository lukfor/hello-cloudgene:

cloudgene install lukfor/hello-cloudgene

Install application from a subdirectory in GitHub repository genepi/cloudgene-examples:

cloudgene install genepi/cloudgene-examples/fastqc

Install a certain version (tag or release):

cloudgene install lukfor/hello-cloudgene@v1.2.0