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:
Jose Espinosa-Carrasco 2021-03-15 15:39:42 +01:00 committed by GitHub
parent 66fd57a8bc
commit 74ff11b07b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 6 deletions

View file

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

View file

@ -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/**

View file

@ -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

View file

@ -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