Skip to content

Commit

Permalink
Fix a join bug (#6899)
Browse files Browse the repository at this point in the history
* Fix a join bug

* Exclude Conda from tests
  • Loading branch information
erikrikarddaniel authored Oct 29, 2024
1 parent e01435f commit 06fa121
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -654,6 +654,8 @@ jobs:
path: subworkflows/nf-core/fastq_align_bamcmp_bwa
- profile: conda
path: subworkflows/nf-core/fastq_align_bwa
- profile: conda
path: subworkflows/nf-core/fasta_newick_epang_gappa
env:
NXF_ANSI_LOG: false
NFTEST_VER: "0.9.0"
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/nf-core/fasta_newick_epang_gappa/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ workflow FASTA_NEWICK_EPANG_GAPPA {
GAPPA_ASSIGN (
EPANG_PLACE.out.jplace
.map { [ [ id:it[0].id ], it[1] ] }
.join( ch_pp_data.map { [ it.meta, it.data.taxonomy ] } )
.join( ch_pp_data.map { [ [ id: it.meta.id ], it.data.taxonomy ] } )
)
ch_versions = ch_versions.mix(GAPPA_ASSIGN.out.versions)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ nextflow_workflow {
"""
input[0] = Channel.of(
[
meta: [ id: "hmmer" ],
meta: [ id: "hmmer", min_bitscore: 4 ],
data: [
alignmethod: 'hmmer',
queryseqfile: file("https://github.com/nf-core/test-datasets/raw/phyloplace/testdata/PF14720_3_sequences.faa", checkIfExists: true),
Expand Down

0 comments on commit 06fa121

Please sign in to comment.