2021-11-21 09:47:16 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
|
|
include { MAXQUANT_LFQ } from '../../../../modules/maxquant/lfq/main.nf' addParams( options: [:] )
|
|
|
|
|
|
|
|
workflow test_maxquant_lfq {
|
2021-12-17 11:34:28 +00:00
|
|
|
|
2021-11-21 09:47:16 +00:00
|
|
|
input = [ [ id:'test' ], // meta map
|
2022-02-07 10:20:25 +00:00
|
|
|
file(params_test_data['proteomics']['database']['yeast_ups']), checkIfExists: true), file(params_test_data['proteomics']['parameter']['maxquant'] , checkIfExists: true)
|
2021-12-17 11:34:28 +00:00
|
|
|
]
|
2021-11-21 09:47:16 +00:00
|
|
|
|
2021-12-17 11:34:28 +00:00
|
|
|
|
2022-02-07 10:20:25 +00:00
|
|
|
rawfiles = [file(params_test_data['proteomics']['msspectra']['ups_file1']) , file(params_test_data['proteomics']['msspectra']['ups_file2']) ]
|
2021-12-17 11:34:28 +00:00
|
|
|
|
|
|
|
MAXQUANT_LFQ ( input, rawfiles.collect() )
|
2021-11-21 09:47:16 +00:00
|
|
|
}
|