From 0c0e97bc42f6d7e437e15e28688f6ff0c564a751 Mon Sep 17 00:00:00 2001 From: mjeppesen3 <mjeppesen3@huskers.unl.edu> Date: Wed, 28 Feb 2024 15:51:05 -0600 Subject: [PATCH] Update main.py --- Synthetic data creation scripts/main.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Synthetic data creation scripts/main.py b/Synthetic data creation scripts/main.py index 02c5bc74..2b158f83 100644 --- a/Synthetic data creation scripts/main.py +++ b/Synthetic data creation scripts/main.py @@ -1,4 +1,5 @@ -"""Driver script to create all of the mzML files with the statistially significant peaks. +"""Driver script to create all of the mzML files with the statistially significant peaks. Running this script creates +the original dataset used in the MVAPCK paper. Author: Chris Jurich <cjurich2@huskers.unl.edu> @@ -26,7 +27,8 @@ def report_significant( mapper : Dict[str,bool]) -> None: print(f"RNG seed: {RNG_SEED}") def main(): - #"""Driver function that reads in idealized files, creates""" + #"""Driver function that reads in idealized files, creates all nine versions of the simulated dataset. Values + for replicate setup, percent missing and noise are hard-coded but are altered here.""" np.random.seed( 100 ) eics = pickle.load(open("data/eics-cpy2.pickle", "rb")) rts = eics[0].rts() -- GitLab