nf-core_modules/tests/software/deeptools/computematrix/main.nf
Jose Espinosa-Carrasco 750bd8c3e3
Finish deeptools modules (#442)
* 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>
2021-04-13 21:48:43 +01:00

16 lines
532 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { DEEPTOOLS_COMPUTEMATRIX } from '../../../../software/deeptools/computematrix/main.nf' addParams( options: ['args' : 'scale-regions -b 1000'] )
workflow test_deeptools_computematrix {
input = [ [ id:'test' ], // meta map
file(params.test_data['sarscov2']['illumina']['test_bigwig'], checkIfExists: true)
]
bed = file(params.test_data['sarscov2']['genome']['test_bed'], checkIfExists: true)
DEEPTOOLS_COMPUTEMATRIX ( input, bed )
}