1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-25 17:29:55 +00:00

Merge pull request #11 from nf-core/master

Get latest changes
This commit is contained in:
James A. Fellows Yates 2020-08-11 09:10:13 +02:00 committed by GitHub
commit de9f5ab560
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 12 additions and 16 deletions

View file

@ -4,17 +4,11 @@ params{
config_profile_url = 'https://www.boehringer-ingelheim.com/' config_profile_url = 'https://www.boehringer-ingelheim.com/'
} }
params.globalConfig = set_global_config() params.globalConfig = System.getenv('NXF_GLOBAL_CONFIG')
if(params.globalConfig == null)
{
def set_global_config() { def errorMessage = "WARNING: For bi.config requires NXF_GLOBAL_CONFIG env var to be set. Point it to global.config file if you want to use this profile."
def config = System.getenv('NXF_GLOBAL_CONFIG') System.err.println(errorMessage)
if(config == null) }else{
{ includeConfig params.globalConfig
def errorMessage = "WARNING: For bi.config requires NXF_GLOBAL_CONFIG env var to be set. Point it to global.config file if you want to use this profile."
System.err.println(errorMessage)
}else{
includeConfig config
}
return config
} }

View file

@ -11,7 +11,6 @@ singularity {
} }
process { process {
beforeScript = 'module load Singularity/2.6.0-foss-2016b'
executor = 'slurm' executor = 'slurm'
} }

View file

@ -76,7 +76,6 @@ profiles {
bwaalnn = 0.01 bwaalnn = 0.01
bwaalnl = 16 bwaalnl = 16
run_bam_filtering = true run_bam_filtering = true
bam_discard_unmapped = true
bam_unmapped_type = 'fastq' bam_unmapped_type = 'fastq'
run_metagenomic_screening = true run_metagenomic_screening = true
metagenomic_tool = 'malt' metagenomic_tool = 'malt'

View file

@ -33,6 +33,10 @@ profiles {
params { params {
config_profile_description = 'CDAG MPI-SHH profile, provided by nf-core/configs.' config_profile_description = 'CDAG MPI-SHH profile, provided by nf-core/configs.'
} }
// delete when CDAG will be fixed
process {
queue = 'long'
}
} }
sdag { sdag {
params { params {

View file

@ -10,7 +10,7 @@ Before running the pipeline you will need to load Nextflow and Singularity using
## Load Nextflow and Singularity environment modules ## Load Nextflow and Singularity environment modules
module purge module purge
module load Nextflow/19.10.0 module load Nextflow/19.10.0
module load Singularity/2.6.0-foss-2016b module load Singularity
``` ```
A local copy of the [AWS-iGenomes](https://github.com/ewels/AWS-iGenomes) resource has been made available on CAMP so you should be able to run the pipeline against any reference available in the `igenomes.config` specific to the nf-core pipeline. You can do this by simply using the `--genome <GENOME_ID>` parameter. Some of the more exotic genomes may not have been downloaded onto CAMP so have a look in the `igenomes_base` path specified in [`crick.config`](../conf/crick.config), and if your genome of interest isnt present please contact [BABS](mailto:bioinformatics@crick.ac.uk). A local copy of the [AWS-iGenomes](https://github.com/ewels/AWS-iGenomes) resource has been made available on CAMP so you should be able to run the pipeline against any reference available in the `igenomes.config` specific to the nf-core pipeline. You can do this by simply using the `--genome <GENOME_ID>` parameter. Some of the more exotic genomes may not have been downloaded onto CAMP so have a look in the `igenomes_base` path specified in [`crick.config`](../conf/crick.config), and if your genome of interest isnt present please contact [BABS](mailto:bioinformatics@crick.ac.uk).