mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
6d3d8306e1
* Fitst attempt at mapdamage2 * Add new module mapdamage2 * Removed __pycache__/test_versions_yml.cpython-39-pytest-6.2.5.pyc * Modify main.nf and meta.yml * Modify main.nf and meta.yml * Modify main.nf and meta.yml * Modify meta.yml * Update pytest_modules.yml * Apply suggestions from code review Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * edit the meta.yml and main.nf after reviews * Update meta.yml * Update meta.yml Co-authored-by: AIbrahim <AIbrahim@apate.hki-jena.de> Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
15 lines
530 B
Text
15 lines
530 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { MAPDAMAGE2 } from '../../../modules/mapdamage2/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_mapdamage2 {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true)
|
|
]
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
MAPDAMAGE2 ( input, fasta )
|
|
}
|