Skip to content
Snippets Groups Projects
Commit d3e90aca authored by nfontrod's avatar nfontrod
Browse files

src/nt_composition/__main__.py: launches the main parts of nt_correlation submodule

parent 322c33d8
No related branches found
No related tags found
No related merge requests found
#!/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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment