1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-21 16:16:04 +00:00

Adjust custom pipeline config for ampliseq on BINAC

This commit is contained in:
Alexander Peltzer 2019-12-11 16:09:44 +01:00
parent 49cd35918a
commit a6d08ed646
No known key found for this signature in database
GPG key ID: A4A9322B50AF95A0
5 changed files with 58 additions and 18 deletions

View file

@ -6,20 +6,21 @@ A repository for hosting Nextflow configuration files containing custom paramete
## Table of contents
* [Table of contents](#table-of-contents)
* [Using an existing config](#using-an-existing-config)
* [Configuration and parameters](#configuration-and-parameters)
* [Offline usage](#offline-usage)
* [Adding a new config](#adding-a-new-config)
* [Checking user hostnames](#checking-user-hostnames)
* [Testing](#testing)
* [Documentation](#documentation)
* [Uploading to `nf-core/configs`](#uploading-to-nf-coreconfigs)
* [Adding a new pipeline-specific config](#adding-a-new-pipeline-specific-config)
* [Pipeline-specific documentation](#pipeline-specific-documentation)
* [Enabling pipeline-specific configs within a pipeline](#enabling-pipeline-specific-configs-within-a-pipeline)
* [Create the pipeline-specific `nf-core/configs` files](#create-the-pipeline-specific-nf-coreconfigs-files)
* [Help](#help)
* [<img src="docs/images/nfcore-configs_logo.png" alt="nf-core/configs" title="nf-core/configs">](#img-srcdocsimagesnfcore-configs_logopng-altnf-coreconfigs-titlenf-coreconfigs)
* [Table of contents](#table-of-contents)
* [Using an existing config](#using-an-existing-config)
* [Configuration and parameters](#configuration-and-parameters)
* [Offline usage](#offline-usage)
* [Adding a new config](#adding-a-new-config)
* [Checking user hostnames](#checking-user-hostnames)
* [Testing](#testing)
* [Documentation](#documentation)
* [Uploading to nf-core/configs](#uploading-to-nf-coreconfigs)
* [Adding a new pipeline-specific config](#adding-a-new-pipeline-specific-config)
* [Pipeline-specific documentation](#pipeline-specific-documentation)
* [Enabling pipeline-specific configs within a pipeline](#enabling-pipeline-specific-configs-within-a-pipeline)
* [Create the pipeline-specific nf-core/configs files](#create-the-pipeline-specific-nf-coreconfigs-files)
* [Help](#help)
## Using an existing config
@ -154,6 +155,8 @@ Note that pipeline-specific configs are not required and should only be added if
Currently documentation is available for the following pipeline within the specific profile:
* ampliseq
* [BINAC](docs/pipeline/ampliseq/binac.md)
* sarek
* [MUNIN](docs/pipeline/sarek/munin.md)
* eager

View file

@ -10,10 +10,6 @@ singularity {
envWhitelist = 'TZ'
}
env {
TZ='Europe/Berlin'
}
process {
beforeScript = 'module load devel/singularity/3.4.2'
executor = 'pbs'

View file

@ -0,0 +1,11 @@
// Profile config names for nf-core/configs
params {
// Specific nf-core/configs params
config_profile_contact = 'Alexander Peltzer (@apeltzer)'
config_profile_description = 'nf-core/ampliseq BINAC profile provided by nf-core/configs'
}
env {
TZ='Europe/Berlin'
}

View file

@ -0,0 +1,17 @@
# nf-core/configs: binac ampliseq specific configuration
Extra specific configuration for the ampliseq pipeline.
## Usage
To use, run the pipeline with `-profile binac`.
This will download and launch the ampliseq specific [`binac.config`](../conf/pipeline/ampliseq/binac.config) which has been pre-configured with a setup suitable for the BINAC cluster.
Example: `nextflow run nf-core/ampliseq -profile binac`
## ampliseq specific configurations for binac
Specific configurations for BINAC has been made for ampliseq.
* Specifies the `TZ` `ENV` variable to be `Europe/Berlin` to fix a QIIME2 issue

13
pipeline/ampliseq.config Normal file
View file

@ -0,0 +1,13 @@
/*
* -------------------------------------------------
* nfcore/ampliseq custom profile Nextflow config file
* -------------------------------------------------
* Config options for custom environments.
* Cluster-specific config options should be saved
* in the conf/pipeline/ampliseq folder and imported
* under a profile name here.
*/
profiles {
binac { includeConfig "${params.custom_config_base}/conf/pipeline/ampliseq/binac.config" }
}