Skip to content

Commit

Permalink
Merge branch 'CW-4192' into 'dev'
Browse files Browse the repository at this point in the history
params to margs for polyA [CW-4192]

Closes CW-4192

See merge request epi2melabs/workflows/wf-basecalling!73
  • Loading branch information
mattdmem committed Jun 6, 2024
2 parents 7babc4f + 9905d2c commit ec32b49
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v1.2.2]
### Changes
- Bug fix for downstream workflows and `--poly_a_config` which does not affect normal workflow use.

## [v1.2.1]
### Added
- Output channel for demuxed BAM files for downstream use.
Expand Down
2 changes: 1 addition & 1 deletion lib/signal/ingress.nf
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ workflow wf_dorado {
// Deal with a Poly(A) configs. If config is present then turn on Poly(A) calling
Boolean do_estimate_poly_a = false
if (margs.poly_a_config ){
poly_a_config = file(params.poly_a_config, checkIfExists: true)
poly_a_config = file(margs.poly_a_config, checkIfExists: true)
do_estimate_poly_a = true
} else {
poly_a_config = file("${projectDir}/data/OPTIONAL_FILE")
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ manifest {
description = 'Helper workflow for basecalling ONT reads.'
mainScript = 'main.nf'
nextflowVersion = '>=23.04.2'
version = '1.2.1'
version = '1.2.2'
}

epi2melabs {
Expand Down

0 comments on commit ec32b49

Please sign in to comment.