diff --git a/src/figures_utils/__main__.py b/src/figures_utils/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..c24509bab891da0b22cf5986b8b754bce4d72580 --- /dev/null +++ b/src/figures_utils/__main__.py @@ -0,0 +1,23 @@ +#!/usr/bin/env python3 + +# -*- coding: UTF-8 -*- + +""" +Description: Launch the creation of figures saying if exons \ +regulated by a splicing factor are more often co-localized than randomly \ +expected +""" + +from . exons_interactions import launch_figures_creation + + +def launcher(): + """ + Launch the creation of figures saying if exons \ + regulated by a splicing factor are more often co-localized than randomly \ + expected + """ + launch_figures_creation() + + +launcher()