mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
f90b8ecb24
* fix the test path in main.nf for salmon/index and quant * fix typo * Apply suggestions from code review * Apply suggestions from code review * Apply suggestions from code review Mannnn, hopefully I finally got it right :) * replaced /salmon/salmon/ with /index/salmon/ Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
12 lines
456 B
Text
12 lines
456 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { SALMON_INDEX } from '../../../../software/salmon/index/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_salmon_index {
|
|
genome_fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
|
transcript_fasta = file(params.test_data['sarscov2']['genome']['transcriptome_fasta'], checkIfExists: true)
|
|
|
|
SALMON_INDEX ( genome_fasta, transcript_fasta )
|
|
}
|