Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🚀 Merge new viper module #8137

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
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
7 changes: 7 additions & 0 deletions modules/nf-core/viper/environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/environment-schema.json
channels:
- conda-forge
- bioconda
dependencies:
- "bioconda::bioconductor-viper=1.40.0"
32 changes: 32 additions & 0 deletions modules/nf-core/viper/main.nf
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
process VIPER {
tag "$meta_exp.id vs $meta_net.id"
label 'process_single'

conda "${moduleDir}/environment.yml"
container 'papaemmelab/viper'

input:
tuple val(meta_net), path(network)
tuple val(meta_exp), path(expression_matrix)

output:
path "${meta_exp.id}_vs_${meta_net.id}.viper_matrix.tsv", emit: viper_matrix
path "versions.yml", emit: versions

when:
task.ext.when == null || task.ext.when

script:
template 'viper.R'

stub:
prefix = task.ext.prefix ?: "${meta_exp.id}_vs_${meta_net.id}"
"""
touch ${prefix}.viper_matrix.tsv

cat <<-END_VERSIONS > versions.yml
"${task.process}":
viper: \$(Rscript -e "cat(as.character(packageVersion('viper')))"
END_VERSIONS
"""
}
50 changes: 50 additions & 0 deletions modules/nf-core/viper/meta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: viper
description: Run Virtual Inference of Protein-activity by Enriched Regulon analysis.
keywords:
- Viper
- Regulators
- Protein Activity
- RNA-seq
tools:
- viper:
description: |
The viper R package infers protein activity from gene expression data,
and includes the VIPER and msVIPER algorithms developed by the Califano lab.
homepage: https://www.bioconductor.org/packages/release/bioc/html/viper.html
documentation: https://www.bioconductor.org/packages/release/bioc/vignettes/viper/inst/doc/viper.pdf
doi: 10.1038/ng.3593
input:
- meta_net:
type: map
description: |
Groovy Map containing network information
e.g. `[ id:'network1' ]`
- network:
type: file
description: 3 column ARACNe network file.
pattern: "*.tsv"
- meta_exp:
type: map
description: |
Groovy Map containing expression matrix information
e.g. `[ id:'expression1' ]`
- expression_matrix:
type: file
description: Expression matrix with samples as columns and genes as rows.
pattern: "*.tsv"
output:
- viper_matrix:
type: file
description: Viper output matrix of inferred protein activity.
- versions:
type: file
description: File containing software versions
pattern: "versions.yml"
authors:
- "@ddomenico"
- "@juanesarango"
- "@stikos"
maintainers:
- "@ddomenico"
- "@juanesarango"
- "@stikos"
38 changes: 38 additions & 0 deletions modules/nf-core/viper/templates/viper.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#!/usr/bin/env Rscript

library(viper)

# Inject variables
exp_mat_file <- "${expression_matrix}"
network_file <- "${network}"

# Load regulon and expression matrix
exp_mat <- as.matrix(read.table(exp_mat_file, header=TRUE))
regul <- aracne2regulon(network_file, exp_mat)

# Run VIPER
vpres <- viper(exp_mat, regul, verbose = FALSE)

# Output result
output_file <- file.path("${meta_exp.id}_vs_${meta_net.id}.viper_matrix.tsv")
write.table(vpres, file = output_file, sep = "\t", quote = FALSE)

################################################
################################################
## VERSIONS FILE ##
################################################
################################################

viper_version <- as.character(packageVersion('viper'))

writeLines(
c(
'"${task.process}":',
paste(' viper:', viper_version)
),
'versions.yml')

################################################
################################################
################################################
################################################
45 changes: 45 additions & 0 deletions modules/nf-core/viper/tests/main.nf.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
nextflow_process {

name "Test Process VIPER"
script "../main.nf"
process "VIPER"
tag "modules"
tag "modules_nfcore"
tag "viper"

test("test_viper") {

setup {
run("ARACNE3") {
script "../../run/main.nf"
process {
"""
input[0] = [ [id:"testexp"], file(params.modules_testdata_base_path + 'delete_me/aracne3/expression_matrix.tsv', checkIfExists: true) ]
input[1] = file(params.modules_testdata_base_path + 'delete_me/aracne3/regulators.txt', checkIfExists: true)
"""
}
}
}

when {
process {
"""
input[0] = [ [id:"testnet"], file(params.modules_testdata_base_path + 'delete_me/aracne3/expression_matrix.tsv', checkIfExists: true) ]
input[1] = [ [id:"testexp"], file(ARACNE3.out.consensus_network) ]
"""
}
}

then {
assertAll(
{ assert process.success },
{ assert snapshot(
process.out.viper_matrix,
process.out.versions
).match()
}
)
}

}
}
17 changes: 17 additions & 0 deletions modules/nf-core/viper/tests/main.nf.test.snap
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"test_viper": {
"content": [
[
"testexp_vs_testnet.viper_matrix.tsv:md5,d9beb1d430a58b1e39326c286d231a93"
],
[
"versions.yml:md5,f46f0cc72f0ae2fcabd9923d49770967"
]
],
"meta": {
"nf-test": "0.9.0",
"nextflow": "24.04.4"
},
"timestamp": "2025-03-26T16:41:03.117719"
}
}
5 changes: 5 additions & 0 deletions modules/nf-core/viper/tests/nextflow.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
process {
withName: 'VIPER' {
container = 'papaemmelab/viper'
}
}
Loading