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
2a55bc2e
Commit
2a55bc2e
authored
Feb 17, 2021
by
Mathieu Giraud
Browse files
vidjil.cpp: --gz also outputs .windows.fa.gz files
parent
5512e8be
Changes
1
Hide whitespace changes
Inline
Side-by-side
algo/vidjil.cpp
View file @
2a55bc2e
...
...
@@ -1247,12 +1247,11 @@ int main (int argc, char **argv)
//$$ Output windows
//////////////////////////////////
string
f_all_windows
=
out_dir
+
f_basename
+
WINDOWS_FILENAME
;
cout
<<
" ==> "
<<
f_all_windows
<<
endl
<<
endl
;
ofstream
out_all_windows
(
f_all_windows
.
c_str
());
windowsStorage
->
printSortedWindows
(
out_all_windows
);
string
f_all_windows
=
out_dir
+
f_basename
+
WINDOWS_FILENAME
;
std
::
ostream
*
out_all_windows
=
new_ofgzstream
(
f_all_windows
,
out_gz
);
windowsStorage
->
printSortedWindows
(
*
out_all_windows
);
delete
out_all_windows
;
cout
<<
endl
;
//$$ compute, display and store diversity measures
json
jsonDiversity
=
windowsStorage
->
computeDiversity
(
nb_segmented
);
...
...
Mathieu Giraud
@magiraud
mentioned in merge request
!917 (merged)
·
Feb 18, 2021
mentioned in merge request
!917 (merged)
mentioned in merge request !917
Toggle commit list
Mathieu Giraud
@magiraud
mentioned in commit
986899bb
·
Feb 18, 2021
mentioned in commit
986899bb
mentioned in commit 986899bbe536b7f50c13661a507d36578b778b0c
Toggle commit list
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