Skip to content

Commit

Permalink
Fix icount segment test
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-cheshire committed Apr 25, 2023
1 parent f0c73ca commit cd705ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/wrappers/modules/icount_segment/test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- name: "test_wrappers_icount_segment"
command: nextflow run ./wrappers/modules/icount_segment/main.nf -c ./tests/config/nextflow.config --gtf ./tests/data/genome/homosapien-hg37-chr21.fa.gz --fai ./tests/data/genome/homosapien-hg37-chr21.fa.fai
command: nextflow run ./wrappers/modules/icount_segment/main.nf -c ./tests/config/nextflow.config --gtf ./tests/data/genome/gencode.v35.chr21.gtf --fai ./tests/data/genome/homosapien-hg37-chr21.fa.fai
tags:
- "wrappers"
- "wrappers/modules"
Expand Down
3 changes: 2 additions & 1 deletion wrappers/modules/icount_segment/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ include { ICOUNT_SEGMENT } from '../../../modules/goodwright/icount/segment/main
workflow {

ch_gtf = [ [id:file(params.gtf).baseName], file(params.gtf, checkIfExists: true) ]
ch_fai = file(params.fai, checkIfExists: true)

ICOUNT_SEGMENT ( ch_gtf, params.fai )
ICOUNT_SEGMENT ( ch_gtf, ch_fai )
}

0 comments on commit cd705ed

Please sign in to comment.