Files
digital-patients/main_rna2proteinexpression.nf
Olamide Isreal 9e6a16c19b Initial commit: digital-patients pipeline (clean, no large files)
Large reference/model files excluded from repo - to be staged to S3 or baked into Docker images.
2026-03-26 15:15:23 +01:00

25 lines
559 B
Plaintext

nextflow.enable.dsl=2
process RNA2PROTEXPRESSION {
memory 2.GB
accelerator 1
container "${params.container_rna2protexpression}"
label 'gpu_process'
//publishDir "${params.outdir_rna2protexpression}", mode: 'copy'
// debug true
// maxForks 1
input:
path borzoi_tpm
output:
path "*Protein_Expression_log2.csv", emit: protrin_expression_scores
script:
"""
. activate rna2protexpresson
python3 /home/omic/rna2protexpression/rna2protexpression.py --borzoi_ouput ${borzoi_tpm}
"""
}