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

src/db_utils/config.py: modification of prefixes gin to cin in Config.table +...

src/db_utils/config.py: modification of prefixes gin to cin in Config.table + creation of Config.bed_exon and Config.bed_gene variable
parent 7d289400
No related branches found
No related tags found
No related merge requests found
...@@ -17,13 +17,15 @@ class Config: ...@@ -17,13 +17,15 @@ class Config:
A class containing every parameters used in the submodule db_utils A class containing every parameters used in the submodule db_utils
""" """
db_file = Path(__file__).parents[2] / "results" / 'chia_pet_database.db' db_file = Path(__file__).parents[2] / "results" / 'chia_pet_database.db'
tables = ["gin_gene", "gin_exon", "gin_frequency", "gin_interaction"] tables = ["cin_gene", "cin_exon", "cin_frequency", "cin_interaction"]
bed_orf = Path(__file__).parents[1] / "data" / "exon_orf.bed" bed_exon = Path(__file__).parents[2] / 'data' / 'bed' / 'exon.bed'
bed_exon = Path(__file__).parents[1] / "data" / "exon_freq.bed" bed_gene = Path(__file__).parents[2] / 'data' / 'bed' / 'gene.bed'
output = Path(__file__).parents[2] / "results" # bed_orf = Path(__file__).parents[1] / "data" / "exon_orf.bed"
exon_intern = Path(__file__).parents[1] / "data" / "exon_intern.bed" # bed_exon_freq = Path(__file__).parents[1] / "data" / "exon_freq.bed"
ctrl_exon_file = output / "CTRL_exons.txt" # output = Path(__file__).parents[2] / "results"
exon_file = output / "exons.txt" # exon_intern = Path(__file__).parents[1] / "data" / "exon_intern.bed"
gene_file = Path(__file__).parents[1] / "data" / "genes.csv" # ctrl_exon_file = output / "CTRL_exons.txt"
frequency_file = output / "frequency.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.
Finish editing this message first!
Please register or to comment