Skip to content

Commit

Permalink
Merge branch 'nf-core:dev' into bug_fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
itrujnara authored May 30, 2024
2 parents b398c5d + 6a40708 commit 8a74a29
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 10 deletions.
4 changes: 3 additions & 1 deletion modules/local/fetch_eggnog_group_local.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ process FETCH_EGGNOG_GROUP_LOCAL {
label 'process_single'

conda "conda-forge::python=3.12.3 conda-forge::ripgrep=14.1.0"
container "community.wave.seqera.io/library/python_ripgrep:324b372792aae9ce"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'oras://community.wave.seqera.io/library/python_ripgrep:6f07fd6cbda0142b' :
'community.wave.seqera.io/library/python_ripgrep:324b372792aae9ce' }"

input:
tuple val(meta), path(uniprot_id), path(taxid), path(exact)
Expand Down
4 changes: 3 additions & 1 deletion modules/local/fetch_oma_group_local.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ process FETCH_OMA_GROUP_LOCAL {
label 'process_single'

conda "conda-forge::python=3.12.3 conda-forge::ripgrep=14.1.0"
container "community.wave.seqera.io/library/python_ripgrep:324b372792aae9ce"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'oras://community.wave.seqera.io/library/python_ripgrep:6f07fd6cbda0142b' :
'community.wave.seqera.io/library/python_ripgrep:324b372792aae9ce' }"

input:
tuple val(meta), path(uniprot_id), path(taxid), path(exact)
Expand Down
4 changes: 3 additions & 1 deletion modules/local/fetch_panther_group_local.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ process FETCH_PANTHER_GROUP_LOCAL {
label 'process_single'

conda "conda-forge::python=3.12.3 conda-forge::ripgrep=14.1.0"
container "community.wave.seqera.io/library/python_ripgrep:324b372792aae9ce"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'oras://community.wave.seqera.io/library/python_ripgrep:6f07fd6cbda0142b' :
'community.wave.seqera.io/library/python_ripgrep:324b372792aae9ce' }"

input:
tuple val(meta), path(uniprot_id), path(taxid), path(exact)
Expand Down
9 changes: 6 additions & 3 deletions modules/local/make_report.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@ process MAKE_REPORT {
tag "$meta.id"
label 'process_single'

container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'docker://itrujnara/orthologs-report:1.0.0' :
'itrujnara/orthologs-report:1.0.0' }"
// Exit if running this module with -profile conda / -profile mamba
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
error("Local MAKE_REPORT module does not support Conda. Please use Docker / Singularity / Podman instead.")
}

container "itrujnara/orthologs-report:1.0.0"

input:
tuple val(meta), path(id), path(taxid), path(exact), path(score_table), path(filtered_hits), path(support_plot), path(venn_plot), path(jaccard_plot), path(orthostats), path(seq_hits), path(seq_misses), path(str_hits), path(str_misses), path(alignment), path(iqtree), path(fastme), path(params_file)
Expand Down
5 changes: 3 additions & 2 deletions modules/local/plot_orthologs.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ process PLOT_ORTHOLOGS {
tag "$meta.id"
label 'process_single'

conda "conda-forge::r-tidyverse=2.0.0 conda-forge::r-reshape2=1.4.4 conda-forge::r-ggvenndiagram=1.5.2"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'docker://itrujnara/plot-orthologs:1.0.1' :
'itrujnara/plot-orthologs:1.0.1' }"
'oras://community.wave.seqera.io/library/r-ggvenndiagram_r-reshape2_r-tidyverse:3941632557872dac' :
'community.wave.seqera.io/library/r-ggvenndiagram_r-reshape2_r-tidyverse:6ab82708ae578c26' }"

input:
tuple val(meta), path(score_table)
Expand Down
5 changes: 3 additions & 2 deletions modules/local/plot_tree.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ process PLOT_TREE {
tag "$meta.id"
label 'process_single'

conda "bioconda::bioconductor-treeio=1.26.0 bioconda::bioconductor-ggtree=3.10.0 conda-forge::r-ggplot2=3.5.1"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'docker://itrujnara/plot-tree:1.0.0' :
'itrujnara/plot-tree:1.0.0' }"
'oras://community.wave.seqera.io/library/bioconductor-ggtree_bioconductor-treeio_r-ggplot2:89a30ee47c501fe4' :
'community.wave.seqera.io/library/bioconductor-ggtree_bioconductor-treeio_r-ggplot2:54fc04b8b0f7b6c7' }"

input:
tuple val(meta), path(tree)
Expand Down

0 comments on commit 8a74a29

Please sign in to comment.