Skip to content

Commit

Permalink
Fixed lineage_wf CLI bug causing crash due to missing coverage_file a…
Browse files Browse the repository at this point in the history
…rgument
  • Loading branch information
donovan-h-parks committed Jan 3, 2018
1 parent ee3a41d commit 8902888
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
2 changes: 2 additions & 0 deletions checkm/VERSION
@@ -1,3 +1,5 @@
1.0.11
- fix to lineage_wf CLI regarding missing coverage_file argument
1.0.10
- updated version number for pypi
1.0.9
Expand Down
13 changes: 11 additions & 2 deletions checkm/main.py
Expand Up @@ -413,8 +413,16 @@ def qa(self, options):
)

self.logger.info('')
RP.printSummary(options.out_format, aai, binIdToBinMarkerSets, options.bIndividualMarkers, options.coverage_file, options.bTabTable, options.file, anaFolder=options.analyze_folder)
RP.cacheResults(options.analyze_folder, binIdToBinMarkerSets, options.bIndividualMarkers)
RP.printSummary(options.out_format,
aai, binIdToBinMarkerSets,
options.bIndividualMarkers,
options.coverage_file,
options.bTabTable,
options.file,
anaFolder=options.analyze_folder)
RP.cacheResults(options.analyze_folder,
binIdToBinMarkerSets,
options.bIndividualMarkers)

if options.file != '':
self.logger.info(' QA information written to: ' + options.file)
Expand Down Expand Up @@ -1240,6 +1248,7 @@ def parseOptions(self, options):
options.out_format = 1
options.bAlignTopHit = False
options.exclude_markers = None
options.coverage_file = None

self.tree(options)
self.lineageSet(options)
Expand Down

0 comments on commit 8902888

Please sign in to comment.