mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
750bd8c3e3
* Adding bigWig and deeptools computeMatrix files to config * Adding meta.yml for deeptools modules * Add test for deeptools modules * Fixing and reordering tags * Fixing conda test that worked in local... * Apply suggestions from code review * Changing bigwig file pattern to include bigwig extension * Saving after last change is a good practice Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
17 lines
576 B
Text
17 lines
576 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
params.fragment_size = 1000
|
|
|
|
include { DEEPTOOLS_PLOTFINGERPRINT } from '../../../../software/deeptools/plotfingerprint/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_deeptools_plotfingerprint {
|
|
|
|
input = [ [ id:'test' ], // meta map
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true)
|
|
]
|
|
|
|
DEEPTOOLS_PLOTFINGERPRINT ( input )
|
|
}
|