Corrected bash error, tested process

This commit is contained in:
sruthipsuresh 2020-12-18 08:59:33 -06:00
parent 10d0058a1a
commit 8c088d473b

View file

@ -7,6 +7,6 @@ include { PHANTOMPEAKQUALTOOLS } from '../../../software/phantompeakqualtools/ma
workflow test_phantompeakqualtools { workflow test_phantompeakqualtools {
def input = [] def input = []
input = [ [ id:'test', single_end:true ], // meta map input = [ [ id:'test', single_end:true ], // meta map
[ file("${launchDir}/tests/data/bam/test/test.single_end.sorted.bam", checkIfExists: true) ] ] [ file("${launchDir}/tests/data/bam/test.single_end.sorted.bam", checkIfExists: true) ] ]
PHANTOMPEAKQUALTOOLS ( input ) PHANTOMPEAKQUALTOOLS ( input )
} }