nf-core_modules/tests/modules/fastp/main.nf
James A. Fellows Yates 10502399ad
Replaced param with input val channel (#595)
* Replaced param with input val channel

* Apply suggestions from code review

Co-authored-by: Jose Espinosa-Carrasco <kadomu@gmail.com>
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>

* Apply suggestions from code review (missed one)

* YAML lint

Co-authored-by: Jose Espinosa-Carrasco <kadomu@gmail.com>
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-07-21 10:00:48 +02:00

55 lines
1.6 KiB
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { FASTP } from '../../../modules/fastp/main.nf' addParams( options: [:] )
//
// Test with single-end data
//
workflow test_fastp_single_end {
input = [ [ id:'test', single_end:true ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true) ]
]
save_trimmed_fail = false
FASTP ( input, save_trimmed_fail )
}
//
// Test with paired-end data
//
workflow test_fastp_paired_end {
input = [ [ id:'test', single_end:false ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ]
]
save_trimmed_fail = false
FASTP ( input, save_trimmed_fail )
}
//
// Test with single-end data with saving trimming fails
//
workflow test_fastp_single_end_trim_fail {
input = [ [ id:'test', single_end:true ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true) ]
]
save_trimmed_fail = true
FASTP ( input, save_trimmed_fail )
}
//
// Test with paired-end data with saving trimming fails
//
workflow test_fastp_paired_end_trim_fail {
input = [ [ id:'test', single_end:false ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ]
]
save_trimmed_fail = true
FASTP ( input, save_trimmed_fail )
}