nf-core_modules/tests/software/salmon/index/main.nf
Batool f90b8ecb24
Fix the test path salmon/index and quant after switching to config data (#385)
* 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>
2021-03-25 17:03:25 +00:00

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 )
}