mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-03 04:52:09 -05: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
|
// Import generic module functions
|
||||||
include { saveFiles; getSoftwareName } from './functions'
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
||||||
|
|
||||||
params.options = [:]
|
params.options = [:]
|
||||||
options = initOptions(params.options)
|
options = initOptions(params.options)
|
||||||
|
|
|
@ -76,16 +76,16 @@ blast_blastn:
|
||||||
|
|
||||||
bowtie_build:
|
bowtie_build:
|
||||||
- software/bowtie/build/**
|
- software/bowtie/build/**
|
||||||
- tests/software/bowtie/build/**
|
- tests/software/bowtie/build_test/**
|
||||||
|
|
||||||
bowtie_align:
|
bowtie_align:
|
||||||
- software/bowtie/align/**
|
- software/bowtie/align/**
|
||||||
- software/bowtie/build/**
|
- software/bowtie/build/**
|
||||||
- tests/software/bowtie/align/**
|
- tests/software/bowtie/align/**
|
||||||
|
|
||||||
bowtie2:
|
bowtie2_build:
|
||||||
- software/bowtie2/build/**
|
- software/bowtie2/build/**
|
||||||
- tests/software/bowtie2/build/**
|
- tests/software/bowtie2/build_test/**
|
||||||
|
|
||||||
bowtie2_align:
|
bowtie2_align:
|
||||||
- software/bowtie2/align/**
|
- software/bowtie2/align/**
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
- name: bowtie build
|
- 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:
|
tags:
|
||||||
- bowtie
|
- bowtie
|
||||||
- bowtie_build
|
- bowtie_build
|
|
@ -1,5 +1,5 @@
|
||||||
- name: bowtie2 build
|
- 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:
|
tags:
|
||||||
- bowtie2
|
- bowtie2
|
||||||
- bowtie2_build
|
- bowtie2_build
|
Loading…
Reference in a new issue