mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-31 11:42:12 -05:00
10502399ad
* 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>
55 lines
1.6 KiB
Text
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 )
|
|
}
|