Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
mcovarr committed Apr 13, 2022
1 parent f157925 commit 351e9be
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* Ingest variant walker
*/
@CommandLineProgramProperties(
summary = "Exome and Genome Ingest tool for the Genomic Variant Store in Big Query project",
summary = "Exome and Genome Ingest tool for the Genomic Variant Store",
oneLineSummary = "Ingest tool for GVS",
programGroup = ShortVariantDiscoveryProgramGroup.class,
omitFromCommandLine = true
Expand Down Expand Up @@ -68,7 +68,7 @@ public final class CreateVariantIngestFiles extends VariantWalker {
shortName = "rr",
doc = "write reference ranges data",
optional = true)
public boolean enableReferenceRanges = false;
public boolean enableReferenceRanges = true;

@Argument(fullName = "enable-vet",
shortName = "ev",
Expand Down Expand Up @@ -255,7 +255,7 @@ public void apply(final VariantContext variant, final ReadsContext readsContext,

try {
if (refCreator != null) {
refCreator.apply(variant, intervalsToWrite);
if (enableReferenceRanges) refCreator.apply(variant, intervalsToWrite);
}
} catch (IOException ioe) {
throw new GATKException("Error writing reference ranges", ioe);
Expand Down

0 comments on commit 351e9be

Please sign in to comment.