Skip to content

Commit

Permalink
Merge pull request #58 from nf-core/patch
Browse files Browse the repository at this point in the history
Quick Version Release 1.0.4 - Pipeline issue arose in 1.0.3 where only one sample was processed
  • Loading branch information
DSchreyer committed Jun 26, 2023
2 parents 09bdf9a + 621bef1 commit 09a5015
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
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).

## v1.0.4 - [2023-06-26]

### `Added`

### `Fixed`

- Bug that the pipeline only runs with one sample when Picard Markduplicates is used

### `Dependencies`

### `Deprecated`

## v1.0.3 - [2023-05-26]

### `Added`
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ manifest {
description = """Pipeline for the identification of circular DNAs"""
mainScript = 'main.nf'
nextflowVersion = '!>=22.10.1'
version = '1.0.3'
version = '1.0.4'
doi = '10.5281/zenodo.7712010'
}

Expand Down
2 changes: 1 addition & 1 deletion workflows/circdna.nf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (!(params.input_format == "FASTQ" | params.input_format == "BAM")) {
}

// Modify fasta channel to include meta data
ch_fasta_meta = ch_fasta.map{ it -> [[id:it[0].baseName], it] }
ch_fasta_meta = ch_fasta.map{ it -> [[id:it[0].baseName], it] }.collect()

branch = params.circle_identifier.split(",")
run_circexplorer2 = ("circexplorer2" in branch)
Expand Down

0 comments on commit 09a5015

Please sign in to comment.