nf-core_modules/tests/software/plasmidid/main.nf
Jose Espinosa-Carrasco f90dde0d88
Add plasmidid module (#410)
* Adding plasmidid module

* Adding test for plasmidid module

* Update plasmidid version to 1.6.4

* Adding contigs.fasta file

* Update tests

* Adding output files on test.yml
2021-04-08 22:44:30 +01:00

16 lines
475 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { PLASMIDID } from '../../../software/plasmidid/main.nf' addParams ( options: ['args' : '-k 0.8'] )
workflow test_plasmidid {
contigs = [ [ id:'test' ], // meta map
file(params.test_data['sarscov2']['genome']['contigs_fasta'], checkIfExists: true)
]
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
PLASMIDID ( contigs, fasta )
}