mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
e526eae472
* initial commit hisat2/build * initial commit hisat2/build * changed names for hisat2 * fixed directory structure and args * added splice site test data * added splice site inputs * replaced list with individual args * fixed removed commas * added test yml file * updated hisat2 conda version * added meta.yml * added meta.yml description * added meta.yml inputs * added meta.yml outputs * update conda version for hisat2 * removed trailing whitespace meta.yml * fixed version number for containers * added test data to test config * updated for new test logic * fix pytest issue? * fix pytest issue * fixed wrong tool in meta.yaml * updated tets.yaml name * handle build bug for testing * handle build bug for testing in yaml * moved test folder to fix build bug * use old hisat2 version to avoid conda giving inconsistent md5sum * initial commit * removed temp file * added meta yaml * add to pytest * added tests * added test yml * add align meta yaml * add hisat2 align to pytest * remove need for splice data by calling process * add hisat2 align se test * add hisat2 align pe test * update names hisat2 align * update software pytest for using mutiple modules * remove splice site test data since using module instead * remove splice site from config since using module instead * fixed extra brace * added hisat2 align test.yml * removed md5sum for bam files * updated build md5sums * Apply suggestions from code review Co-authored-by: Nicholas TODA <nicholas.toda@mnhn.fr> Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
32 lines
1.6 KiB
Text
32 lines
1.6 KiB
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { HISAT2_EXTRACTSPLICESITES } from '../../../../software/hisat2/extractsplicesites/main.nf' addParams( options: [:] )
|
|
include { HISAT2_BUILD } from '../../../../software/hisat2/build/main.nf' addParams( options: [:] )
|
|
include { HISAT2_ALIGN } from '../../../../software/hisat2/align/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_hisat2_align_single_end {
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true) ]
|
|
]
|
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
|
gtf = file(params.test_data['sarscov2']['genome']['genome_gtf'], checkIfExists: true)
|
|
|
|
HISAT2_EXTRACTSPLICESITES ( gtf )
|
|
HISAT2_BUILD ( fasta, gtf, HISAT2_EXTRACTSPLICESITES.out.txt )
|
|
HISAT2_ALIGN ( input, HISAT2_BUILD.out.index, HISAT2_EXTRACTSPLICESITES.out.txt )
|
|
}
|
|
|
|
workflow test_hisat2_align_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)]
|
|
]
|
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
|
gtf = file(params.test_data['sarscov2']['genome']['genome_gtf'], checkIfExists: true)
|
|
|
|
HISAT2_EXTRACTSPLICESITES ( gtf )
|
|
HISAT2_BUILD ( fasta, gtf, HISAT2_EXTRACTSPLICESITES.out.txt )
|
|
HISAT2_ALIGN ( input, HISAT2_BUILD.out.index, HISAT2_EXTRACTSPLICESITES.out.txt )
|
|
}
|