mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Fix salmon quant tests
This commit is contained in:
parent
550494cbd1
commit
0683efc679
2 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@ workflow test_salmon_quant_single_end {
|
||||||
file("${launchDir}/tests/data/fastq/rna/sarscov2/EPI_ISL_486436_1.fastq.gz", checkIfExists: true) ]
|
file("${launchDir}/tests/data/fastq/rna/sarscov2/EPI_ISL_486436_1.fastq.gz", checkIfExists: true) ]
|
||||||
|
|
||||||
SALMON_INDEX ( genome_fasta, transcript_fasta )
|
SALMON_INDEX ( genome_fasta, transcript_fasta )
|
||||||
SALMON_QUANT( input, SALMON_INDEX.out.index, gtf, transcript_fasta, false)
|
SALMON_QUANT ( input, SALMON_INDEX.out.index, gtf, transcript_fasta, false )
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -28,6 +28,6 @@ workflow test_salmon_quant_paired_end {
|
||||||
file("${launchDir}/tests/data/fastq/rna/sarscov2/EPI_ISL_486436_2.fastq.gz", checkIfExists: true) ] ]
|
file("${launchDir}/tests/data/fastq/rna/sarscov2/EPI_ISL_486436_2.fastq.gz", checkIfExists: true) ] ]
|
||||||
|
|
||||||
SALMON_INDEX ( genome_fasta, transcript_fasta )
|
SALMON_INDEX ( genome_fasta, transcript_fasta )
|
||||||
SALMON_QUANT( input, SALMON_INDEX.out.index, gtf, transcript_fasta, false)
|
SALMON_QUANT ( input, SALMON_INDEX.out.index, gtf, transcript_fasta, false )
|
||||||
|
|
||||||
}
|
}
|
|
@ -53,7 +53,7 @@
|
||||||
md5sum: b08095ac70f89efc3146cdf488d0eb73
|
md5sum: b08095ac70f89efc3146cdf488d0eb73
|
||||||
|
|
||||||
- name: salmon quant paired end
|
- name: salmon quant paired end
|
||||||
command: nextflow run ./tests/software/salmon -entry test_salmon_quant_paired_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/salmon/quant -entry test_salmon_quant_paired_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- salmon
|
- salmon
|
||||||
- salmon_quant
|
- salmon_quant
|
||||||
|
|
Loading…
Reference in a new issue