corrected typos

This commit is contained in:
veitveit 2022-02-07 13:07:16 +01:00
parent 7df2fb74a3
commit 5b9313c2c5
4 changed files with 9 additions and 10 deletions

View file

@ -384,14 +384,15 @@ params {
}
'proteomics' {
'msspectra' {
ups_file1 = "{test_data_dir}/proteomics/msspectra/OVEMB150205_12.raw"
ups_file2 = "{test_data_dir}/proteomics/msspectra/OVEMB150205_14.raw"
ups_file1 = "${test_data_dir}/proteomics/msspectra/OVEMB150205_12.raw"
ups_file2 = "${test_data_dir}/proteomics/msspectra/OVEMB150205_14.raw"
}
'database' {
yeast_ups = "{test_data_dir}/proteomics/database/yeast_UPS.fasta"
yeast_ups = "${test_data_dir}/proteomics/database/yeast_UPS.fasta"
}
'parameter' {
maxquant = "{test_data_dir}/proteomics/parameter/mqpar.xml"
maxquant = "${test_data_dir}/proteomics/parameter/mqpar.xml"
}
}
}
}

View file

@ -7,11 +7,11 @@ include { MAXQUANT_LFQ } from '../../../../modules/maxquant/lfq/main.nf' addPara
workflow test_maxquant_lfq {
input = [ [ id:'test' ], // meta map
file(params_test_data['proteomics']['database']['yeast_ups']), checkIfExists: true), file(params_test_data['proteomics']['parameter']['maxquant'] , checkIfExists: true)
file(params.test_data['proteomics']['database']['yeast_ups'], checkIfExists: true), file(params.test_data['proteomics']['parameter']['maxquant'] , checkIfExists: true)
]
rawfiles = [file(params_test_data['proteomics']['msspectra']['ups_file1']) , file(params_test_data['proteomics']['msspectra']['ups_file2']) ]
rawfiles = [file(params.test_data['proteomics']['msspectra']['ups_file1']) , file(params.test_data['proteomics']['msspectra']['ups_file2'])]
MAXQUANT_LFQ ( input, rawfiles.collect() )
}

View file

@ -2,4 +2,4 @@ process {
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
}
}

View file

@ -1,7 +1,5 @@
## TODO nf-core: Please run the following command to build this file:
# nf-core modules create-test-yml maxquant/lfq
- name: maxquant lfq
command: nextflow run ./tests/modules/maxquant/lfq -entry test_maxquant_lfq -c tests/config/nextflow.config
command: nextflow run ./tests/modules/maxquant/lfq -entry test_maxquant_lfq -c tests/config/nextflow.config
tags:
- maxquant
- maxquant/lfq