From 2ca8c0eebf584928c8d2c3fc678f2225ea08d0cb Mon Sep 17 00:00:00 2001 From: cramakri <cramakri> Date: Wed, 13 Jul 2011 13:49:23 +0000 Subject: [PATCH] LMS-2391 Fixed missing statement in script -- all created data sets are now contained by the technology-specific data set. SVN: 22131 --- eu_basynthec/dist/etc/growth-profiles/data-set-handler.py | 2 +- eu_basynthec/dist/etc/transcriptomics/data-set-handler.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eu_basynthec/dist/etc/growth-profiles/data-set-handler.py b/eu_basynthec/dist/etc/growth-profiles/data-set-handler.py index 1bffee7cc3e..f7f48121bec 100644 --- a/eu_basynthec/dist/etc/growth-profiles/data-set-handler.py +++ b/eu_basynthec/dist/etc/growth-profiles/data-set-handler.py @@ -117,7 +117,7 @@ set_data_type(tsv_split_dataset) convert_data_to_split_tsv(tr, tsv_split_dataset, "tsv") # Make the original contain these -contained_codes = [original_dataset.getDataSetCode(), tsv_dataset.getDataSetCode()] +contained_codes = [original_dataset.getDataSetCode(), tsv_dataset.getDataSetCode(), tsv_split_dataset.getDataSetCode()] dataset.setContainedDataSetCodes(contained_codes) diff --git a/eu_basynthec/dist/etc/transcriptomics/data-set-handler.py b/eu_basynthec/dist/etc/transcriptomics/data-set-handler.py index 55c20c1e6eb..c3a30de5479 100644 --- a/eu_basynthec/dist/etc/transcriptomics/data-set-handler.py +++ b/eu_basynthec/dist/etc/transcriptomics/data-set-handler.py @@ -184,7 +184,7 @@ set_data_type(tsv_split_dataset) convert_data_to_split_tsv(tr, dataStart[0], dataStart[1], tsv_split_dataset, "tsv") # Make the original contain these -contained_codes = [original_dataset.getDataSetCode(), tsv_dataset.getDataSetCode()] +contained_codes = [original_dataset.getDataSetCode(), tsv_dataset.getDataSetCode(), tsv_split_dataset.getDataSetCode()] dataset.setContainedDataSetCodes(contained_codes) -- GitLab