Skip to content

Commit

Permalink
#3355 Allow for RNAseq analysis from GVCF
Browse files Browse the repository at this point in the history
See #3355
  • Loading branch information
WimSpee authored and roryk committed Jan 2, 2021
1 parent ebf15ab commit 2ad845b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bcbio/variation/joint.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ def _fix_orig_vcf_refs(data):
"""Supply references to initial variantcalls if run in addition to batching.
"""
variantcaller = tz.get_in(("config", "algorithm", "variantcaller"), data)
if variantcaller:
jointcaller = tz.get_in(("config", "algorithm", "jointcaller"), data)
if variantcaller or jointcaller:
data["vrn_file_orig"] = data["vrn_file"]
for i, sub in enumerate(data.get("group_orig", [])):
sub_vrn = sub.pop("vrn_file", None)
Expand Down

0 comments on commit 2ad845b

Please sign in to comment.