Entering edit mode
6.7 years ago
ionox0
▴
390
With this input parameter:
fci__rf: [FailsVendorQualityCheck, BadMate, UnmappedRead, BadCigar]
I would like this:
read_filters:
type: string[]
inputBinding:
prefix: --read_filter
To result in this:
java
-jar GenomeAnalysisTK.jar
-T
FindCoveredIntervals
--input_file
sample.bam
--reference_sequence ref.fasta
--read_filter FailsVendorQualityCheck
--read_filter BadMate
--read_filter UnmappedRead
--read_filter BadCigar
Do I need to use shellQuote
? Or perhaps I need to use a string input instead of an array?