Skip to content

Commit

Permalink
Add hook to force VCF sorting after merge in special cases
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Feb 8, 2024
1 parent a397296 commit ecde77a
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ public boolean scatterMethodRequiresSort()
return false;
}

if (getParameterJson().optBoolean("scatterGather.forceVcfSort", false))
{
return true;
}

return !doAllowSplitContigs();
}

Expand Down

0 comments on commit ecde77a

Please sign in to comment.