docopt を使用してスクリプトに次の引数を使用します
Usage:
GaussianMixture.py --snpList=File --callingRAC=File
Options:
-h --help Show help.
snpList list snp txt
callingRAC results snp
スクリプトに条件付きの結果をもたらす引数を追加したいと思います: データを修正するか、データを修正しないでください。何かのようなもの :
Usage:
GaussianMixture.py --snpList=File --callingRAC=File correction(--0 | --1)
Options:
-h --help Show help.
snpList list snp txt
callingRAC results snp
correction 0 : without correction | 1 : with correction
if
そして、いくつかの関数にスクリプトを追加したいと思います
def func1():
if args[correction] == 0:
datas = non_corrected_datas
if args[correction] == 1:
datas = corrected_datas
しかし、使用法にもスクリプトにも書き方がわかりません。