Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
genotoul-bioinfo
D-GENIES
Commits
6e743d0c
Commit
6e743d0c
authored
Feb 01, 2018
by
Floreal Cabanettes
Browse files
Fix summary line coordinates
parent
98d3d3b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/dgenies/lib/paf.py
View file @
6e743d0c
...
...
@@ -493,8 +493,8 @@ class Paf:
for
cat
in
cats
:
for
line
in
self
.
lines
[
cat
]:
start
=
line
[
0
]
end
=
line
[
1
]
+
1
start
=
min
(
line
[
0
]
,
line
[
1
])
end
=
max
(
line
[
0
],
line
[
1
]
)
+
1
position_idy
[
start
:
end
]
=
[
cat
]
*
(
end
-
start
)
counts
=
Counter
(
position_idy
)
...
...
Write
Preview
Supports
Markdown
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!
Cancel
Please
register
or
sign in
to comment