Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
ORG.Asm
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
23
Issues
23
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
ORG.Asm
ORG.Asm
Commits
830313ac
Commit
830313ac
authored
Apr 03, 2019
by
Eric Coissac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tag version 1.0.3
parent
9cd4c328
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
10 deletions
+9
-10
VERSION
VERSION
+1
-1
python/orgasm/assembler/_assembler.pyx
python/orgasm/assembler/_assembler.pyx
+3
-3
python/orgasm/assembler/_tango.pyx
python/orgasm/assembler/_tango.pyx
+4
-4
python/orgasm/commands/graph.py
python/orgasm/commands/graph.py
+0
-1
python/orgasm/version.py
python/orgasm/version.py
+1
-1
No files found.
VERSION
View file @
830313ac
1.0.1
\ No newline at end of file
1.0.3
\ No newline at end of file
python/orgasm/assembler/_assembler.pyx
View file @
830313ac
...
...
@@ -472,14 +472,14 @@ cdef class StemIterator:
if
circle
:
minabs
=
min
(
abs
(
i
)
for
i
in
cc
)
print
(
minabs
,
file
=
sys
.
stderr
)
#
print(minabs,file=sys.stderr)
if
minabs
in
cc
:
first
=
minabs
print
(
"in"
,
file
=
sys
.
stderr
)
#
print("in",file=sys.stderr)
else
:
# first = sons(graph,-minabs).pop()
first
=
-
minabs
print
(
"out"
,
file
=
sys
.
stderr
)
#
print("out",file=sys.stderr)
nn
=
first
path
=
[
first
]
lsequence
=
[]
...
...
python/orgasm/assembler/_tango.pyx
View file @
830313ac
...
...
@@ -193,7 +193,7 @@ cpdef AsmbGraph tango(Assembler self,
if
progress
and
(
icycle
%
50
)
==
0
and
sys
.
stderr
.
isatty
():
print
(
"%s : %d bp [%4.1f%% fake reads; Stack size: %8d / %6.2f %d Gene: %s "
%
(
wheel
[(
icycle
//
10
)
%
4
],
len
(
graph
)
/
2
,
int
(
len
(
graph
)
//
2
)
,
float
(
fake
)
/
(
len
(
graph
)
+
1
)
*
200.
,
len
(
seeds
),
growing
,
...
...
@@ -205,11 +205,11 @@ cpdef AsmbGraph tango(Assembler self,
lgraph
=
graph
.
nodeCount
()
if
logger
is
not
None
and
lgraph
!=
lastprint
and
lgraph
%
20000
==
0
:
lastprint
=
lgraph
logger
.
info
(
"%d bp [%4.1f%% fake reads; Stack size: %8d / %6.2f %d Gene: %s "
%
(
lgraph
//
2
,
logger
.
info
(
"%d bp [%4.1f%% fake reads; Stack size: %8d / %6.2f %d Gene: %s "
%
(
int
(
lgraph
//
2
)
,
float
(
fake
)
/
(
lgraph
+
1
)
*
200.
,
PyList_GET_SIZE
(
seeds
),
int
(
PyList_GET_SIZE
(
seeds
)
),
growing
,
delta
,
int
(
delta
)
,
lastgene
))
...
...
python/orgasm/commands/graph.py
View file @
830313ac
...
...
@@ -199,7 +199,6 @@ def run(config):
logger
=
config
[
'orgasm'
][
'logger'
]
output
=
getOutput
(
config
)
if
not
pathlib
.
Path
(
output
+
'.gml'
).
is_file
():
logger
.
error
(
"No assembly graph available"
)
sys
.
exit
(
1
)
...
...
python/orgasm/version.py
View file @
830313ac
major
=
1
minor
=
'0'
serial
=
'
1
'
serial
=
'
3
'
version
=
"%d.%s.%s"
%
(
major
,
minor
,
serial
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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