Skip to content

Commit

Permalink
Mark --disable-tool-default-read-filters as advanced, and add a warni…
Browse files Browse the repository at this point in the history
…ng to its documentation string (broadinstitute#4671)
  • Loading branch information
droazen authored and cwhelan committed May 25, 2018
1 parent dae5151 commit ebec4d3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package org.broadinstitute.hellbender.cmdline.GATKPlugin;

import org.broadinstitute.barclay.argparser.Advanced;
import org.broadinstitute.barclay.argparser.Argument;
import org.broadinstitute.hellbender.cmdline.ReadFilterArgumentDefinitions;

Expand Down Expand Up @@ -27,9 +28,10 @@ public class DefaultGATKReadFilterArgumentCollection extends GATKReadFilterArgum
doc="Read filters to be disabled before analysis", optional=true, common = true)
public final List<String> userDisabledReadFilterNames = new ArrayList<>();

@Advanced
@Argument(fullName = ReadFilterArgumentDefinitions.DISABLE_TOOL_DEFAULT_READ_FILTERS,
shortName = ReadFilterArgumentDefinitions.DISABLE_TOOL_DEFAULT_READ_FILTERS,
doc = "Disable all tool default read filters", common = true, optional = true)
doc = "Disable all tool default read filters (WARNING: many tools will not function correctly without their default read filters on)", common = true, optional = true)
public boolean disableToolDefaultReadFilters = false;

/** Returns the list with the read filters provided by the user, preserving the order. */
Expand Down

0 comments on commit ebec4d3

Please sign in to comment.