mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
031fbd37aa
* add instrain profile * module instrain/profile * add instrain profile * module instrain/profile * instrain profile * Update modules/instrain/profile/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/instrain/profile/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/instrain/profile/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/instrain/profile/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/instrain/profile/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/instrain/profile/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/instrain/profile/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * update * linting * Apply suggestions from code review * Update modules/instrain/profile/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
18 lines
532 B
Text
18 lines
532 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { INSTRAIN_PROFILE } from '../../../../modules/instrain/profile/main.nf'
|
|
|
|
workflow test_instrain_profile {
|
|
|
|
input = [
|
|
[ id:'test', single_end:true ], // meta map
|
|
[
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true)
|
|
]
|
|
]
|
|
genome_fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
INSTRAIN_PROFILE ( input , genome_fasta , [] , [] )
|
|
}
|