mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
1d874bb0d0
* initial 'modules create' of minia * fixed tests * finished meta.yml * fixed filters.yml * resolved issues in pytest_software.yml * add newline * Update software/minia/main.nf * fixing a bunch of module tests * remove vscode * fixed minia * added rseqc/bamstat tests * added tests/meta.yml for rseqc/inferexperiment * added test/meta.yml for rseqc/inner_distances * added meta.yml and tests/main.nf for junctionannotation (test not running) * added test/meta.yml for rseqc/readdistribution * finished test/meta.yml for rseqc/readduplication * added entries to pytest_software.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
15 lines
509 B
Text
15 lines
509 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { RSEQC_INFEREXPERIMENT } from '../../../../software/rseqc/inferexperiment/main.nf' addParams(options: [:])
|
|
|
|
workflow test_rseqc_inferexperiment {
|
|
input = [ [ id:'test' ], // meta map
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true)
|
|
]
|
|
|
|
bed = file(params.test_data['sarscov2']['genome']['test_bed'], checkIfExists: true)
|
|
|
|
RSEQC_INFEREXPERIMENT ( input, bed )
|
|
}
|