Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backend
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Bioinformatics
backend
Commits
c69034a2
There was an error fetching the commit references. Please try again later.
Commit
c69034a2
authored
1 year ago
by
Michal Petrovič
Browse files
Options
Downloads
Patches
Plain Diff
add Cpg Analysis
parent
9b6b560f
1 merge request
!5
Resolve "Implement CpG isladns analysis"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
build/resources/main/db/migration/V15__Create_cpg_analyses_table.sql
+10
-0
10 additions, 0 deletions
...rces/main/db/migration/V15__Create_cpg_analyses_table.sql
with
10 additions
and
0 deletions
build/resources/main/db/migration/V15__Create_cpg_analyses_table.sql
0 → 100644
+
10
−
0
View file @
c69034a2
CREATE
TABLE
cpg_analyses
(
id
uuid
references
analyses
(
id
),
min_window_size
INTEGER
,
min_gc_percentage
DOUBLE
PRECISION
,
min_observed_to_expected_cpg
DOUBLE
PRECISION
,
min_island_merge_gap
INTEGER
,
first_nucleotide
CHAR
(
1
),
second_nucleotide
CHAR
(
1
),
primary
key
(
id
)
);
This diff is collapsed.
Click to expand it.
Preview
0%
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