- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有以下代码:
def main(args):
"""
Description of main
"""
print args
if __name__ == '__main__':
class DefaultListAction(argparse.Action):
CHOICES = ['ann','netmhcpan','comblib_sidney2008','consensus','smm','smmpmbec','netmhccons']
def __call__(self, parser, namespace, values, option_string=None):
if values:
for value in values:
if value not in self.CHOICES:
message = ("invalid choice: {0!r} (choose from {1})"
.format(value,
', '.join([repr(action)
for action in self.CHOICES])))
raise argparse.ArgumentError(self, message)
setattr(namespace, self.dest, values)
class DefaultListAction_Frames(argparse.Action):
CHOICES = ['R','F','6']
def __call__(self, parser, namespace, values, option_string=None):
if values:
for value in values:
if value not in self.CHOICES:
message = ("invalid choice: {0!r} (choose from {1})"
.format(value,
', '.join([repr(action)
for action in self.CHOICES])))
raise argparse.ArgumentError(self, message)
setattr(namespace, self.dest, values)
parser = argparse.ArgumentParser(description=__doc__, formatter_class=argparse.RawTextHelpFormatter)
parser.add_argument("-iedb",help="IEDB tools options: ann, comblib_sydney2008, consensus, netmhcpan, smm, smmpmbec, netmhccons", \
action=DefaultListAction, nargs='*', default=[''], \
metavar='iedb_tools')
parser.add_argument("-f",help="Frame to translate insert: (F)orward three frames, (R)everse three frames or (6) frames F + B. Default F.", \
action=DefaultListAction_Frames, nargs=1, default=['F'], \
metavar='frames')
args = parser.parse_args()
main(args)
基本上,有两个 argparse.ArgumentParser.add_argument()
,每个都将其中一个类作为 action
中的参数。
我的问题是如何分解 class DefaultListAction(argparse.Action)
和 class DefaultListAction_Frames(argparse.Action)
,因为两者之间的唯一区别是 CHOICES
参数。
我如何将这些 CHOICES
作为参数传递给 argparse.ArgumentParser.add_argument()
最佳答案
add_argument
choices
参数可用作 self.choices
。它没有在任何现有的 Action
子类中使用,但没有理由不使用它。
在将值传递给 Action.__call__
之前,解析器将使用它来测试这些值。在这个测试中似乎与您自己的使用没有冲突,但我不能排除这种可能性。
action.choices
也用于帮助格式化,尽管 metavar
参数覆盖了它。
class ListAction(argparse.Action):
# change self.CHOICES to self.choices
def __call__(self, parser, namespace, values, option_string=None):
if values:
for value in values:
if value not in self.choices:
message = ("invalid choice: {0!r} (choose from {1})"
.format(value,
', '.join([repr(action)
for action in self.choices])))
raise argparse.ArgumentError(self, message)
setattr(namespace, self.dest, values)
# should behave just like the -f argument
parser.add_argument("-g",help="Frame to translate insert: (F)orward three frames, (R)everse three frames or (6) frames F + B. Default F.", \
action=ListAction, nargs=1, default=['F'], \
choices=['R','F','6'])
帮助允许选择
作为元变量(用于说明目的)
2304:~/mypy$ python stack41562756.py -h
usage: stack41562756.py [-h] [-iedb [iedb_tools [iedb_tools ...]]] [-f frames]
[-g {R,F,6}]
optional arguments:
-h, --help show this help message and exit
-iedb [iedb_tools [iedb_tools ...]]
IEDB tools options: ann, comblib_sydney2008, consensus, netmhcpan, smm, smmpmbec, netmhccons
-f frames Frame to translate insert: (F)orward three frames, (R)everse three frames or (6) frames F + B. Default F.
-g {R,F,6} Frame to translate insert: (F)orward three frames, (R)everse three frames or (6) frames F + B. Default F.
解析action.choices
时只用在_check_value
中,由_get_values
调用。
def _check_value(self, action, value):
# converted value must be one of the choices (if specified)
if action.choices is not None and value not in action.choices:
args = {'value': value,
'choices': ', '.join(map(repr, action.choices))}
msg = _('invalid choice: %(value)r (choose from %(choices)s)')
raise ArgumentError(action, msg % args)
看起来你可以使用默认的 store
操作和 choices
:
parser.add_argument("-e",help="Frame to translate insert: (F)orward three frames, (R)everse three frames or (6) frames F + B. Default F.", \
nargs=1, default=['F'], choices=['R','F','6'])
我在您的自定义操作中没有发现任何不同之处。但我还没有详细研究或测试它们。
=================
另一种方法是仅对您的一个新 Action 进行子类化:
class DefaultListAction_Frames(DefaultListAction):
CHOICES = ['R','F','6','X']
如果__call__
方法相同,则不必重复。
另一种方法是使用工厂函数为每个 DefaultListAction
操作赋予其自己的 CHOICES
属性。 FileType
就是这样一个类 - 它创建了一个自定义的 type
函数。
type
函数是另一个您可以自定义值检查的地方。 type
用于值转换和测试,而如果您想以某种特殊方式保存值,则自定义 Action 类最有用。
关于python - 如何通过分解两个非常相似的类来在 Argparse 的类中传递参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41562756/
我正在尝试在 R 中计算任意 N x J 矩阵 S 的投影矩阵 P: P = S (S'S) ^ -1 S' 我一直在尝试使用以下函数来执行此操作: P 概述 solve 基于一般方阵的 LU 分解
所以我有一个包含数千行的非常旧的文件(我猜是手工生成的),我正试图将它们移动到一个 rdb 中,但是这些行没有转换为列的格式/模式。例如,文件中的行如下所示: blah blahsdfas
这实际上只是一个“最佳实践”问题...... 我发现在开发应用程序时,我经常会得到很多 View 。 将这些 View 分解为几个 View 文件是常见的做法吗?换句话说......而不只是有view
使用以下函数foo()作为简单示例,如果可能的话,我想将...中给出的值分配给两个不同的函数。 foo args(mapply) function (FUN, ..., MoreArgs = NUL
正面案例:可以进入列表 groovy> println GroovySystem.version groovy> final data1 = [[99,2] , [100,4]] groovy> d
省略素数计算方法和因式分解方法的详细信息。 为什么要进行因式分解? 它的应用是什么? 最佳答案 哇,这个线程里有这么多争斗。 具有讽刺意味的是,这个问题有一个主要的有效答案。 因式分解实际上在加密/解
术语“分解不良”和“重构”程序是什么意思?你能举一个简单的例子来理解基本的区别吗? 最佳答案 重构是一种通用技术,可以指代许多任务。它通常意味着清理代码、去除冗余、提高代码质量和可读性。 分解不良代码
我以前有,here ,表明 C++ 函数不容易在汇编中表示。现在我有兴趣以一种或另一种方式阅读它们,因为 Callgrind 是 Valgrind 的一部分,在组装时显示它们已损坏。 所以我想要么破坏
最初,我一直在打开并同时阅读两个文件,内容如下: with open(file1, 'r') as R1: with open(file2, 'r') as R2: ### m
我正在尝试摆脱 标签和标签内的内容使用 beatifulsoup。我去看了文档,似乎是一个非常简单的调用函数。有关该功能的更多信息是 here .这是我到目前为止解析的 html 页面的内容...
给定一个 float ,我想将它分成几个部分的总和,每个部分都有给定的位数。例如,给定 3.1415926535 并要求将其分成以 10 为基数的部分,每部分 4 位数字,它将返回 3.141 + 5
我的 JSF 项目被部署为一个 EAR 文件。它还包括一些 war 文件。我需要 EAR 的分解版本(包括分解的内部 WAR)。 有什么工具可以做到吗? 最佳答案 以编程方式还是手动? EAR 和 W
以下函数不使用行透视进行 LU 分解。 R 中是否有一个现有的函数可以使用行数据进行 LU 分解? > require(Matrix) > expand(lu(matrix(rnorm(16),4,4
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 提供事实和引用来回答它. 7年前关闭。 Improve this
我正在使用登记数据进行病假研究。从登记册上,我只得到了每个人的病假开始日期和结束日期。但日期并没有逐年分割。例如,对于人 A,只有开始日期 (1-may-2016) 和结束日期 (14-feb-201
我发现以下 R 代码使用 qr 因式分解无法恢复原始矩阵。我不明白为什么。 a <- matrix(runif(180),ncol=6) a[,c(2,4)] <- 0 b <- qr(a) d <-
我正在尝试检测气候数据时间序列中的异常值,其中一些缺失的观测值。在网上搜索我发现了许多可用的方法。其中,STL 分解似乎很有吸引力,因为它去除了趋势和季节性成分并研究了其余部分。阅读 STL: A S
我想使用 javascript 分解数组中的 VIN,可能使用正则表达式,然后使用某种循环... 以下是读取 VIN 的方法: http://forum.cardekho.com/topic/600-
我正在研究 Databricks 示例。数据框的架构如下所示: > parquetDF.printSchema root |-- department: struct (nullable = true
我正在尝试简化我的代码并将其分解为多个文件。例如,我设法做到了: socket.once("disconnect", disconnectSocket); 然后有一个名为 disconnectSock
我是一名优秀的程序员,十分优秀!