2021-02-03 11:02:58 -05:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-11-26 02:58:40 -05:00
|
|
|
include { STAR_GENOMEGENERATE } from '../../../../modules/star/genomegenerate/main.nf'
|
|
|
|
include { STAR_ALIGN } from '../../../../modules/star/align/main.nf'
|
|
|
|
include { STAR_ALIGN as STAR_FOR_ARRIBA } from '../../../../modules/star/align/main.nf'
|
|
|
|
include { STAR_ALIGN as STAR_FOR_STARFUSION } from '../../../../modules/star/align/main.nf'
|
2021-02-03 11:02:58 -05:00
|
|
|
|
|
|
|
workflow test_star_alignment_single_end {
|
2021-11-26 02:58:40 -05:00
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:true ], // meta map
|
|
|
|
[ file(params.test_data['homo_sapiens']['illumina']['test_rnaseq_1_fastq_gz'], checkIfExists: true) ]
|
|
|
|
]
|
2021-07-21 08:30:52 -04:00
|
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
gtf = file(params.test_data['homo_sapiens']['genome']['genome_gtf'], checkIfExists: true)
|
2021-11-26 02:58:40 -05:00
|
|
|
star_ignore_sjdbgtf = false
|
|
|
|
seq_platform = 'illumina'
|
|
|
|
seq_center = false
|
|
|
|
|
2021-03-24 05:53:41 -04:00
|
|
|
STAR_GENOMEGENERATE ( fasta, gtf )
|
2021-11-26 02:58:40 -05:00
|
|
|
STAR_ALIGN ( input, STAR_GENOMEGENERATE.out.index, gtf, star_ignore_sjdbgtf, seq_platform, seq_center )
|
2021-02-03 11:02:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
workflow test_star_alignment_paired_end {
|
2021-11-26 02:58:40 -05:00
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:false ], // meta map
|
|
|
|
[
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_rnaseq_1_fastq_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_rnaseq_2_fastq_gz'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
]
|
2021-07-21 08:30:52 -04:00
|
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
gtf = file(params.test_data['homo_sapiens']['genome']['genome_gtf'], checkIfExists: true)
|
2021-11-26 02:58:40 -05:00
|
|
|
star_ignore_sjdbgtf = false
|
|
|
|
seq_platform = 'illumina'
|
|
|
|
seq_center = false
|
|
|
|
|
2021-02-03 11:02:58 -05:00
|
|
|
STAR_GENOMEGENERATE ( fasta, gtf )
|
2021-11-26 02:58:40 -05:00
|
|
|
STAR_ALIGN ( input, STAR_GENOMEGENERATE.out.index, gtf, star_ignore_sjdbgtf, seq_platform, seq_center )
|
2021-02-03 11:02:58 -05:00
|
|
|
}
|
2021-07-21 08:30:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
workflow test_star_alignment_paired_end_for_fusion {
|
2021-11-26 02:58:40 -05:00
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:false ], // meta map
|
|
|
|
[
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_rnaseq_1_fastq_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_rnaseq_2_fastq_gz'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
]
|
2021-07-21 08:30:52 -04:00
|
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
gtf = file(params.test_data['homo_sapiens']['genome']['genome_gtf'], checkIfExists: true)
|
2021-11-26 02:58:40 -05:00
|
|
|
star_ignore_sjdbgtf = false
|
|
|
|
seq_platform = 'illumina'
|
|
|
|
seq_center = false
|
|
|
|
|
2021-07-21 08:30:52 -04:00
|
|
|
STAR_GENOMEGENERATE ( fasta, gtf )
|
2021-11-26 02:58:40 -05:00
|
|
|
STAR_FOR_ARRIBA ( input, STAR_GENOMEGENERATE.out.index, gtf, star_ignore_sjdbgtf, seq_platform, seq_center )
|
2021-07-21 08:30:52 -04:00
|
|
|
}
|
2021-07-26 13:03:30 -04:00
|
|
|
|
|
|
|
workflow test_star_alignment_paired_end_for_starfusion {
|
2021-11-26 02:58:40 -05:00
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:false ], // meta map
|
|
|
|
[
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_rnaseq_1_fastq_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_rnaseq_2_fastq_gz'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
]
|
2021-07-26 13:03:30 -04:00
|
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
gtf = file(params.test_data['homo_sapiens']['genome']['genome_gtf'], checkIfExists: true)
|
2021-11-26 02:58:40 -05:00
|
|
|
star_ignore_sjdbgtf = false
|
|
|
|
seq_platform = false
|
|
|
|
seq_center = false
|
|
|
|
|
2021-07-26 13:03:30 -04:00
|
|
|
STAR_GENOMEGENERATE ( fasta, gtf )
|
2021-11-26 02:58:40 -05:00
|
|
|
STAR_FOR_STARFUSION ( input, STAR_GENOMEGENERATE.out.index, gtf, star_ignore_sjdbgtf, seq_platform, seq_center )
|
2021-07-26 13:03:30 -04:00
|
|
|
}
|