Skip to content

Commit

Permalink
chore: Update microview module with new outputs
Browse files Browse the repository at this point in the history
Signed-off-by: jvfe <[email protected]>
  • Loading branch information
jvfe committed May 2, 2024
1 parent 7b48870 commit 0236a64
Showing 1 changed file with 4 additions and 2 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

0 comments on commit 0236a64

Please sign in to comment.