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

src/db_utils/fill_splicing_lore_tables.py: update opening ase_event file

parent 481eae5e
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ def load_ase_event() -> pd.DataFrame:
:return: The dataframe of splicing lore alternative splicing events
"""
logging.debug('loading cin_project_splicing_lore')
df = pd.read_csv(Config.ase_event_file, sep="\t")
df = pd.read_csv(Config.ase_event_file, sep="\t", dtype={"chromosome": 'object'})
df.drop(["gene_symbol", "chromosome", "start", "stop", "exons_flanquants"],
inplace=True, axis=1)
cols = list(df.columns)
......
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