mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Add -with-docker
This commit is contained in:
parent
111b1505fa
commit
fab020461b
2 changed files with 3 additions and 3 deletions
2
.github/workflows/fastqc.yml
vendored
2
.github/workflows/fastqc.yml
vendored
|
@ -27,4 +27,4 @@ jobs:
|
|||
sudo mv nextflow /usr/local/bin/
|
||||
|
||||
# Test the module
|
||||
- run: nextflow run ./software/fastqc/test/
|
||||
- run: nextflow run ./software/fastqc/test/ -with-docker
|
||||
|
|
|
@ -14,7 +14,7 @@ include { FASTQC } from '../main.nf'
|
|||
workflow test_single_end {
|
||||
|
||||
def input = []
|
||||
input = [ [ id:'test', single_end:true ],
|
||||
input = [ [ id:'test', single_end:true ], // meta map
|
||||
[ file("${baseDir}/input/test_single_end.fastq.gz", checkIfExists: true) ] ]
|
||||
|
||||
FASTQC ( input, [ publish_dir:'test_single_end' ] )
|
||||
|
@ -26,7 +26,7 @@ workflow test_single_end {
|
|||
workflow test_paired_end {
|
||||
|
||||
def input = []
|
||||
input = [ [ id:'test', single_end:false ],
|
||||
input = [ [ id:'test', single_end:false ], // meta map
|
||||
[ file("${baseDir}/input/test_R1.fastq.gz", checkIfExists: true),
|
||||
file("${baseDir}/input/test_R2.fastq.gz", checkIfExists: true) ] ]
|
||||
|
||||
|
|
Loading…
Reference in a new issue