When running CombineVariants with -mergeInfoWithMaxAC the set field will be added appropriately
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5974 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
f8ffda6835
commit
0d6ce91614
|
|
@ -586,7 +586,10 @@ public class VariantContextUtils {
|
|||
setValue = Utils.join("-", s);
|
||||
}
|
||||
|
||||
if ( setKey != null ) attributes.put(setKey, setValue);
|
||||
if ( setKey != null ) {
|
||||
attributes.put(setKey, setValue);
|
||||
if( mergeInfoWithMaxAC ) { maxACAttributes.put(setKey, setValue); }
|
||||
}
|
||||
}
|
||||
|
||||
if ( depth > 0 )
|
||||
|
|
|
|||
Loading…
Reference in New Issue