def __init__(self, pattern="**/summary.json", output_filename=None,
verbose=True, **kargs):
super().__init__()
from sequana import sequana_debug_level
sequana_debug_level(level="INFO")
if verbose is False:
sequana_debug_level(level="WARNING")
logger.info("Sequana Summary is still a tool in progress and have been " +
" tested with the quality_control pipeline only for now.")
self.title = "Sequana multiple summary"
self.devtools = DevTools()
self.filenames = list(glob.iglob(pattern, recursive=True))
self.summaries = [ReadSummary(filename) for filename in self.filenames]
self.projects = [ReadSummary(filename).data['project'] for filename in self.filenames]
self.create_report_content()
self.create_html(output_filename)
评论列表
文章目录