Module refinery.units.misc.nop
Expand source code Browse git
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from refinery.units import Unit
from refinery.lib.argparser import ArgumentParserWithKeywordHooks
from refinery.lib.tools import documentation
class NopArgParser(ArgumentParserWithKeywordHooks):
def parse_args(self, args, namespace=None):
parsed, _ = self.parse_known_args(args, namespace=namespace)
return parsed
class nop(Unit):
"""
The unit generates the exact output that was received as input. All unknown arguments passed
to nop are completely ignored, which is different from the behavior of other units. As such,
nop can be used to comment out other units in longer refinery pipelines by simply prefixing a
command with nop.
"""
@classmethod
def argparser(cls, **keywords):
argp = NopArgParser(
keywords, prog=cls.name, description=documentation(cls), add_help=False)
argp.set_defaults(nesting=0)
return cls._interface(argp)
Classes
class NopArgParser (keywords, prog=None, description=None, add_help=True)
-
The refinery argument parser remembers the order of arguments in the property
order
. Furthermore, the parser can be initialized with a given set of keywords which will be parsed as if they had been passed as keyword arguments on the command line.Expand source code Browse git
class NopArgParser(ArgumentParserWithKeywordHooks): def parse_args(self, args, namespace=None): parsed, _ = self.parse_known_args(args, namespace=namespace) return parsed
Ancestors
- ArgumentParserWithKeywordHooks
- argparse.ArgumentParser
- argparse._AttributeHolder
- argparse._ActionsContainer
Class variables
var order
var keywords
Methods
def parse_args(self, args, namespace=None)
-
Expand source code Browse git
def parse_args(self, args, namespace=None): parsed, _ = self.parse_known_args(args, namespace=namespace) return parsed
Inherited members
class nop
-
The unit generates the exact output that was received as input. All unknown arguments passed to nop are completely ignored, which is different from the behavior of other units. As such, nop can be used to comment out other units in longer refinery pipelines by simply prefixing a command with nop.
Expand source code Browse git
class nop(Unit): """ The unit generates the exact output that was received as input. All unknown arguments passed to nop are completely ignored, which is different from the behavior of other units. As such, nop can be used to comment out other units in longer refinery pipelines by simply prefixing a command with nop. """ @classmethod def argparser(cls, **keywords): argp = NopArgParser( keywords, prog=cls.name, description=documentation(cls), add_help=False) argp.set_defaults(nesting=0) return cls._interface(argp)
Ancestors
Class variables
var required_dependencies
var optional_dependencies
Static methods
def argparser(**keywords)
-
Expand source code Browse git
@classmethod def argparser(cls, **keywords): argp = NopArgParser( keywords, prog=cls.name, description=documentation(cls), add_help=False) argp.set_defaults(nesting=0) return cls._interface(argp)
Inherited members