From 2efea76cb53a1d305fc27b312e1c405e3439ab28 Mon Sep 17 00:00:00 2001 From: Tallha-K <124261918+Tallha-K@users.noreply.github.com> Date: Sat, 31 Aug 2024 22:02:13 +0100 Subject: [PATCH] Update Create_db_and_tables.py --- Create_db_and_tables.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Create_db_and_tables.py b/Create_db_and_tables.py index 5c10098..f19282a 100644 --- a/Create_db_and_tables.py +++ b/Create_db_and_tables.py @@ -18,20 +18,6 @@ species_name TEXT UNIQUE NOT NULL, alternative_species_id TEXT UNIQUE ) - ''', - ''' - CREATE TABLE differential_expression ( - gene_id TEXT, - log2FoldChange FLOAT, - adj_p_value FLOAT, - condition_1 INTEGER, - condition_2 INTEGER, - study_id TEXT, - FOREIGN KEY (gene_id) REFERENCES genes (gene_id), - FOREIGN KEY (condition_1) REFERENCES runs (condition), - FOREIGN KEY (condition_2) REFERENCES runs (condition), - FOREIGN KEY (study_id) REFERENCES studies (study_id) - ) ''' ]