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
vidjil
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1,712
Issues
1,712
List
Boards
Labels
Service Desk
Milestones
Merge Requests
87
Merge Requests
87
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vidjil
vidjil
Commits
2e342bed
Commit
2e342bed
authored
Mar 24, 2020
by
Mikaël Salson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kmerstore: Add isAmbiguous function for compatibility reasons
parent
26b013eb
Pipeline
#130976
failed with stages
in 24 minutes and 41 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
algo/core/kmerstore.cpp
algo/core/kmerstore.cpp
+3
-0
algo/core/kmerstore.h
algo/core/kmerstore.h
+5
-0
No files found.
algo/core/kmerstore.cpp
View file @
2e342bed
...
...
@@ -61,6 +61,9 @@ bool Kmer::isNull() const{
bool
Kmer
::
isUnknown
()
const
{
return
false
;
}
bool
Kmer
::
isAmbiguous
()
const
{
return
false
;
}
ostream
&
operator
<<
(
ostream
&
os
,
const
Kmer
&
kmer
)
{
os
<<
kmer
.
count
<<
","
;
...
...
algo/core/kmerstore.h
View file @
2e342bed
...
...
@@ -52,6 +52,11 @@ public:
* it only there for a reason of compatibility with KmerAffect)
*/
bool
isUnknown
()
const
;
/**
* @return true iff the kmer is ambiguous (which doesn't make sense here but
* it only there for a reason of compatibility with KmerAffect)
*/
bool
isAmbiguous
()
const
;
}
;
ostream
&
operator
<<
(
ostream
&
os
,
const
Kmer
&
kmer
);
bool
operator
==
(
const
Kmer
&
k1
,
const
Kmer
&
k2
);
...
...
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