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 12:07:16 +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 12:07:16 +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
|
|
|
}
|