mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
added test file for phantompeakqualtools for testing
This commit is contained in:
parent
c98f9284a2
commit
10d0058a1a
2 changed files with 20 additions and 0 deletions
12
tests/software/phantompeakqualtools/main.nf
Normal file
12
tests/software/phantompeakqualtools/main.nf
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env nextflow
|
||||
|
||||
nextflow.enable.dsl = 2
|
||||
|
||||
include { PHANTOMPEAKQUALTOOLS } from '../../../software/phantompeakqualtools/main.nf' addParams(options: [publish_dir: 'test_phantompeakqualtools'])
|
||||
|
||||
workflow test_phantompeakqualtools {
|
||||
def input = []
|
||||
input = [ [ id:'test', single_end:true ], // meta map
|
||||
[ file("${launchDir}/tests/data/bam/test/test.single_end.sorted.bam", checkIfExists: true) ] ]
|
||||
PHANTOMPEAKQUALTOOLS ( input )
|
||||
}
|
8
tests/software/phantompeakqualtools/test.yml
Normal file
8
tests/software/phantompeakqualtools/test.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
- name: Run phantompeakqualtools test workflow
|
||||
command: nextflow run ./tests/software/phantompeakqualtools/ -profile docker -entry test_phantompeakqualtools -c tests/config/nextflow.config
|
||||
tags:
|
||||
- phantompeakqualtools
|
||||
files:
|
||||
- path: output/phantompeakqualtools/test.single_end.sorted.bam.out
|
||||
- path: output/phantompeakqualtools/test.single_end.sorted.bam.pdf
|
||||
- path: output/phantompeakqualtools/test.single_end.sorted.bam.Rdata
|
Loading…
Reference in a new issue