コード例 #1
0
ファイル: NGSPipeline.py プロジェクト: bjpop/ngs-pipeline
def main():
    options = getOptions()
    outputDir = options['dir']
    mkOutputDir(outputDir)
    initLogger(options['logging'])
    control = options['control']
    if control == 'sequential':
        sequential(options)
    elif control == 'parallel':
        parallel(options)
コード例 #2
0
ファイル: NGSPipeline.py プロジェクト: boratonAJ/ngs-pipeline
def main():
    options = getOptions()
    outputDir = options['dir']
    mkOutputDir(outputDir)
    initLogger(options['logging'])
    control = options['control']
    if control == 'sequential':
        sequential(options)
    elif control == 'parallel':
        parallel(options)
コード例 #3
0
def main():
    options = getOptions()
    initLogger(options['logging'])
    referenceDatabase(options)
コード例 #4
0
def main():
    options = getOptions()
    initLogger(options['logging'])
    referenceDatabase(options)