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
|
2021-12-17 11:34:28 +00:00
|
|
|
file(params.fasta, checkIfExists: true), file(params.paramfile, checkIfExists: true)
|
|
|
|
]
|
2021-11-21 09:47:16 +00:00
|
|
|
|
2021-12-17 11:34:28 +00:00
|
|
|
|
|
|
|
rawfiles = [file('https://github.com/wombat-p/MaxQuant-Workflow/raw/dev/Nextflow/data_test/OVEMB150205_12.raw') , file('https://github.com/wombat-p/MaxQuant-Workflow/raw/dev/Nextflow/data_test/OVEMB150205_14.raw') ]
|
|
|
|
|
|
|
|
MAXQUANT_LFQ ( input, rawfiles.collect() )
|
2021-11-21 09:47:16 +00:00
|
|
|
}
|