Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Create_db_and_tables.py #2

Open
wants to merge 1 commit into
base: Tallha-K-figures
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions Create_db_and_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)
'''
]

Expand Down