Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cnvpipelines
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
Container Registry
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SVdetection
cnvpipelines
Commits
3fb68ce8
Commit
3fb68ce8
authored
6 years ago
by
Floreal Cabanettes
Browse files
Options
Downloads
Patches
Plain Diff
Change pindel window size to 10M with a overlap change from 100K to 50K
parent
a554a2c4
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
snakecnv/detection.snk
+4
-4
4 additions, 4 deletions
snakecnv/detection.snk
with
4 additions
and
4 deletions
snakecnv/detection.snk
+
4
−
4
View file @
3fb68ce8
...
...
@@ -54,13 +54,13 @@ def get_chr_batches(ref_file, chr):
# Make ranges:
groups = []
start = 1
end = min(start +
1
9999999, len_chr)
while (len_chr - end + 1 >=
1
99
0
0000) or (len_chr + 1 == end):
end = min(start + 9999999, len_chr)
while (len_chr - end + 1 >= 99
5
0000) or (len_chr + 1 == end):
groups.append((start, end))
if len_chr + 1 == end:
break
start = end - 9999
9
end = min(start +
1
9999999, len_chr + 1)
start = end - 9999
end = min(start + 9999999, len_chr + 1)
last_group = (start, len_chr + 1)
if last_group not in groups:
groups.append(last_group)
...
...
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