我是靠谱客的博主 飘逸爆米花,最近开发中收集的这篇文章主要介绍python 参数解析器_Python参数解析器,在h之前引发异常,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我不知道为什么会这样。我的理解是用户至少有机会在执行默认操作之前使用-h。import os, sys, argparse

class argument_parser():

# call on all our file type parsers in the sequence_anlysis_method

def __init__(self):

self.db_directory = os.path.dirname(os.path.abspath(sys.argv[0]))

"""A customized argument parser that does a LOT of error checking"""

self.parser = argparse.ArgumentParser(

prog="igblast")

general = self.parser.add_argument_group(

title="nGeneral Settings")

general.add_argument(

"-x", '--executable',

default="/usr/bin/igblastn",

type=self._check_if_executable_exists,

help="The location of the executable, default is /usr/bin/igblastn")

self.args = self.parser.parse_args()

def _check_if_executable_exists(self,x_path):

if not os.path.exists(x_path):

msg = "path to executable {0} does not exist, use -h for helpn".format(x_path)

raise argparse.ArgumentTypeError(msg)

if not os.access(x_path, os.R_OK):

msg1 = "executable {0} does have not permission to runn".format(x_path)

raise argparse.ArgumentTypeError(msg1)

else:

return x_path

if __name__ == '__main__':

argument_class = argument_parser()

现在,如果/usr/bin/igblastn在那里,那么就可以了,但是如果不是的话,只要调用这个程序就会在selfu check_中引发异常,如果有可执行文件。

^{pr2}$

根据我的理解,用户总是有机会运行--help或-h,或者在采取任何导致此参数错误的操作之前。我对arg解析器的理解不清楚吗?

最后

以上就是飘逸爆米花为你收集整理的python 参数解析器_Python参数解析器,在h之前引发异常的全部内容,希望文章能够帮你解决python 参数解析器_Python参数解析器,在h之前引发异常所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部