Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ChIA-PET_network
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LBMC
ReGArDS
ChIA-PET_network
Commits
9bde3f11
Commit
9bde3f11
authored
5 years ago
by
alapendr
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of gitbio.ens-lyon.fr:LBMC/regards/chia-pet_network
parents
d5f6cb78
7006fd0b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/db_utils/db_creation.py
+3
-1
3 additions, 1 deletion
src/db_utils/db_creation.py
with
3 additions
and
1 deletion
src/db_utils/db_creation.py
+
3
−
1
View file @
9bde3f11
...
...
@@ -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]),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment