Skip to content

Commit

Permalink
Merge pull request #14 from nf-core/dev
Browse files Browse the repository at this point in the history
Release 1.1.4
  • Loading branch information
sguizard authored Mar 13, 2023
2 parents 26153d7 + 3ccf5f8 commit 977b9bb
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
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.1.4 - Teal Albatross [13/03/2023]

### `Added`

### `Fixed`

- Update minimap2 path test: Don't set gtf option. It is not expected to be used with minimap2 is chosen.
- FIX: Don't prepare gtf channel when minimap2 is chosen.

### `Dependencies`

### `Deprecated`

## v1.1.3 - Blue Grouse [06/03/2023]

### `Added`
Expand Down
1 change: 0 additions & 1 deletion conf/test_minimap2.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ params {
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/isoseq/samplesheet.csv'
primers = 'https://raw.githubusercontent.com/nf-core/test-datasets/isoseq/testdata/primers.fasta'
fasta = 'https://raw.githubusercontent.com/nf-core/test-datasets/isoseq/reference/Homo_sapiens.GRCh38.dna.chromosome.19.fasta'
gtf = 'https://raw.githubusercontent.com/nf-core/test-datasets/isoseq/reference/Homo_sapiens.GRCh38.104.chr.13_18_19.gtf'
rq = 0.9
chunk = 5
five_prime = 100
Expand Down
11 changes: 6 additions & 5 deletions workflows/isoseq.nf
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,13 @@ workflow ISOSEQ {
//
INPUT_CHECK(file(params.input), params.chunk) // Check samplesheet input for PBCCS module
ch_versions = ch_versions.mix(INPUT_CHECK.out.versions)

SET_CHUNK_NUM_CHANNEL(params.input, params.chunk) // Prepare channels for:
// Prepare channels for:
SET_CHUNK_NUM_CHANNEL(params.input, params.chunk) // - PBCCS parallelization
SET_FASTA_CHANNEL(params.fasta) // - genome fasta
SET_GTF_CHANNEL(params.gtf) // - primers fasta
SET_PRIMERS_CHANNEL(params.primers) // - genome gtf
// - PBCCS parallelization
SET_PRIMERS_CHANNEL(params.primers) // - primers fasta
if (params.aligner == "ultra") {
SET_GTF_CHANNEL(params.gtf) // - genome gtf
}

PBCCS(INPUT_CHECK.out.reads, SET_CHUNK_NUM_CHANNEL.out.chunk_num, params.chunk) // Generate CCS from raw reads
PBCCS.out.bam // Update meta: update id (+chunkX) and store former id
Expand Down

0 comments on commit 977b9bb

Please sign in to comment.