nf-core_modules/tests/software/artic/guppyplex/main.nf
Jose Espinosa-Carrasco d63ff4ba1b
Add artic guppyplex (#455)
* Adding artic guppyplex module

* Adding guppyplex tests

* Fix tests

* Correcting typo

* Fix lint

* Fix test

* Missing description

* Missing descriptions

* Update functions to last version as suggested

* Bump newest version of nanoplot
2021-04-27 15:57:34 +01:00

29 lines
625 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { ARTIC_GUPPYPLEX } from '../../../../software/artic/guppyplex/main.nf' addParams( options: [:] )
process STAGE_FASTQ_DIR {
input:
tuple val(meta), path(fastq_file)
output:
tuple val(meta), path('fastq'), emit: fastq_dir
script:
"""
mkdir fastq
mv ${fastq_file} fastq
"""
}
workflow test_artic_guppyplex {
input = [ [ id:'test' ],
file(params.test_data['sarscov2']['nanopore']['test_fastq_gz'], checkIfExists: true) ]
STAGE_FASTQ_DIR ( input )
ARTIC_GUPPYPLEX ( STAGE_FASTQ_DIR.out.fastq_dir )
}