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

Merge branch 'master' of gitbio.ens-lyon.fr:LBMC/regards/chia-pet_network

parents d5f6cb78 7006fd0b
No related branches found
No related tags found
No related merge requests found
......@@ -85,6 +85,7 @@ def create_cin_gene_frequency_table(conn: sqlite3.Connection) -> None:
c.execute('''CREATE TABLE IF NOT EXISTS cin_gene_frequency
([id] INT NOT NULL,
[ft] VARCHAR(3) NOT NULL,
[ft_type] VARCHAR(3) NOT NULL,
[id_gene] INT NOT NULL,
[frequency] FLOAT NULL,
PRIMARY KEY ([id]),
......@@ -101,7 +102,8 @@ def create_cin_exon_frequency_table(conn: sqlite3.Connection) -> None:
c = conn.cursor()
c.execute('''CREATE TABLE IF NOT EXISTS cin_exon_frequency
([id] INT NOT NULL,
[ft] VARCHAR(3) NOT NULL,
[ft] VARCHAR(50) NOT NULL,
[ft_type] VARCHAR(10) NOT NULL,
[id_exon] VARCHAR(30) NOT NULL,
[frequency] FLOAT NULL,
PRIMARY KEY ([id]),
......
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