def make_plots(self):
"""
Make plots for :py:class:`~seqlib.seqlib.OverlapSeqLib` objects.
Creates plots of the location of merged read mismatches.
"""
if self.plots_requested:
SeqLib.make_plots(self)
pdf = PdfPages(os.path.join(self.plot_dir, "overlap_mismatches.pdf"))
overlap_merge_plot(self, pdf)
pdf.close()
评论列表
文章目录