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

Merge branch 'master' of gitbio.ens-lyon.fr:LBMC/regards/chia-pet_network

parents c0fa95a3 1dda100c
Branches
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ Description: Populate the gin database ...@@ -9,7 +9,7 @@ Description: Populate the gin database
from .config import Config from .config import Config
from ..logging_conf import logging_def from ..logging_conf import logging_def
from .db_creation import main_create_db from .db_creation import main_create_db
from .creation_of_exon_table import main_fill_exon_n_gene from .fill_exon_n_gene_table import main_fill_exon_n_gene
# from .create_freq_table import create_freq_table # from .create_freq_table import create_freq_table
# from .populate_database import populate # from .populate_database import populate
import logging import logging
......
...@@ -7,9 +7,6 @@ Description: Configuration class ...@@ -7,9 +7,6 @@ Description: Configuration class
""" """
from pathlib import Path from pathlib import Path
from typing import Dict, Any
import logging
import logging.config
class Config: class Config:
...@@ -20,12 +17,4 @@ class Config: ...@@ -20,12 +17,4 @@ class Config:
tables = ["cin_gene", "cin_exon", "cin_frequency", "cin_interaction"] tables = ["cin_gene", "cin_exon", "cin_frequency", "cin_interaction"]
bed_exon = Path(__file__).parents[2] / 'data' / 'bed' / 'exon.bed' bed_exon = Path(__file__).parents[2] / 'data' / 'bed' / 'exon.bed'
bed_gene = Path(__file__).parents[2] / 'data' / 'bed' / 'gene.bed' bed_gene = Path(__file__).parents[2] / 'data' / 'bed' / 'gene.bed'
# bed_orf = Path(__file__).parents[1] / "data" / "exon_orf.bed"
# bed_exon_freq = Path(__file__).parents[1] / "data" / "exon_freq.bed"
# output = Path(__file__).parents[2] / "results"
# exon_intern = Path(__file__).parents[1] / "data" / "exon_intern.bed"
# ctrl_exon_file = output / "CTRL_exons.txt"
# exon_file = output / "exons.txt"
# gene_file = Path(__file__).parents[1] / "data" / "genes.csv"
# frequency_file = output / "frequency.txt"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment