mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 11:08:17 +00:00
Fix bowtie builds (#273)
* Fix bowtie build test * Forgot to delete old bowtie_build * Fix bowtie2 build tests * Add initOptions include on hisat2 extractsplicesites
This commit is contained in:
parent
66fd57a8bc
commit
74ff11b07b
6 changed files with 6 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
|||
// Import generic module functions
|
||||
include { saveFiles; getSoftwareName } from './functions'
|
||||
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
||||
|
||||
params.options = [:]
|
||||
options = initOptions(params.options)
|
||||
|
|
|
@ -76,16 +76,16 @@ blast_blastn:
|
|||
|
||||
bowtie_build:
|
||||
- software/bowtie/build/**
|
||||
- tests/software/bowtie/build/**
|
||||
- tests/software/bowtie/build_test/**
|
||||
|
||||
bowtie_align:
|
||||
- software/bowtie/align/**
|
||||
- software/bowtie/build/**
|
||||
- tests/software/bowtie/align/**
|
||||
|
||||
bowtie2:
|
||||
bowtie2_build:
|
||||
- software/bowtie2/build/**
|
||||
- tests/software/bowtie2/build/**
|
||||
- tests/software/bowtie2/build_test/**
|
||||
|
||||
bowtie2_align:
|
||||
- software/bowtie2/align/**
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
- name: bowtie build
|
||||
command: nextflow run ./tests/software/bowtie/build -entry test_bowtie_build -c tests/config/nextflow.config
|
||||
command: nextflow run ./tests/software/bowtie/build_test -entry test_bowtie_build -c tests/config/nextflow.config
|
||||
tags:
|
||||
- bowtie
|
||||
- bowtie_build
|
|
@ -1,5 +1,5 @@
|
|||
- name: bowtie2 build
|
||||
command: nextflow run ./tests/software/bowtie2/build -entry test_bowtie2_build -c tests/config/nextflow.config
|
||||
command: nextflow run ./tests/software/bowtie2/build_test -entry test_bowtie2_build -c tests/config/nextflow.config
|
||||
tags:
|
||||
- bowtie2
|
||||
- bowtie2_build
|
Loading…
Reference in a new issue