mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Updated the test
This commit is contained in:
parent
5b74a179c3
commit
d4f3df4677
2 changed files with 11 additions and 5 deletions
|
@ -6,11 +6,17 @@ include { GATK4_COMPOSESTRTABLEFILE } from '../../../../modules/gatk4/composestr
|
|||
|
||||
workflow test_gatk4_composestrtablefile {
|
||||
|
||||
input = [
|
||||
file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true),
|
||||
file(params.test_data['homo_sapiens']['genome']['genome_fasta_fai'], checkIfExists: true),
|
||||
fasta = [
|
||||
file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
||||
]
|
||||
|
||||
fasta_fai = [
|
||||
file(params.test_data['homo_sapiens']['genome']['genome_fasta_fai'], checkIfExists: true)
|
||||
]
|
||||
|
||||
dict = [
|
||||
file(params.test_data['homo_sapiens']['genome']['genome_dict'], checkIfExists: true)
|
||||
]
|
||||
|
||||
GATK4_COMPOSESTRTABLEFILE ( input )
|
||||
GATK4_COMPOSESTRTABLEFILE ( fasta, fasta_fai, dict )
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
- name: gatk4 composestrtablefile test_gatk4_composestrtablefile
|
||||
command: nextflow run ./tests/modules/gatk4/composestrtablefile -entry test_gatk4_composestrtablefile -c ./tests/config/nextflow.config -c ./tests/modules/gatk4/composestrtablefile/nextflow.config
|
||||
tags:
|
||||
- gatk4
|
||||
- gatk4/composestrtablefile
|
||||
- gatk4
|
||||
files:
|
||||
- path: output/gatk4/genome.zip
|
||||
|
|
Loading…
Reference in a new issue