gfviewer 2.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
gfviewer/__init__.py ADDED
@@ -0,0 +1,18 @@
1
+ """GFViewer: visualize the localization of multigene families across chromosomes.
2
+
3
+ The package is organized as:
4
+
5
+ * :mod:`gfviewer.genome` -- read chromosome lengths (FASTA / .fai / chrom.sizes / table)
6
+ * :mod:`gfviewer.io` -- unified feature loader (table / BED / GFF3 / GTF) + validation
7
+ * :mod:`gfviewer.palette` -- programmatic colour-palette generation
8
+ * :mod:`gfviewer.style` -- :class:`StyleConfig` and YAML/JSON style files
9
+ * :mod:`gfviewer.render` -- matplotlib ideogram renderer (PDF/SVG/PNG/JPG/...)
10
+ * :mod:`gfviewer.analytics` -- per-family statistics, clustering, localization bias
11
+ * :mod:`gfviewer.cli` -- command-line interface
12
+ """
13
+
14
+ __version__ = "2.0.0"
15
+
16
+ from gfviewer.errors import GFViewerError, InputValidationError # noqa: E402
17
+
18
+ __all__ = ["__version__", "GFViewerError", "InputValidationError"]