Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### `Fixed`

- Addressed issues with latest GSVA function calls after GSVA >1.5.0 was introduced to be able to use gene score methods accordingly again
- Updated the analysis dependencies in the local module for gene score computation to latest versions of the R Scripts
- Removed container dependency on biocontainers and rather using Wave containers again

### `Fixed`

- [#151](https://github.com/nf-core/nanostring/pull/151) - Updated modules and subworkflows, and follow nextflow's strict syntax.

### `Changed`
Expand Down
2 changes: 1 addition & 1 deletion assets/multiqc_config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
report_comment: >
This report has been generated by the <a href="https://github.com/nf-core/nanostring/releases/tag/1.3.2" target="_blank">nf-core/nanostring</a> analysis pipeline. For information about how to interpret these results, please see the <a href="https://nf-co.re/nanostring/1.3.2/docs/output" target="_blank">documentation</a>.
This report has been generated by the <a href="https://github.com/nf-core/nanostring/tree/dev" target="_blank">nf-core/nanostring</a> analysis pipeline. For information about how to interpret these results, please see the <a href="https://nf-co.re/nanostring/dev/docs/output" target="_blank">documentation</a>.
report_section_order:
BD:
order: 970
Expand Down
2 changes: 1 addition & 1 deletion modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"utils_nfschema_plugin": {
"branch": "master",
"git_sha": "ff506dcada6fc826ed0c641dc2ed1e98f7345fbe",
"git_sha": "fdc08b8b1ae74f56686ce21f7ea11ad11990ce57",
"installed_by": ["subworkflows"]
}
}
Expand Down
16 changes: 8 additions & 8 deletions modules/local/compute_gene_scores/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ channels:
- conda-forge
- bioconda
dependencies:
- conda-forge::r-yaml=2.3.7
- conda-forge::r-ggplot2=3.4.4
- conda-forge::r-yaml=2.3.12
- conda-forge::r-ggplot2=4.0.1
- conda-forge::r-dplyr=1.1.4
- conda-forge::r-stringr=1.5.0
- bioconda::bioconductor-gsva=1.46.0
- bioconda::bioconductor-singscore=1.18.0
- conda-forge::r-factominer=2.8.0
- conda-forge::r-tibble=3.2.1
- conda-forge::r-matrixstats=1.1.0
- conda-forge::r-stringr=1.6.0
- bioconda::bioconductor-gsva=2.0.0
- bioconda::bioconductor-singscore=1.26.0
- conda-forge::r-factominer=2.13.0
- conda-forge::r-tibble=3.3.1
- conda-forge::r-matrixstats=1.5.0
4 changes: 1 addition & 3 deletions modules/local/compute_gene_scores/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ process COMPUTE_GENE_SCORES {
label 'process_single'

conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/mulled-v2-e6920e60d80922852a1b19630ebe16754cf5320d:75e2c0a29159bae8a964e43ae16a45c282fdf651-0' :
'biocontainers/mulled-v2-e6920e60d80922852a1b19630ebe16754cf5320d:75e2c0a29159bae8a964e43ae16a45c282fdf651-0' }"
container "community.wave.seqera.io/library/bioconductor-gsva_bioconductor-singscore_r-dplyr_r-factominer_pruned:e6f1a5cd9110d36b"

input:
tuple val(meta), path(normalized_counts)
Expand Down
Loading
Loading