mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 13:23:09 +00:00
cd8bacc90a
* first commit * edited functions.nf * edited functions.nf * version line updated * Update software/lofreq/indelqual/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/lofreq/indelqual/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/lofreq/indelqual/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/lofreq/indelqual/meta.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/lofreq/indelqual/test.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/lofreq/indelqual/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * updated files * updated file Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
16 lines
523 B
Text
16 lines
523 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
include { LOFREQ_INDELQUAL } from '../../../../software/lofreq/indelqual/main.nf' addParams( options: [ 'args': '--dindel', 'suffix':'.indelqual'] )
|
|
|
|
workflow test_lofreq_indelqual {
|
|
|
|
input = [ [ id:'test' ], // meta map
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_bam'], checkIfExists: true) ]
|
|
|
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
LOFREQ_INDELQUAL ( input, fasta )
|
|
}
|