Skip to content
Snippets Groups Projects
Commit 0696ab06 authored by Cats's avatar Cats
Browse files

fix flatten

parent 7be31de0
No related branches found
No related tags found
1 merge request!24Changes after testing
......@@ -56,16 +56,22 @@ task BaseRecalibrator {
File inputBamIndex
String recalibrationReportPath
Array[File]+ sequenceGroupInterval
Array[File?]? knownIndelsSitesVCFs
Array[File?]? knownIndelsSitesIndices
Array[File]? knownIndelsSitesVCFs
Array[File]? knownIndelsSitesIndices
File? dbsnpVCF
File? dbsnpVCFindex
File refDict
File refFasta
File refFastaIndex
Array[File]+ knownIndelsSitesVCFsArg = select_all(flatten([knownIndelsSitesVCFs, [dbsnpVCF]]))
Array[File]+ knownIndelsSitesIndicesArg = select_all(flatten([knownIndelsSitesIndices, [dbsnpVCFindex]]))
Array[File]+ knownIndelsSitesVCFsArg = flatten([
select_first([knownIndelsSitesVCFs, []]),
select_all([dbsnpVCF])
])
Array[File]+ knownIndelsSitesIndicesArg = flatten([
select_first([knownIndelsSitesIndices, []]),
select_all([dbsnpVCFindex])
])
Float? memory
Float? memoryMultiplier
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment