Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
VEBER Philippe
codepi
Commits
aa74e39b
Commit
aa74e39b
authored
Aug 31, 2018
by
LANORE Vincent
Browse files
elapsed_time file now contains the date so as not to be overwritten on re-running the pipeline.
parent
c8363867
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lib/pipeline.ml
lib/pipeline.ml
+1
-1
No files found.
lib/pipeline.ml
View file @
aa74e39b
...
...
@@ -390,7 +390,7 @@ let validation_main ~outdir ?(indir = "") ?(ns = 0) ?(np = 2) ?(mem = 2) ~previe
in
let
repo
=
(
Repo
.
shift
"Simulated_datasets"
sim_repo_l
#
repo
)
@
(
Repo
.
shift
"Real_datasets"
repo_real_trees
)
in
Repo
.
build
~
outdir
~
np
~
mem
:
(
`GB
mem
)
~
logger
repo
;
time_logger
#
report
sim_repo_l
#
dataset_results
(
Filename
.
concat
outdir
"elapsed_time.tsv"
)
time_logger
#
report
sim_repo_l
#
dataset_results
(
Filename
.
concat
outdir
(
"elapsed_time
_"
^
(
Unix
.
time
()
|>
int_of_float
|>
string_of_int
)
^
"
.tsv"
)
)
let
simulation_command
=
let
open
Command
.
Let_syntax
in
...
...
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