mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
e9c57083a0
* Fix bug in gffread that would cause it to fail if the input has .gtf as extension * Update test.yml * Update meta file * Update main.nf * Apply suggestions from code review Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
11 lines
292 B
Text
11 lines
292 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { GFFREAD } from '../../../modules/gffread/main.nf' addParams( options: [suffix: '.out'] )
|
|
|
|
workflow test_gffread {
|
|
input = file(params.test_data['sarscov2']['genome']['genome_gff3'], checkIfExists: true)
|
|
|
|
GFFREAD ( input )
|
|
}
|