mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
d8ba32c6b5
* Working version of somalier relate * few changes * new changes * corrected test.yml * updated container paths and file paths * changed container and inputFile paths * changed left padding * requested changes * Update modules/somalier/relate/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/somalier/relate/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/somalier/relate/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/somalier/relate/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/somalier/relate/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/somalier/relate/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/somalier/relate/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * requested changes * requested changes Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
30 lines
1.2 KiB
Text
30 lines
1.2 KiB
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { SOMALIER_RELATE } from '../../../../modules/somalier/relate/main.nf'
|
|
|
|
|
|
workflow test_somalier_relate {
|
|
|
|
input = [ [ id:'cohort', single_end:false ], // meta map
|
|
[ file("https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/somalier/normal.somalier", checkIfExists: true),
|
|
file("https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/somalier/tumour.somalier", checkIfExists: true) ]
|
|
]
|
|
|
|
SOMALIER_RELATE (input,[],[])
|
|
}
|
|
|
|
|
|
workflow test_somalier_relate_ped_groups {
|
|
|
|
input = [ [ id:'cohort', single_end:false ], // meta map
|
|
[ file("https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/somalier/normal.somalier", checkIfExists: true),
|
|
file("https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/somalier/tumour.somalier", checkIfExists: true) ]
|
|
]
|
|
|
|
groups = file("https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/somalier/groups.txt", checkIfExists: true)
|
|
ped = file("https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/somalier/family.ped", checkIfExists: true)
|
|
|
|
SOMALIER_RELATE (input,groups,ped)
|
|
}
|