Skip to content

Commit

Permalink
chore: Add new outputs included in new microview version (#37)
Browse files Browse the repository at this point in the history
* chore: Update microview module with new outputs

Signed-off-by: jvfe <jvfecav@gmail.com>

* chore: Bump to 1.0.2

Signed-off-by: jvfe <jvfecav@gmail.com>

---------

Signed-off-by: jvfe <jvfecav@gmail.com>
  • Loading branch information
jvfe authored May 2, 2024
1 parent 7b48870 commit ae51217
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions modules/local/microview.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ process MICROVIEW {

conda "bioconda::microview=0.10.1"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'docker://docker.io/jvfe/microview:v0.10.1':
'docker.io/jvfe/microview:v0.10.1' }"
'docker://docker.io/jvfe/microview:v0.11.0':
'docker.io/jvfe/microview:v0.11.0' }"

input:
path reports

output:
path "microview_report.html", emit: report
path "microview_tables" , emit: tables
path "versions.yml" , emit: versions

when:
Expand All @@ -35,6 +36,7 @@ process MICROVIEW {

"""
touch microview_report.html
mkdir microview_tables
cat <<-END_VERSIONS > versions.yml
"${task.process}":
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ manifest {
description = """A pipeline for taxonomic classification and functional annotation of metagenomics reads. Based on MEDUSA."""
mainScript = 'main.nf'
nextflowVersion = '!>=22.10.1'
version = '1.0.1'
version = '1.0.2'
doi = ''
}

Expand Down

0 comments on commit ae51217

Please sign in to comment.