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

db_creation.py: modify force as weight

parent bad815c7
Branches
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@ def create_cin_exon_interaction_table(conn: sqlite3.Connection) -> None:
c = conn.cursor()
c.execute('''CREATE TABLE IF NOT EXISTS cin_exon_interaction
([id] INT NOT NULL,
[force] INT NOT NULL,
[weight] INT NOT NULL,
[exon1] VARCHAR(30) NOT NULL,
[exon2] VARCHAR(30) NOT NULL,
[id_project] INT NOT NULL,
......@@ -141,7 +141,7 @@ def create_cin_gene_interaction_table(conn: sqlite3.Connection) -> None:
c = conn.cursor()
c.execute('''CREATE TABLE IF NOT EXISTS cin_gene_interaction
([id] INT NOT NULL,
[force] INT NOT NULL,
[weight] INT NOT NULL,
[gene1] INT NOT NULL,
[gene2] INT NOT NULL,
[id_project] INT NOT NULL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment