2021-07-02 11:09:48 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-11-26 07:58:40 +00:00
|
|
|
include { RSEM_PREPAREREFERENCE } from '../../../../modules/rsem/preparereference/main.nf'
|
|
|
|
include { RSEM_CALCULATEEXPRESSION } from '../../../../modules/rsem/calculateexpression/main.nf'
|
2021-07-02 11:09:48 +00:00
|
|
|
|
|
|
|
workflow test_rsem_calculateexpression {
|
|
|
|
|
2021-09-28 05:56:27 +00:00
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:false, strandedness: 'forward' ], // 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-02 11:09:48 +00: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)
|
|
|
|
|
|
|
|
RSEM_PREPAREREFERENCE ( fasta, gtf )
|
|
|
|
RSEM_CALCULATEEXPRESSION( input, RSEM_PREPAREREFERENCE.out.index )
|
|
|
|
}
|