mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
add PE sorted test
This commit is contained in:
parent
04f82d4d34
commit
5a2e303522
1 changed files with 16 additions and 0 deletions
|
@ -51,6 +51,22 @@ workflow test_bowtie2_align_paired_end {
|
|||
BOWTIE2_ALIGN ( input, BOWTIE2_BUILD.out.index, save_unaligned, sort )
|
||||
}
|
||||
|
||||
workflow test_bowtie2_align_paired_end_sorted {
|
||||
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)
|
||||
]
|
||||
]
|
||||
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
||||
save_unaligned = false
|
||||
sort = true
|
||||
|
||||
BOWTIE2_BUILD ( fasta )
|
||||
BOWTIE2_ALIGN ( input, BOWTIE2_BUILD.out.index, save_unaligned, sort )
|
||||
}
|
||||
|
||||
workflow test_bowtie2_align_single_end_large_index {
|
||||
input = [
|
||||
[ id:'test', single_end:true ], // meta map
|
||||
|
|
Loading…
Reference in a new issue