Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
00a38e40
Commit
00a38e40
authored
Jan 13, 2017
by
Mikaël Salson
Browse files
automaton.h{,pp}: Missing seed parameter for getResults()
parent
17056853
Changes
2
Show whitespace changes
Inline
Side-by-side
algo/core/automaton.h
View file @
00a38e40
...
...
@@ -182,7 +182,7 @@ public:
// From IKmerStore
vector
<
Info
>
getResults
(
const
seqtype
&
seq
,
bool
no_revcomp
=
false
);
vector
<
Info
>
getResults
(
const
seqtype
&
seq
,
bool
no_revcomp
=
false
,
string
seed
=
""
);
Info
&
get
(
seqtype
&
word
)
;
Info
&
operator
[](
seqtype
&
word
);
...
...
algo/core/automaton.hpp
View file @
00a38e40
...
...
@@ -251,7 +251,7 @@ void *PointerACAutomaton<Info>::next(void *state, char c) {
template
<
class
Info
>
vector
<
Info
>
PointerACAutomaton
<
Info
>::
getResults
(
const
seqtype
&
seq
,
bool
no_revcomp
)
{
vector
<
Info
>
PointerACAutomaton
<
Info
>::
getResults
(
const
seqtype
&
seq
,
bool
no_revcomp
,
string
seed
)
{
UNUSED
(
no_revcomp
);
// TODO: what should we do with several info at the same place?
// for now they are overwritten
...
...
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