From d3e90aca72c86115e81967279f771c01cd801c86 Mon Sep 17 00:00:00 2001 From: Fontrodona Nicolas <nicolas.fontrodona@ens-lyon.fr> Date: Wed, 10 Jun 2020 14:30:15 +0200 Subject: [PATCH] src/nt_composition/__main__.py: launches the main parts of nt_correlation submodule --- src/nt_composition/__main__.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/nt_composition/__main__.py diff --git a/src/nt_composition/__main__.py b/src/nt_composition/__main__.py new file mode 100644 index 00000000..6209e8b3 --- /dev/null +++ b/src/nt_composition/__main__.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python3 + +# -*- coding: UTF-8 -*- + +""" +Description: This file contains main function used to analyse the \ +nucleotide composition of co-localised exons +""" + +from .make_nt_correlation import create_all_frequency_figures +from .get_projects_interaction import get_interactions_number + + +def launcher(logging_level: str = "DISABLE"): + """ + Launch the creation of density file. + + :param logging_level: The level of data to display + """ + # get_interactions_number(logging_level) + create_all_frequency_figures(logging_level) + + +launcher('DEBUG') \ No newline at end of file -- GitLab