mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
1780cf9bcf
* Update main.nf * Update meta.yml * Re-add logos as not staged in a way that works with MultiQC config files * Add ANGSD doCounts * Prettier * Update main.nf * Apply suggestions from code review * Apply suggestions from code review * Apply suggestions from code review * Try loosening test due to conda * Remove md5 for binary file Co-authored-by: Simon Pearce <24893913+SPPearce@users.noreply.github.com>
17 lines
532 B
Text
17 lines
532 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { ANGSD_DOCOUNTS } from '../../../../modules/angsd/docounts/main.nf'
|
|
|
|
workflow test_angsd_docounts {
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_markduplicates_sorted_bam'], checkIfExists: true),
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_markduplicates_sorted_bam_bai'], checkIfExists: true),
|
|
[]
|
|
]
|
|
|
|
ANGSD_DOCOUNTS ( input )
|
|
}
|