Update CORTO pipeline with params.json and workflow improvements
This commit is contained in:
15
test.nf
Normal file → Executable file
15
test.nf
Normal file → Executable file
@@ -1,22 +1,17 @@
|
||||
nextflow.enable.dsl=2
|
||||
|
||||
// GLOBAL FPSIM2 PARAMS
|
||||
params.container = 'corto:latest'
|
||||
params.container_corto = 'corto:latest'
|
||||
params.containerOptions = '--gpus all --rm -v /mnt:/mnt'
|
||||
params.outdir = '/mnt/OmicNAS/private/old/gabe/corto/outputs'
|
||||
params.project_name = 'test'
|
||||
|
||||
// // INPUTS
|
||||
params.gene_expression_matrix = '/mnt/OmicNAS/private/old/gabe/corto/inputs/inmat.rda'
|
||||
params.centroid_list = '/mnt/OmicNAS/private/old/gabe/corto/inputs/centroids.rda'
|
||||
params.cnv_data = '/mnt/OmicNAS/private/old/gabe/corto/inputs/cnvmat.rda'
|
||||
|
||||
|
||||
params.TPM = '/data/olamide/corto/corto_metabolite_prediction/20002_1289_female_patient_0_TPM.csv'
|
||||
params.regulon = '/data/olamide/corto/corto_metabolite_prediction/regulon.rda'
|
||||
//params.TPM_REFERENCE = '/data/olamide/corto/corto_metabolite_prediction/TPM_ENSG_NO_MUTATIONS.csv'
|
||||
include {CORTO} from './main.nf'
|
||||
|
||||
workflow {
|
||||
gene_expression_matrix = Channel.fromPath(params.gene_expression_matrix)
|
||||
centroid_list = Channel.fromPath(params.centroid_list)
|
||||
cnv_data = Channel.fromPath(params.cnv_data)
|
||||
CORTO(gene_expression_matrix, centroid_list, cnv_data)
|
||||
CORTO(params.TPM, params.regulon)// , params.TPM_REFERENCE)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user