mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
aa97b1be3e
* create transdecoder/longorf module * module transdecoder * main.nf * transdecoder/longorf ready to PR * review comments update * transdecoder/predict module create * test transdecoder/predict module * fix pytest * pytest passed * removed whitespace * Update meta.yml * Update meta.yml Co-authored-by: Danilo Di Leo <danilo.dileo@lnu.se> Co-authored-by: Daniel Lundin <erik.rikard.daniel@gmail.com>
18 lines
542 B
Text
18 lines
542 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { TRANSDECODER_PREDICT } from '../../../../modules/transdecoder/predict/main.nf'
|
|
include { TRANSDECODER_LONGORF } from '../../../../modules/transdecoder/longorf/main.nf'
|
|
|
|
workflow test_transdecoder_predict {
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)]
|
|
|
|
TRANSDECODER_LONGORF ( input )
|
|
TRANSDECODER_PREDICT ( input, TRANSDECODER_LONGORF.out.folder )
|
|
|
|
}
|
|
|