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
39109911
Commit
39109911
authored
Jan 23, 2020
by
Mathieu Giraud
Browse files
core/output.{h,cpp}: VidjilOuput, with_clones option
see
#3861
parent
da83fb01
Changes
2
Hide whitespace changes
Inline
Side-by-side
algo/core/output.cpp
View file @
39109911
...
...
@@ -129,10 +129,11 @@ CloneOutput* SampleOutput::getClone(junction junction)
// .vidjil json output
void
SampleOutputVidjil
::
out
(
ostream
&
s
)
void
SampleOutputVidjil
::
out
(
ostream
&
s
,
bool
with_clones
)
{
json
j_clones
;
if
(
with_clones
)
for
(
auto
it
:
clones
)
j_clones
.
push_back
(
it
.
second
->
toJson
());
...
...
algo/core/output.h
View file @
39109911
...
...
@@ -69,7 +69,7 @@ public:
class
SampleOutputVidjil
:
public
SampleOutput
{
public:
void
out
(
ostream
&
s
);
void
out
(
ostream
&
s
,
bool
with_clones
=
true
);
};
// AIRR
...
...
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