Skip to content

Latest commit

 

History

History
80 lines (48 loc) · 3.97 KB

installation.md

File metadata and controls

80 lines (48 loc) · 3.97 KB

Installation

If you are new to our pipeline ecosystem, we recommend you first check out our general setup guide here. That said, the instructions below will probably be sufficient for most users.

Installing nextflow

Nextflow is a highly portable pipeline engine. Please see the official installation guide to learn how to set it up.

This pipeline expects Nextflow version 23.10.1, available here.

Software provisioning

This pipeline is set up to work with a range of software provisioning technologies - no need to manually install packages.

You can choose one of the following options:

Docker

Singularity

Podman

Conda

Apptainer

The pipeline comes with simple pre-set profiles for all of these as described here; if you plan to use this pipeline regularly, consider adding your own custom profile to our central repository to better leverage your available resources.

Also note that Nextflow supports additional software provisioning frameworks. These may very well work also, but have not been tested by us and would need to be configured as part of your site-specific config file.

Installing the references

This pipeline requires locally stored references. To build these, do:

nextflow run marchoeppner/gabi -profile singularity \\
--build_references \\
--run_name build_refs \\
--reference_base /path/to/references

where /path/to/references could be something like /data/pipelines/references or whatever is most appropriate on your system. On a distributed compute environment, this directory needs to live on a shared file system. If you already use a site-specific config file, the --reference_base option does not need to be set.

If you do not have singularity on your system, you can also specify docker, podman or conda for software provisioning - see the usage information.

Please note that the build process will create a pipeline-specific subfolder (gabi) that must not be given as part of the --reference_base argument. GABI is part of a collection of pipelines that use a shared reference directory and it will choose/create the appropriate subfolder automatically.

Finally, depending on your internet connection, the installation process can take a little while - primarily because of the Kraken2 database (8GB). However, once installed you are all set and ready to go.

Site-specific config file

If you run on anything other than a local system, this pipeline requires a site-specific configuration file to be able to talk to your cluster or compute infrastructure. Nextflow supports a wide range of such infrastructures, including Slurm, LSF and SGE - but also Kubernetes and AWS. For more information, see here.

Site-specific config-files for our pipeline ecosystem are stored centrally on github. Please talk to us if you want to add your system.

Custom config

If you absolutely do not want to add your system to this repository, you can manually pass a compatible configuration to nextflow using the -c command line option:

nextflow -c my.config run marchoeppner/gabi --input samples.csv --run_name my_run_name --reference_base /path/to/references

A basic example may look as follows:

params {

  max_cpus = 16
  max_memory = 64.GB
  max_time = 24.h

}

conda {
  enabled = true
  useMamba = true
  cacheDir = "/path/to/conda_cache"
}