Skip to content

Commit

Permalink
Merge pull request #138 from nf-core/dev
Browse files Browse the repository at this point in the history
release 2.0.1 - fix UCSC_BEDGRAPHTOBIGWIG container
  • Loading branch information
yuukiiwa committed Nov 30, 2021
2 parents 73cbe19 + 40dca1e commit a93c846
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.1] - 2021-11-29

### Bug fix

* The `UCSC_BEDGRAPHTOBIGWIG` process now uses the `ucsc-bedgraphtobigwig` container
* The full-size and minimal AWS tests have successfully finished after changing to the `ucsc-bedgraphtobigwig` container

## [2.0.0] - 2021-11-26

### Major enhancements
Expand Down
6 changes: 0 additions & 6 deletions conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@ process {
errorStrategy = { task.exitStatus in [143,137,104,134,139] ? 'retry' : 'finish' }
maxRetries = 1
maxErrors = '-1'
withName:UCSC_BEDGRAPHTOBIGWIG {
if ({ task.exitStatus in [255] }) { errorStrategy = 'ignore' }
}
withName:UCSC_BED12TOBIGBED {
if ({ task.exitStatus in [255] }) { errorStrategy = 'ignore' }
}

withLabel:process_low {
cpus = { check_max( 2 * task.attempt, 'cpus' ) }
Expand Down
4 changes: 2 additions & 2 deletions modules/local/ucsc_bedgraphtobigwig.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ process UCSC_BEDGRAPHTOBIGWIG {

conda (params.enable_conda ? "bioconda::ucsc-bedgraphtobigwig=377" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/ucsc-bedtobigbed:377--h446ed27_1"
container "https://depot.galaxyproject.org/singularity/ucsc-bedgraphtobigwig:377--h446ed27_1"
} else {
container "quay.io/biocontainers/ucsc-bedtobigbed:377--h446ed27_1"
container "quay.io/biocontainers/ucsc-bedgraphtobigwig:377--h446ed27_1"
}

input:
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ manifest {
description = 'A pipeline to demultiplex, QC and map Nanopore data'
mainScript = 'main.nf'
nextflowVersion = '!>=21.04.0'
version = '2.0.0'
version = '2.0.1'
}

// Function to ensure that resource requirements don't go beyond
Expand Down

0 comments on commit a93c846

Please sign in to comment.