Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
WackerO authored Nov 15, 2023
2 parents 70444b9 + 193b090 commit bb66f6f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
5 changes: 0 additions & 5 deletions modules/nf-core/mitohifi/findmitoreference/environment.yml

This file was deleted.

10 changes: 5 additions & 5 deletions modules/nf-core/mitohifi/findmitoreference/main.nf
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
process MITOHIFI_FINDMITOREFERENCE {
tag "$species"
label 'process_low'
label 'process_single'

// Docker image available at the project github repository
container 'ghcr.io/marcelauliano/mitohifi:master'

input:
val species
tuple val(meta), val(species)

output:
path "*.fasta", emit: fasta
path "*.gb", emit: gb
path "versions.yml", emit: versions
tuple val(meta), path("*.fasta"), emit: fasta
tuple val(meta), path("*.gb") , emit: gb
path "versions.yml" , emit: versions

when:
task.ext.when == null || task.ext.when
Expand Down
7 changes: 5 additions & 2 deletions tests/modules/nf-core/mitohifi/findmitoreference/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ include { MITOHIFI_FINDMITOREFERENCE } from '../../../../../modules/nf-core/mito

workflow test_mitohifi_findmitoreference {

species = "Phalera flavescens"
input = [
[ id:'test' ], // meta map
"Phalera flavescens" // species
]

MITOHIFI_FINDMITOREFERENCE ( species )
MITOHIFI_FINDMITOREFERENCE ( input )
}

0 comments on commit bb66f6f

Please sign in to comment.