You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For much of the cli help docs, the defaults are not included. For example:
Heuristic Detector Options:
--min-frequency MIN_FREQUENCY
Minimum frequency required to retain a k-mer.
--min-contaminant-match-frac MIN_CONTAMINANT_MATCH_FRAC
Minimum fraction of nucleotides that must align for a
detected contaminant to match a known adapter
sequence.
Why now use an argparse formatter that automatically lists the defaults? For example:
class CustomFormatter(argparse.ArgumentDefaultsHelpFormatter,
argparse.RawDescriptionHelpFormatter):
pass
parser = argparse.ArgumentParser(description=desc, formatter_class=CustomFormatter)
The text was updated successfully, but these errors were encountered:
For much of the cli help docs, the defaults are not included. For example:
Why now use an argparse formatter that automatically lists the defaults? For example:
The text was updated successfully, but these errors were encountered: