Skip to content
Snippets Groups Projects
Commit ab3f9621 authored by alapendr's avatar alapendr
Browse files

__main__.py: main update to launch all the figures

parent ace154fd
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,9 @@ expected
"""
from . exons_interactions import launch_figures_creation
from . exons_interactions import get_info_from_database
import sqlite3
from .config_figures import Config
def launcher():
......@@ -17,7 +20,13 @@ def launcher():
regulated by a splicing factor are more often co-localized than randomly \
expected
"""
launch_figures_creation()
list_sf = get_info_from_database(sqlite3.connect(Config.db_file),
"""SELECT sf_name
FROM cin_project_splicing_lore""")
list_sf = list(set(list_sf))
for sf in list_sf:
launch_figures_creation(sf)
launcher()
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