From ecf9173cd9c96bb8e3b99c095a04af75e0725a1f Mon Sep 17 00:00:00 2001 From: AxelCarayon <axel.carayon@gmail.com> Date: Wed, 2 Feb 2022 11:39:45 +0100 Subject: [PATCH] fix : ajout le fichier d'instruction dans le yaml --- registerExperiment.py | 1 + 1 file changed, 1 insertion(+) diff --git a/registerExperiment.py b/registerExperiment.py index eaddf2a..ce5ff8b 100644 --- a/registerExperiment.py +++ b/registerExperiment.py @@ -182,6 +182,7 @@ def writeInYaml() -> None: cur_yaml.update({"inputs":inputFiles}) cur_yaml.update({"outputs":outputFiles}) cur_yaml.update({"params":paramsFiles}) + cur_yaml.update({"instruction":instructionFile}) checksums = {"checksums":genChecksums()} cur_yaml.update(checksums) with open('experimentResume.yaml', 'w') as yamlFile: -- GitLab