nf-core_modules/tests/modules/tiddit/sv/main.nf

27 lines
809 B
Text
Raw Normal View History

2021-02-24 09:59:10 -05:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { TIDDIT_SV } from '../../../../modules/tiddit/sv/main.nf' addParams( options: [:] )
2021-02-24 09:59:10 -05:00
workflow test_tiddit_sv {
input = [
[ id:'test' ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true) ]
]
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
fai = file(params.test_data['sarscov2']['genome']['genome_fasta_fai'], checkIfExists: true)
2021-02-24 09:59:10 -05:00
2021-03-15 10:02:20 -04:00
TIDDIT_SV ( input, fasta, fai )
2021-02-24 09:59:10 -05:00
}
workflow test_tiddit_sv_no_ref {
input = [
[ id:'test' ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true) ]
]
2021-02-24 09:59:10 -05:00
2021-03-15 10:02:20 -04:00
TIDDIT_SV ( input, [], [] )
2021-03-22 13:16:43 -04:00
}