diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..125b4c9e3585ac7d0ed5bf8a8d85cc57126445d6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +*.wav +*.zip +utils/__* +*__pycache__* +acodet/_* +acodet/src/tmp_* +acodet/src/models/Humpback_20221130/ +_* +.vscode/* +tests/test_files/analysi* +tests/test_files/test_annoted_files/thresh_0.5/N1/analysi* +generated* +tests/test_files/test_gen* +tests/test_files/test_com* +tests/test_files/test_tfr* +simple_test* diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..1af9be5f833bd1192b602eeddaed784b78aff664 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,6 @@ +repos: +- repo: https://github.com/psf/black + rev: 23.7.0 + hooks: + - id: black + language_version: python3.9 \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..bb74060fb0366b88a12991af9502bb58af4eb3e8 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) [2022] [Vincent Kather] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..af0aea7ef21b9f882ea6f98714ac2e96d0e55669 --- /dev/null +++ b/README.md @@ -0,0 +1,328 @@ +# **acodet** - **Aco**ustic **Det**ector +## Framework for the **usage** and **training** of acoustic species detectors based on CNN models + +### Highlights +- **Integrated graphical user interface (GUI), so no coding required!** +- Supports Raven table format + - resulting spreadsheets can be directly imported into raven to view annotations +- automatic generation of presence/absence visualizations + - GUI supports interactive visualizations, allowing you to adjust model thresholds and instantly view the results +- headless version included for those that prefer command line tools +- interactive post-processing methods to reduce false-positives +--------------------------------------------------- +sample output: + +![Annotation Output](acodet/src/imgs/annotation_output.png) + +Play around with the GUI in the __Online Demo__ here: +https://acodet-web.streamlit.app/ +(the program will look identical when executed on your computer) + +__Video tutorials__ for installation and usage of the AcoDet GUI: +https://www.youtube.com/watch?v=bJf4d8qf9h0&list=PLQOW4PvEYW-GNWIYRehs2-4-sa9T20c8A + +The corresponding paper to acodet can be found here: +https://doi.org/10.1121/10.0025275 + + +## Table of Contents +- [Installation](#installation) + - [Installation on Windows](#installation-on-windows) + - [Installation on Mac](#installation-on-mac) + - [Installation on Linux](#installation-on-linux) +- [Usage](#usage) + - [acodet Usage with GUI](#acodet-usage-with-gui) + - [Usecase 1: Generating annotations (GUI)](#usecase-1-generating-annotations-gui) + - [Usecase 2: Generating new training data (GUI)](#usecase-2-generating-new-training-data-gui) + - [Usecase 3: Training (GUI)](#usecase-3-training-gui) + - [acodet Usage headless](#acodet-usage-headless) + - [Usecase 1: Generating annotations](#usecase-1-generating-annotations) + - [Usecase 2: Generating new training data](#usecase-2-generating-new-training-data) + - [Usecase 3: Training](#usecase-3-training) +- [Explanation of Sequence limit](#explanation-of-sequence-limit) +- [Citation](#citation) +- [FAQ](#faq) + + +---------------------------------------------------- +# Installation +## Installation on Windows +### Preliminary software installations: +- install python 3.8: (standard install, no admin privileges needed) + +- install git bash: (default install) + + +### Installation instructions +- create project directory in location of your choice +- open git bash in project directory (right click, Git Bash here) +- clone the repository: + +`git clone https://github.com/vskode/acodet.git` +- Install virtualenv (copy and paste in Git Bash console): + +`"$HOME/AppData/Local/Programs/Python/Python38/python" -m pip install virtualenv` + +- Create a new virtual environment (default name env_acodet can be changed): + + `"$HOME/AppData/Local/Programs/Python/Python38/python" -m virtualenv env_acodet` + +- activate newly created virtual environment (change env_acodet if necessary): + +`source env_acodet/Scripts/activate` + +- Install required packages: + +`pip install -r acodet/requirements.txt` + +------------------------- + +## Installation on Mac +### Preliminary software installations: +- install python 3.8: (standard install, no admin privileges needed) + +- install git: (default install) + - simply type `git` into the terminal and follow the installation instructions + +### Installation instructions +- create project directory in location of your choice +- open a terminal in the project directory +- clone the repository: + + `git clone https://github.com/vskode/acodet.git` +- Install virtualenv (copy and paste in Git Bash console): + + `/usr/bin/python/Python38/python -m pip install virtualenv` + +- Create a new virtual environment (default name env_acodet can be changed): + + `/usr/bin/python/Python38/python -m virtualenv env_acodet` + +- activate newly created virtual environment (change env_acodet if necessary): + + `source env_acodet/bin/activate` + +- Install required packages: + - if you have a M1 chip in your mac, run: + + `pip install -r acodet/macM1_requirements/requirements_m1-1.txt` + - then run + + `pip install -r acodet/macM1_requirements/requirements_m1-1.txt` + + - if you have an older mac, run: + + `pip install -r acodet/requirements.txt` + +-------------------------------------------- +## Installation on Linux +### Preliminary software installations: +- install python 3.8: (standard install, no admin privileges needed) + +- install git bash: (default install) + + +### Installation instructions +- create project directory in location of your choice +- open a terminal in the project directory +- clone the repository: + + `git clone https://github.com/vskode/acodet.git` +- Install virtualenv (copy and paste in Git Bash console): + + `/usr/bin/python/Python38/python -m pip install virtualenv` + +- Create a new virtual environment (default name env_acodet can be changed): + + `/usr/bin/python/Python38/python -m virtualenv env_acodet` + +- activate newly created virtual environment (change env_acodet if necessary): + + `source env_acodet/bin/activate` + +- Install required packages: + + `pip install -r acodet/requirements.txt` + +# Usage +## AcoDet usage with GUI + +AcoDet provides a graphical user interface (GUI) for users to intuitively use the program. All inputs and outputs are handled through the GUI. To run the gui, run (while in acodet directory): + +`streamlit run streamlit_app.py` + +This should start a new tab in a web browser which runs the interface that you can interact with. It is important that your virtual environment where you have installed the required packages is active, for that see the Installation sections. To activate the environment run + +`source ../env_acodet/Scripts/activate` (on Windows) +or + +`source ../env_acodet/bin/activate` (on Mac/Linux) + +while your terminal directory is inside **acodet**. + +### Usecase 1: generating annotations (GUI) + +- Choose the 1 - Inference option from the first drop-down menu +- Choose between the predefined Settings +0. run all of the steps +1. generating new annotations +2. filterin existing annotations +3. generating hourly predictions +- click Next +- Depending on your choice you will be prompted to enter the path leading to either your sound files our existing annotation files + - Enter a path in the text field that is one directory above the folder you would like to use + - In the dropdown menu you will be presented with all the folders inside the specified path. Choose the one you would like to work with + - **Important**: time stamps are required within the file names of the source files for steps 0. and 3. +- If required, choose a Model threshold +- click Run computation +- A progress bar should show the progress of your computations +- click Show results +- The Output section will provide you with information of the location of the files, and depending on your choice of predifines Settings will show different tabs. + - the "Stats" is an overview of all processed files, with timestamp and number of predictions + - the "Annot. Files" gives you a dropdown menu where you can look into prediction values for each vocalization within each source file. By default the threshold for this will be at 0.5, meaning that all sections with prediction values below that will be discarded. + - the "Filtered Files" shows the same as the previous tab, however, it only shows sections with previously defined values exceeding the predefined threshold. + - the "Annotaion Plots" shows you a visualization revealing the number of anotations per hour in your dataset. Choose your dataset from the dropdown (in some cases there is only one dataset inside your previously defined folder). + - The calculations behind this visualization is explained in detail in the corresponding journal paper that is currenlty under review and will be linked here as soon as published. + - You can choose between a "Simple limit" and a "Sequence limit" + - the main distinction is whether consecute vocalizations are required for them to be counted (this should help reduce false positives) + - the "Simple limit" will compute much faster than the "Sequence limit" + - You can also change the threshold of the model predictions which will then allo you to update the visualization. If the "Sequence limit" is chose, the number limit can also be changed, which will change the required number of consecutive vocalizations for them to be counted. (Try it out) + - All visualizations can be exported as .png files by clicking on the small camera icon in the top right. + - the "Presence Plots" shows a similar visualization as the previous section, however, only showing binary presence. + + +### Usecase 2: generating new training data (GUI) + +This feature is currently not integrated in the gui. +### Usecase 3: training (GUI) + +This feature is currently not integrated in the gui. + +## AcoDet usage headless +Users only need to change the files **simple_congif.yml** and **advanced_config.yml** to use AcoDet. Once the config files are changed, users can run the program by running the command `python run.py` inside the **acodet** directory. + +### Usecase 1: generating annotations +To generate annotations: +- open the file **simple_config.yml** in any Editor (default is Notepad). +- change `run_config` to `1` +- change `predefined_settings` to one of the following: + - `1` for generating annotations with a threshold of 0.5 + - `2` for generating annotations with a custom threshold + - specify threshold (**thresh**) value in **simple_config.yml** (defaults to 0.9) + - `3` for generating hourly counts and presence spreadsheets and visualizations (using the sequence criterion and the simple limit) + - _simple limit_ and _sequence criterion_ are accumulation metrics aiming to deliver hourly presence information, while filtering out false positives + - _simple limit_ -> only consider annotations if the number of annotations exceeding the **thresh** value is higher than the value for **simple_limit** in **simple_config.yml** (in a given hour in the dataset) + - _sequence criterion_ -> only consider annotations if the number of consecutive annotations within **sc_con_win** number of windows exceeding the **sc_thresh** value is higher than **sc_limit** (in a given hour in the dataset) + - hourly counts gives the number of annotations according to the accumulation metrics + - hourly presence gives a binary (0 -> no whale; 1 -> whale) corresponding to whether the accumulation metrics are satisfied + - `4` for generating hourly counts and presence spreadsheets and visualizations (using only the simple limit) + - or `0` to run all of the above in sequece +- change `sound_files_source` to the top level directory containing the dataset(s) you want to annotate + +- once finished, save the **simple_config.yml** file + +To start the program: +- activate the virtual environment again: + +`source env_acodet/Scripts/activate` + +- run the run.py script: + +`python acodet/run.py` + +### Output + +The software will now run thorugh your dataset and gerate annotations for every (readable) soundifle within the dataset. While running, a spreadsheet, called stats.csv is continuously updated showing information on the annotations for every file (do not open while program is still running, because the program wont be able to access it). + +The program will create a directory called `generated_annotatoins` in the project directory. It will then create a directory corresponding to the date and time that you started the annotation process. Within that directory you will find a directory `thresh_0.5` corresponding to all annotations with a threshold of 0.5. Furthermore you will find the `stats.csv` spreadsheet. + +If you have chosen option 2 (or 0) you will also find a directory `thresh_0.x` where the x stands for the custom threshold you specified in the **simple_config.yml** file. Within the `thresh` directories you will find the name of your dataset. + +If you have chosen option 3, 4 or 0 you will find a directory `analysis` within the dataset directory. In that directory you will find spreadsheets for hourly presence and hourly counts, as well as visualizations of the hourly presence and hourly counts. + +### Usecase 2: generating new training data + +Either use manually created annotations -> option 2, or create new annotations by reviewing the automatically generated annotations -> option 1. + +For option 1, use Raven to open sound files alongside their automatically generated annotations. Edit the column `Predictions/Comments` by writing `n` for noise, `c` for call, or `u` for undefined. If the majority of the shown windows are calls, add the suffix `_allcalls` before the `.txt` ending so that the program will automatically label all of the windows as calls, unless specified as `n`, `c`, or `u`. The suffix `_allnoise` will do the same for noise. The suffix `_annotated` will label all unchanged windows as undefined - thereby essentially ignoring them for the created dataset. + +Once finished, insert the top-level directory path to the `reviewed_annotation_source` variable in **simple_config.yml**. + +To generate new training data: +- open the file **simple_config.yml** in any Editor (default is Notepad). +- change `run_config` to `2` +- change `predefined_settings` to one of the following: + - `1` for generating training data from reviewed annotations + - `2` for generating training data from manually created training data (space in between annotations will be interpretted as noise) +- change `sound_files_source` to the top level directory containing the dataset(s) containing the sound files + +- once finished, save the **simple_config.yml** file + +To start the program: +- activate the virtual environment again: + +`source env_acodet/Scripts/activate` + +- run the run.py script: + +`python acodet/run.py` + +### Usecase 3: training + +To train the model: +- open the file **simple_config.yml** in any Editor (default is Notepad). +- change `run_config` to `3` +- change `predefined_settings` to one of the following: + - `1` for generating training data from reviewed annotations + +- once finished, save the **simple_config.yml** file +- more adcanced changes for model parameters can be done in **advanced_config.yml** + +To start the program: +- activate the virtual environment again: + +`source env_acodet/Scripts/activate` + +- run the run.py script: + +`python acodet/run.py` + +# Explanation of Sequence limit +Besides a simple thresholding (simple limit) the sequence limit can be used to distinguish repeating vocalizations from other noise sources. For humpback whales this vastly reduces the number of generated false positives. + +To briefly explain: +In a stream of 20 consecutive windows (of approx. 4 s length) you can set limit and threshold. After applying the limit, predictions are only kept if they exceed the threshold and occur in thre frequency set by the limit. This is especially convenient for __hourly presence__ annotations. The below image shows an example of 20 consecutive windows with their given model prediction values. The highlighted values exceed the threshold and since they occur in the required frequency (Limit=3), the hourly presence yield the value 1. + +![Sequence Limit](acodet/src/imgs/sequence_limit.png) + +The sequence limit can be useful in noisy environments, where vocalizations are masked by noise and their repetitiveness can be used to distinguish them from irregular background noise. + +Threshold and limit can be set interactively and their effect on the data can be analyzed right away. As this is only post-processing the existing annotations, computing time is very fast. The following image shows a screenshot of the sequence limit in the acodet GUI. + +![alt text](acodet/src/imgs/gui_sequence_limit.png) + +# Citation + +If you used acodet in your work, please reference the following: + +Vincent Kather, Fabian Seipel, Benoit Berges, Genevieve Davis, Catherine Gibson, Matt Harvey, Lea-Anne Henry, Andrew Stevenson, Denise Risch; Development of a machine learning detector for North Atlantic humpback whale song. J. Acoust. Soc. Am. 1 March 2024; 155 (3): 2050–2064. + +For bibtex: +```bibtex +@article{10.1121/10.0025275, + author = {Kather, Vincent and Seipel, Fabian and Berges, Benoit and Davis, Genevieve and Gibson, Catherine and Harvey, Matt and Henry, Lea-Anne and Stevenson, Andrew and Risch, Denise}, + title = "{Development of a machine learning detector for North Atlantic humpback whale song}", + journal = {The Journal of the Acoustical Society of America}, + volume = {155}, + number = {3}, + pages = {2050-2064}, + year = {2024}, + month = {03}, + issn = {0001-4966}, + doi = {10.1121/10.0025275} +} +``` + +# FAQ + +At the moment the generation of new training data and the training are not yet supported in the graphical user interface. diff --git a/acodet/annotate.py b/acodet/annotate.py new file mode 100644 index 0000000000000000000000000000000000000000..1fd6b401882cdb646bfbb324699a6d52f405a313 --- /dev/null +++ b/acodet/annotate.py @@ -0,0 +1,229 @@ +import time +from acodet import models +from acodet.funcs import ( + get_files, + gen_annotations, + get_dt_filename, + remove_str_flags_from_predictions, +) +from acodet import global_config as conf +import pandas as pd +import numpy as np +from pathlib import Path + + +class MetaData: + def __init__(self): + """ + Initialize the MetaData class with the columns that will be used to + store the metadata of the generated annotations. + """ + self.filename = "filename" + self.f_dt = "date from timestamp" + self.n_pred_col = "number of predictions" + self.avg_pred_col = "average prediction value" + self.n_pred08_col = "number of predictions with thresh>0.8" + self.n_pred09_col = "number of predictions with thresh>0.9" + self.time_per_file = "computing time [s]" + if not "timestamp_folder" in conf.session: + self.df = pd.DataFrame( + columns=[ + self.filename, + self.f_dt, + self.n_pred_col, + self.avg_pred_col, + self.n_pred08_col, + self.n_pred09_col, + ] + ) + else: + self.df = pd.read_csv( + conf.session["timestamp_folder"].parent.parent.joinpath( + "stats.csv" + ) + ) + self.df.pop("Unnamed: 0") + + def append_and_save_meta_file( + self, + file: Path, + annot: pd.DataFrame, + f_ind: int, + timestamp_foldername: str, + relativ_path: str = conf.SOUND_FILES_SOURCE, + computing_time: str = "not calculated", + **kwargs, + ): + """ + Append the metadata of the generated annotations to the dataframe and + save it to a csv file. + + Parameters + ---------- + file : Path + Path to the file that was annotated. + annot : pd.DataFrame + Dataframe containing the annotations. + f_ind : int + Index of the file. + timestamp_foldername : str + Timestamp of the annotation run for folder name. + relativ_path : str, optional + Path of folder containing files , by default conf.SOUND_FILES_SOURCE + computing_time : str, optional + Amount of time that prediction took, by default "not calculated" + """ + self.df.loc[f_ind, self.f_dt] = str(get_dt_filename(file).date()) + self.df.loc[f_ind, self.filename] = Path(file).relative_to( + relativ_path + ) + # TODO relative_path muss noch dauerhaft geändert werden + self.df.loc[f_ind, self.n_pred_col] = len(annot) + df_clean = remove_str_flags_from_predictions(annot) + self.df.loc[f_ind, self.avg_pred_col] = np.mean( + df_clean[conf.ANNOTATION_COLUMN] + ) + self.df.loc[f_ind, self.n_pred08_col] = len( + df_clean.loc[df_clean[conf.ANNOTATION_COLUMN] > 0.8] + ) + self.df.loc[f_ind, self.n_pred09_col] = len( + df_clean.loc[df_clean[conf.ANNOTATION_COLUMN] > 0.9] + ) + self.df.loc[f_ind, self.time_per_file] = computing_time + self.df.to_csv( + Path(conf.GEN_ANNOTS_DIR) + .joinpath(timestamp_foldername) + .joinpath("stats.csv") + ) + + +def run_annotation(train_date=None, **kwargs): + files = get_files(location=conf.SOUND_FILES_SOURCE, search_str="**/*") + if not "timestamp_folder" in conf.session: + timestamp_foldername = time.strftime( + "%Y-%m-%d_%H-%M-%S", time.gmtime() + ) + timestamp_foldername += conf.ANNOTS_TIMESTAMP_FOLDER + mdf = MetaData() + f_ind = 0 + + else: + timestamp_foldername = conf.session[ + "timestamp_folder" + ].parent.parent.stem + last_annotated_file = list( + conf.session["timestamp_folder"].rglob("*.txt") + )[-1] + file_stems = [f.stem for f in files] + file_idx = np.where( + np.array(file_stems) == last_annotated_file.stem.split("_annot")[0] + )[0][0] + files = files[file_idx:] + mdf = MetaData() + f_ind = file_idx - 1 + + if not train_date: + model = models.init_model() + mod_label = conf.MODEL_NAME + else: + df = pd.read_csv("../trainings/20221124_meta_trainings.csv") + row = df.loc[df["training_date"] == train_date] + model_name = row.Model.values[0] + keras_mod_name = row.keras_mod_name.values[0] + + model = models.init_model( + model_instance=model_name, + checkpoint_dir=f"../trainings/{train_date}/unfreeze_no-TF", + keras_mod_name=keras_mod_name, + ) + mod_label = train_date + + if conf.STREAMLIT: + import streamlit as st + + st.session_state.progbar1 = 0 + for i, file in enumerate(files): + if file.is_dir(): + continue + + if conf.STREAMLIT: + import streamlit as st + + st.session_state.progbar1 += 1 + f_ind += 1 + start = time.time() + annot = gen_annotations( + file, + model, + mod_label=mod_label, + timestamp_foldername=timestamp_foldername, + num_of_files=len(files), + **kwargs, + ) + computing_time = time.time() - start + mdf.append_and_save_meta_file( + file, + annot, + f_ind, + timestamp_foldername, + computing_time=computing_time, + **kwargs, + ) + return timestamp_foldername + + +def check_for_multiple_time_dirs_error(path): + if not path.joinpath(conf.THRESH_LABEL).exists(): + subdirs = [l for l in path.iterdir() if l.is_dir()] + path = path.joinpath(subdirs[-1].stem) + return path + + +def filter_annots_by_thresh(time_dir=None, **kwargs): + if not time_dir: + path = Path(conf.GEN_ANNOT_SRC) + else: + path = Path(conf.GEN_ANNOTS_DIR).joinpath(time_dir) + files = get_files(location=path, search_str="**/*txt") + files = [f for f in files if conf.THRESH_LABEL in str(f.parent)] + path = check_for_multiple_time_dirs_error(path) + for i, file in enumerate(files): + try: + annot = pd.read_csv(file, sep="\t") + except Exception as e: + print( + "Could not process file, maybe not an annotation file?", + "Error: ", + e, + ) + annot = annot.loc[annot[conf.ANNOTATION_COLUMN] >= conf.THRESH] + save_dir = ( + path.joinpath(f"thresh_{conf.THRESH}") + .joinpath(file.relative_to(path.joinpath(conf.THRESH_LABEL))) + .parent + ) + save_dir.mkdir(exist_ok=True, parents=True) + + if "Selection" in annot.columns: + annot.index.name = "Selection" + annot = annot.drop(columns=["Selection"]) + else: + annot.index = np.arange(1, len(annot) + 1) + annot.index.name = "Selection" + annot.to_csv(save_dir.joinpath(file.stem + file.suffix), sep="\t") + if conf.STREAMLIT and "progbar1" in kwargs.keys(): + kwargs["progbar1"].progress((i + 1) / len(files), text="Progress") + else: + print(f"Writing file {i+1}/{len(files)}") + if conf.STREAMLIT: + return path + + +if __name__ == "__main__": + train_dates = ["2022-11-30_01"] + + for train_date in train_dates: + start = time.time() + run_annotation(train_date) + end = time.time() + print(end - start) diff --git a/acodet/annotation_mappers.json b/acodet/annotation_mappers.json new file mode 100644 index 0000000000000000000000000000000000000000..e83c70d89a92efca825328b6c5e38ad06f0adc43 --- /dev/null +++ b/acodet/annotation_mappers.json @@ -0,0 +1,11 @@ +{ + "default_mapper": { + "Begin Time (s)": "start", + "End Time (s)": "end", + "Low Freq (Hz)" : "freq_min", + "High Freq (Hz)" : "freq_max"}, + "file_offset_mapper": { + "File Offset (s)": "start", + "Low Freq (Hz)" : "freq_min", + "High Freq (Hz)" : "freq_max"} +} \ No newline at end of file diff --git a/acodet/augmentation.py b/acodet/augmentation.py new file mode 100644 index 0000000000000000000000000000000000000000..ee105cf8363706fb1c27286e9382c382542364f9 --- /dev/null +++ b/acodet/augmentation.py @@ -0,0 +1,185 @@ +import tensorflow as tf +from keras_cv.layers import BaseImageAugmentationLayer +from acodet.plot_utils import plot_sample_spectrograms +import tensorflow_io as tfio + +AUTOTUNE = tf.data.AUTOTUNE + + +class CropAndFill(BaseImageAugmentationLayer): + def __init__(self, height: int, width: int, seed: int = None) -> None: + """ + Augmentation class inheriting from keras' Augmentation Base class. + This class takes images, cuts them at a random x position and then + appends the first section to the second section. It is intended for + spectrograms of labelled bioacoustics data. This way the vocalization + in the spectrogram is time shifted and potentially cut. All of which + is possible to occur due to a windowing of a recording file that is + intended for inference. + It is essentially a time shift augmentation whilst preserving window + length and not requiring reloading data from the source file. + + Args: + height (int): height of image + width (int): width of image + seed (int, optional): create randomization seed. Defaults to None. + """ + super().__init__() + self.height = height + self.width = width + self.seed = seed + tf.random.set_seed(self.seed) + + def call(self, audio: tf.Tensor): + """ + Compute time shift augmentation by creating a random slicing + position and then returning the reordered image. + + Args: + audio (tf.Tensor): input image + + Returns: + tf.Tensor: reordered image + """ + beg = tf.random.uniform( + shape=[], maxval=self.width // 2, dtype=tf.int32 + ) + + # for debugging purposes + # tf.print('time shift augmentation computed) + + return tf.roll(audio, shift=[beg], axis=[0]) + + +def time_shift(): + return tf.keras.Sequential([CropAndFill(64, 128)]) + + +def m_test(ds1, ds2, alpha=0.4): + call, lab = ds1 + noise, l = ds2 + noise_alpha = alpha * tf.math.reduce_max(noise) + train_alpha = (1 - alpha) * tf.math.reduce_max(call) + # tf.print('performing mixup') + return (call * train_alpha + noise * noise_alpha, lab) + + +def time_mask(x, y, spec_param=10): + # tf.print('performing time_mask') + return (tfio.audio.time_mask(x, param=spec_param), y) + + +def freq_mask(x, y, spec_param=10): + # tf.print('performing freq_mask') + return (tfio.audio.freq_mask(x, param=spec_param), y) + + +############################################################################## +############################################################################## +############################################################################## + + +def run_augment_pipeline( + ds, + noise_data, + noise_set_size, + train_set_size, + time_augs, + mixup_augs, + seed=None, + plot=False, + time_start=None, + spec_aug=False, + spec_param=10, + **kwargs, +): + T = time_shift() + if plot: + plot_sample_spectrograms( + ds, + dir=time_start, + name="train", + seed=seed, + ds_size=train_set_size, + **kwargs, + ) + + if mixup_augs: + ds_n = noise_data.repeat(train_set_size // noise_set_size + 1) + if plot: + plot_sample_spectrograms( + ds_n, + dir=time_start, + name=f"noise", + seed=seed, + ds_size=train_set_size, + **kwargs, + ) + + if plot: + dss = tf.data.Dataset.zip((ds, ds_n)) + ds_mu = dss.map( + lambda x, y: m_test(x, y), num_parallel_calls=AUTOTUNE + ) + plot_sample_spectrograms( + ds_mu, + dir=time_start, + name=f"augment_0-MixUp", + seed=seed, + ds_size=train_set_size, + **kwargs, + ) + + ds_n = ds_n.shuffle(train_set_size // noise_set_size + 1) + dss = tf.data.Dataset.zip((ds, ds_n)) + ds_mu = dss.map(lambda x, y: m_test(x, y), num_parallel_calls=AUTOTUNE) + ds_mu_n = ds_mu.concatenate(noise_data) + # ds = ds.concatenate(ds_mu_n) + + if time_augs: + ds_t = ds.map( + lambda x, y: (T(x, training=True), y), num_parallel_calls=AUTOTUNE + ) + if plot: + plot_sample_spectrograms( + ds_t, + dir=time_start, + name=f"augment_0-TimeShift", + seed=seed, + ds_size=train_set_size, + **kwargs, + ) + # ds = ds.concatenate(ds_t) + + if spec_aug: + ds_tm = ds.map(time_mask) + # ds = ds.concatenate(ds_tm) + if plot: + plot_sample_spectrograms( + ds_tm, + dir=time_start, + name=f"augment_0-TimeMask", + seed=seed, + ds_size=train_set_size, + **kwargs, + ) + ds_fm = ds.map(freq_mask) + # ds = ds.concatenate(ds_fm) + if plot: + plot_sample_spectrograms( + ds_fm, + dir=time_start, + name=f"augment_0-TFreqMask", + seed=seed, + ds_size=train_set_size, + **kwargs, + ) + if mixup_augs: + ds = ds.concatenate(ds_mu_n) + if time_augs: + ds = ds.concatenate(ds_t) + if spec_aug: + ds = ds.concatenate(ds_tm) + ds = ds.concatenate(ds_fm) + + return ds diff --git a/acodet/combine_annotations.py b/acodet/combine_annotations.py new file mode 100644 index 0000000000000000000000000000000000000000..ad96acef241182df5cb34b57206057eb1e2a1ac0 --- /dev/null +++ b/acodet/combine_annotations.py @@ -0,0 +1,293 @@ +import pandas as pd + +pd.options.mode.chained_assignment = None # default='warn' +import glob +from pathlib import Path +from acodet.funcs import remove_str_flags_from_predictions, get_files +import os +import numpy as np +import acodet.global_config as conf +import json + +with open("acodet/annotation_mappers.json", "r") as m: + mappers = json.load(m) + + +# TODO aufraeumen +# annotation_files = Path(r'/mnt/f/Daten/20221019-Benoit/').glob('**/*.txt') +# annotation_files = Path(r'generated_annotations/2022-11-04_12/').glob('ch*.txt') + + +def compensate_for_naming_inconsistencies(hard_drive_path, file): + split_file = file.stem.split("Table")[0] + file_path = glob.glob( + f"{hard_drive_path}/**/{split_file}*wav", recursive=True + ) + + if not file_path: + file_tolsta = "336097327." + split_file[6:].replace( + "_000", "" + ).replace("_", "") + file_path = glob.glob( + f"{hard_drive_path}/**/{file_tolsta}*wav", recursive=True + ) + + if not file_path: + file_tolsta = "335564853." + split_file[6:].replace( + "5_000", "4" + ).replace("_", "") + file_path = glob.glob( + f"{hard_drive_path}/**/{file_tolsta}*wav", recursive=True + ) + + if not file_path: + file_new_annot = file.stem.split("_annot")[0] + file_path = glob.glob( + f"{hard_drive_path}/**/{file_new_annot}*", recursive=True + ) + + if not file_path: + split_file_underscore = file.stem.split("_")[0] + file_path = glob.glob( + f"{hard_drive_path}/**/{file_new_annot}*wav", recursive=True + ) + if not file_path: + file_new_annot = split_file_underscore.split(".")[-1] + file_path = glob.glob( + f"{hard_drive_path}/**/*{file_new_annot}*wav", recursive=True + ) + + if not file_path: + print("sound file could not be found, continuing with next file") + return False + return file_path + + +def get_corresponding_sound_file(file): + hard_drive_path = conf.SOUND_FILES_SOURCE + file_path = glob.glob( + f"{hard_drive_path}/**/{file.stem}*wav", recursive=True + ) + if not file_path: + file_path = compensate_for_naming_inconsistencies( + hard_drive_path, file + ) + + if not file_path: + # TODO fehler raisen, dass bringt so einfach nichts + return "empty" + + if len(file_path) > 1: + p_dir = list(file.relative_to(conf.REV_ANNOT_SRC).parents)[-2] + p_dir_main = str(p_dir).split("_")[0] + for path in file_path: + if p_dir_main in path: + file_path = path + else: + file_path = file_path[0] + + if isinstance(file_path, list) and len(file_path) > 1: + file_path = file_path[0] + print( + "WARNING: Multiple sound files for annotations file found." + " Because pattern could not be resolved, first file is chosen." + f"\nannotations file name: \n{file}\n" + f"sound file name: \n{file_path}\n" + ) + + return file_path + + +def seperate_long_annotations(df): + bool_long_annot = df["End Time (s)"] - df["Begin Time (s)"] > round( + conf.CONTEXT_WIN / conf.SR + ) + for i, row in df.loc[bool_long_annot].iterrows(): + n_new_annots = int( + (row["End Time (s)"] - row["Begin Time (s)"]) + / (conf.CONTEXT_WIN / conf.SR) + ) + begins = row["Begin Time (s)"] + np.arange(n_new_annots) * ( + conf.CONTEXT_WIN / conf.SR + ) + ends = begins + (conf.CONTEXT_WIN / conf.SR) + n_df = pd.DataFrame() + for col in row.keys(): + n_df[col] = [row[col]] * n_new_annots + n_df["Begin Time (s)"] = begins + n_df["End Time (s)"] = ends + n_df["Selection"] = np.arange(n_new_annots) + row["Selection"] + df = pd.concat( + [df.drop(row.name), n_df] + ) # delete long annotation from df + return df + + +def label_explicit_noise(df): + df_clean = remove_str_flags_from_predictions(df) + + expl_noise_crit_idx = np.where(df_clean[conf.ANNOTATION_COLUMN] > 0.9)[0] + df.loc[expl_noise_crit_idx, "label"] = "explicit 0" + return df + + +def differentiate_label_flags(df, flag=None): + df.loc[:, conf.ANNOTATION_COLUMN].fillna(value="c", inplace=True) + df.loc[df[conf.ANNOTATION_COLUMN] == "c", "label"] = 1 + df.loc[df[conf.ANNOTATION_COLUMN] == "n", "label"] = "explicit 0" + df_std = seperate_long_annotations(df) + + df_std = df_std.drop( + df_std.loc[df_std[conf.ANNOTATION_COLUMN] == "u"].index + ) + df_std.index = pd.RangeIndex(0, len(df_std)) + if flag == "noise": + df_std = label_explicit_noise(df_std) + + return df_std + + +def get_labels(file, df, active_learning=False, **kwargs): + if not active_learning: + df["label"] = 1 + else: + noise_flag, annotated_flag, calls_flag = [ + "_allnoise", + "_annotated", + "_allcalls", + ] + df = df.iloc[df.Selection.drop_duplicates().index] + if calls_flag in file.stem: + df["label"] = 1 + df = differentiate_label_flags(df, flag="calls") + elif noise_flag in file.stem: + df["label"] = 0 + df = differentiate_label_flags(df, flag="noise") + elif annotated_flag in file.stem: + df_clean = remove_str_flags_from_predictions(df) + df.loc[df_clean.index, conf.ANNOTATION_COLUMN] = "u" + df = differentiate_label_flags(df) + return df + + +def standardize( + df, *, mapper, filename_col="filename", selection_col="Selection" +): + keep_cols = ["label", "start", "end", "freq_min", "freq_max"] + df = df.rename(columns=mapper) + if not "end" in df.columns: + df["end"] = df.start + (df["End Time (s)"] - df["Begin Time (s)"]) + out_df = df[keep_cols] + out_df.index = pd.MultiIndex.from_arrays( + arrays=(df[filename_col], df[selection_col]) + ) + return out_df.astype(dtype=np.float64) + + +def filter_out_high_freq_and_high_transient(df): + df = df.loc[df["High Freq (Hz)"] <= 2000] + df = df.loc[df["End Time (s)"] - df["Begin Time (s)"] >= 0.4] + return df + + +def finalize_annotation(file, freq_time_crit=False, **kwargs): + ann = pd.read_csv(file, sep="\t") + + ann["filename"] = get_corresponding_sound_file(file) + # if not ann['filename']: + # print(f'corresponding sound file for annotations file: {file} not found') + + ann = get_labels(file, ann, **kwargs) + if "File Offset (s)" in ann.columns: + mapper = mappers["file_offset_mapper"] + else: + mapper = mappers["default_mapper"] + + if freq_time_crit: + ann = filter_out_high_freq_and_high_transient(ann) + + ann_explicit_noise = ann.loc[ann["label"] == "explicit 0", :] + ann_explicit_noise["label"] = 0 + ann = ann.drop(ann.loc[ann["label"] == "explicit 0"].index) + std_annot_train = standardize(ann, mapper=mapper) + std_annot_enoise = standardize(ann_explicit_noise, mapper=mapper) + + return std_annot_train, std_annot_enoise + + +def leading_underscore_in_parent_dirs(file): + return "_" in [f.stem[0] for f in list(file.parents)[:-1]] + + +def get_active_learning_files(files): + cases = ["_allnoise", "_annotated", "_allcalls"] + cleaned_files = [f for f in files if [True for c in cases if c in f.stem]] + drop_cases = ["_tobechecked"] + final_cleanup = [ + f + for f in cleaned_files + if not [True for d in drop_cases if d in f.stem] + ] + return final_cleanup + + +def generate_final_annotations( + annotation_files=None, active_learning=True, **kwargs +): + if not annotation_files: + annotation_files = get_files( + location=conf.REV_ANNOT_SRC, search_str="**/*.txt" + ) + files = list(annotation_files) + if active_learning: + files = get_active_learning_files(files) + folders, counts = np.unique( + [list(f.relative_to(conf.REV_ANNOT_SRC).parents) for f in files], + return_counts=True, + ) + if len(folders) > 1: + folders, counts = np.unique( + [ + list(f.relative_to(conf.REV_ANNOT_SRC).parents)[-2] + for f in files + ], + return_counts=True, + ) + files.sort() + ind = 0 + for i, folder in enumerate(folders): + df_t, df_n = pd.DataFrame(), pd.DataFrame() + for _ in range(counts[i]): + if leading_underscore_in_parent_dirs(files[ind]): + print( + files[ind], + " skipped due to leading underscore in parent dir.", + ) + ind += 1 + continue + df_train, df_enoise = finalize_annotation( + files[ind], + all_noise=False, + active_learning=active_learning, + **kwargs, + ) + df_t = pd.concat([df_t, df_train]) + df_n = pd.concat([df_n, df_enoise]) + print(f"Completed file {ind}/{len(files)}.", end="\r") + ind += 1 + + # TODO include date in path by default + save_dir = Path(conf.ANNOT_DEST).joinpath(folder) + save_dir.mkdir(exist_ok=True, parents=True) + df_t.to_csv(save_dir.joinpath("combined_annotations.csv")) + df_n.to_csv(save_dir.joinpath("explicit_noise.csv")) + # save_ket_annot_only_existing_paths(df) + + +if __name__ == "__main__": + annotation_files = list(Path(conf.REV_ANNOT_SRC).glob("**/*.txt")) + if len(annotation_files) == 0: + annotation_files = list(Path(conf.REV_ANNOT_SRC).glob("*.txt")) + generate_final_annotations( + annotation_files, active_learning=True, freq_time_crit=False + ) diff --git a/acodet/create_session_file.py b/acodet/create_session_file.py new file mode 100644 index 0000000000000000000000000000000000000000..e9027243c428ef3d40573ae9281e3934e71547e3 --- /dev/null +++ b/acodet/create_session_file.py @@ -0,0 +1,29 @@ +import yaml +import json +import streamlit as st + + +def create_session_file(): + with open("simple_config.yml", "r") as f: + simple = yaml.safe_load(f) + + with open("advanced_config.yml", "r") as f: + advanced = yaml.safe_load(f) + + session = {**simple, **advanced} + + if "session_started" in st.session_state: + for k, v in session.items(): + setattr(st.session_state, k, v) + else: + with open("acodet/src/tmp_session.json", "w") as f: + json.dump(session, f) + + +def read_session_file(): + if "session_started" in st.session_state: + session = {**st.session_state} + else: + with open("acodet/src/tmp_session.json", "r") as f: + session = json.load(f) + return session diff --git a/acodet/evaluate.py b/acodet/evaluate.py new file mode 100644 index 0000000000000000000000000000000000000000..6fdee61d10265eed72094c24edb14f6abd87e78f --- /dev/null +++ b/acodet/evaluate.py @@ -0,0 +1,253 @@ +from acodet.plot_utils import ( + plot_evaluation_metric, + plot_model_results, + plot_sample_spectrograms, + plot_pr_curve, +) +from acodet import models +from acodet.models import get_labels_and_preds +from acodet.tfrec import run_data_pipeline, spec +import matplotlib.pyplot as plt +import matplotlib.colors as mcolors +from pathlib import Path +import pandas as pd +import time +import numpy as np +from acodet.humpback_model_dir import front_end +import acodet.global_config as conf + + +def get_info(date): + keys = [ + "data_path", + "batch_size", + "epochs", + "Model", + "keras_mod_name", + "load_weights", + "training_date", + "steps_per_epoch", + "f_score_beta", + "f_score_thresh", + "bool_SpecAug", + "bool_time_shift", + "bool_MixUps", + "weight_clipping", + "init_lr", + "final_lr", + "unfreezes", + "preproc blocks", + ] + path = Path(f"../trainings/{date}") + f = pd.read_csv(path.joinpath("training_info.txt"), sep="\t") + l, found = [], 0 + for key in keys: + found = 0 + for s in f.values: + if key in s[0]: + l.append(s[0]) + found = 1 + if found == 0: + l.append(f"{key}= nan") + return {key: s.split("= ")[-1] for s, key in zip(l, keys)} + + +def write_trainings_csv(): + trains = list(Path("../trainings").iterdir()) + try: + df = pd.read_csv("../trainings/20221124_meta_trainings.csv") + new = [t for t in trains if t.stem not in df["training_date"].values] + i = len(trains) - len(new) + 1 + trains = new + except Exception as e: + print("file not found", e) + df = pd.DataFrame() + i = 0 + for path in trains: + try: + f = pd.read_csv(path.joinpath("training_info.txt"), sep="\t") + for s in f.values: + if "=" in s[0]: + df.loc[i, s[0].split("= ")[0].replace(" ", "")] = s[ + 0 + ].split("= ")[-1] + df.loc[i, "training_date"] = path.stem + i += 1 + except Exception as e: + print(e) + df.to_csv("../trainings/20230207_meta_trainings.csv") + + +def create_overview_plot( + train_dates=[], + val_set=None, + display_keys=["Model"], + plot_metrics=False, + titles=None, +): + if not train_dates: + train_dates = "2022-11-30_01" + if not isinstance(train_dates, list): + train_dates = [train_dates] + + df = pd.read_csv("../trainings/20230207_meta_trainings.csv") + df.index = df["training_date"] + + if not val_set: + val_set = list(Path(conf.TFREC_DESTINATION).iterdir()) + if "dataset_meta_train" in [f.stem for f in val_set]: + val_set = val_set[0].parent + + if isinstance(val_set, list): + val_label = "all" + else: + val_label = Path(val_set).stem + + string = str("Model:{}; " f"val: {val_label}") + if conf.THRESH != 0.5: + string += f" thr: {conf.THRESH}" + + if not train_dates: + labels = None + else: + labels = [ + string.format( + *df.loc[df["training_date"] == d, display_keys].values[0] + ) + for d in train_dates + ] + + training_runs = [] + for i, train in enumerate(train_dates): + training_runs += [Path(f"../trainings/{train}")] + for _ in range( + len(list(Path(f"../trainings/{train}").glob("unfreeze*"))) + ): + labels += labels[i] + val_data = run_data_pipeline( + val_set, "val", return_spec=False, return_meta=True + ) + + model_name = [ + df.loc[df["training_date"] == d, "Model"].values[0] + for d in train_dates + ] + keras_mod_name = [ + df.loc[df["training_date"] == d, "keras_mod_name"].values[0] + for d in train_dates + ] + + time_start = time.strftime("%Y%m%d_%H%M%S", time.gmtime()) + + if plot_metrics: + fig = plt.figure(constrained_layout=True, figsize=(6, 6)) + subfigs = fig.subfigures(2, 1) # , wspace=0.07, width_ratios=[1, 1]) + plot_model_results( + train_dates, labels, fig=subfigs[0], legend=False + ) # , **info_dict) + eval_fig = subfigs[1] + else: + fig = plt.figure(constrained_layout=True, figsize=(5, 5)) + eval_fig = fig + display_keys = ["keras_mod_name"] + table_df = df.loc[train_dates, display_keys] + if not len(table_df) == 0: + table_df.iloc[-1] = "GoogleModel" + plot_evaluation_metric( + model_name, + training_runs, + val_data, + plot_labels=labels, + fig=eval_fig, + plot_pr=True, + plot_cm=False, + titles=titles, + train_dates=train_dates, + label=None, + legend=False, + keras_mod_name=keras_mod_name, + ) + fig.savefig( + f"../trainings/2022-11-30_01/{time_start}_results_combo.png", dpi=150 + ) + + +def create_incorrect_prd_plot( + model_instance, train_date, val_data_path, **kwargs +): + training_run = Path(f"../trainings/{train_date}").glob("unfreeze*") + val_data = run_data_pipeline(val_data_path, "val", return_spec=False) + labels, preds = get_labels_and_preds( + model_instance, training_run, val_data, **kwargs + ) + preds = preds.reshape([len(preds)]) + bin_preds = list(map(lambda x: 1 if x >= conf.THRESH else 0, preds)) + false_pos, false_neg = [], [] + for i in range(len(preds)): + if bin_preds[i] == 0 and labels[i] == 1: + false_neg.append(i) + if bin_preds[i] == 1 and labels[i] == 0: + false_pos.append(i) + + offset = min([false_neg[0], false_pos[0]]) + val_data = run_data_pipeline( + val_data_path, "val", return_spec=False, return_meta=True + ) + val_data = val_data.batch(1) + val_data = val_data.map(lambda x, y, z, w: (spec()(x), y, z, w)) + val_data = val_data.unbatch() + data = list(val_data.skip(offset)) + fp = [data[i - offset] for i in false_pos] + fn = [data[i - offset] for i in false_neg] + plot_sample_spectrograms( + fn, dir=train_date, name=f"False_Negative", plot_meta=True, **kwargs + ) + plot_sample_spectrograms( + fp, dir=train_date, name=f"False_Positive", plot_meta=True, **kwargs + ) + + +def create_table_plot(): + time_start = time.strftime("%Y%m%d_%H%M%S", time.gmtime()) + df = pd.read_csv("../trainings/20221124_meta_trainings.csv") + df.index = df["training_date"] + display_keys = ["keras_mod_name"] + col_labels = ["model name"] + table_df = df.loc[train_dates, display_keys] + table_df.iloc[-1] = "GoogleModel" + f, ax_tb = plt.subplots() + bbox = [0, 0, 1, 1] + ax_tb.axis("off") + font_size = 20 + import seaborn as sns + + color = list(sns.color_palette()) + mpl_table = ax_tb.table( + cellText=table_df.values, + rowLabels=[" "] * len(table_df), + bbox=bbox, + colLabels=col_labels, + rowColours=color, + ) + mpl_table.auto_set_font_size(False) + mpl_table.set_fontsize(font_size) + f.tight_layout() + f.savefig( + f"../trainings/{train_dates[-1]}/{time_start}_results_table.png", + dpi=150, + ) + + +if __name__ == "__main__": + tfrec_path = list(Path(conf.TFREC_DESTINATION).iterdir()) + train_dates = ["2022-11-30_01"] + + display_keys = ["Model", "keras_mod_name", "epochs", "init_lr", "final_lr"] + + create_overview_plot( + train_dates, + tfrec_path, + display_keys, + plot_metrics=False, + titles=["all_data"], + ) diff --git a/acodet/front_end/help_strings.py b/acodet/front_end/help_strings.py new file mode 100644 index 0000000000000000000000000000000000000000..e6b64aa7d7ed1f9584fecfdaa066c5d07c5ff39d --- /dev/null +++ b/acodet/front_end/help_strings.py @@ -0,0 +1,65 @@ +RUN_OPTION = ( + "Choose what option to run (currently only Inference is supported)." +) +SELECT_PRESET = "Based on the preset, different computations will run." +SAMPLE_RATE = """ +If you need to change this, make sure that the sample rate +you set is below the sample rate of your audio files +""" + +ENTER_PATH = """ +Enter the path to the directory containing the dataset(s) (so one above it). +The dropdown below will then allow you to choose the dataset(s) you would like to annotate on. +""" + +CHOOSE_FOLDER = """ +Choose the folder containing the dataset(s) you would like to annotate on. +""" +THRESHOLD = "The threshold will be used to filter the predictions." +ANNOTATIONS_DEFAULT_LOCATION = """ +The annotations are stored in this folder by default. If you want to specify another location, choose "No". +""" +ANNOTATIONS_TIMESTAMP_FOLDER = """ +Specify custom string to append to timestamp for foldername.\n +Example: 2024-01-27_22-24-23___Custom-Dataset-1""" +ANNOTATIONS_TIMESTAMP_RADIO = """ +By default the annotations folder is named according to the timestamp when it was created. +By clicking Yes you can add a custom string to make it more specific. +""" +CHOOSE_TIMESTAMP_FOLDER = """ +These are the time stamps corresponding to computations that +have been performed on the machine previously. They all contain annotations files +and can be used to filter the annotations with different thresholds or to generate +hourly predictions. +""" + +MULTI_DATA = """ +Are there multiple datasets located in the selected folder and would you +like for all of them to be processed? If so select yes, if not, please only +select the desired folder. +""" + +SAVE_SELECTION_BTN = """ +By clicking, the selection tables of the chosen datasets will be +recomputed with the limit settings chosen above and saved in the same location +with a name corresponding to the limit name and threshold.""" + +LIMIT = """ +Choose between Simple and Sequence limit. Simple limit will only count the +annotations that are above the threshold. Sequence limit will only count the +annotations that are above the threshold and exceed the limit within 20 +consecutive sections. +""" + +ANNOT_FILES_DROPDOWN = """ +Choose the annotation file you would like to inspect. +""" + +SC_LIMIT = """ +The limit will be used to filter the predictions. The limit is the number of +vocalizations within 20 consecutive sections that need to exceed the threshold. +Higher limits mean less false positives but more false negatives. +Play around withit and see how the plot changes. +The idea behind this is to be able to tune the sensitivity of the model +to the noise environment within the dataset. +""" diff --git a/acodet/front_end/st_annotate.py b/acodet/front_end/st_annotate.py new file mode 100644 index 0000000000000000000000000000000000000000..45b6dc07c1ccc47ab6e63218a3295269ea9be9ff --- /dev/null +++ b/acodet/front_end/st_annotate.py @@ -0,0 +1,262 @@ +import streamlit as st +from acodet.front_end import utils +from pathlib import Path +from acodet import create_session_file +from acodet.front_end import help_strings + + +session_config = create_session_file.read_session_file() + + +def initial_dropdown(key): + """ + Show dropdown menu to select what preset to run. + + Parameters + ---------- + key : string + unique identifier for streamlit objects + + Returns + ------- + int + preset number + """ + return int( + st.selectbox( + "What predefined Settings would you like to run?", + ( + "1 - generate new annotations", + "2 - filter existing annotations with different threshold", + "3 - generate hourly predictions", + "0 - all of the above", + ), + key=key, + help=help_strings.SELECT_PRESET, + )[0] + ) + + +class PresetInterfaceSettings: + def __init__(self, config, key) -> None: + """ + Preset settings class. All methods are relevant for displaying + streamlit objects that will then be used to run the computations. + + Parameters + ---------- + config : dict + config dictionsary + key : string + unique identifier + """ + self.config = config + self.key = key + + def custom_timestamp_dialog(self): + """ + Show radio buttons asking for custom folder names. If Yes is selected + allow user input that will be appended to timestamp for uses to give + custom names to annotation sessions. + """ + timestamp_radio = st.radio( + f"Would you like to customize the annotaitons folder?", + ("No", "Yes"), + key="radio_" + self.key, + horizontal=True, + help=help_strings.ANNOTATIONS_TIMESTAMP_RADIO, + ) + if timestamp_radio == "Yes": + self.config["annots_timestamp_folder"] = "___" + utils.user_input( + "Custom Folder string:", + "", + help=help_strings.ANNOTATIONS_TIMESTAMP_FOLDER, + ) + elif timestamp_radio == "No": + self.config["annots_timestamp_folder"] = "" + + def ask_to_continue_incomplete_inference(self): + continue_radio = st.radio( + f"Would you like to continue a cancelled session?", + ("No", "Yes"), + key="radio_continue_session_" + self.key, + horizontal=True, + help=help_strings.ANNOTATIONS_TIMESTAMP_RADIO, + ) + if continue_radio == "Yes": + past_sessions = list( + Path(session_config["generated_annotations_folder"]).rglob( + Path(self.config["sound_files_source"]).stem + ) + ) + if len(past_sessions) == 0: + st.text( + f"""Sorry, but no annotations have been found in + `{session_config['generated_annotations_folder']}` on the currently + selected dataset (`{self.config['sound_files_source']}`).""" + ) + else: + previous_session = st.selectbox( + "Which previous session would you like to continue?", + past_sessions, + key="continue_session_" + self.key, + help=help_strings.SELECT_PRESET, + ) + self.config["timestamp_folder"] = previous_session + else: + return True + + def perform_inference(self): + """ + Interface options when inference is selected, i.e. preset options 0 or 1. + """ + path = st.text_input( + "Enter the path to your sound data:", + "tests/test_files", + help=help_strings.ENTER_PATH, + ) + self.config["sound_files_source"] = utils.open_folder_dialogue( + path, key="folder_" + self.key, help=help_strings.CHOOSE_FOLDER + ) + self.config["thresh"] = utils.validate_float( + utils.user_input( + "Model threshold:", "0.9", help=help_strings.THRESHOLD + ) + ) + self.advanced_settings() + + def advanced_settings(self): + """ + Expandable section showing advanced settings options. + """ + with st.expander(r"**Advanced Settings**"): + continue_session = self.ask_to_continue_incomplete_inference() + + if continue_session: + self.custom_timestamp_dialog() + + self.ask_for_multiple_datasets() + + def ask_for_multiple_datasets(self): + multiple_datasets = st.radio( + "Would you like to process multiple datasets in this session?", + ("No", "Yes"), + key=f"multi_datasets_{self.key}", + horizontal=True, + help=help_strings.MULTI_DATA, + ) + if multiple_datasets == "Yes": + self.config["multi_datasets"] = True + + + def rerun_annotations(self): + """ + Show options for rerunning annotations and saving the + selection tables with a different limit. + """ + self.select_annotation_source_directory() + self.limit = st.radio( + "What limit would you like to set?", + ("Simple limit", "Sequence limit"), + key=f"limit_selec_{self.key}", + help=help_strings.LIMIT, + ) + + self.lim_obj = utils.Limits(self.limit, self.key) + self.lim_obj.create_limit_sliders() + self.lim_obj.save_selection_tables_with_limit_settings() + + def select_annotation_source_directory(self): + """ + Streamlit objects for preset options 2 and 3. + """ + default_path = st.radio( + f"""The annotations I would like to filter are located in + `{Path(session_config['generated_annotations_folder']).resolve()}`:""", + ("Yes", "No"), + key="radio_" + self.key, + horizontal=True, + help=help_strings.ANNOTATIONS_DEFAULT_LOCATION, + ) + if default_path == "Yes": + self.config[ + "generated_annotation_source" + ] = utils.open_folder_dialogue( + key="folder_default_" + self.key, + label="From the timestamps folders, choose the one you would like to work on.", + help=help_strings.CHOOSE_TIMESTAMP_FOLDER, + filter_existing_annotations=True, + ) + elif default_path == "No": + path = st.text_input( + "Enter the path to your annotation data:", + "tests/test_files", + help=help_strings.ENTER_PATH, + ) + self.config[ + "generated_annotation_source" + ] = utils.open_folder_dialogue( + path, + key="folder_" + self.key, + label="From the timestamps folders, choose the one you would like to work on.", + help=help_strings.CHOOSE_TIMESTAMP_FOLDER, + filter_existing_annotations=True, + ) + if ( + Path(self.config["generated_annotation_source"]).stem + + Path(self.config["generated_annotation_source"]).suffix + == f"thresh_{session_config['default_threshold']}" + ): + st.write( + """ +

+ Please choose the top-level folder (usually a timestamp) instead. +

""", + unsafe_allow_html=True, + ) + + +def annotate_options(key="annot"): + """ + Caller function for inference settings. Calls all necessary components + to show streamlit objects where users can choose what settings to run. + + Parameters + ---------- + key : str, optional + unique identifier for streamlit objects, by default "annot" + + Returns + ------- + boolean + True once all settings have been entered + """ + preset_option = initial_dropdown(key) + + st.session_state.preset_option = preset_option + utils.make_nested_btn_false_if_dropdown_changed(1, preset_option, 1) + utils.make_nested_btn_false_if_dropdown_changed( + run_id=1, preset_id=preset_option, btn_id=4 + ) + utils.next_button(id=1) + + if not st.session_state.b1: + pass + else: + config = dict() + config["predefined_settings"] = preset_option + interface_settings = PresetInterfaceSettings(config, key) + + if preset_option == 1 or preset_option == 0: + interface_settings.perform_inference() + + elif preset_option == 2: + interface_settings.rerun_annotations() + + elif preset_option == 3: + interface_settings.select_annotation_source_directory() + interface_settings.ask_for_multiple_datasets() + + for k, v in interface_settings.config.items(): + utils.write_to_session_file(k, v) + return True diff --git a/acodet/front_end/st_generate_data.py b/acodet/front_end/st_generate_data.py new file mode 100644 index 0000000000000000000000000000000000000000..41a18d4b79dc24cf3ed47f41da4e7493b9ec4bbb --- /dev/null +++ b/acodet/front_end/st_generate_data.py @@ -0,0 +1,115 @@ +import streamlit as st +from acodet.front_end import utils + + +def generate_data_options(key="gen_data"): + preset_option = int( + st.selectbox( + "How would you like run the program?", + ( + "1 - generate new training data from reviewed annotations", + "2 - generate new training data from reviewed annotations " + "and fill space between annotations with noise annotations", + ), + key=key, + )[0] + ) + st.session_state.preset_option = preset_option + utils.make_nested_btn_false_if_dropdown_changed(2, preset_option, 2) + utils.make_nested_btn_false_if_dropdown_changed( + run_id=1, preset_id=preset_option, btn_id=4 + ) + utils.next_button(id=2) + if not st.session_state.b2: + pass + else: + config = dict() + config["predefined_settings"] = preset_option + + if preset_option == 1: + path1_sound = st.text_input( + "Enter the path to your sound data:", "." + ) + config["sound_files_source"] = utils.open_folder_dialogue( + path1_sound, key="source_folder_" + key + ) + path2_annots = st.text_input( + "Enter the path to your reviewed annotations:", "." + ) + config["reviewed_annotation_source"] = utils.open_folder_dialogue( + path2_annots, key="reviewed_annotations_folder" + key + ) + + st.markdown("### Settings") + st.markdown("#### Audio preprocessing") + config["sample_rate"] = utils.validate_int( + utils.user_input("sample rate [Hz]", "2000") + ) + config["context_window_in_seconds"] = utils.validate_float( + utils.user_input("context window length [s]", "3.9") + ) + st.markdown("#### Spectrogram settings") + config["stft_frame_len"] = utils.validate_int( + utils.user_input("STFT frame length [samples]", "1024") + ) + config["number_of_time_bins"] = utils.validate_int( + utils.user_input("number of time bins", "128") + ) + st.markdown("#### TFRecord creationg settings") + config["tfrecs_limit_per_file"] = utils.validate_int( + utils.user_input( + "limit of context windows per tfrecord file", "600" + ) + ) + config["train_ratio"] = utils.validate_float( + utils.user_input("trainratio", "0.7") + ) + config["test_val_ratio"] = utils.validate_float( + utils.user_input("test validation ratio", "0.7") + ) + + elif preset_option == 2: + path1_sound = st.text_input( + "Enter the path to your sound data:", "." + ) + config["sound_files_source"] = utils.open_folder_dialogue( + path1_sound, key="source_folder_" + key + ) + path2_annots = st.text_input( + "Enter the path to your reviewed annotations:", "." + ) + config["reviewed_annotation_source"] = utils.open_folder_dialogue( + path2_annots, key="reviewed_annotations_folder" + key + ) + + st.markdown("### Settings") + st.markdown("#### Audio preprocessing") + config["sample_rate"] = utils.validate_int( + utils.user_input("sample rate [Hz]", "2000") + ) + config["context_window_in_seconds"] = utils.validate_float( + utils.user_input("context window length [s]", "3.9") + ) + st.markdown("#### Spectrogram settings") + config["stft_frame_len"] = utils.validate_int( + utils.user_input("STFT frame length [samples]", "1024") + ) + config["number_of_time_bins"] = utils.validate_int( + utils.user_input("number of time bins", "128") + ) + st.markdown("#### TFRecord creationg settings") + config["tfrecs_limit_per_file"] = utils.validate_int( + utils.user_input( + "limit of context windows per tfrecord file", "600" + ) + ) + config["train_ratio"] = utils.validate_float( + utils.user_input("trainratio", "0.7") + ) + config["test_val_ratio"] = utils.validate_float( + utils.user_input("test validation ratio", "0.7") + ) + + for k, v in config.items(): + utils.write_to_session_file(k, v) + return True diff --git a/acodet/front_end/st_train.py b/acodet/front_end/st_train.py new file mode 100644 index 0000000000000000000000000000000000000000..352629f03c0a14f1483a889036c3c8c1205cba05 --- /dev/null +++ b/acodet/front_end/st_train.py @@ -0,0 +1,92 @@ +import streamlit as st +from acodet.front_end import utils + + +def train_options(key="train"): + preset_option = int( + st.selectbox( + "How would you like run the program?", + ( + "1 - train new model", + "2 - continue training on existing model and save model in the end", + "3 - evaluate saved model", + "4 - evaluate model checkpoint", + "5 - save model specified in advanced config", + ), + key=key, + )[0] + ) + st.session_state.preset_option = preset_option + utils.make_nested_btn_false_if_dropdown_changed(3, preset_option, 3) + utils.make_nested_btn_false_if_dropdown_changed( + run_id=1, preset_id=preset_option, btn_id=4 + ) + utils.next_button(id=3) + if not st.session_state.b3: + pass + else: + config = dict() + config["predefined_settings"] = preset_option + + if preset_option == 1: + st.markdown("### Model training settings") + st.markdown("#### Model architecture") + model_architecture = utils.user_dropdown( + "Which model architecture would you like to use?", + ( + "HumpBackNorthAtlantic", + "ResNet50", + "ResNet101", + "ResNet152", + "MobileNet", + "DenseNet169", + "DenseNet201", + "EfficientNet0", + "EfficientNet1", + "EfficientNet2", + "EfficientNet3", + "EfficientNet4", + "EfficientNet5", + "EfficientNet6", + "EfficientNet7", + ), + ) + config["ModelClassName"] = model_architecture + if not model_architecture == "HumpBackNorthAtlantic": + config["keras_mod_name"] = True + st.markdown("#### Hyperparameters") + config["batch_size"] = utils.validate_int( + utils.user_input("batch size", "32") + ) + config["epochs"] = utils.validate_int( + utils.user_input("epochs", "50") + ) + config["steps_per_epoch"] = utils.validate_int( + utils.user_input("steps per epoch", "1000") + ) + config["init_lr"] = utils.validate_float( + utils.user_input("initial learning rate", "0.0005") + ) + config["final_lr"] = utils.validate_float( + utils.user_input("final learning rate", "0.000005") + ) + st.markdown("#### Augmentations") + config["time_augs"] = utils.user_dropdown( + "Use time-shift augmentation", ("True", "False") + ) + config["mixup_augs"] = utils.user_dropdown( + "Use mixup augmentation", ("True", "False") + ) + config["spec_aug"] = utils.user_dropdown( + "Use specaugment augmentation", ("True", "False") + ) + + for key in ["time_augs", "mixup_augs", "spec_aug"]: + if config[key] == "False": + config[key] = False + else: + config[key] = True + + for k, v in config.items(): + utils.write_to_session_file(k, v) + return True diff --git a/acodet/front_end/st_visualization.py b/acodet/front_end/st_visualization.py new file mode 100644 index 0000000000000000000000000000000000000000..663d55a99c851cf31bd1bad247d7474dc867a91e --- /dev/null +++ b/acodet/front_end/st_visualization.py @@ -0,0 +1,286 @@ +import streamlit as st +from pathlib import Path +import pandas as pd +import numpy as np +from acodet.front_end import utils +import plotly.express as px +from acodet.create_session_file import read_session_file +from acodet.front_end import help_strings + +conf = read_session_file() + + +def output(): + conf = read_session_file() + if st.session_state.run_option == 1: + if st.session_state.preset_option == 0: + disp = ShowAnnotationPredictions() + disp.show_annotation_predictions() + disp.create_tabs( + additional_headings=[ + "Filtered Files", + "Annot. Plots", + "Presence Plots", + ] + ) + disp.show_stats() + disp.show_individual_files() + disp.show_individual_files( + tab_number=2, thresh_path=f"thresh_{conf['thresh']}" + ) + plot_tabs = Results(disp) + plot_tabs.create_tabs() + + elif st.session_state.preset_option == 1: + disp = ShowAnnotationPredictions() + disp.show_annotation_predictions() + disp.create_tabs() + disp.show_stats() + disp.show_individual_files() + + elif st.session_state.preset_option == 2: + conf = read_session_file() + disp = ShowAnnotationPredictions() + disp.show_annotation_predictions() + disp.create_tabs() + disp.show_stats() + disp.show_individual_files(thresh_path=f"thresh_{conf['thresh']}") + + elif st.session_state.preset_option == 3: + disp = ShowAnnotationPredictions() + disp.show_annotation_predictions() + disp.create_tabs( + additional_headings=[ + "Annot. Plots", + "Presence Plots", + ] + ) + disp.show_stats() + disp.show_individual_files() + plot_tabs = Results(disp, tab_number=2) + plot_tabs.create_tabs() + + +class ShowAnnotationPredictions: + def show_annotation_predictions(self): + saved_annots_dir = Path(st.session_state.save_dir) + if len(list(saved_annots_dir.parents)) > 1: + self.annots_path = saved_annots_dir + else: + self.annots_path = Path( + conf["generated_annotations_folder"] + ).joinpath(saved_annots_dir) + st.markdown( + f"""Your annotations are saved in the folder: + `{self.annots_path.resolve().as_posix()}` + """ + ) + utils.write_to_session_file( + "generated_annotation_source", str(self.annots_path) + ) + + def create_tabs(self, additional_headings=[]): + """ + Create the tabs to display the respective results. + + Parameters + ---------- + additional_headings : list, optional + list of additional headings, by default [] + """ + tabs = st.tabs( + [ + "Stats", + "Annot. Files", + *additional_headings, + ] + ) + for i, tab in enumerate(tabs): + setattr(self, f"tab{i}", tab) + + def show_stats(self): + """ + Show stats file as pandas.DataFrame in a table. + """ + with self.tab0: + try: + df = pd.read_csv(self.annots_path.joinpath("stats.csv")) + if "Unnamed: 0" in df.columns: + df = df.drop(columns=["Unnamed: 0"]) + st.dataframe(df, hide_index=True) + except Exception as e: + print(e) + st.write( + """No stats.csv file found. Please run predefined settings 0, or 1 first + to view this tab.""" + ) + + def show_individual_files( + self, tab_number=1, thresh_path=conf["thresh_label"] + ): + with getattr(self, f"tab{tab_number}"): + path = self.annots_path.joinpath(thresh_path) + annot_files = [l for l in path.rglob("*.txt")] + display_annots = [ + f.relative_to(path).as_posix() for f in annot_files + ] + chosen_file = st.selectbox( + label=f"""Choose a generated annotations file from + `{path.resolve()}`""", + options=display_annots, + key=f"file_selec_{tab_number}", + help=help_strings.ANNOT_FILES_DROPDOWN, + ) + st.write("All of these files can be imported into Raven directly.") + df = pd.read_csv(path.joinpath(chosen_file), sep="\t") + st.dataframe(df, hide_index=True) + + +class Results(utils.Limits): + def __init__(self, disp_obj, tab_number=3) -> None: + """ + Results class containing all of the data processings to prepare + data for plots and tables. + + Parameters + ---------- + disp_obj : object + ShowAnnotationPredictions object to link processing to + the respective streamlit widget + tab_number : int, optional + number of tab to show results in, by default 3 + """ + self.plots_paths = [ + [d for d in p.iterdir() if d.is_dir()] + for p in disp_obj.annots_path.rglob("*analysis*") + ][0] + if not self.plots_paths: + st.write( + "No analysis files found for this dataset. " + "Please run predefined settings 0, or 1 first." + ) + st.stop() + self.disp_obj = disp_obj + self.tab_number = tab_number + + def create_tabs(self): + """ + Create tabs for plots. + """ + self.tabs = { + "binary": getattr(self.disp_obj, f"tab{self.tab_number}"), + "presence": getattr(self.disp_obj, f"tab{self.tab_number+1}"), + } + for key, tab in self.tabs.items(): + self.init_tab(tab=tab, key=key) + + def init_tab(self, tab, key): + with tab: + datasets = [l.stem for l in self.plots_paths] + + chosen_dataset = st.selectbox( + label=f"""Choose a dataset:""", + options=datasets, + key=f"dataset_selec_{key}", + ) + self.chosen_dataset = ( + self.disp_obj.annots_path.joinpath(conf["thresh_label"]) + .joinpath("analysis") + .joinpath(chosen_dataset) + ) + + limit = st.radio( + "What limit would you like to set?", + ("Simple limit", "Sequence limit"), + key=f"limit_selec_{key}", + help=help_strings.LIMIT, + ) + + super(Results, self).__init__(limit, key) + + results = PlotDisplay(self.chosen_dataset, tab, key) + results.plot_df(self.limit_label) + + self.create_limit_sliders() + self.rerun_computation_btn() + + self.save_selection_tables_with_limit_settings() + + def rerun_computation_btn(self): + """ + Show rerun computation button after limits have been set and + execute run.main. + """ + rerun = st.button("Rerun computation", key=f"update_plot_{self.key}") + st.session_state.progbar_update = st.progress(0, text="Updating plot") + if rerun: + utils.write_to_session_file(self.thresh_label, self.thresh) + if self.sc: + utils.write_to_session_file(self.limit_label, self.limit) + + import run + + run.main( + dont_save_plot=True, + sc=self.sc, + fetch_config_again=True, + preset=3, + update_plot=True, + ) + + +class PlotDisplay: + def __init__(self, chosen_dataset, tab, key) -> None: + self.chosen_dataset = chosen_dataset + self.tab = tab + self.key = key + + if key == "binary": + self.path_prefix = "hourly_annotation" + self.cbar_label = "Number of annotations" + self.c_range = [0, conf["max_annots_per_hour"]] + elif key == "presence": + self.path_prefix = "hourly_presence" + self.cbar_label = "Presence" + self.c_range = [0, 1] + + def plot_df(self, limit_label): + """ + + Plot dataframe showing either hourly presence or annotation count + in an interactive plotly visualization. + + TODO onclick display of scrollable spectrogram would be really sick. + + Parameters + ---------- + limit_label : string + key of config dict to acces simple or sequence limit + """ + df = pd.read_csv( + self.chosen_dataset.joinpath( + f"{self.path_prefix}_{limit_label}.csv" + ) + ) + df.index = pd.DatetimeIndex(df.Date) + df = df.reindex( + pd.date_range(df.index[0], df.index[-1]), fill_value=np.nan + ) + + h_of_day_str = ["%.2i:00" % i for i in range(24)] + h_pres = df.loc[:, h_of_day_str] + + fig = px.imshow( + h_pres.T, + labels=dict(x="Date", y="Time of Day", color=self.cbar_label), + x=df.index, + y=h_of_day_str, + range_color=self.c_range, + color_continuous_scale="blugrn", + ) + + fig.update_xaxes(showgrid=False) + fig.update_yaxes(showgrid=False) + fig.update_layout(hovermode="x") + + st.plotly_chart(fig) diff --git a/acodet/front_end/utils.py b/acodet/front_end/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..98113908dcb807f4c76e0d9771acedbd5f79d310 --- /dev/null +++ b/acodet/front_end/utils.py @@ -0,0 +1,238 @@ +import streamlit as st +from pathlib import Path +from acodet import create_session_file +from . import help_strings + +conf = create_session_file.read_session_file() +import json +import keras + + +def open_folder_dialogue( + path=conf["generated_annotations_folder"], + key="folder", + label="Choose a folder", + filter_existing_annotations=False, + **kwargs, +): + try: + if not filter_existing_annotations: + foldernames_list = [ + f"{x.stem}{x.suffix}" + for x in Path(path).iterdir() + if x.is_dir() + ] + if f"thresh_{conf['default_threshold']}" in foldernames_list: + foldernames_list = [f"thresh_{conf['default_threshold']}"] + else: + foldernames_list = [ + f"{x.stem}{x.suffix}" + for x in Path(path).iterdir() + if x.is_dir() + ] + foldernames_list.sort() + foldernames_list.reverse() + # create selectbox with the foldernames + chosen_folder = st.selectbox( + label=label, options=foldernames_list, key=key, **kwargs + ) + + # set the full path to be able to refer to it + directory_path = Path(path).joinpath(chosen_folder) + return str(directory_path) + + except FileNotFoundError: + st.write("Folder does not exist, retrying.") + + +def next_button(id, text="Next", **kwargs): + if f"b{id}" not in st.session_state: + setattr(st.session_state, f"b{id}", False) + val = st.button(text, key=f"button_{id}", **kwargs) + if val: + setattr(st.session_state, f"b{id}", True) + make_nested_btns_false_on_click(id) + if text in ["Run computations", "Next"]: + st.session_state.run_finished = False + + +def user_input(label, val, **input_params): + c1, c2 = st.columns(2) + c1.markdown("##") + input_params.setdefault("key", label) + c1.markdown(label) + return c2.text_input(" ", val, **input_params) + + +def user_dropdown(label, vals, **input_params): + c1, c2 = st.columns(2) + c1.markdown("##") + input_params.setdefault("key", label) + c1.markdown(label) + return c2.selectbox(" ", vals, **input_params) + + +def write_to_session_file(key, value): + if "session_started" in st.session_state: + setattr(st.session_state, key, value) + else: + with open("acodet/src/tmp_session.json", "r") as f: + session = json.load(f) + session[key] = value + with open("acodet/src/tmp_session.json", "w") as f: + json.dump(session, f) + + +def validate_float(input): + try: + return float(input) + except ValueError: + st.write( + '

The value you entered is not a number.

', + unsafe_allow_html=True, + ) + + +def validate_int(input): + try: + return int(input) + except ValueError: + st.write( + '

The value you entered is not a number.

', + unsafe_allow_html=True, + ) + + +def make_nested_btn_false_if_dropdown_changed(run_id, preset_id, btn_id): + if "session_started" in st.session_state: + session = {**st.session_state} + else: + with open("acodet/src/tmp_session.json", "r") as f: + session = json.load(f) + if not ( + session["run_config"] == run_id + and session["predefined_settings"] == preset_id + ): + setattr(st.session_state, f"b{btn_id}", False) + + +def make_nested_btns_false_on_click(btn_id): + btns = [i for i in range(btn_id + 1, 6)] + for btn in btns: + setattr(st.session_state, f"b{btn}", False) + + +def prepare_run(): + if st.session_state.run_option == 1: + st.markdown("""---""") + st.markdown("## Computation started, please wait.") + if st.session_state.preset_option in [0, 1]: + kwargs = { + "callbacks": TFPredictProgressBar, + "progbar1": st.progress(0, text="Current file"), + "progbar2": st.progress(0, text="Overall progress"), + } + else: + kwargs = {"progbar1": st.progress(0, text="Progress")} + return kwargs + + +class Limits: + def __init__(self, limit, key): + """ + A simple class to contain all methods revolving around the limit sliders + for simple and sequence limit. + + Parameters + ---------- + limit : string + either simple or sequence limit, from radio btn + key : string + unique identifier for streamlit options + """ + self.key = "limit_" + key + self.save_btn = False + if limit == "Simple limit": + self.limit_label = "simple_limit" + self.thresh_label = "thresh" + self.sc = False + self.limit_max = 50 + elif limit == "Sequence limit": + self.limit_label = "sequence_limit" + self.thresh_label = "sequence_thresh" + self.sc = True + self.limit_max = 20 + + def create_limit_sliders(self): + """ + Show sliders for simple and sequence limit, depending on the selection + of the radio btn. + """ + self.thresh = st.slider( + "Threshold", + 0.35, + 0.99, + conf[self.thresh_label], + 0.01, + key=f"thresh_slider_{self.key}", + help=help_strings.THRESHOLD, + ) + + if self.sc: + self.limit = st.slider( + "Limit", + 1, + self.limit_max, + conf[self.limit_label], + 1, + key=f"limit_slider_{self.key}", + help=help_strings.SC_LIMIT, + ) + + def show_save_selection_tables_btn(self): + """Show save selection tables btn.""" + self.save_btn = st.button( + "Save tables", self.key, help=help_strings.SAVE_SELECTION_BTN + ) + + def save_selection_tables_with_limit_settings(self): + """ + Save the selection tables of the chosen dataset again with + the selected settings of the respective limit. + """ + self.show_save_selection_tables_btn() + if self.save_btn: + st.session_state.progbar_update = st.progress(0, text="Progress") + write_to_session_file(self.thresh_label, self.thresh) + if self.sc: + write_to_session_file(self.limit_label, self.limit) + + import run + + run.main( + dont_save_plot=True, + sc=self.sc, + fetch_config_again=True, + preset=3, + save_filtered_selection_tables=True, + ) + + +class TFPredictProgressBar(keras.callbacks.Callback): + def __init__(self, num_of_files, progbar1, progbar2, **kwargs): + self.num_of_files = num_of_files + self.pr_bar1 = progbar1 + self.pr_bar2 = progbar2 + + def on_predict_end(self, logs=None): + self.pr_bar2.progress( + st.session_state.progbar1 / self.num_of_files, + text="Overall progress", + ) + + def on_predict_batch_begin(self, batch, logs=None): + if self.params["steps"] == 1: + denominator = 1 + else: + denominator = self.params["steps"] - 1 + self.pr_bar1.progress(batch / denominator, text="Current file") diff --git a/acodet/funcs.py b/acodet/funcs.py new file mode 100644 index 0000000000000000000000000000000000000000..ddfa7b09d7e50011797bff615654fad1e8e48e33 --- /dev/null +++ b/acodet/funcs.py @@ -0,0 +1,747 @@ +from email import generator +import re +import zipfile +import datetime as dt +import json +import tensorflow as tf +import numpy as np +import librosa as lb +from pathlib import Path +import pandas as pd +from . import global_config as conf + +############# ANNOTATION helpers ############################################ + + +def remove_str_flags_from_predictions(df): + # TODO wenn annotation_column nicht in columns ist fehler raisen + n = df.loc[df[conf.ANNOTATION_COLUMN] == "n"].index + n_ = df.loc[df[conf.ANNOTATION_COLUMN] == "n "].index + u = df.loc[df[conf.ANNOTATION_COLUMN] == "u"].index + u_ = df.loc[df[conf.ANNOTATION_COLUMN] == "u "].index + c = df.loc[df[conf.ANNOTATION_COLUMN] == "c"].index + c_ = df.loc[df[conf.ANNOTATION_COLUMN] == "c "].index + + clean = df.drop([*n, *u, *c, *n_, *u_, *c_]) + clean.loc[:, conf.ANNOTATION_COLUMN] = clean[ + conf.ANNOTATION_COLUMN + ].astype(float) + return clean + + +############# TFRECORDS helpers ############################################# +def get_annots_for_file(annots: pd.DataFrame, file: str) -> pd.DataFrame: + """ + Get annotations for a file and sort by the start time of the annotated + call. + + Parameters + ---------- + annots : pd.DataFrame + global annotations dataframe + file : str + file path + + Returns + ------- + pd.DataFrame + filtered annotations dataframe + """ + return annots[annots.filename == file].sort_values("start") + + +def get_dt_filename(file): + if isinstance(file, Path): + stem = file.stem + else: + stem = file + + if "_annot_" in stem: + stem = stem.split("_annot_")[0] + + numbs = re.findall("[0-9]+", stem) + numbs = [n for n in numbs if len(n) % 2 == 0] + + i, datetime = 1, "" + while len(datetime) < 12: + if i > 1000: + raise NameError( + """Time stamp Error: time stamp in filename + doesn't fit any known pattern. If you would + like to predict this file anyway, please + choose predefined settings option 1. + """ + ) + datetime = "".join(numbs[-i:]) + i += 1 + + i = 1 + while 12 <= len(datetime) > 14: + datetime = datetime[:-i] + + for _ in range(2): + try: + if len(datetime) == 12: + file_date = dt.datetime.strptime(datetime, "%y%m%d%H%M%S") + elif len(datetime) == 14: + file_date = dt.datetime.strptime(datetime, "%Y%m%d%H%M%S") + except: + i = 1 + while len(datetime) > 12: + datetime = datetime[:-i] + + try: + # print(file_date) + return file_date + except Exception as e: + print( + "File date naming not understood.\n", + "This will be prevent hourly prediction computation.\n", + e, + ) + return "ERROR" + + +def get_channel(dir): + if "_CH" in str(dir)[-5:]: + channel = int(re.findall("[0-9]+", str(dir)[-5:])[0]) - 1 + else: + channel = 0 + return channel + + +def load_audio(file, channel=0, **kwargs) -> np.ndarray: + """ + Load audio file, print error if file is corrupted. If the sample rate + specified in the config file is not the same as the downsample sample + rate, resample the audio file accordingly. + + Parameters + ---------- + file : str or pathlib.Path + file path + + Returns + ------- + audio_flat: np.ndarray + audio array + """ + try: + if conf.DOWNSAMPLE_SR and conf.SR != conf.DOWNSAMPLE_SR: + with open(file, "rb") as f: + audio_flat, _ = lb.load( + f, sr=conf.DOWNSAMPLE_SR, mono=False, **kwargs + )[channel] + if len(audio_flat.shape) > 1: + audio_flat = audio_flat[channel] + + audio_flat = lb.resample( + audio_flat, orig_sr=conf.DOWNSAMPLE_SR, target_sr=conf.SR + ) + else: + with open(file, "rb") as f: + audio_flat, _ = lb.load(f, sr=conf.SR, mono=False, **kwargs) + if len(audio_flat.shape) > 1: + audio_flat = audio_flat[channel] + + if len(audio_flat) == 0: + return + return audio_flat + except: + print("File is corrputed and can't be loaded.") + return + + +def return_windowed_file(file) -> tuple([np.ndarray, np.ndarray]): + """ + Load audio file and turn the 1D array into a 2D array. The rows length + corresponds to the window length specified by the config file. The + number of columns results from the division of the 1D array length + by the context window length. The incomplete remainder is discarded. + Along with the window, a 1D array of times is returned, corresponding + to the beginning in seconds of each context window within the original + file. + + Parameters + ---------- + file : str or pathlib.Path + file path + + Returns + ------- + audio_arr: np.ndarray + 2D audio array + times: np.ndarray + start times of the context windows + """ + audio = load_audio(file) + audio = audio[: len(audio) // conf.CONTEXT_WIN * conf.CONTEXT_WIN] + audio_arr = audio.reshape( + [len(audio) // conf.CONTEXT_WIN, conf.CONTEXT_WIN] + ) + + times = np.arange( + 0, + audio_arr.shape[0] * conf.CONTEXT_WIN / conf.SR, + conf.CONTEXT_WIN / conf.SR, + ) + return audio_arr, times + + +def cntxt_wndw_arr( + annotations: pd.DataFrame, file, inbetween_noise: bool = True, **kwargs +) -> tuple: + """ + Load an audio file, with the duration given by the time difference + between the first and last annotation. Iterate through the annotations + and extract 1D segments from the audio array based on the annotations, + the sample rate and the context window length, all specified in the config + file. The resulting context window is appended to a list, yielding a 2D + array with context windows corresponding to the annotated sections. + + To be able to find the section in the original audio file, another list + is filled with all the start times noted in the annotations multiplied + by the sample rate. The times list contains the beginning time of each + context window in samples. + + Finally if the argument 'inbetween_noise' is False, the nosie arrays in between + the calls are collected and all 4 arrays are returned. + + Parameters + ---------- + annotations : pd.DataFrame + annotations of vocalizations in file + file : str or pathlib.Path + file path + inbetween_noise : bool, defaults to True + decide if in between noise should be collected as well or, in case + the argument is True, all the annotations are already all noise, in + which case no in between noise is returned + + Returns + ------- + seg_ar: np.ndarray + segment array containing the 2D audio array + noise_ar: np.ndarray + 2D audio array of noise + times_c + time list for calls + times_n + time list for noise + """ + duration = annotations["end"].iloc[-1] + conf.CONTEXT_WIN / conf.SR + audio = load_audio(file, duration=duration) + + segs, times = [], [] + for _, row in annotations.iterrows(): + num_windows = round( + (row.end - row.start) / (conf.CONTEXT_WIN / conf.SR) - 1 + ) + num_windows = num_windows or 1 + for i in range( + num_windows + ): # TODO fuer grosse annotationen mehrere fenster erzeugen + start = row.start + i * (conf.CONTEXT_WIN / conf.SR) + beg = int(start * conf.SR) + end = int(start * conf.SR + conf.CONTEXT_WIN) + + if len(audio[beg:end]) == conf.CONTEXT_WIN: + segs.append(audio[beg:end]) + times.append(beg) + else: + end = len(audio) + beg = end - conf.CONTEXT_WIN + segs.append(audio[beg:end]) + times.append(beg) + break + + segs = np.array(segs, dtype="float32") + times = np.array(times, dtype="float32") + + # TODO docstrings aufraumen + if len(segs) - len(annotations) < 0: + annotations = annotations.drop( + annotations.index[len(segs) - len(annotations) :] + ) + if ( + not inbetween_noise + ): # TODO mismatch in lengths, allow longer active learning annots + seg_ar = np.array(segs[annotations["label"] == 1], dtype="float32") + times_c = np.array(times[annotations["label"] == 1], dtype="float32") + else: + seg_ar = segs + times_c = times + if inbetween_noise: + noise_ar, times_n = return_inbetween_noise_arrays(audio, annotations) + elif len(annotations.loc[annotations["label"] == 0]) > 0: + noise_ar = np.array(segs[annotations["label"] == 0], dtype="float32") + times_n = np.array(times[annotations["label"] == 0], dtype="float32") + else: + noise_ar, times_n = np.array([]), np.array([]) + + return seg_ar, noise_ar, times_c, times_n + + +def wins_bet_calls(annotations: pd.DataFrame) -> list: + """ + Returns a list of ints, corresponding to the number of context windows + that fit between calls. The indexing is crucial, so that each start time + is subtracted from the previous end time, thereby yielding the gap length. + + Parameters + ---------- + annotations : pd.DataFrame + annotations + + Returns + ------- + list + number of context windows that fit between the start of one and the end of + the previous annotation + """ + beg_min_start = annotations.start[1:].values - annotations.end[:-1].values + return (beg_min_start // (conf.CONTEXT_WIN / conf.SR)).astype(int) + + +def return_inbetween_noise_arrays( + audio: np.ndarray, annotations: pd.DataFrame +) -> tuple: + """ + Collect audio arrays based on the gaps between vocalizations. + Based on the number of context windows that fit inbetween two + subsequent annotations, the resulting amount of segments are + extracted from the audio file. + Again, a list containing the start time of each array is also + retrieved. + If no entire context window fits between two annotations, no + noise sample is generated. + The resulting 2D noise array is returned along with the times. + + Parameters + ---------- + audio : np.ndarray + flat 1D audio array + annotations : pd.DataFrame + annotations of vocalizations + + Returns + ------- + np.ndarray + 2D audio array of noise + times: list + start times of each context window + """ + noise_ar, times = list(), list() + for ind, num_wndws in enumerate(wins_bet_calls(annotations)): + if num_wndws < 1: + continue + + for window_ind in range(num_wndws): + beg = ( + int(annotations.end.iloc[ind] * conf.SR) + + conf.CONTEXT_WIN * window_ind + ) + end = beg + conf.CONTEXT_WIN + noise_ar.append(audio[beg:end]) + times.append(beg) + + return np.array(noise_ar, dtype="float32"), times + + +def get_train_set_size(tfrec_path): + if not isinstance(tfrec_path, list): + tfrec_path = [tfrec_path] + train_set_size, noise_set_size = 0, 0 + for dataset_dir in tfrec_path: + try: + for dic in Path(dataset_dir).glob("**/*dataset*.json"): + with open(dic, "r") as f: + data_dict = json.load(f) + if "noise" in str(dic): + noise_set_size += data_dict["dataset"]["size"]["train"] + elif "train" in data_dict["dataset"]["size"]: + train_set_size += data_dict["dataset"]["size"]["train"] + except: + print( + "No dataset dictionary found, estimating dataset size." + "WARNING: This might lead to incorrect learning rates!" + ) + train_set_size += 5000 + noise_set_size += 100 + return train_set_size, noise_set_size + + +################ Plotting helpers ########################################### + + +def get_time(time: float) -> str: + """ + Return time in readable string format m:s.ms. + + Parameters + ---------- + time : float + time in seconds + + Returns + ------- + str + time in minutes:seconds.miliseconds + """ + return f"{int(time/60)}:{np.mod(time, 60):.1f}s" + + +################ Model Training helpers ##################################### + + +def save_model_results(ckpt_dir: str, result: dict): + """ + Format the results dict so that no error occurrs when saving the json. + + Parameters + ---------- + ckpt_dir : str + checkpoint path + result : dict + training results + """ + result["fbeta"] = [float(n) for n in result["fbeta"]] + result["val_fbeta"] = [float(n) for n in result["val_fbeta"]] + result["fbeta1"] = [float(n) for n in result["fbeta1"]] + result["val_fbeta1"] = [float(n) for n in result["val_fbeta1"]] + with open(f"{ckpt_dir}/results.json", "w") as f: + json.dump(result, f) + + +def get_val_labels( + val_data: tf.data.Dataset, num_of_samples: int +) -> np.ndarray: + """ + Return all validation set labels. The dataset is batched with the dataset + size, thus creating one batch from the entire dataset. This batched + dataset is then converted to a list and its numpy attribute is returned. + + Parameters + ---------- + val_data : tf.data.Dataset + validation set + num_of_samples : int + length of dataset + + Returns + ------- + np.ndarray + array of all validation set labels + """ + return list(val_data.batch(num_of_samples))[0][1].numpy() + + +############### Model Evaluation helpers #################################### + + +def print_evaluation( + val_data: tf.data.Dataset, model: tf.keras.Sequential, batch_size: int +): + """ + Print evaluation results. + + Parameters + ---------- + val_data : tf.data.Dataset + validation data set + model : tf.keras.Sequential + keras model + batch_size : int + batch size + """ + model.evaluate(val_data, batch_size=batch_size, verbose=2) + + +def get_pr_arrays( + labels: np.ndarray, preds: np.ndarray, metric: str, **kwargs +) -> np.ndarray: + """ + Compute Precision or Recall on given set of labels and predictions. + Threshold values are created with 0.01 increments. + + Parameters + ---------- + labels : np.ndarray + labels + preds : np.ndarray + predictions + metric : str + Metric to calculate i.e. Recall or Precision + + Returns + ------- + np.ndarray + resulting values + """ + r = getattr(tf.keras.metrics, metric)(**kwargs) + r.update_state(labels, preds.reshape(len(preds))) + return r.result().numpy() + + +############## Generate Model Annotations helpers ############################ + + +def get_files( + *, location: str = f"{conf.GEN_ANNOTS_DIR}", search_str: str = "*.wav" +) -> list: + """ + Find all files corresponding to given search string within a specified + location. + + Parameters + ---------- + location : str, optional + root directory of files, by default 'generated_annotations/src' + search_str : str, optional + search string containing search pattern, for example '*.wav', + by default '*.wav' + + Returns + ------- + generator + list containing pathlib.Path objects of all files fitting + the pattern + """ + folder = Path(location) + return list(folder.glob(search_str)) + + +def window_data_for_prediction(audio: np.ndarray) -> tf.Tensor: + """ + Compute predictions based on spectrograms. First the number of context + windows that fit into the audio array are calculated. The result is an + integer unless the last section is reached, in that case the audio is + zero padded to fit the length of a multiple of the context window length. + The array is then zero padded to fit a integer multiple of the context + window. + + Parameters + ---------- + audio : np.ndarray + 1D audio array + + Returns + ------- + tf.Tensor + 2D audio tensor with shape [context window length, number of windows] + """ + num = np.ceil(len(audio) / conf.CONTEXT_WIN) + # zero pad in case the end is reached + audio = [*audio, *np.zeros([int(num * conf.CONTEXT_WIN - len(audio))])] + wins = np.array(audio).reshape([int(num), conf.CONTEXT_WIN]) + + return tf.convert_to_tensor(wins) + + +def create_Raven_annotation_df(preds: np.ndarray, ind: int) -> pd.DataFrame: + """ + Create a DataFrame with column names according to the Raven annotation + format. The DataFrame is then filled with the corresponding values. + Beginning and end times for each context window, high and low frequency + (from config), and the prediction values. Based on the predicted values, + the sections with predicted labels of less than the threshold are + discarded. + + Parameters + ---------- + preds : np.ndarray + predictions + ind : int + batch of current predictions (in case predictions are more than + the specified limitation for predictions) + + Returns + ------- + pd.DataFrame + annotation dataframe for current batch, filtered by threshold + """ + df = pd.DataFrame( + columns=[ + "Begin Time (s)", + "End Time (s)", + "High Freq (Hz)", + "Low Freq (Hz)", + ] + ) + + df["Begin Time (s)"] = ( + np.arange(0, len(preds)) * conf.CONTEXT_WIN + ) / conf.SR + df["End Time (s)"] = df["Begin Time (s)"] + conf.CONTEXT_WIN / conf.SR + + df["Begin Time (s)"] += (ind * conf.PRED_BATCH_SIZE) / conf.SR + df["End Time (s)"] += (ind * conf.PRED_BATCH_SIZE) / conf.SR + + df["High Freq (Hz)"] = conf.ANNOTATION_DF_FMAX + df["Low Freq (Hz)"] = conf.ANNOTATION_DF_FMIN + df[conf.ANNOTATION_COLUMN] = preds + + return df.iloc[preds.reshape([len(preds)]) > conf.DEFAULT_THRESH] + + +def create_annotation_df( + audio_batches: np.ndarray, + model: tf.keras.Sequential, + callbacks: None = None, + **kwargs, +) -> pd.DataFrame: + """ + Create a annotation dataframe containing all necessary information to + be imported into a annotation program. The loaded audio batches are + iterated over and used to predict labels. All information is then used + to fill a DataFrame. After having gone through all batches, the index + column is set to a increasing integers named 'Selection' (convention). + + Parameters + ---------- + audio_batches : np.ndarray + audio batches + model : tf.keras.Sequential + model instance to predict values + + Returns + ------- + pd.DataFrame + annotation dataframe + """ + annots = pd.DataFrame() + for ind, audio in enumerate(audio_batches): + if callbacks is not None and ind == 0: + callbacks = callbacks(**kwargs) + preds = model.predict( + window_data_for_prediction(audio), callbacks=callbacks + ) + df = create_Raven_annotation_df(preds, ind) + annots = pd.concat([annots, df], ignore_index=True) + + annots.index = np.arange(1, len(annots) + 1) + annots.index.name = "Selection" + return annots + + +def batch_audio(audio_flat: np.ndarray) -> np.ndarray: + """ + Divide 1D audio array into batches depending on the config parameter + pred_batch_size (predictions batch size) i.e. the number of windows + that are being simultaneously predicted. + + Parameters + ---------- + audio_flat : np.ndarray + 1D audio array + + Returns + ------- + np.ndarray + batched audio array + """ + if len(audio_flat) < conf.PRED_BATCH_SIZE: + audio_batches = [audio_flat] + else: + n = conf.PRED_BATCH_SIZE + audio_batches = [ + audio_flat[i : i + n] + for i in range(0, len(audio_flat), conf.PRED_BATCH_SIZE) + ] + return audio_batches + + +def get_directory_structure_relative_to_config_path(file): + return file.relative_to(conf.SOUND_FILES_SOURCE).parent + + +def get_top_dir_name_if_only_one_parent_dir(file, parent_dirs): + if str(parent_dirs) == ".": + parent_dirs = file.parent.stem + return parent_dirs + + +def check_top_dir_crit(parent_dirs): + return Path(parent_dirs).parts[0] != Path(conf.SOUND_FILES_SOURCE).stem + + +def check_no_subdir_crit(parent_dirs): + return len(list(Path(parent_dirs).parents)) == 1 + + +def check_top_dir_is_conf_top_dir(): + return not Path(conf.SOUND_FILES_SOURCE).stem == conf.TOP_DIR_NAME + + +def manage_dir_structure(file): + parent_dirs = get_directory_structure_relative_to_config_path(file) + parent_dirs = get_top_dir_name_if_only_one_parent_dir(file, parent_dirs) + + bool_top_dir_crit = check_top_dir_crit(parent_dirs) + bool_no_subdir = check_no_subdir_crit(parent_dirs) + bool_top_dir_is_conf = check_top_dir_is_conf_top_dir() + + if (bool_top_dir_crit and bool_no_subdir) and bool_top_dir_is_conf: + parent_dirs = Path(Path(conf.SOUND_FILES_SOURCE).stem).joinpath( + parent_dirs + ) + return parent_dirs + + +def get_top_dir(parent_dirs): + return str(parent_dirs).split("/")[0] + + +def gen_annotations( + file, + model: tf.keras.Model, + mod_label: str, + timestamp_foldername: str, + **kwargs, +): + """ + Load audio file, instantiate model, use it to predict labels, fill a + dataframe with the predicted labels as well as necessary information to + import the annotations in a annotation program (like Raven). Finally the + annotations are saved as a single text file in directories corresponding + to the model checkpoint name within the generated annotations directory. + + Parameters + ---------- + file : str or pathlib.Path object + file path + model : tf.keras.Model + tensorflow model + mod_label : str + label to clarify which model was used + timestamp_foldername : str + date time string foldername corresponding to the time the annotations were + computed + """ + parent_dirs = manage_dir_structure(file) + + channel = get_channel(get_top_dir(parent_dirs)) + + audio = load_audio(file, channel) + if audio is None: + raise ImportError( + f"The audio file `{str(file)}` cannot be loaded. Check if file has " + "one of the supported endings " + "(wav, mp3, flac, etc.)) and is not empty." + ) + audio_batches = batch_audio(audio) + + annotation_df = create_annotation_df(audio_batches, model, **kwargs) + + save_path = ( + Path(conf.GEN_ANNOTS_DIR) + .joinpath(timestamp_foldername) + .joinpath(conf.THRESH_LABEL) + .joinpath(parent_dirs) + ) + save_path.mkdir(exist_ok=True, parents=True) + annotation_df.to_csv( + save_path.joinpath(f"{file.stem}_annot_{mod_label}.txt"), sep="\t" + ) + + return annotation_df diff --git a/acodet/global_config.py b/acodet/global_config.py new file mode 100644 index 0000000000000000000000000000000000000000..8341fdc38ebd9e1a9a67d6b4ac82163e9938c8a7 --- /dev/null +++ b/acodet/global_config.py @@ -0,0 +1,144 @@ +############################################################################## + +# THIS FILE IS ONLY MEANT TO BE EDITED IF YOU ARE SURE! + +# PROGRAM FAILURE IS LIKELY TO OCCUR IF YOU ARE UNSURE OF THE +# CONSEQUENCES OF YOUR CHANGES. + +# IF YOU HAVE CHANGED VALUES AND ARE ENCOUNTERING ERRORS, +# STASH YOUR CHANGES ('git stash' in a git bash console in acodet directory) +# AND THEN PULL AGAIN ('git pull' in a git bash console in acodet directory) + +############################################################################## + +import json +import streamlit as st + +if "session_started" in st.session_state: + session = {**st.session_state} +else: + with open("acodet/src/tmp_session.json", "r") as f: + session = json.load(f) + +#################### AUDIO PROCESSING PARAMETERS ########################### +## GLOBAL AUDIO PROCESSING PARAMETERS +SR = session["sample_rate"] +## MEL-SPECTROGRAM PARAMETERS + +# FFT window length +STFT_FRAME_LEN = session["stft_frame_len"] + +# number of time bins for mel spectrogram +N_TIME_BINS = session["number_of_time_bins"] + +## CALCULATION OF CONTEXT WINDOW LENGTH +# calculation of context window in seconds to fit stft frame length +# and number of freq bins. From the set time length, the stft frame length +# is subtracted, as it stays constant. The remainder gets used to calculate +# the module of that value and the freuqency bins - 1 -> this then gives the +# correct number of samples per context window excluding the stft length, +# which is added subsequently. +set_length_samples = session["context_window_in_seconds"] * SR +set_length_without_stft_frame = set_length_samples - STFT_FRAME_LEN +set_length_fixed = set_length_without_stft_frame % (N_TIME_BINS - 1) + +CONTEXT_WIN = int( + set_length_without_stft_frame - set_length_fixed + STFT_FRAME_LEN +) + +CONTEXT_WIN_S_CORRECTED = CONTEXT_WIN / SR + +# downsample every audio file to this frame rate to ensure comparability +DOWNSAMPLE_SR = False + +## Settings for Creation of Tfrecord Dataset +# limit of context windows in a tfrecords file +TFRECS_LIM = session["tfrecs_limit_per_file"] +# train/test split +TRAIN_RATIO = session["train_ratio"] +# test/val split +TEST_VAL_RATIO = session["test_val_ratio"] + +## Model Parameters +# threshold for predictions +THRESH = session["thresh"] +# simple limit for hourly presence +SIMPLE_LIMIT = session["simple_limit"] +# sequence criterion threshold +SEQUENCE_THRESH = session["sequence_thresh"] +# sequence criterion limit +SEQUENCE_LIMIT = session["sequence_limit"] +# number of consecutive winodws for sequence criterion +SEQUENCE_CON_WIN = session["sequence_con_win"] +# limit for colorbar for hourly annotations +HR_CNTS_VMAX = session["max_annots_per_hour"] +# prediction window limit +PRED_WIN_LIM = session["prediction_window_limit"] + +# calculated global variables +FFT_HOP = (CONTEXT_WIN - STFT_FRAME_LEN) // (N_TIME_BINS - 1) +PRED_BATCH_SIZE = PRED_WIN_LIM * CONTEXT_WIN + +## Paths +TFREC_DESTINATION = session["tfrecords_destination_folder"] +ANNOT_DEST = session["annotation_destination"] +REV_ANNOT_SRC = session["reviewed_annotation_source"] +GEN_ANNOT_SRC = session["generated_annotation_source"] +SOUND_FILES_SOURCE = session["sound_files_source"] +GEN_ANNOTS_DIR = session["generated_annotations_folder"] +ANNOTS_TIMESTAMP_FOLDER = session["annots_timestamp_folder"] +# model directory +MODEL_DIR = "acodet/src/models" +# model name +MODEL_NAME = session["model_name"] +TOP_DIR_NAME = session["top_dir_name"] +THRESH_LABEL = session["thresh_label"] + +############# ANNOTATIONS ##################################### +DEFAULT_THRESH = session["default_threshold"] +ANNOTATION_DF_FMIN = session["annotation_df_fmin"] +ANNOTATION_DF_FMAX = session["annotation_df_fmax"] +## Column Names +# column name for annotation prediction values +ANNOTATION_COLUMN = "Prediction/Comments" + + +#################### RUN CONFIGURATION ###################################### +RUN_CONFIG = session["run_config"] +PRESET = session["predefined_settings"] + +#################### TRAINING CONFIG ######################################## + +MODELCLASSNAME = session["ModelClassName"] +BATCH_SIZE = session["batch_size"] +EPOCHS = session["epochs"] +LOAD_CKPT_PATH = session["load_ckpt_path"] +LOAD_G_CKPT = session["load_g_ckpt"] +KERAS_MOD_NAME = session["keras_mod_name"] +STEPS_PER_EPOCH = session["steps_per_epoch"] +TIME_AUGS = session["time_augs"] +MIXUP_AUGS = session["mixup_augs"] +SPEC_AUG = session["spec_aug"] +DATA_DESCRIPTION = session["data_description"] +INIT_LR = float(session["init_lr"]) +FINAL_LR = float(session["final_lr"]) +PRE_BLOCKS = session["pre_blocks"] +F_SCORE_BETA = session["f_score_beta"] +F_SCORE_THRESH = session["f_score_thresh"] +UNFREEZE = session["unfreeze"] + + +##################### HOURLY PRESENCE DIR AND FILE NAMES ##################### + +HR_CNTS_SL = "hourly_annotation_simple_limit" +HR_PRS_SL = "hourly_presence_simple_limit" +HR_CNTS_SC = "hourly_annotation_sequence_limit" +HR_PRS_SC = "hourly_presence_sequence_limit" +HR_VAL_PATH = session["hourly_presence_validation_path"] + +# column name for daily annotations (cumulative counts) +HR_DA_COL = "daily_annotations" +# column name for daily presence (binary) +HR_DP_COL = "Daily_Presence" + +STREAMLIT = session["streamlit"] diff --git a/acodet/hourly_presence.py b/acodet/hourly_presence.py new file mode 100644 index 0000000000000000000000000000000000000000..fc640f31308fd239b36fbe62d7045435499ba2d0 --- /dev/null +++ b/acodet/hourly_presence.py @@ -0,0 +1,765 @@ +import pandas as pd +import numpy as np +from acodet.funcs import get_files, get_dt_filename +import acodet.global_config as conf +from pathlib import Path +import matplotlib.pyplot as plt +import datetime as dt +import seaborn as sns + +sns.set_theme() +sns.set_style("white") + + +def hourly_prs(df: pd.DataFrame, lim: int = 10): + """ + Compute hourly presence. + + Parameters + ---------- + df : pd.DataFrame + dataframe containing annotations + lim : int, optional + limit for binary presence judgement, by default 10 + + Returns + ------- + int + either 0 or 1 - 0 if less than lim annotations are present, 1 if more + """ + if len(df) > lim: + return 1 + else: + return 0 + + +def daily_prs(df: pd.DataFrame): + """ + Compute daily presence. If at least one hour is present, the day is + considered present. + + Parameters + ---------- + df : pd.Dataframe + dataframe containing annotations + + Returns + ------- + int + 0 or 1 - 0 if no hour is present, 1 if at least one hour is present + """ + if 1 in df.loc[len(df), h_of_day_str()].values: + return 1 + else: + return 0 + + +def get_val(path: str or Path): + """ + Get validation dataframe. + + Parameters + ---------- + path : str or Path + path to validation dataframe + + Returns + ------- + pd.Dataframe + validation dataframe + """ + return pd.read_csv(path) + + +def h_of_day_str(): + return ["%.2i:00" % i for i in np.arange(24)] + + +def find_thresh05_path_in_dir(time_dir): + """ + Get corrects paths leading to thresh_0.5 directory contatining annotations. + Correct for incorrect paths, that already contain the thresh_0.5 path. + + Parameters + ---------- + time_dir : str + if run.py is run directly, a path to a specific timestamp can be passed + + Returns + ------- + pathlib.Path + correct path leading to thresh_0.5 directory + """ + root = Path(conf.GEN_ANNOT_SRC) + if root.parts[-1] == conf.THRESH_LABEL: + root = root.parent + elif root.parts[-1] == "thresh_0.9": + root = root.parent + + if not time_dir: + if root.joinpath(conf.THRESH_LABEL).exists(): + path = root.joinpath(conf.THRESH_LABEL) + else: + path = root + else: + path = ( + Path(conf.GEN_ANNOTS_DIR) + .joinpath(time_dir) + .joinpath(conf.THRESH_LABEL) + ) + return path + + +def init_date_tuple(files): + dates = list( + map(lambda x: get_dt_filename(x.stem.split("_annot")[0]), files) + ) + date_hour_tuple = list( + map(lambda x: (str(x.date()), "%.2i:00" % int(x.hour)), dates) + ) + + return np.unique(date_hour_tuple, axis=0, return_counts=True) + + +def compute_hourly_pres( + time_dir=None, + thresh=conf.THRESH, + lim=conf.SIMPLE_LIMIT, + thresh_sc=conf.SEQUENCE_THRESH, + lim_sc=conf.SEQUENCE_LIMIT, + sc=False, + fetch_config_again=False, + **kwargs, +): + if fetch_config_again: + import importlib + + importlib.reload(conf) + thresh = conf.THRESH + lim = conf.SIMPLE_LIMIT + thresh_sc = conf.SEQUENCE_THRESH + lim_sc = conf.SEQUENCE_LIMIT + + path = find_thresh05_path_in_dir(time_dir) + + if "multi_datasets" in conf.session: + directories = [ + [d for d in p.iterdir() if d.is_dir()] + for p in path.iterdir() + if p.is_dir() + ][0] + else: + directories = [p for p in path.iterdir() if p.is_dir()] + directories = [d for d in directories if not d.stem == "analysis"] + + for ind, fold in enumerate(directories): + files = get_files(location=fold, search_str="**/*txt") + files.sort() + + annots = return_hourly_pres_df( + files, + thresh, + thresh_sc, + lim, + lim_sc, + sc, + fold, + dir_ind=ind, + total_dirs=len(directories), + **kwargs, + ) + if "save_filtered_selection_tables" in kwargs: + top_dir_path = path.parent.joinpath(conf.THRESH_LABEL).joinpath( + fold.stem + ) + else: + top_dir_path = path.joinpath(fold.stem) + + annots.df.to_csv(get_path(top_dir_path, conf.HR_PRS_SL)) + annots.df_counts.to_csv(get_path(top_dir_path, conf.HR_CNTS_SL)) + if not "dont_save_plot" in kwargs.keys(): + for metric in (conf.HR_CNTS_SL, conf.HR_PRS_SL): + plot_hp(top_dir_path, lim, thresh, metric) + + if sc: + annots.df_sc.to_csv(get_path(top_dir_path, conf.HR_PRS_SC)) + annots.df_sc_cnt.to_csv(get_path(top_dir_path, conf.HR_CNTS_SC)) + if not "dont_save_plot" in kwargs.keys(): + for metric in (conf.HR_CNTS_SC, conf.HR_PRS_SC): + plot_hp(top_dir_path, lim_sc, thresh_sc, metric) + print("\n") + + +def get_end_of_last_annotation(annotations): + """ + Get number of seconds from beginning to the end of the last annotation. + + Parameters + ---------- + annotations : pd.DataFrame + annotation dataframe + + Returns + ------- + int or bool + False or number of seconds until last annotation + """ + if len(annotations) == 0: + return False + else: + return int(annotations["End Time (s)"].iloc[-1]) + + +def init_new_dt_if_exceeding_3600_s(h, date, hour): + """ + Return new date and hour string if annotations exceed an hour. This + ensures that hour presence is still computed even if a recording + exceeds an hour. + + Parameters + ---------- + h : int + number of hours + date : str + date string + hour : str + hour string + + Returns + ------- + tuple + date and hour string + """ + if h > 0: + new_dt = dt.datetime.strptime( + date + hour, "%Y-%m-%d%H:00" + ) + dt.timedelta(hours=1) + date = str(new_dt.date()) + hour = "%.2i:00" % new_dt.hour + return date, hour + + +class ProcessLimits: + def __init__( + self, + files, + thresh, + thresh_sc, + lim, + lim_sc, + sc, + dir_ind, + total_dirs, + return_counts, + ): + """ + Handle processing of hourly and daily annotations counts and presence. + A class object is created and used to go through all files and calculate + the presence and annotation count metrics for a given hour within the + file. If more than one hour exists within a file, the metrics are counted + for every hour. If multiple files make up one hour they are concatenated + before processing. Simple limit and sequence limit processing is handled + by this class. + + Parameters + ---------- + files : list + pathlib.Path objects linking to file path + thresh : float + threshold + thresh_sc : float + threshold for sequence limit + lim : int + limit for simple limit presence + lim_sc : int + limit for sequence limit + sc : bool + sequence limit yes or no + dir_ind : int + directory index, in case multiple dirs are processed + total_dirs : int + number of total directories + return_counts : bool + return annotation counts or only binary presence + """ + self.df = pd.DataFrame( + columns=["Date", conf.HR_DP_COL, *h_of_day_str()] + ) + self.df_sc = self.df.copy() + self.df_counts = pd.DataFrame( + columns=["Date", conf.HR_DA_COL, *h_of_day_str()] + ) + self.df_sc_cnt = self.df_counts.copy() + self.files = files + self.thresh = thresh + self.thresh_sc = thresh_sc + self.sc = sc + self.lim_sc = lim_sc + self.lim = lim + self.dir_ind = dir_ind + self.total_dirs = total_dirs + self.return_counts = return_counts + + self.file_ind = 0 + self.row = 0 + self.n_prec_preds = conf.SEQUENCE_CON_WIN + self.n_exceed_thresh = 4 + + def concat_files_within_hour(self, count): + """ + Concatenate files within one hour. Relevant if multiple files make + up one hour. + + Parameters + ---------- + count : int + number of files making up given hour + """ + self.annot_all = pd.DataFrame() + self.filtered_annots = pd.DataFrame() + for _ in range(count): + self.annot_all = pd.concat( + [ + self.annot_all, + pd.read_csv(self.files[self.file_ind], sep="\t"), + ] + ) + self.file_ind += 1 + + def seq_crit(self, annot): + """ + Sequence limit calculation. Initially all predictions are thresholded. + After that two boolean arrays are created. Using the AND operator for + these two arrays only returns the values that pass the sequence limit. + This means that within the number of consecutive windows + (self.n_prec_anns) more than the self.lim_sc number of windows have to + exceed the value of self.thresh_sc. Depending on the settings this + function is cancelled early if only binary presence is of interest. + A filtered annotations dataframe is saved that only has the predictions + that passed the filtering process. + + Parameters + ---------- + annot : pandas.DataFrame + annotations of the given hour + + Returns + ------- + int + either 1 if only binary presence is relevant or the number of + annotations that passed the sequence limit in the given hour + """ + sequ_crit = 0 + annot = annot.loc[annot[conf.ANNOTATION_COLUMN] >= self.thresh_sc] + for i, row in annot.iterrows(): + bool1 = 0 < (row["Begin Time (s)"] - annot["Begin Time (s)"]) + bool2 = ( + row["Begin Time (s)"] - annot["Begin Time (s)"] + ) < self.n_prec_preds * conf.CONTEXT_WIN / conf.SR + self.prec_anns = annot.loc[bool1 * bool2] + if len(self.prec_anns) > self.n_exceed_thresh: + sequ_crit += 1 + self.filtered_annots = pd.concat( + [self.filtered_annots, self.prec_anns.iloc[-1:]] + ) + # this stops the function as soon as the limit is met once + if not self.return_counts: + return 1 + return sequ_crit + + def get_end_of_last_annotation(self): + """ + Get the time corresponding to the last annotation in current file. + """ + if len(self.annot_all) == 0: + self.end = False + else: + self.end = int(self.annot_all["End Time (s)"].iloc[-1]) + + def filter_files_of_hour_by_limit(self, date, hour): + """ + Process the annotation counts and binary presence for a given + hour in the dataset. This function is quite cryptic because there + are several dataframes that have to be updated to insert the + correct number of annotations and the binary presence value + for the given hour and date. + + Parameters + ---------- + date : string + date string + hour : string + hour string + """ + for h in range(0, self.end or 1, 3600): + fil_h_ann = self.annot_all.loc[ + (h < self.annot_all["Begin Time (s)"]) + & (self.annot_all["Begin Time (s)"] < h + 3600) + ] + date, hour = init_new_dt_if_exceeding_3600_s(h, date, hour) + + fil_h_ann = fil_h_ann.loc[ + fil_h_ann[conf.ANNOTATION_COLUMN] >= self.thresh + ] + if not date in self.df["Date"].values: + if not self.row == 0: + self.df.loc[self.row, conf.HR_DP_COL] = daily_prs(self.df) + self.df_counts.loc[self.row, conf.HR_DA_COL] = sum( + self.df_counts.loc[ + len(self.df_counts), h_of_day_str() + ].values + ) + + if self.sc: + self.df_sc.loc[self.row, conf.HR_DP_COL] = daily_prs( + self.df_sc + ) + self.df_sc_cnt.loc[self.row, conf.HR_DA_COL] = sum( + self.df_sc_cnt.loc[ + len(self.df_sc_cnt), h_of_day_str() + ].values + ) + + self.row += 1 + self.df.loc[self.row, "Date"] = date + self.df_counts.loc[self.row, "Date"] = date + if self.sc: + self.df_sc.loc[self.row, "Date"] = date + self.df_sc_cnt.loc[self.row, "Date"] = date + + self.df.loc[self.row, hour] = hourly_prs(fil_h_ann, lim=self.lim) + self.df_counts.loc[self.row, hour] = len(fil_h_ann) + + if self.file_ind == len(self.files): + self.df.loc[self.row, conf.HR_DP_COL] = daily_prs(self.df) + self.df_counts.loc[self.row, conf.HR_DA_COL] = sum( + self.df_counts.loc[ + len(self.df_counts), h_of_day_str() + ].values + ) + + if self.sc: + self.df_sc.loc[self.row, conf.HR_DP_COL] = daily_prs( + self.df_sc + ) + self.df_sc_cnt.loc[self.row, conf.HR_DA_COL] = sum( + self.df_sc_cnt.loc[ + len(self.df_sc_cnt), h_of_day_str() + ].values + ) + + if self.sc: + self.df_sc_cnt.loc[self.row, hour] = self.seq_crit(fil_h_ann) + self.df_sc.loc[self.row, hour] = int( + bool(self.df_sc_cnt.loc[self.row, hour]) + ) + + def save_filtered_selection_tables(self, dataset_path): + """ + Save the selection tables under a new directory with the + chosen filter settings. Depending if sequence limit is chosen + or not a directory name is chosen and saved in the parent + timestamp foldername of the current inference session. + + Parameters + ---------- + dataset_path : pathlib.Path + path to dataset in current annotation timestamp folder + """ + if self.sc: + thresh_label = f"thresh_{self.thresh_sc}_seq_{self.lim_sc}" + else: + thresh_label = f"thresh_{self.thresh}_sim" + conf.THRESH_LABEL = thresh_label + new_thresh_path = Path(conf.GEN_ANNOT_SRC).joinpath(thresh_label) + new_thresh_path = new_thresh_path.joinpath( + self.files[self.file_ind - 1] + .relative_to(dataset_path.parent) + .parent + ) + new_thresh_path.mkdir(exist_ok=True, parents=True) + file_path = new_thresh_path.joinpath( + self.files[self.file_ind - 1].stem + + self.files[self.file_ind - 1].suffix + ) + if not self.sc: + self.filtered_annots = self.annot_all.loc[ + self.annot_all[conf.ANNOTATION_COLUMN] >= self.thresh + ] + if len(self.filtered_annots) > 0: + self.filtered_annots.index = self.filtered_annots.Selection + self.filtered_annots.pop("Selection") + self.filtered_annots.to_csv(file_path, sep="\t") + + def update_annotation_progbar(self, **kwargs): + """ + Update the annotation progbar in the corresponding streamlit widget. + """ + import streamlit as st + + inner_counter = self.file_ind / len(self.files) + outer_couter = self.dir_ind / self.total_dirs + counter = inner_counter * 1 / self.total_dirs + outer_couter + + if "preset" in kwargs: + st.session_state.progbar_update.progress( + counter, + text="Progress", + ) + if counter == 1 and "update_plot" in kwargs: + st.write("Plot updated") + st.button("Update plot") + elif conf.PRESET == 3: + kwargs["progbar1"].progress( + counter, + text="Progress", + ) + + +def return_hourly_pres_df( + files, + thresh, + thresh_sc, + lim, + lim_sc, + sc, + path, + total_dirs, + dir_ind, + return_counts=True, + save_filtered_selection_tables=False, + **kwargs, +): + """ + Return the hourly presence and hourly annotation counts for all files + within the chosen dataset. Processing is handled by the ProcessLimits class + this is the caller function. + + Parameters + ---------- + files : list + pathlib.Path objects linking to files + thresh : float + threshold + thresh_sc : float + threshold for sequence limit + lim : int + limit of simple limit for binary presence + lim_sc : int + limit for sequence limit + sc : bool + sequence limit yes or no + path : pathlib.Path + path to current dataset in annotations folder + total_dirs : int + number of directories to be annotated + dir_ind : int + index of directory + return_counts : bool, optional + only binary presence or hourly counts, by default True + save_filtered_selection_tables : bool, optional + whether to save the filtered selection tables or not, by default False + + Returns + ------- + ProcessLimits object + contains all dataframes with the hourly and daily metrics + """ + if not isinstance(path, Path): + path = Path(path) + + tup, counts = init_date_tuple(files) + filt_annots = ProcessLimits( + files, + thresh, + thresh_sc, + lim, + lim_sc, + sc, + dir_ind, + total_dirs, + return_counts, + ) + for (date, hour), count in zip(tup, counts): + filt_annots.concat_files_within_hour(count) + + filt_annots.get_end_of_last_annotation() + + filt_annots.filter_files_of_hour_by_limit(date, hour) + + if save_filtered_selection_tables: + filt_annots.save_filtered_selection_tables(path) + + print( + f"Computing files in {path.stem}: " + f"{filt_annots.file_ind}/{len(files)}", + end="\r", + ) + if "preset" in kwargs or conf.PRESET == 3 and conf.STREAMLIT: + filt_annots.update_annotation_progbar(**kwargs) + + return filt_annots + + +def get_path(path, metric): + if not path.stem == "analysis": + save_path = path.parent.joinpath("analysis").joinpath(path.stem) + else: + save_path = path + save_path.mkdir(exist_ok=True, parents=True) + return save_path.joinpath(f"{metric}.csv") + + +def get_title(metric): + if "annotation" in metric: + return "Annotation counts for each hour" + elif "presence" in metric: + return "Hourly presence" + + +def plot_hp(path, lim, thresh, metric): + path = get_path(path, metric) + df = pd.read_csv(path) + h_pres = df.loc[:, h_of_day_str()] + h_pres.index = df["Date"] + plt.figure(figsize=[8, 6]) + plt.title( + f"{get_title(metric)}, limit={lim:.0f}, " f"threshold={thresh:.2f}" + ) + if "presence" in metric: + d = {"vmin": 0, "vmax": 1} + else: + d = {"vmax": conf.HR_CNTS_VMAX} + sns.heatmap(h_pres.T, cmap="crest", **d) + plt.ylabel("hour of day") + plt.tight_layout() + plt.savefig( + path.parent.joinpath(f"{metric}_{thresh:.2f}_{lim:.0f}.png"), dpi=150 + ) + plt.close() + + +def calc_val_diff( + time_dir=None, + thresh=conf.THRESH, + lim=conf.SIMPLE_LIMIT, + thresh_sc=conf.SEQUENCE_THRESH, + lim_sc=conf.SEQUENCE_LIMIT, + sc=True, + **kwargs, +): + path = find_thresh05_path_in_dir(time_dir) + for ind, fold in enumerate(path.iterdir()): + if not fold.joinpath("analysis").joinpath(conf.HR_VAL_PATH).exists(): + continue + + df_val = get_val(fold.joinpath("analysis").joinpath(conf.HR_VAL_PATH)) + hours_of_day = ["%.2i:00" % i for i in np.arange(24)] + files = get_files( + location=path.joinpath(fold.stem), search_str="**/*txt" + ) + files.sort() + + annots = return_hourly_pres_df( + files, + thresh, + thresh_sc, + lim, + lim_sc, + sc, + fold, + total_dirs=len(list(path.iterdir())), + dir_ind=ind + 1, + return_counts=False, + **kwargs, + ) + + d, incorrect, df_diff = dict(), dict(), dict() + for agg_met, df_metric in zip(("sl", "sq"), (annots.df, annots.df_sc)): + df_val.index = df_metric.index + df_diff.update( + { + agg_met: df_val.loc[:, hours_of_day] + - df_metric.loc[:, hours_of_day] + } + ) + + results = np.unique(df_diff[agg_met]) + d.update( + {agg_met: dict({"true": 0, "false_pos": 0, "false_neg": 0})} + ) + for met, val in zip(d[agg_met].keys(), (0, -1, 1)): + if val in results: + d[agg_met][met] = len(np.where(df_diff[agg_met] == val)[0]) + incorrect.update( + {agg_met: d[agg_met]["false_pos"] + d[agg_met]["false_neg"]} + ) + perf_df = pd.DataFrame(d) + + print( + "\n", + "l:", + lim, + "th:", + thresh, + "incorrect:", + incorrect["sl"], + "%.2f" % (incorrect["sl"] / (len(df_diff["sl"]) * 24) * 100), + ) + print( + "l:", + lim_sc, + "th:", + thresh_sc, + "sc_incorrect:", + incorrect["sq"], + "%.2f" % (incorrect["sq"] / (len(df_diff["sl"]) * 24) * 100), + ) + + annots.df.to_csv( + Path(fold) + .joinpath("analysis") + .joinpath(f"th{thresh}_l{lim}_hourly_presence.csv") + ) + annots.df_sc.to_csv( + Path(fold) + .joinpath("analysis") + .joinpath(f"th{thresh_sc}_l{lim_sc}_hourly_pres_sequ_crit.csv") + ) + df_diff["sl"].to_csv( + Path(fold) + .joinpath("analysis") + .joinpath(f"th{thresh}_l{lim}_diff_hourly_presence.csv") + ) + df_diff["sq"].to_csv( + Path(fold) + .joinpath("analysis") + .joinpath( + f"th{thresh_sc}_l{lim_sc}_diff_hourly_pres_sequ_crit.csv" + ) + ) + perf_df.to_csv( + Path(fold) + .joinpath("analysis") + .joinpath(f"th{thresh_sc}_l{lim_sc}_diff_performance.csv") + ) + + +def plot_varying_limits(annotations_path=conf.ANNOT_DEST): + thresh_sl, thresh_sc = 0.9, 0.9 + for lim_sl, lim_sc in zip(np.linspace(10, 48, 20), np.linspace(1, 20, 20)): + for lim, thresh in zip((lim_sl, thresh_sl), (lim_sc, thresh_sc)): + compute_hourly_pres( + annotations_path, + thresh_sc=thresh_sc, + lim_sc=lim_sc, + thresh=thresh, + lim=lim, + ) + for metric in ( + conf.HR_CNTS_SC, + conf.HR_CNTS_SL, + conf.HR_PRS_SC, + conf.HR_PRS_SL, + ): + plot_hp(annotations_path, lim, thresh, metric) diff --git a/acodet/humpback_model_dir/README.md b/acodet/humpback_model_dir/README.md new file mode 100644 index 0000000000000000000000000000000000000000..144bc7c37be45be5b848d14b106d4144cc44ff1f --- /dev/null +++ b/acodet/humpback_model_dir/README.md @@ -0,0 +1,15 @@ +# Humpback-specific model Python code + +This is not part of the multispecies\_whale\_detection package proper but rather +related prior work being made available for reference to users who want to make +fine-grained modifications using the weights from the SavedModel released at + +https://tfhub.dev/google/humpback\_whale/1 + +The best way to learn details is to read the comments in the Python source +files. Very basic usage: + +``` +import humpback_model + +model = humpback_model.Model.load_from_tf_hub() diff --git a/acodet/humpback_model_dir/front_end.py b/acodet/humpback_model_dir/front_end.py new file mode 100644 index 0000000000000000000000000000000000000000..0e836ebc44060ad36126f4e6a956fa304f749ea6 --- /dev/null +++ b/acodet/humpback_model_dir/front_end.py @@ -0,0 +1,105 @@ +# Copyright 2022 Google LLC. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""Functions for representing raw audio as images. + +Having these in the graph allows hyperparameters involved in this representation +to be fixed at training time instead of needing to materialize extracted +features on disk. +""" + +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import collections + +import tensorflow as tf +from acodet import global_config as conf + +Config = collections.namedtuple( + "Config", + [ + "stft_frame_length", + "stft_frame_step", + "freq_bins", + "sample_rate", + "lower_f", + "upper_f", + ], +) +"""Configuration for the front end. + +Attributes: + stft_frame_length: The window length for the STFT in samples. + stft_frame_step: The number of samples from the start of one STFT snapshot to + the next. + freq_bins: The number of mel bins in the spectrogram. + lower_f: Lower boundary of mel bins in Hz. + upper_f: Upper boundary of mel bins in Hz. +""" + +Config.__new__.__defaults__ = ( + conf.STFT_FRAME_LEN, + conf.FFT_HOP, + 64, + conf.SR, + 0.0, + conf.SR / 2, +) + + +class MelSpectrogram(tf.keras.layers.Layer): + """Keras layer that converts a waveform to an amplitude mel spectrogram.""" + + def __init__(self, config=None, name="mel_spectrogram"): + super(MelSpectrogram, self).__init__(name=name) + if config is None: + config = Config() + self.config = config + + def get_config(self): + config = super().get_config() + config.update({key: val for key, val in config.items()}) + return config + + def build(self, input_shape): + self._stft = tf.keras.layers.Lambda( + lambda t: tf.signal.stft( + tf.squeeze(t, 2), + frame_length=self.config.stft_frame_length, + frame_step=self.config.stft_frame_step, + ), + name="stft", + ) + num_spectrogram_bins = self._stft.compute_output_shape(input_shape)[-1] + self._bin = tf.keras.layers.Lambda( + lambda t: tf.square( + tf.tensordot( + tf.abs(t), + tf.signal.linear_to_mel_weight_matrix( + num_mel_bins=self.config.freq_bins, + num_spectrogram_bins=num_spectrogram_bins, + sample_rate=self.config.sample_rate, + lower_edge_hertz=self.config.lower_f, + upper_edge_hertz=self.config.upper_f, + name="matrix", + ), + 1, + ) + ), + name="mel_bins", + ) + + def call(self, inputs): + return self._bin(self._stft(inputs)) diff --git a/acodet/humpback_model_dir/humpback_model.py b/acodet/humpback_model_dir/humpback_model.py new file mode 100644 index 0000000000000000000000000000000000000000..c4d777504db10efdb00d649defb980e0d3c2039a --- /dev/null +++ b/acodet/humpback_model_dir/humpback_model.py @@ -0,0 +1,384 @@ +# Copyright 2022 Google LLC. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""Keras implementation of the NOAA PIFSC humpback whale detection model. + +The released SavedModel is available at + +https://tfhub.dev/google/humpback_whale/1 + +Model.load_from_tf_hub is a convenience method that downloads the SavedModel and +initializes the Model defined here with the weights from the SavedModel. + +To save redownloading, assuming a local copy is in model_dir, use: + +model = humpback_model.Model() +model.load_weights(model_dir) + +This is the Python code that was used to export that model. We release it to +enable users who want to do finer-grained fine-tuning than what is possible +with the SavedModel alone, for example freezing or removing layers. + +The code implements a standard ResNet50 in Keras. Although off-the-shelf +implementations exist, this reimplementation was necessary to have exact control +over variable names, to load weights from a model that had been trained in TF1. +""" + +import shutil +import tarfile +import tempfile +import time +from urllib import request + +import tensorflow as tf + +from . import front_end +from . import leaf_pcen + +TF_HUB_URL = ( + "https://tfhub.dev/google/humpback_whale/1?tf-hub-format=compressed" +) +NUM_CLASSES = 1 +NUM_AUDIO_CHANNELS = 1 +CONTEXT_WAVEFORM_SHAPE = [None, 39124, NUM_AUDIO_CHANNELS] +CONTEXT_SPECTROGRAM_SHAPE = [None, 128, 64] +EMBEDDING_DIMENSION = 2048 + + +def BatchNormalization(name=None): + """Defaults some of the arguments of Keras' BatchNormalization layer.""" + return tf.keras.layers.BatchNormalization( + epsilon=1e-4, + momentum=0.9997, + scale=False, + center=True, + name=name, + ) + + +def Conv2D(filters, kernel_size, strides=(1, 1), padding="VALID", name=None): + """Defaults some of the arguments of Keras' Conv2D layer.""" + return tf.keras.layers.Conv2D( + filters, + kernel_size, + strides, + padding=padding, + activation=None, + use_bias=False, + name=name, + ) + + +def _call_layers(layers, inputs): + """Applies the function composition of layers to inputs, like Sequential.""" + t = inputs + for layer in layers: + t = layer(t) + return t + + +class ResidualPath(tf.keras.layers.Layer): + """Layer for the residual "skip" connection in a ResNet block.""" + + def __init__(self, num_output_channels, input_stride): + super(ResidualPath, self).__init__(name="residual_path") + self.num_output_channels = num_output_channels + self.input_stride = input_stride + + def build(self, input_shape): + num_input_channels = input_shape[-1] + if num_input_channels != self.num_output_channels: + self._layers = [ + Conv2D( + self.num_output_channels, + kernel_size=1, + strides=self.input_stride, + padding="VALID", + name="conv_residual", + ), + BatchNormalization(name="batch_normalization_residual"), + ] + else: + self._layers = [] + + def call(self, inputs): + return _call_layers(self._layers, inputs) + + +class MainPath(tf.keras.layers.Layer): + """Layer for the bottleneck-and-convolutional "core" of a ResNet block.""" + + def __init__(self, num_inner_channels, num_output_channels, input_stride): + super(MainPath, self).__init__(name="main_path") + self.num_inner_channels = num_inner_channels + self.num_output_channels = num_output_channels + self.input_stride = input_stride + + def build(self, input_shape): + num_input_channels = input_shape[-1] + if num_input_channels != self.num_output_channels: + bottleneck_padding = "VALID" + else: + bottleneck_padding = "SAME" + self._layers = [ + Conv2D( + self.num_inner_channels, + kernel_size=1, + strides=self.input_stride, + padding=bottleneck_padding, + name="conv_bottleneck", + ), + BatchNormalization(name="batch_normalization_bottleneck"), + tf.keras.layers.ReLU(name="relu_bottleneck"), + Conv2D( + self.num_inner_channels, + kernel_size=3, + strides=1, + padding="SAME", + name="conv", + ), + BatchNormalization(name="batch_normalization"), + tf.keras.layers.ReLU(name="relu"), + Conv2D( + self.num_output_channels, + kernel_size=1, + strides=1, + padding="SAME", + name="conv_output", + ), + BatchNormalization(name="batch_normalization_output"), + ] + + def call(self, inputs): + return _call_layers(self._layers, inputs) + + +class Block(tf.keras.layers.Layer): + """Layer for a ResNet block.""" + + def __init__( + self, + num_inner_channels, + num_output_channels, + input_stride=1, + name="block", + ): + super(Block, self).__init__(name=name) + self.num_inner_channels = num_inner_channels + self.num_output_channels = num_output_channels + self.input_stride = input_stride + + def build(self, input_shape): + self._residual_path = ResidualPath( + self.num_output_channels, self.input_stride + ) + self._main_path = MainPath( + self.num_inner_channels, + self.num_output_channels, + self.input_stride, + ) + self._activation = tf.keras.layers.ReLU(name="relu_output") + + def call(self, features): + return self._activation( + self._residual_path(features) + self._main_path(features) + ) + + +class Group(tf.keras.layers.Layer): + """Layer for a group of ResNet blocks with common inner and outer depths.""" + + def __init__( + self, repeats, inner_channels, output_channels, input_stride, name + ): + super(Group, self).__init__(name=name) + assert repeats >= 1 + self.repeats = repeats + self.inner_channels = inner_channels + self.output_channels = output_channels + self.input_stride = input_stride + + def build(self, input_shape): + self._layers = [ + Block( + self.inner_channels, + self.output_channels, + input_stride=self.input_stride, + name="block_widen", + ) + ] + for i in range(1, self.repeats): + self._layers.append( + Block( + self.inner_channels, + self.output_channels, + input_stride=1, + name=("block_" + str(i)), + ) + ) + + def call(self, inputs): + return _call_layers(self._layers, inputs) + + +class PreBlocks(tf.keras.layers.Layer): + """Layer with first-layer convolutional filters.""" + + def build(self, input_shape): + self._layers = [ + tf.keras.layers.Lambda( + lambda t: tf.expand_dims(t, 3), name="make_depth_one" + ), + Conv2D(64, 7, padding="SAME", name="conv"), + BatchNormalization(name="batch_normalization"), + tf.keras.layers.ReLU(name="relu"), + tf.keras.layers.MaxPool2D(3, 2, padding="SAME", name="pool"), + ] + + def call(self, inputs): + return _call_layers(self._layers, inputs) + + +class Embed(tf.keras.layers.Layer): + """Composition of layers transforming sectrogram to embedding vector. + + The spectrogram has [128, 64] [time, frequency] bins. When the weights from TF + Hub are used, frequency whould be on a mel scale and PCEN applied, as in the + implementation of Model.__init__, later. + """ + + def build(self, input_shape): + self._layers = [ + tf.keras.layers.InputLayer(input_shape=[128, 64]), + PreBlocks(), + Group(3, 64, 256, input_stride=1, name="group"), + Group(4, 128, 512, input_stride=2, name="group_1"), + Group(6, 256, 1024, input_stride=2, name="group_2"), + Group(3, 512, 2048, input_stride=2, name="group_3"), + tf.keras.layers.GlobalAveragePooling2D(name="pool"), + ] + + def call(self, inputs): + return _call_layers(self._layers, inputs) + + +class Model(tf.keras.Sequential): + """Full humpback detection Keras model with supplementary signatures. + + See "Advanced Usage" on https://tfhub.dev/google/humpback_whale/1 for details + on the reusable SavedModels attributes (front_end, features, logits). + + The "score" method is provided for variable-length inputs. + """ + + @classmethod + def load_from_tf_hub(cls): + """Downloads the SavedModel and initialized this class using its weights.""" + with tempfile.NamedTemporaryFile() as temp_file: + with request.urlopen(TF_HUB_URL) as response: + shutil.copyfileobj(response, temp_file) + temp_file.flush() + temp_file.seek(0) + with tempfile.TemporaryDirectory() as temp_dir: + with tarfile.open(temp_file.name, "r:gz") as tar: + tar.extractall(path=temp_dir) + model = cls() + model.load_weights(temp_dir) + return model + + def __init__(self): + super(Model, self).__init__( + layers=[ + front_end.MelSpectrogram(), + leaf_pcen.PCEN( + alpha=0.98, + delta=2.0, + root=2.0, + smooth_coef=0.025, + floor=1e-6, + trainable=True, + name="pcen", + ), + Embed(), + tf.keras.layers.Dense(NUM_CLASSES), + ] + ) + front_end_layers = self.layers[:2] + self._spectrogram, self._pcen = front_end_layers + + # Parts exposed through Reusable SavedModels interface. + self.front_end = tf.keras.Sequential( + [tf.keras.layers.InputLayer([None, 1])] + front_end_layers + ) + self.features = tf.keras.Sequential( + [tf.keras.layers.InputLayer([128, 64]), self.layers[2]] + ) + self.logits = tf.keras.Sequential( + [tf.keras.layers.InputLayer([128, 64])] + self.layers[2:] + ) + + @tf.function( + input_signature=[ + tf.TensorSpec(shape=(None, None, 1), dtype=tf.float32), + tf.TensorSpec(shape=tuple(), dtype=tf.int64), + ] + ) + def score(self, waveform, context_step_samples): + """Scores each context window in an arbitrary-length waveform. + + This is the clip-level version of __call__. It slices out short waveform + context windows of the duration expected by __call__, scores them as a + batch, and returns the corresponding scores. + + Args: + waveform: [batch, samples, channels == 1] Tensor of PCM audio. + context_step_samples: Difference between the starts of two consecutive + context windows, in samples. + + Returns: + Dict {'scores': [batch, num_windows, 1]} Tensor of per-context-window + model outputs. (Post-sigmoid, in [0, 1].) + """ + batch_size = tf.shape(waveform)[0] + stft_frame_step_samples = 300 + context_step_frames = tf.cast( + context_step_samples // stft_frame_step_samples, tf.dtypes.int32 + ) + mel_spectrogram = self._spectrogram(waveform) + context_duration_frames = self.features.input_shape[1] + context_windows = tf.signal.frame( + mel_spectrogram, + context_duration_frames, + context_step_frames, + axis=1, + ) + num_windows = tf.shape(context_windows)[1] + windows_in_batch = tf.reshape( + context_windows, (-1,) + self.features.input_shape[1:] + ) + per_window_pcen = self._pcen(windows_in_batch) + scores = tf.nn.sigmoid(self.logits(per_window_pcen)) + return {"scores": tf.reshape(scores, [batch_size, num_windows, 1])} + + @tf.function(input_signature=[]) + def metadata(self): + config = self._spectrogram.config + return { + "input_sample_rate": tf.cast(config.sample_rate, tf.int64), + "context_width_samples": tf.cast( + config.stft_frame_step * (self.features.input_shape[1] - 1) + + config.stft_frame_length, + tf.int64, + ), + "class_names": tf.constant(["Mn"]), + } diff --git a/acodet/humpback_model_dir/leaf_pcen.py b/acodet/humpback_model_dir/leaf_pcen.py new file mode 100644 index 0000000000000000000000000000000000000000..9c1f14b41f1385ac9e84a917385ae3c2048c35b8 --- /dev/null +++ b/acodet/humpback_model_dir/leaf_pcen.py @@ -0,0 +1,103 @@ +# Copyright 2022 Google LLC. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""PCEN implementation, forked from google-research/leaf-audio.""" + +import tensorflow as tf + + +class PCEN(tf.keras.layers.Layer): + """Per-Channel Energy Normalization. + + This applies a fixed or learnable normalization by an exponential moving + average smoother, and a compression. + This implementation replicates the computation of fixed_pcen and + trainable_pcen defined in + google3/audio/hearing/tts/tensorflow/python/ops/pcen_ops.py. + See https://arxiv.org/abs/1607.05666 for more details. + """ + + def __init__( + self, + alpha: float, + smooth_coef: float, + delta: float = 2.0, + root: float = 2.0, + floor: float = 1e-6, + trainable: bool = False, + name="PCEN", + ): + """PCEN constructor. + + Args: + alpha: float, exponent of EMA smoother + smooth_coef: float, smoothing coefficient of EMA + delta: float, bias added before compression + root: float, one over exponent applied for compression (r in the paper) + floor: float, offset added to EMA smoother + trainable: bool, False means fixed_pcen, True is trainable_pcen + name: str, name of the layer + """ + super().__init__(name=name) + self._alpha_init = alpha + self._delta_init = delta + self._root_init = root + self._smooth_coef = smooth_coef + self._floor = floor + self._trainable = trainable + + def build(self, input_shape): + num_channels = input_shape[-1] + self.alpha = self.add_weight( + name="alpha", + shape=[num_channels], + initializer=tf.keras.initializers.Constant(self._alpha_init), + trainable=self._trainable, + ) + self.delta = self.add_weight( + name="delta", + shape=[num_channels], + initializer=tf.keras.initializers.Constant(self._delta_init), + trainable=self._trainable, + ) + self.root = self.add_weight( + name="root", + shape=[num_channels], + initializer=tf.keras.initializers.Constant(self._root_init), + trainable=self._trainable, + ) + self.ema = tf.keras.layers.SimpleRNN( + units=num_channels, + activation=None, + use_bias=False, + kernel_initializer=tf.keras.initializers.Identity( + gain=self._smooth_coef + ), + recurrent_initializer=tf.keras.initializers.Identity( + gain=1.0 - self._smooth_coef + ), + return_sequences=True, + trainable=False, + ) + + def call(self, inputs): + alpha = tf.math.minimum(self.alpha, 1.0) + root = tf.math.maximum(self.root, 1.0) + ema_smoother = self.ema( + inputs, initial_state=tf.gather(inputs, 0, axis=1) + ) + one_over_root = 1.0 / root + output = ( + inputs / (self._floor + ema_smoother) ** alpha + self.delta + ) ** one_over_root - self.delta**one_over_root + return output diff --git a/acodet/models.py b/acodet/models.py new file mode 100644 index 0000000000000000000000000000000000000000..afbd0b8df3e79e205ef3abd8c5dc92fba36c88a9 --- /dev/null +++ b/acodet/models.py @@ -0,0 +1,318 @@ +import tensorflow as tf +from tensorflow_addons import metrics +from pathlib import Path +import zipfile +import sys + +from acodet.funcs import get_val_labels +from . import global_config as conf +from .humpback_model_dir import humpback_model +from .humpback_model_dir import front_end +from .humpback_model_dir import leaf_pcen + + +class ModelHelper: + """ + Helper class to provide checkpoint loading and changing of input shape. + """ + + def load_ckpt(self, ckpt_path, ckpt_name="last"): + if isinstance(ckpt_path, Path): + ckpt_path = ckpt_path.stem + ckpt_path = ( + Path("../trainings").joinpath(ckpt_path).joinpath("unfreeze_no-TF") + ) # TODO namen ändern + try: + file_path = ckpt_path.joinpath(f"cp-{ckpt_name}.ckpt.index") + if not file_path.exists(): + ckpts = list(ckpt_path.glob("cp-*.ckpt*")) + ckpts.sort() + ckpt = ckpts[-1] + else: + ckpt = file_path + self.model.load_weights( + str(ckpt).replace(".index", "") + ).expect_partial() + except Exception as e: + print("Checkpoint not found.", e) + + def change_input_to_array(self): + """ + change input layers of model after loading checkpoint so that a file + can be predicted based on arrays rather than spectrograms, i.e. + reintegrate the spectrogram creation into the model. + + Args: + model (tf.keras.Sequential): keras model + + Returns: + tf.keras.Sequential: model with new arrays as inputs + """ + model_list = self.model.layers + model_list.insert(0, tf.keras.layers.Input([conf.CONTEXT_WIN])) + model_list.insert( + 1, tf.keras.layers.Lambda(lambda t: tf.expand_dims(t, -1)) + ) + model_list.insert(2, front_end.MelSpectrogram()) + self.model = tf.keras.Sequential( + layers=[layer for layer in model_list] + ) + + +class HumpBackNorthAtlantic(ModelHelper): + """ + Defualt class for North Atlantic Humpback Whale Song detection. If no new + training is performed this class is the default class. The model is + currently included in the repository. The model will be extracted + and made ready for use. + + Parameters + ---------- + ModelHelper : class + helper class providing necessary functionalities + """ + + def __init__(self, **kwargs): + pass + + def load_model(self, **kwargs): + if not Path(conf.MODEL_DIR).joinpath(conf.MODEL_NAME).exists(): + for model_path in Path(conf.MODEL_DIR).iterdir(): + if not model_path.suffix == ".zip": + continue + else: + with zipfile.ZipFile(model_path, "r") as model_zip: + model_zip.extractall(conf.MODEL_DIR) + self.model = tf.keras.models.load_model( + Path(conf.MODEL_DIR).joinpath(conf.MODEL_NAME), + custom_objects={"FBetaScote": metrics.FBetaScore}, + ) + + +class GoogleMod(ModelHelper): # TODO change name + def __init__(self, **params) -> None: + """ + This class is the framework to load and flatten the model created + by Matthew Harvey in collaboration with Ann Allen for the + PIFSC HARP data + (https://www.frontiersin.org/article/10.3389/fmars.2021.607321). + + Args: + params (dict): model parameters + """ + self.load_google_new(**params) + self.load_flat_model(**params) + + def load_google_new(self, load_g_ckpt=conf.LOAD_G_CKPT, **_): + """ + Load google model architecture. By default the model weights are + initiated with the pretrained weights from the google checkpoint. + + Args: + load_g_ckpt (bool, optional): Initialize model weights with Google + pretrained weights. Defaults to True. + """ + self.model = humpback_model.Model() + if load_g_ckpt: + self.model = self.model.load_from_tf_hub() + + def load_flat_model(self, input_tensors="spectrograms", **_): + """ + Take nested model architecture from Harvey Matthew and flatten it for + ease of use. This way trainability of layers can be iteratively + defined. The model still has a nested structure. The ResNet blocks are + combined into layers of type Block, but because their trainability would + only be changed on the block level, this degree of nesting shouldn't + complicate the usage of the model. + By default the model is itiated with spectrograms of shape [128, 64] as + inputs. This means that spectrograms have to be precomputed. + Alternatively if the argument input_tensors is set to something else, + inputs are assumed to be audio arrays of 39124 samples length. + As this process is very specific to the model ascertained from + Mr. Harvey, layer indices are hard coded. + + Args: + input_tensors (str): input type, if not spectrograms, they are + assumed to be audio arrays of 39124 samples length. + Defaults to 'spectrograms'. + """ + # create list which will contain all the layers + model_list = [] + if input_tensors == "spectrograms": + # add Input layer + model_list.append(tf.keras.layers.Input([128, 64])) + else: + # add MelSpectrogram layer + model_list.append(tf.keras.layers.Input([conf.CONTEXT_WIN])) + model_list.append( + tf.keras.layers.Lambda(lambda t: tf.expand_dims(t, -1)) + ) + model_list.append(self.model.layers[0]) + + # add PCEN layer + model_list.append(self.model.layers[1]) + # iterate through PreBlocks + model_list.append(self.model.layers[2]._layers[0]) + for layer in self.model.layers[2]._layers[1]._layers: + model_list.append(layer) + # change name, to make sure every layer has a unique name + num_preproc_layers = len(model_list) + model_list[num_preproc_layers - 1]._name = "pool_pre_resnet" + # iterate over ResNet blocks + c = 0 + for i, high_layer in enumerate(self.model.layers[2]._layers[2:6]): + for j, layer in enumerate(high_layer._layers): + c += 1 + model_list.append(layer) + model_list[num_preproc_layers - 1 + c]._name += f"_{i}" + # add final Dense layers + model_list.append(self.model.layers[2]._layers[-1]) + model_list.append(self.model.layers[-1]) + # normalize results between 0 and 1 + model_list.append(tf.keras.layers.Activation("sigmoid")) + + # generate new model + self.model = tf.keras.Sequential( + layers=[layer for layer in model_list] + ) + + +class KerasAppModel(ModelHelper): + """ + Class providing functionalities for usage of standard keras application + models like EfficientNet. The keras application name is passed and + the helper class is then used in case existing checkpoints need to be + loaded or the shape of the input array needs change. + + Parameters + ---------- + ModelHelper : class + helper class providing necessary functionalities + """ + + def __init__(self, keras_mod_name="EfficientNetB0", **params) -> None: + keras_model = getattr(tf.keras.applications, keras_mod_name)( + include_top=True, + weights=None, + input_tensor=None, + input_shape=[128, 64, 3], + pooling=None, + classes=1, + classifier_activation="sigmoid", + ) + + self.model = tf.keras.Sequential( + [ + tf.keras.layers.Input([128, 64]), + leaf_pcen.PCEN( + alpha=0.98, + delta=2.0, + root=2.0, + smooth_coef=0.025, + floor=1e-6, + trainable=True, + name="pcen", + ), + # tf.keras.layers.Lambda(lambda t: 255. *t /tf.math.reduce_max(t)), + tf.keras.layers.Lambda( + lambda t: tf.tile( + tf.expand_dims(t, -1), [1 for _ in range(3)] + [3] + ) + ), + keras_model, + ] + ) + + +def init_model( + model_name: str = conf.MODELCLASSNAME, + training_path: str = conf.LOAD_CKPT_PATH, + input_specs=False, + **kwargs, +) -> tf.keras.Sequential: + """ + Initiate model instance, load weights. As the model is trained on + spectrogram tensors but will now be used for inference on audio files + containing continuous audio arrays, the input shape of the model is + changed after the model weights have been loaded. + + Parameters + ---------- + model_instance : type + callable class to create model object + training_path : str + checkpoint path + + Returns + ------- + tf.keras.Sequential + the sequential model with pretrained weights + """ + model_class = getattr(sys.modules[__name__], model_name) + mod_obj = model_class(**kwargs) + if conf.MODEL_NAME == "FlatHBNA": + input_specs = True + if model_class == HumpBackNorthAtlantic: + mod_obj.load_model() + else: + mod_obj.load_ckpt(training_path) + if not input_specs: + mod_obj.change_input_to_array() + return mod_obj.model + + +def get_labels_and_preds( + model_name: str, training_path: str, val_data: tf.data.Dataset, **kwArgs +) -> tuple: + """ + Retrieve labels and predictions of validation set and given model + checkpoint. + + Parameters + ---------- + model_instance : type + model class + training_path : str + path to checkpoint + val_data : tf.data.Dataset + validation dataset + + Returns + ------- + labels: np.ndarray + labels + preds: mp.ndarray + predictions + """ + model = init_model( + load_from_ckpt=True, + model_name=model_name, + training_path=training_path, + **kwArgs, + ) + preds = model.predict(x=prep_ds_4_preds(val_data)) + labels = get_val_labels(val_data, len(preds)) + return labels, preds + + +def prep_ds_4_preds(dataset): + """ + Prepare dataset for prediction, by batching and ensuring that only + arrays and corresponding labels are passed (necessary because if + data about the origin of the array is passed, i.e. the file path and + start time of the array within that file, model.predict fails.). + + Parameters + ---------- + dataset : TfRecordDataset + dataset + + Returns + ------- + TFRecordDataset + prepared dataset + """ + if len(list(dataset.take(1))[0]) > 2: + return dataset.map(lambda x, y, z, w: (x, y)).batch(batch_size=32) + else: + return dataset.batch(batch_size=32) diff --git a/acodet/plot_utils.py b/acodet/plot_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..be6b20284aac7e32fb340afb127346c2b032c6ce --- /dev/null +++ b/acodet/plot_utils.py @@ -0,0 +1,466 @@ +import numpy as np +import matplotlib.pyplot as plt +import matplotlib.colors as mcolors +from matplotlib.gridspec import GridSpec +import time +from pathlib import Path +import seaborn as sns +import json +import librosa as lb +from . import global_config as conf +from . import funcs +from . import tfrec +from . import models +import tensorflow as tf + +drop_keyz = {"fbeta", "val_fbeta"} +sns.set_theme() +sns.set_style("white") + + +def plot_model_results( + datetimes, labels=None, fig=None, legend=True, **kwargs +): + plt.rc("axes", labelsize=20) + plt.rc("axes", titlesize=20) + plt.rc("xtick", labelsize=14) + plt.rc("ytick", labelsize=14) + if fig == None: + fig = plt.figure(figsize=(15, 8)) + savefig = True + else: + savefig = False + + if not isinstance(datetimes, list): + datetimes = [datetimes] + + checkpoint_paths = [] + for datetime in datetimes: + checkpoint_paths += list( + Path(f"../trainings/{datetime}").glob("unfreeze_*") + ) + + r, c = 2, 5 + for j, checkpoint_path in enumerate(checkpoint_paths): + unfreeze = checkpoint_path.stem.split("_")[-1] + + if not Path(f"{checkpoint_path}/results.json").exists(): + if j == 0: + ax = fig.subplots(ncols=c, nrows=r) + continue + with open(f"{checkpoint_path}/results.json", "r") as f: + results = json.load(f) + for k in drop_keyz: + del results[k] + + if j == 0: + c = len(list(results.keys())) // 2 + ax = fig.subplots(ncols=c, nrows=r) + + if not labels is None: + label = labels[j] + else: + label = f"{checkpoint_path.parent.stem}_{unfreeze}" + + for i, key in enumerate(results.keys()): + if "val_" in key: + row = 1 + else: + row = 0 + if "loss" in key or i == 0: + col = 0 + else: + col += 1 + + ax[row, col].plot(results[key], label=label) + if not col == 0: + ax[row, col].set_ylim([0.7, 1.01]) + + # axis handling depending on subplot index + if row == 1 and col == 0: + ax[row, col].set_ylim([0, 1.01]) + if row == 0 and j == 0: + ax[row, col].set_title(f"{key}") + if row == col == 0: + ax[row, col].set_ylim([0, 0.5]) + ax[row, col].set_ylabel("training") + elif row == 1 and col == 0: + ax[row, col].set_ylabel("val") + if legend and row == 1 and col == c - 1: + ax[row, col].legend(loc="center left", bbox_to_anchor=(1, 0.5)) + + info_string = "" + for key, val in kwargs.items(): + info_string += f" | {key}: {val}" + + ref_time = time.strftime("%Y%m%d", time.gmtime()) + if savefig: + fig.tight_layout() + fig.savefig(f"../trainings/{datetime}/model_results_{ref_time}.png") + else: + return fig + + +def plot_spec_from_file(file, start, sr, cntxt_wn_sz=39124, **kwArgs): + audio, sr = lb.load( + file, sr=sr, offset=start / sr, duration=cntxt_wn_sz / sr + ) + return simple_spec(audio, sr=sr, cntxt_wn_sz=cntxt_wn_sz, **kwArgs) + + +def plot_sample_spectrograms( + dataset, + *, + dir, + name, + ds_size=None, + random=True, + seed=None, + sr=conf.SR, + rows=4, + cols=4, + plot_meta=False, + **kwargs, +): + r, c = rows, cols + if isinstance(dataset, tf.data.Dataset): + if random: + if ds_size is None: + ds_size = sum(1 for _ in dataset) + np.random.seed(seed) + rand_skip = np.random.randint(ds_size) + sample = dataset.skip(rand_skip).take(r * c) + else: + sample = dataset.take(r * c) + elif isinstance(dataset, list): + sample = dataset + + max_freq_bin = 128 // (conf.SR // 2000) + + fmin = sr / 2 / next(iter(sample))[0].numpy().shape[0] + fmax = sr / 2 / next(iter(sample))[0].numpy().shape[0] * max_freq_bin + fig, axes = plt.subplots(nrows=r, ncols=c, figsize=[12, 10]) + + for i, (aud, *lab) in enumerate(sample): + if i == r * c: + break + ar = aud.numpy()[:, 1:max_freq_bin].T + axes[i // r][i % c].imshow( + ar, origin="lower", interpolation="nearest", aspect="auto" + ) + if len(lab) == 1: + axes[i // r][i % c].set_title(f"label: {lab[0]}") + elif len(lab) == 3: + label, file, t = (v.numpy() for v in lab) + axes[i // r][i % c].set_title( + f"label: {label}; t in f: {funcs.get_time(t)}\n" + f"file: {Path(file.decode()).stem}" + ) + if i // r == r - 1 and i % c == 0: + axes[i // r][i % c].set_xticks(np.linspace(0, ar.shape[1], 5)) + xlabs = np.linspace(0, 3.9, 5).astype(str) + axes[i // r][i % c].set_xticklabels(xlabs) + axes[i // r][i % c].set_xlabel("time in s") + axes[i // r][i % c].set_yticks(np.linspace(0, ar.shape[0] - 1, 7)) + ylabs = np.linspace(fmin, fmax, 7).astype(int).astype(str) + axes[i // r][i % c].set_yticklabels(ylabs) + axes[i // r][i % c].set_ylabel("freq in Hz") + else: + axes[i // r][i % c].set_xticks([]) + axes[i // r][i % c].set_xticklabels([]) + axes[i // r][i % c].set_yticks([]) + axes[i // r][i % c].set_yticklabels([]) + + fig.suptitle(f"{name} sample of 16 spectrograms. random={random}") + fig.savefig(f"../trainings/{dir}/{name}_sample.png") + + +def simple_spec( + signal, + ax=None, + fft_window_length=2**11, + sr=10000, + cntxt_wn_sz=39124, + fig=None, + colorbar=True, +): + S = np.abs(lb.stft(signal, win_length=fft_window_length)) + if not ax: + fig_new, ax = plt.subplots() + if fig: + fig_new = fig + # limit S first dimension from [10:256], thatway isolating frequencies + # (sr/2)/1025*10 = 48.78 to (sr/2)/1025*266 = 1297.56 for visualization + fmin = sr / 2 / S.shape[0] * 10 + fmax = sr / 2 / S.shape[0] * 266 + S_dB = lb.amplitude_to_db(S[10:266, :], ref=np.max) + img = lb.display.specshow( + S_dB, + x_axis="s", + y_axis="linear", + sr=sr, + win_length=fft_window_length, + ax=ax, + x_coords=np.linspace(0, cntxt_wn_sz / sr, S_dB.shape[1]), + y_coords=np.linspace(fmin, fmax, 2**8), + vmin=-60, + ) + + if colorbar: + fig_new.colorbar(img, ax=ax, format="%+2.0f dB") + return fig_new, ax + else: + return ax + + +def plot_conf_matr(labels, preds, ax, iteration, title, **kwargs): + plt.rc("axes", titlesize=40) + plt.rc("font", size=32) + bin_preds = list(map(lambda x: 1 if x >= conf.THRESH else 0, preds)) + heat = tf.math.confusion_matrix(labels, bin_preds).numpy() + rearrange = lambda x: np.array([[x[1, 1], x[1, 0]], [x[0, 1], x[0, 0]]]) + # rearranged_head = rearrange(heat) + value_string = "{}\n{:.0f}%" + heat_annot = [[[], []], [[], []]] + heat_perc = [[[], []], [[], []]] + for row in range(2): + for col in range(2): + heat_annot[row][col] = value_string.format( + heat[row, col], heat[row, col] / np.sum(heat[row]) * 100 + ) + heat_perc[row][col] = heat[row, col] / np.sum(heat[row]) * 100 + rearranged_annot = rearrange(np.array(heat_annot)) + rearranged_heat = rearrange(np.array(heat_perc)) + + ax = sns.heatmap( + rearranged_heat, + annot=rearranged_annot, + fmt="", + cbar=False, + ax=ax, + xticklabels=False, + yticklabels=False, + ) + ax.set_yticks([0.5, 1.5], labels=["TP", "TN"], fontsize=32) + ax.set_xticks([1.5, 0.5], labels=["pred. N", "pred.P"], fontsize=32) + color = list(sns.color_palette())[iteration] + ax.set_title(title, color=color) + return ax + + +def plot_pr_curve( + labels, preds, ax, training_path, iteration=0, legend=True, **kwargs +): + m = dict() + for met in ("Recall", "Precision"): + threshs = list(np.linspace(0, 1, num=200)[:-1]) + m.update( + {met: funcs.get_pr_arrays(labels, preds, met, thresholds=threshs)} + ) + for curve in ("ROC", "PR"): + m.update( + {curve: funcs.get_pr_arrays(labels, preds, "AUC", curve=curve)} + ) + perform_str = f"; AUC_PR:{m['PR']:.2f}; AUC_ROC:{m['ROC']:.2f}" + print( + "p_.5: ", + m["Precision"][100], + "\nr_.5: ", + m["Recall"][100], + "\nAUC-PR: ", + m["PR"], + "\nAUC-ROC: ", + m["ROC"], + ) + for k, i in m.items(): + m[k] = i.astype(float) + m["Recall"] = list(m["Recall"]) + m["Precision"] = list(m["Precision"]) + with open(f"../perform_metrics_{training_path.stem}.json", "w") as f: + json.dump(m, f) + print(perform_str) + if "plot_labels" in kwargs: + if isinstance(kwargs["plot_labels"], list): + label = kwargs["plot_labels"][iteration] + perform_str + else: + label = kwargs["plot_labels"] + perform_str + elif "load_untrained_model" in kwargs: + label = "untrained_model" + perform_str + else: + label = str( + training_path.parent.stem + + training_path.stem.split("_")[-1] + + perform_str + ) + + ax.plot(m["Recall"], m["Precision"], label=label) + + ax.set_ylabel("precision", fontsize=32) + ax.set_xlabel("recall", fontsize=32) + ax.set_ylim([0, 1]) + ax.set_xlim([0, 1]) + ax.set_xticks([0, 0.3, 0.7, 1]) + ax.set_yticks([0, 0.3, 0.7, 1]) + ax.set_xticklabels(["0", "0.3", "0.7", "1"], fontsize=24) + ax.set_yticklabels(["0", "0.3", "0.7", "1"], fontsize=24) + if legend: + ax.legend() + ax.grid(True) + ax.set_title("PR Curve", fontsize=32) + return ax + + +def plot_evaluation_metric( + model_name, + training_runs, + val_data, + fig, + plot_pr=True, + plot_cm=False, + plot_untrained=False, + titles=None, + keras_mod_name=False, + **kwargs, +): + r = plot_cm + plot_pr + c = len(training_runs) + if c < 1: + c = 1 + gs = GridSpec(r, c, figure=fig) + if plot_pr: + ax_pr = fig.add_subplot(gs[0, :]) + + for i, run in enumerate(training_runs): + if not isinstance(model_name, list): + model_name = [model_name] + if not isinstance(keras_mod_name, list): + keras_mod_name = [keras_mod_name] + if not isinstance(titles, list): + title = Path(run).parent.stem + Path(run).stem.split("_")[-1] + else: + title = titles[i] + labels, preds = models.get_labels_and_preds( + model_name[i], + run, + val_data, + keras_mod_name=keras_mod_name[i], + **kwargs, + ) + if not plot_pr: + plot_conf_matr( + labels, + preds, + fig.add_subplot(gs[-1, i]), + title=title, + iteration=i, + ) + else: + ax_pr = plot_pr_curve( + labels, preds, ax_pr, run, iteration=i, **kwargs + ) + if plot_untrained: + ax_pr = plot_pr_curve( + labels, + preds, + ax_pr, + run, + load_untrained_model=True, + iteration=i, + **kwargs, + ) + if plot_cm: + plot_conf_matr( + labels, + preds, + fig.add_subplot(gs[-1, i]), + title=title, + iteration=i, + ) + + print("creating pr curve for ", run.stem) + + if "legend" in kwargs and kwargs["legend"]: + ax_pr.legend(loc="center left", bbox_to_anchor=(1, 0.5)) + return fig + + +def create_and_save_figure( + model_name, + tfrec_path, + batch_size, + train_date, + debug=False, + plot_pr=True, + plot_cm=False, + **kwargs, +): + training_runs = list(Path(f"../trainings/{train_date}").glob("unfreeze*")) + val_data = tfrec.run_data_pipeline(tfrec_path, "val", return_spec=False) + + fig = plt.figure(constrained_layout=True) + + plot_evaluation_metric( + model_name, + training_runs, + val_data, + fig=fig, + plot_pr=plot_pr, + plot_cm=plot_cm, + **kwargs, + ) + + info_string = "" + for key, val in kwargs.items(): + info_string += f" | {key}: {val}" + fig.suptitle(f"Evaluation Metrics{info_string}") + + fig.savefig(f"{training_runs[0].parent}/eval_metrics.png") + + +def plot_pre_training_spectrograms( + train_data, test_data, augmented_data, time_start, seed +): + plot_sample_spectrograms( + train_data, dir=time_start, name="train_all", seed=seed + ) + for i, (augmentation, aug_name) in enumerate(augmented_data): + plot_sample_spectrograms( + augmentation, + dir=time_start, + name=f"augment_{i}-{aug_name}", + seed=seed, + ) + plot_sample_spectrograms(test_data, dir=time_start, name="test") + + +def compare_random_spectrogram(filenames, dataset_size=conf.TFRECS_LIM): + r = np.random.randint(dataset_size) + dataset = ( + tf.data.TFRecordDataset(filenames) + .map(tfrec.parse_tfrecord_fn) + .skip(r) + .take(1) + ) + + sample = next(iter(dataset)) + aud, file, lab, time = (sample[k].numpy() for k in list(sample.keys())) + file = file.decode() + + fig, ax = plt.subplots(ncols=2, figsize=[12, 8]) + ax[0] = funcs.simple_spec( + aud, fft_window_length=512, sr=10000, ax=ax[0], colorbar=False + ) + _, ax[1] = funcs.plot_spec_from_file( + file, ax=ax[1], start=time, fft_window_length=512, sr=10000, fig=fig + ) + ax[0].set_title( + f"Spec of audio sample from \ntfrecords array nr. {r}" + f" | label: {lab}" + ) + ax[1].set_title( + f"Spec of audio sample from file: \n{Path(file).stem}" + f" | time in file: {funcs.get_time(time/10000)}" + ) + + fig.suptitle("Comparison between tfrecord audio and file audio") + fig.savefig(f"{tfrec.TFRECORDS_DIR}_check_imgs/comp_{Path(file).stem}.png") diff --git a/acodet/split_daily_annots.py b/acodet/split_daily_annots.py new file mode 100644 index 0000000000000000000000000000000000000000..4b9e47e7450b052554181530088e34db46b6eb39 --- /dev/null +++ b/acodet/split_daily_annots.py @@ -0,0 +1,39 @@ +import numpy as np +import pandas as pd +from pathlib import Path +from hbdet.funcs import get_dt_filename + + +def create_day_dir(file_path): + file_path.parent.joinpath(f.stem).mkdir(exist_ok=True) + + +main_path = Path("../Annais/Blue_whales/Annotations_bluewhales") + +files = list(main_path.rglob("2*.txt")) +counter = 0 +for f in files: + data = pd.read_csv(f, sep="\t") + data = data[data["Comments"] == "S"] + if not "Begin File" in data.columns: + continue + else: + create_day_dir(f) + for beg_f in np.unique(data["Begin File"]): + hour_data = data[data["Begin File"] == beg_f] + hour = get_dt_filename(beg_f).hour + new_data = hour_data.copy() + new_data["Begin Time (s)"] -= hour * 1500 + new_data["End Time (s)"] -= hour * 1500 + save_str = f.parent.joinpath(f.stem).joinpath( + Path(beg_f).stem + "_annotated.txt" + ) + new_data.to_csv(save_str, sep="\t") + counter += 1 + print( + "most recent file:", + f.stem, + "files written: ", + counter, + end="\r", + ) diff --git a/acodet/src/imgs/annotation_output.png b/acodet/src/imgs/annotation_output.png new file mode 100644 index 0000000000000000000000000000000000000000..848637dfbe8db441be00b1226969c6cdf976e9af Binary files /dev/null and b/acodet/src/imgs/annotation_output.png differ diff --git a/acodet/src/imgs/gui_sequence_limit.png b/acodet/src/imgs/gui_sequence_limit.png new file mode 100644 index 0000000000000000000000000000000000000000..5d12f723b24b35c16cce96f3d252612c4db69226 Binary files /dev/null and b/acodet/src/imgs/gui_sequence_limit.png differ diff --git a/acodet/src/imgs/sequence_limit.png b/acodet/src/imgs/sequence_limit.png new file mode 100644 index 0000000000000000000000000000000000000000..18f63c6dae865673fe3bbbe17c77b3f99991ca2b Binary files /dev/null and b/acodet/src/imgs/sequence_limit.png differ diff --git a/acodet/tfrec.py b/acodet/tfrec.py new file mode 100644 index 0000000000000000000000000000000000000000..c98ad7c44196581432d274ae32a60bb22de75a70 --- /dev/null +++ b/acodet/tfrec.py @@ -0,0 +1,434 @@ +from tokenize import Intnumber +from functools import partial +import numpy as np +import pandas as pd +import tensorflow as tf +from . import funcs +import random +from .humpback_model_dir import front_end +from pathlib import Path +import json +from . import global_config as conf + +######################################################## +################# WRITING ########################### +######################################################## + + +def exclude_files_from_dataset(annots): + """ + Because some of the calls are very faint, a number of files are rexcluded + from the dataset to make sure that the model performance isn't obscured + by poor data. + + Args: + annots (pd.DataFrame): annotations + + Returns: + pd.DataFrame: cleaned annotation dataframe + """ + exclude_files = [ + "180324160003", + "PAM_20180323", + "PAM_20180324", + "PAM_20180325_0", + "PAM_20180325_17", + "PAM_20180326", + "PAM_20180327", + "PAM_20180329", + "PAM_20180318", + "PAM_20190321", + "20022315", + "20022621", + "210318", + "210319", + "210327", + ] + drop_files = [] + for file in np.unique(annots.filename): + for exclude in exclude_files: + if exclude in file: + drop_files.append(file) + annots.index = annots.filename + + return annots.drop(annots.loc[drop_files].index), annots.loc[drop_files] + + +def audio_feature(list_of_floats): + """ + Returns a list of floats. + + Args: + list_of_floats (list): list of floats + + Returns: + tf.train.Feature: tensorflow feature containing a list of floats + """ + return tf.train.Feature( + float_list=tf.train.FloatList(value=list_of_floats) + ) + + +def int_feature(value): + """ + Returns a int value. + + Args: + value (int): label value + + Returns: + tf.train.Feature: tensorflow feature containing a int + """ + return tf.train.Feature(int64_list=tf.train.Int64List(value=[int(value)])) + + +def string_feature(value): + """ + Returns a bytes array. + + Args: + value (string): path to file + + Returns: + tf.train.Feature: tensorflow feature containing a bytes array + """ + return tf.train.Feature( + bytes_list=tf.train.BytesList(value=[bytes(value, "utf-8")]) + ) + + +def create_example(audio, label, file, time): + """ + Create a tensorflow Example object containing the tf Features that will + be saved in one file. The file will contain the audio data, corresponding + label, the file path corresponding to the audio, and the time in samples + where in the file that audio data begins. The audio data is saved + according to the frame rate in params, for the Google model 10 kHz. + The label is binary, either 0 for noise or 1 for call. + + Args: + audio (list): raw audio data of length params['cntxt_wn_sz'] + label (int): either 1 for call or 0 for noise + file (string): path of file corresponding to audio data + time (int): time in samples when audio data begins within file + + Returns: + tf.train.Example: Example object containing all data + """ + feature = { + "audio": audio_feature(audio), + "label": int_feature(label), + "file": string_feature(file), + "time": int_feature(time), + } + return tf.train.Example(features=tf.train.Features(feature=feature)) + + +def read_raw_file(file, annots, **kwargs): + """ + Load annotations for file, correct annotation starting times to make sure + that the signal is in the window center. + + Args: + file (string): path to file + + Returns: + tuple: audio segment arrays, label arrays and time arrays + """ + + file_annots = funcs.get_annots_for_file(annots, file) + + x_call, x_noise, times_c, times_n = funcs.cntxt_wndw_arr( + file_annots, file, **kwargs + ) + y_call = np.ones(len(x_call), dtype="float32") + y_noise = np.zeros(len(x_noise), dtype="float32") + + return (x_call, y_call, times_c), (x_noise, y_noise, times_n) + + +def write_tfrecords(annots, save_dir, inbetween_noise=True, **kwargs): + """ + Write tfrecords files from wav files. + First the files are imported and the noise files are generated. After that + a loop iterates through the tuples containing the audio arrays, labels, and + startint times of the audio arrays within the given file. tfrecord files + contain no more than 600 audio arrays. The respective audio segments, + labels, starting times, and file paths are saved in the files. + + Args: + files (list): list of file paths to the audio files + """ + files = np.unique(annots.filename) + + if len(files) == 0: + return + + random.shuffle(files) + + split_mode = "within_file" + specs = ["size", "noise", "calls"] + folders = ["train", "test", "val"] + train_file_index = int(len(files) * conf.TRAIN_RATIO) + test_file_index = int( + len(files) * (1 - conf.TRAIN_RATIO) * conf.TEST_VAL_RATIO + ) + + dataset = {k: {k1: 0 for k1 in folders} for k in specs} + data_meta_dict = dict({"data_split": split_mode}) + files_dict = {} + tfrec_num = 0 + for i, file in enumerate(files): + print( + "writing tf records files, progress:" f"{i/len(files)*100:.0f} %" + ) + + if i < train_file_index: + folder = folders[0] + elif i < train_file_index + test_file_index: + folder = folders[1] + else: + folder = folders[2] + + call_tup, noise_tup = read_raw_file( + file, annots, inbetween_noise=inbetween_noise, **kwargs + ) + + calls = randomize_arrays(call_tup, file) + noise = randomize_arrays(noise_tup, file) + samples = [*calls, *noise] + random.shuffle(samples) + data = dict() + + end_tr, end_te = map( + lambda x: int(x * len(samples)), + ( + conf.TRAIN_RATIO, + (1 - conf.TRAIN_RATIO) * conf.TEST_VAL_RATIO + + conf.TRAIN_RATIO, + ), + ) + + data["train"] = samples[:end_tr] + data["test"] = samples[end_tr:end_te] + data["val"] = samples[end_tr:-1] + + for folder, samples in data.items(): + split_by_max_length = [ + samples[j * conf.TFRECS_LIM : (j + 1) * conf.TFRECS_LIM] + for j in range(len(samples) // conf.TFRECS_LIM + 1) + ] + for samps in split_by_max_length: + tfrec_num += 1 + writer = get_tfrecords_writer( + tfrec_num, folder, save_dir, **kwargs + ) + files_dict, dataset = update_dict( + samps, files_dict, dataset, folder, tfrec_num + ) + + for audio, label, file, time in samps: + examples = create_example(audio, label, file, time) + writer.write(examples.SerializeToString()) + + # TODO automatisch die noise sachen miterstellen + data_meta_dict.update({"dataset": dataset}) + data_meta_dict.update({"files": files_dict}) + path = add_child_dirs(save_dir, **kwargs) + with open(path.joinpath(f"dataset_meta_{folders[0]}.json"), "w") as f: + json.dump(data_meta_dict, f) + + +def randomize_arrays(tup, file): + x, y, times = tup + + rand = np.arange(len(x)) + random.shuffle(rand) + + return zip(x[rand], y[rand], [file] * len(x), np.array(times)[rand]) + + +def update_dict(samples, d, dataset_dict, folder, tfrec_num): + calls = sum(1 for i in samples if i[1] == 1) + noise = sum(1 for i in samples if i[1] == 0) + size = noise + calls + d.update( + {f"file_%.2i_{folder}" % tfrec_num: k for k in [size, noise, calls]} + ) + for l, k in zip(("size", "calls", "noise"), (size, calls, noise)): + dataset_dict[l][folder] += k + return d, dataset_dict + + +def add_child_dirs(save_dir, alt_subdir="", all_noise=False, **kwargs): + path = save_dir.joinpath(alt_subdir) + if all_noise: + path = path.joinpath("noise") + return path + + +def get_tfrecords_writer(num, fold, save_dir, **kwargs): + """ + Return TFRecordWriter object to write file. + + Args: + num (int): file number + + Returns: + TFRecordWriter object: file handle + """ + path = add_child_dirs(save_dir, **kwargs) + Path(path.joinpath(fold)).mkdir(parents=True, exist_ok=True) + return tf.io.TFRecordWriter( + str(path.joinpath(fold).joinpath("file_%.2i.tfrec" % num)) + ) + + +def get_src_dir_structure(file, annot_dir): + """ + Return the directory structure of a file relative to the annotation + directory. This enables the caller to build a directory structure + identical to the directory structure of the source files. + + Parameters + ---------- + file : pathlib.Path + file path + annot_dir : str + path to annotation directory + + Returns + ------- + pathlike + directory structure + """ + if len(list(file.relative_to(annot_dir).parents)) == 1: + return file.relative_to(annot_dir).parent + else: + return list(file.relative_to(annot_dir).parents)[-2] + + +def write_tfrec_dataset(annot_dir=conf.ANNOT_DEST, active_learning=True): + annotation_files = list(Path(annot_dir).glob("**/*.csv")) + if active_learning: + inbetween_noise = False + else: + inbetween_noise = True + + for file in annotation_files: + annots = pd.read_csv(file) + if "explicit_noise" in file.stem: + all_noise = True + else: + all_noise = False + + save_dir = Path(conf.TFREC_DESTINATION).joinpath( + get_src_dir_structure(file, annot_dir) + ) + + write_tfrecords( + annots, + save_dir, + all_noise=all_noise, + inbetween_noise=inbetween_noise, + ) + + +######################################################## +################# READING ########################### +######################################################## + + +def parse_tfrecord_fn(example): + """ + Parser for tfrecords files. + + Args: + example (tf.train.Example instance): file containing 4 features + + Returns: + tf.io object: tensorflow object containg the data + """ + feature_description = { + "audio": tf.io.FixedLenFeature([conf.CONTEXT_WIN], tf.float32), + "label": tf.io.FixedLenFeature([], tf.int64), + "file": tf.io.FixedLenFeature([], tf.string), + "time": tf.io.FixedLenFeature([], tf.int64), + } + return tf.io.parse_single_example(example, feature_description) + + +def prepare_sample(features, return_meta=False, **kwargs): + if not return_meta: + return features["audio"], features["label"] + else: + return ( + features["audio"], + features["label"], + features["file"], + features["time"], + ) + + +def get_dataset(filenames, AUTOTUNE=None, **kwargs): + dataset = ( + tf.data.TFRecordDataset(filenames, num_parallel_reads=AUTOTUNE) + .map(parse_tfrecord_fn, num_parallel_calls=AUTOTUNE) + .map(partial(prepare_sample, **kwargs), num_parallel_calls=AUTOTUNE) + ) + return dataset + + +def run_data_pipeline( + root_dir, data_dir, AUTOTUNE=None, return_spec=True, **kwargs +): + if not isinstance(root_dir, list): + root_dir = [root_dir] + files = [] + for root in root_dir: + if data_dir == "train": + files += tf.io.gfile.glob(f"{root}/{data_dir}/*.tfrec") + elif data_dir == "noise": + files += tf.io.gfile.glob(f"{root}/{data_dir}/*.tfrec") + files += tf.io.gfile.glob(f"{root}/noise/train/*.tfrec") + else: + try: + files += tf.io.gfile.glob(f"{root}/noise/{data_dir}/*.tfrec") + except: + print("No explicit noise for ", root) + files += tf.io.gfile.glob(f"{root}/{data_dir}/*.tfrec") + dataset = get_dataset(files, AUTOTUNE=AUTOTUNE, **kwargs) + if return_spec: + return make_spec_tensor(dataset) + else: + return dataset + + +def spec(): + return tf.keras.Sequential( + [ + tf.keras.layers.Input([conf.CONTEXT_WIN]), + tf.keras.layers.Lambda(lambda t: tf.expand_dims(t, -1)), + front_end.MelSpectrogram(), + ] + ) + + +def prepare( + ds, + batch_size, + shuffle=False, + shuffle_buffer=750, + augmented_data=None, + AUTOTUNE=None, +): + if shuffle: + ds = ds.shuffle(shuffle_buffer) + ds = ds.batch(batch_size) + return ds.prefetch(buffer_size=AUTOTUNE) + + +def make_spec_tensor(ds, AUTOTUNE=None): + ds = ds.batch(1) + ds = ds.map(lambda x, *y: (spec()(x), *y), num_parallel_calls=AUTOTUNE) + return ds.unbatch() diff --git a/acodet/train.py b/acodet/train.py new file mode 100644 index 0000000000000000000000000000000000000000..39449065678c9476e0d45b8714d67bd2c76f73fb --- /dev/null +++ b/acodet/train.py @@ -0,0 +1,290 @@ +import os +import time +from pathlib import Path +import numpy as np +import tensorflow as tf +import tensorflow_addons as tfa + +from acodet.funcs import save_model_results, get_train_set_size +from acodet import models +from acodet.plot_utils import plot_model_results, create_and_save_figure +from acodet.tfrec import run_data_pipeline, prepare +from acodet.augmentation import run_augment_pipeline +from acodet import global_config as conf + +AUTOTUNE = tf.data.AUTOTUNE + + +def run_training( + ModelClassName=conf.MODELCLASSNAME, + data_dir=conf.TFREC_DESTINATION, + # TODO trennen destination und standardpfad - oder doch nicht? + batch_size=conf.BATCH_SIZE, + epochs=conf.EPOCHS, + load_ckpt_path=conf.LOAD_CKPT_PATH, + load_g_ckpt=conf.LOAD_G_CKPT, + keras_mod_name=conf.KERAS_MOD_NAME, + steps_per_epoch=conf.STEPS_PER_EPOCH, + time_augs=conf.TIME_AUGS, + mixup_augs=conf.MIXUP_AUGS, + spec_aug=conf.SPEC_AUG, + data_description=conf.DATA_DESCRIPTION, + init_lr=conf.INIT_LR, + final_lr=conf.FINAL_LR, + pre_blocks=conf.PRE_BLOCKS, + f_score_beta=conf.F_SCORE_BETA, + f_score_thresh=conf.F_SCORE_THRESH, + unfreeze=conf.UNFREEZE, +): + info_text = f"""Model run INFO: + + model: untrained model + dataset: {data_description} + comments: implemented proper on-the-fly augmentation + + VARS: + data_path = {data_dir} + batch_size = {batch_size} + Model = {ModelClassName} + keras_mod_name = {keras_mod_name} + epochs = {epochs} + load_ckpt_path = {load_ckpt_path} + load_g_ckpt = {load_g_ckpt} + steps_per_epoch = {steps_per_epoch} + f_score_beta = {f_score_beta} + f_score_thresh = {f_score_thresh} + bool_time_shift = {time_augs} + bool_MixUps = {mixup_augs} + bool_SpecAug = {spec_aug} + init_lr = {init_lr} + final_lr = {final_lr} + unfreeze = {unfreeze} + preproc blocks = {pre_blocks} + """ + + ############################################################################# + ############################# RUN ######################################### + ############################################################################# + data_dir = list(Path(data_dir).iterdir()) + + ########### INIT TRAINING RUN AND DIRECTORIES ############################### + time_start = time.strftime("%Y-%m-%d_%H", time.gmtime()) + Path(f"../trainings/{time_start}").mkdir(exist_ok=True, parents=True) + + n_train, n_noise = get_train_set_size(data_dir) + n_train_set = n_train * ( + 1 + time_augs + mixup_augs + spec_aug * 2 + ) # // batch_size + print( + "Train set size = {}. Epoch should correspond to this amount of steps.".format( + n_train_set + ), + "\n", + ) + + seed = np.random.randint(100) + open(f"../trainings/{time_start}/training_info.txt", "w").write(info_text) + + ###################### DATA PREPROC PIPELINE ################################ + + train_data = run_data_pipeline( + data_dir, data_dir="train", AUTOTUNE=AUTOTUNE + ) + test_data = run_data_pipeline(data_dir, data_dir="test", AUTOTUNE=AUTOTUNE) + noise_data = run_data_pipeline( + data_dir, data_dir="noise", AUTOTUNE=AUTOTUNE + ) + + train_data = run_augment_pipeline( + train_data, + noise_data, + n_noise, + n_train, + time_augs, + mixup_augs, + seed, + spec_aug=spec_aug, + time_start=time_start, + plot=False, + random=False, + ) + train_data = prepare( + train_data, batch_size, shuffle=True, shuffle_buffer=n_train_set * 3 + ) + if ( + steps_per_epoch + and n_train_set // batch_size < epochs * steps_per_epoch + ): + train_data = train_data.repeat( + epochs * steps_per_epoch // (n_train_set // batch_size) + 1 + ) + + test_data = prepare(test_data, batch_size) + + ############################################################################# + ######################### TRAINING ########################################## + ############################################################################# + + lr = tf.keras.optimizers.schedules.ExponentialDecay( + init_lr, + decay_steps=steps_per_epoch or n_train_set // batch_size, + decay_rate=(final_lr / init_lr) ** (1 / epochs), + staircase=True, + ) + + model = models.init_model( + model_instance=ModelClassName, + checkpoint_dir=f"../trainings/{load_ckpt_path}/unfreeze_no-TF", + keras_mod_name=keras_mod_name, + input_specs=True, + ) + + model.compile( + optimizer=tf.keras.optimizers.legacy.Adam(learning_rate=lr), + loss=tf.keras.losses.BinaryCrossentropy(), + metrics=[ + tf.keras.metrics.BinaryAccuracy(), + tf.keras.metrics.Precision(), + tf.keras.metrics.Recall(), + tfa.metrics.FBetaScore( + num_classes=1, + beta=f_score_beta, + threshold=f_score_thresh, + name="fbeta", + ), + tfa.metrics.FBetaScore( + num_classes=1, + beta=1.0, + threshold=f_score_thresh, + name="fbeta1", + ), + ], + ) + + if unfreeze: + for layer in model.layers[pre_blocks:-unfreeze]: + layer.trainable = False + + checkpoint_path = ( + f"../trainings/{time_start}/unfreeze_{unfreeze}" + "/cp-last.ckpt" + ) + checkpoint_dir = os.path.dirname(checkpoint_path) + + cp_callback = tf.keras.callbacks.ModelCheckpoint( + filepath=checkpoint_path, + mode="min", + verbose=1, + save_weights_only=True, + save_freq="epoch", + ) + + model.save_weights(checkpoint_path) + hist = model.fit( + train_data, + epochs=epochs, + steps_per_epoch=steps_per_epoch, + validation_data=test_data, + callbacks=[cp_callback], + ) + result = hist.history + save_model_results(checkpoint_dir, result) + + ############## PLOT TRAINING PROGRESS & MODEL EVALUTAIONS ################### + + plot_model_results( + time_start, data=data_description, init_lr=init_lr, final_lr=final_lr + ) + ModelClass = getattr(models, ModelClassName) + create_and_save_figure( + ModelClass, + data_dir, + batch_size, + time_start, + plot_cm=True, + data=data_description, + keras_mod_name=keras_mod_name, + ) + + +def save_model( + string, + model, + lr=5e-4, + weight_clip=None, + f_score_beta=0.5, + f_score_thresh=0.5, +): + model.compile( + optimizer=tf.keras.optimizers.Adam(learning_rate=lr), + loss=tf.keras.losses.BinaryCrossentropy(), + metrics=[ + tf.keras.metrics.BinaryAccuracy(), + tf.keras.metrics.Precision(), + tf.keras.metrics.Recall(), + tfa.metrics.FBetaScore( + num_classes=1, + beta=f_score_beta, + threshold=f_score_thresh, + name="fbeta", + ), + tfa.metrics.FBetaScore( + num_classes=1, + beta=1.0, + threshold=f_score_thresh, + name="fbeta1", + ), + ], + ) + model.save(f"acodet/src/models/{string}") + + +############################################################################## +############################################################################## +####################### CONFIGURE TRAINING ################################### +############################################################################## +############################################################################## + +if __name__ == "__main__": + data_dir = list(Path(conf.TFREC_DESTINATION).iterdir()) + + epochs = [*[43] * 5, 100] + batch_size = [32] * 6 + time_augs = [True] + mixup_augs = [True] + spec_aug = [True] + init_lr = [*[4e-4] * 5, 1e-5] + final_lr = [3e-6] * 6 + weight_clip = [None] * 6 + ModelClassName = ["GoogleMod"] * 6 + keras_mod_name = [None] * 6 + load_ckpt_path = [*[False] * 5, "2022-11-30_01"] + load_g_weights = [False] + steps_per_epoch = [1000] + data_description = [data_dir] + pre_blocks = [9] + f_score_beta = [0.5] + f_score_thresh = [0.5] + unfreeze = ["no-TF"] + + for i in range(len(time_augs)): + run_training( + data_dir=data_dir, + epochs=epochs[i], + batch_size=batch_size[i], + time_augs=time_augs[i], + mixup_augs=mixup_augs[i], + spec_aug=spec_aug[i], + init_lr=init_lr[i], + final_lr=final_lr[i], + # weight_clip=weight_clip[i], + ModelClassName=ModelClassName[i], + keras_mod_name=keras_mod_name[i], + load_ckpt_path=load_ckpt_path[i], + # load_g_weights=load_g_weights[i], + steps_per_epoch=steps_per_epoch[i], + data_description=data_description[i], + pre_blocks=pre_blocks[i], + f_score_beta=f_score_beta[i], + f_score_thresh=f_score_thresh[i], + unfreeze=unfreeze[i], + ) diff --git a/advanced_config.yml b/advanced_config.yml new file mode 100644 index 0000000000000000000000000000000000000000..9f5a285567ea13aa0fb6310b1be443244d293b97 --- /dev/null +++ b/advanced_config.yml @@ -0,0 +1,106 @@ +############################################################################## + +# THIS FILE IS ONLY MEANT TO BE EDITED IF YOU ARE SURE! + +# PROGRAM FAILURE IS LIKELY TO OCCUR IF YOU ARE UNSURE OF THE +# CONSEQUENCES OF YOUR CHANGES. + +# IF YOU HAVE CHANGED VALUES AND ARE ENCOUNTERING ERRORS, +# STASH YOUR CHANGES ('git stash' in a git bash console in acodet directory) + +############################################################################## + + +#################### AUDIO PROCESSING PARAMETERS ########################### +#!!! CHANGING THESE PARAMETERS WILL RESULT IN MODEL FAILURE, ONLY TO !!!# +#!!! BE CHANGED FOR TRAINING OF NEW MODEL ESPECIALY FOR DIFFERENT SPECIES !!!# +## Global audio processing parameters +# sample rate +sample_rate: 2000 +# length of context window in seconds +# this is the audio segment length that the model is trained on +context_window_in_seconds: 3.9 + +## Mel-Spectrogram parameters +# FFT window length +stft_frame_len: 1024 +# number of time bins for mel spectrogram +number_of_time_bins: 128 + + +################### TFRECORD CREATION PARAMETERS ########################### +## Settings for Creation of Tfrecord Dataset +# limit of context windows in a tfrecords file +tfrecs_limit_per_file: 600 +# train/test split +train_ratio: 0.7 +# test/val split +test_val_ratio: 0.7 + +######################## ANNOTATIONS ######################################## +default_threshold: 0.5 +# minimum frequency of annotation boxes +annotation_df_fmin: 50 +# maximum frequency of annotation boxes +annotation_df_fmax: 1000 + +######################## PATHS ############################################# +# dataset destination directory - save tfrecord dataset to this directory +# only change when really necessary +tfrecords_destination_folder: '../Data/Datasets' +# default folder to store newly created annotations +generated_annotations_folder: '../generated_annotations' +# name of current North Atlantic humpback whale song model +model_name: 'Humpback_20221130' +# name of top level directory when annotating multiple datasets +top_dir_name: 'main' +# custom string to add to timestamp for directory name +# of created annotations +annots_timestamp_folder: '' +# default threshold folder name +thresh_label: 'thresh_0.5' + +####################### TRAINING ########################################### + +# Name of Model class, default is HumpBackNorthAtlantic, possible other classes +# are GoogleMod for the modified ResNet-50 architecture, or KerasAppModel for +# any of the Keras application models (name will get specified under keras_mod_name) +ModelClassName: 'HumpBackNorthAtlantic' +# batch size for training and evaluating purposes +batch_size: 32 +# number of epochs to run the model +epochs: 50 +# specify the path to your training checkpoint here to load a pretrained model +load_ckpt_path: False +# to run the google model, select True +load_g_ckpt: False +# specify the name of the keras application model that you want to run - select the +# ModelClassName KerasAppModel for this +keras_mod_name: False +# number of steps per epoch +steps_per_epoch: 1000 +# select True if you want your training data to be time shift augmented (recommended) +time_augs: True +# select True if you want your training data to be MixUp augmented (recommended) +mixup_augs: True +# select True if you want your training data to be +# time and frequency masked augmented (recommended) +spec_aug: True +# specify a string to describe the dataset used for this model run (to later be able +# to understand what was significant about this model training) +data_description: 'describe your dataset' +# starting learning rate +init_lr: 5e-4 +# final learning rate +final_lr: 5e-6 +# number of preliminary blocks in model (are kept frozen) +pre_blocks: 9 +# threshold for f score beta +f_score_beta: 0.5 +f_score_thresh: 0.5 +# number of layers to unfreeze, if False, the entire model is trainable +unfreeze: False + +######################## Streamlit ######################################### +# select True if you want to run the streamlit app +streamlit: False \ No newline at end of file diff --git a/macM1_requirements/requirements_m1-1.txt b/macM1_requirements/requirements_m1-1.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a514b527c5a6df1f9a8c0a8719241d28f607087 --- /dev/null +++ b/macM1_requirements/requirements_m1-1.txt @@ -0,0 +1,11 @@ +keras-cv==0.5.0 +librosa==0.9.1 +matplotlib==3.5.1 +numpy==1.22.0 +pandas==1.4.2 +PyYAML==6.0.1 +seaborn==0.12.1 +streamlit==1.25.0 +tensorflow==2.13.0rc0 +tensorflow_io==0.31.0 +tensorflow-addons==0.20.0 diff --git a/macM1_requirements/requirements_m1-2.txt b/macM1_requirements/requirements_m1-2.txt new file mode 100644 index 0000000000000000000000000000000000000000..c59a08656d58b0e4249275e8edbf2df5efed70a4 --- /dev/null +++ b/macM1_requirements/requirements_m1-2.txt @@ -0,0 +1 @@ +keras==2.12 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000000000000000000000000000000000000..aa0d60ca1327849157ad07d5df7235fc2c4545a2 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[tool.black] +line-length = 79 +include = '\.pyi?$' \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..f246b6dafb57ace5a92a3e4e768cdad4db41bce3 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,16 @@ +keras_cv==0.5.0 +librosa==0.9.1 +matplotlib==3.5.1 +numpy==1.22.0 +pandas==1.4.2 +PyYAML==6.0.1 +seaborn==0.12.2 +streamlit==1.25.0 +tensorflow==2.12.0 +tensorflow_addons==0.20.0 +tensorflow_intel +tensorflow_io==0.31.0 +plotly==5.16.1 +black==23.7.0 +pre-commit==3.3.3 +pyqt5==5.15.6 \ No newline at end of file diff --git a/run.py b/run.py new file mode 100644 index 0000000000000000000000000000000000000000..5fd63164222172b7e49fb6a8d209442c2979aab2 --- /dev/null +++ b/run.py @@ -0,0 +1,80 @@ +def main(sc=True, **kwargs): + """ + Main function to run the whole pipeline. The function is called from the + streamlit app. The function is called with the preset option as an argument. + The preset option is used to determine which function should be called. + The preset option is set in the config file. + + Parameters + ---------- + sc : bool, optional + Decide if meta analysis should be done using sequence limit, by default True + + Returns + ------- + str or None + depending on the preset option, the function returns either the time + when the annotation was started or None + """ + from acodet.annotate import run_annotation, filter_annots_by_thresh + from acodet.train import run_training, save_model + from acodet.tfrec import write_tfrec_dataset + from acodet.hourly_presence import compute_hourly_pres, calc_val_diff + from acodet.evaluate import create_overview_plot + from acodet.combine_annotations import generate_final_annotations + from acodet.models import init_model + import acodet.global_config as conf + + if "fetch_config_again" in kwargs: + import importlib + + importlib.reload(conf) + kwargs["relativ_path"] = conf.SOUND_FILES_SOURCE + if "preset" in kwargs: + preset = kwargs["preset"] + else: + preset = conf.PRESET + + if conf.RUN_CONFIG == 1: + if preset == 1: + timestamp_foldername = run_annotation(**kwargs) + return timestamp_foldername + elif preset == 2: + new_thresh = filter_annots_by_thresh(**kwargs) + return new_thresh + elif preset == 3: + compute_hourly_pres(sc=sc, **kwargs) + elif preset == 4: + compute_hourly_pres(**kwargs) + elif preset == 6: + calc_val_diff(**kwargs) + elif preset == 0: + timestamp_foldername = run_annotation(**kwargs) + filter_annots_by_thresh(timestamp_foldername, **kwargs) + compute_hourly_pres(timestamp_foldername, sc=sc, **kwargs) + return timestamp_foldername + + elif conf.RUN_CONFIG == 2: + if preset == 1: + generate_final_annotations(**kwargs) + write_tfrec_dataset(**kwargs) + elif preset == 2: + generate_final_annotations(active_learning=False, **kwargs) + write_tfrec_dataset(active_learning=False, **kwargs) + + elif conf.RUN_CONFIG == 3: + if preset == 1: + run_training(**kwargs) + elif preset == 2: + create_overview_plot(**kwargs) + elif preset == 3: + create_overview_plot("2022-05-00_00", **kwargs) + elif preset == 4: + save_model("FlatHBNA", init_model(), **kwargs) + + +if __name__ == "__main__": + from acodet.create_session_file import create_session_file + + create_session_file() + main() diff --git a/simple_config.yml b/simple_config.yml new file mode 100644 index 0000000000000000000000000000000000000000..37508ec942ef136da219dd6e8a48603cb9a6ced4 --- /dev/null +++ b/simple_config.yml @@ -0,0 +1,99 @@ +############################################################################## + +# This file is for you to edit the paths corresponding to the following: +# - source path of annotation files +# - destination path of your annotation files (leave unchanged if possible) +# - source path of sound files (.wav of .aif) (top most directory) +# - destination path of any plots or spreadsheets + +# This file is also for you to edit the threshold value of the detector, to +# make the detector more sensitive or less sensitive. +# - Higher threshold will decrease number of false positives but +# at the cost of overlooking vocalizations. +# - Lower threshold values will increase number of false positives +# but more likely also detect false positives. + + +############################################################################## + + + + +###################### 1. DEFINE YOUR RUN #################################### + +# what would you like to do? +# chose the run configuration: +# - 1 generate annotations +# - 2 generate new training data from reviewed annotations +# - 3 train (and evaluate) +run_config: 1 + +# depending on the main task, chose your predefined settings: +# for generation of annotations, chose: +# - 1 generate new annotations +# - 2 filter existing annotations with different threshold +# - 3 generate hourly predictions (simple limit and sequence criterion) +# - 4 generate hourly predictions (only simple limit) +# - 5 generate hourly predictions with varying limits - n.i. +# - 0 all of the above +# for generation of new training data, chose: +# - 1 generate new training data from reviewed annotations +# - 2 generate new training data from reviewed annotations +# and fill space between annotations with noise annotations +# for training, chose: +# - 1 continue training on existing model and save model in the end +# - 2 evaluate saved model +# - 3 evaluate model checkpoint +# - 4 save model specified in advanced config +predefined_settings: 0 + +####################### 2. DEFINCE YOUR PATHS ############################### + +## Paths +# source path for your sound files (top most directory) +# relevant for generation of new annotations (option run_config: 1) +sound_files_source: 'path to your sound files' + +# source path for automatically generated annotations +# relevant for generation of hourly or daily presence, or recomputing +# with a different threshold +# (options run_config: 1 and predifined_settings: 2 and 4) +generated_annotation_source: '../Cathy/HBW_detector' + + +# source path for annotations created or reviewed by you +# relevant for creation of new dataset (option run_config: 2) +# -> might be easier to just copy annotation files to default location +reviewed_annotation_source: '../annotations' + +# source path for automatically generated combined annotations +# Only relevant for creation of new dataset (option run_config: 2) +# if unsure, leave unchanged. +annotation_destination: '../combined_annotations' + + + + +####################### 3. DEFINE YOUR PARAMETERS ########################### + +## Model Parameters +# threshold for predictions +thresh: 0.9 +# number of annotations above threshold for hourly presence (default = 15) +simple_limit: 15 +# threshold for sequence criterion (default = 0.9) +sequence_thresh: 0.9 +# number of annotations above threshold within 20 consecutive windows +# for hourly presence (default = 3) +sequence_limit: 3 +# number of consecutive windows that sc_limit has to occur in (default = 20) +sequence_con_win: 20 +# number of annotations that correspond to the upper limit of color bar in +# hourly annotations plots +max_annots_per_hour: 150 +# path to validation file of hourly presence dataset +hourly_presence_validation_path: 'validation.csv' + +# number of predictions that get computed at once - should be in [20, 2000] +# worth testing out different values to find whats fastest for your machine +prediction_window_limit: 1000 \ No newline at end of file diff --git a/streamlit_app.py b/streamlit_app.py new file mode 100644 index 0000000000000000000000000000000000000000..f2c653a4e054197cb5fd063ca2c9aff44b51ac42 --- /dev/null +++ b/streamlit_app.py @@ -0,0 +1,94 @@ +import streamlit as st +from acodet.create_session_file import create_session_file, read_session_file +from acodet.front_end import help_strings + +if not "session_started" in st.session_state: + st.session_state.session_started = True + create_session_file() +from acodet.front_end import ( + utils, + st_annotate, + st_generate_data, + st_train, + st_visualization, +) + +utils.write_to_session_file("streamlit", True) + + +def select_preset(): + utils.write_to_session_file("run_config", st.session_state.run_option) + show_run_btn = False + + if st.session_state.run_option == 1: + show_run_btn = st_annotate.annotate_options() + elif st.session_state.run_option == 2: + show_run_btn = st_generate_data.generate_data_options() + elif st.session_state.run_option == 3: + show_run_btn = st_train.train_options() + if show_run_btn: + run_computions() + + +def run_computions(**kwargs): + utils.next_button(id=4, text="Run computations") + if st.session_state.b4: + display_not_implemented_text() + kwargs = utils.prepare_run() + if not st.session_state.run_finished: + import run + + st.session_state.save_dir = run.main( + fetch_config_again=True, **kwargs + ) + st.session_state.run_finished = True + + if st.session_state.run_finished: + if not st.session_state.preset_option == 3: + st.write("Computation finished") + utils.next_button(id=5, text="Show results") + st.markdown("""---""") + else: + conf = read_session_file() + st.session_state.b5 = True + st.session_state.save_dir = conf["generated_annotation_source"] + + if not st.session_state.b5: + pass + else: + st_visualization.output() + st.stop() + + +def display_not_implemented_text(): + if not st.session_state.run_option == 1: + st.write( + """This option is not yet implemented for usage + with the user interface. A headless version is + available at https://github.com/vskode/acodet.""" + ) + st.stop() + + +if __name__ == "__main__": + + st.markdown( + """ + # Welcome to AcoDet - Acoustic Detection of Animal Vocalizations :loud_sound: + ### This program is currently equipped with a humpback whale song detector for the North Atlantic :whale2: + For more information, please visit https://github.com/vskode/acodet + + --- + """ + ) + run_option = int( + st.selectbox( + "How would you like run the program?", + ("1 - Inference", "2 - Generate new training data", "3 - Train"), + key="main", + help=help_strings.RUN_OPTION, + )[0] + ) + + st.session_state.run_option = run_option + select_preset() diff --git a/tests/test.py b/tests/test.py new file mode 100644 index 0000000000000000000000000000000000000000..bd409d8c0af8b317a7af5a4d8b621f341ce3330f --- /dev/null +++ b/tests/test.py @@ -0,0 +1,132 @@ +import os, sys +import unittest +from pathlib import Path +import pandas as pd + +sys.path.insert(0, os.path.abspath(".")) + +########### MODIFY SESSION SETTINGS BEFORE GLOBAL CONFIG IS IMPORTED ######### +from acodet.create_session_file import create_session_file + +create_session_file() +import json + +with open("acodet/src/tmp_session.json", "r") as f: + session = json.load(f) +session["sound_files_source"] = "tests/test_files/test_audio_files" +session[ + "generated_annotation_source" +] = "tests/test_files/test_generated_annotations" +session[ + "annotation_destination" +] = "tests/test_files/test_combined_annotations" +session[ + "generated_annotations_folder" +] = "tests/test_files/test_generated_annotations" + +session[ + "reviewed_annotation_source" +] = "tests/test_files/test_generated_annotations" +session["tfrecords_destination_folder"] = "tests/test_files/test_tfrecords" + +with open("acodet/src/tmp_session.json", "w") as f: + json.dump(session, f) +############################################################################## + + +from acodet.annotate import run_annotation, filter_annots_by_thresh +from acodet.funcs import return_windowed_file, get_train_set_size +from acodet.models import GoogleMod +from acodet.combine_annotations import generate_final_annotations +from acodet.tfrec import write_tfrec_dataset +from acodet.train import run_training +from acodet import global_config as conf + + + +class TestDetection(unittest.TestCase): + def test_annotation(self): + self.time_stamp = run_annotation() + df = pd.read_csv( + ( + Path(conf.GEN_ANNOTS_DIR) + .joinpath(self.time_stamp) + .joinpath("stats.csv") + ) + ) + self.assertEqual( + df["number of predictions with thresh>0.8"][0], + 326, + "Number of predictions is not what it should be.", + ) + + filter_annots_by_thresh(self.time_stamp) + file = list( + Path(conf.GEN_ANNOT_SRC) + .joinpath(self.time_stamp) + .joinpath(f"thresh_{conf.THRESH}") + .glob("**/*.txt") + )[0] + df = pd.read_csv(file) + self.assertEqual( + len(df), + 309, + "Number of predictions from filtered thresholds " "is incorrect.", + ) + + +class TestTraining(unittest.TestCase): + def test_model_load(self): + model = GoogleMod(load_g_ckpt=False).model + self.assertGreater(len(model.layers), 15) + + # def test_tfrecord_loading(self): + # data_dir = list(Path(conf.TFREC_DESTINATION).iterdir()) + # n_train, n_noise = get_train_set_size(data_dir) + # self.assertEqual(n_train, 517) + # self.assertEqual(n_noise, 42) + +class TestTFRecordCreation(unittest.TestCase): + def test_tfrecord(self): + time_stamp = list(Path(conf.ANNOT_DEST).iterdir())[-1] + write_tfrec_dataset(annot_dir=time_stamp, active_learning=False) + metadata_file_path = Path(conf.TFREC_DESTINATION).joinpath( + "dataset_meta_train.json" + ) + self.assertEqual( + metadata_file_path.exists(), + 1, + "TFRecords metadata file was not created.", + ) + + with open(metadata_file_path, "r") as f: + data = json.load(f) + self.assertEqual( + data["dataset"]["size"]["train"], + 517, + "TFRecords files has wrong number of datapoints.", + ) + + def test_combined_annotation(self): + generate_final_annotations(active_learning=False) + time_stamp = list(Path(conf.GEN_ANNOTS_DIR).iterdir())[-1].stem + combined_annots_path = ( + Path(conf.ANNOT_DEST) + .joinpath(time_stamp) + .joinpath("combined_annotations.csv") + ) + self.assertEqual( + combined_annots_path.exists(), + 1, + "csv file containing combined_annotations does not exist.", + ) + df = pd.read_csv(combined_annots_path) + self.assertEqual( + df.start.iloc[-1], + 1795.2825, + "The annotations in combined_annotations.csv don't seem to be identical", + ) + + +if __name__ == "__main__": + unittest.main() diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_00-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_00-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..34b39c22d8fa566ce4f9057bc8f10a4af94df796 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_00-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,28 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.72177804 +2 65.9175 69.795 1000 50 0.5281566 +3 108.57 112.44749999999999 1000 50 0.76347905 +4 124.08 127.9575 1000 50 0.64476347 +5 127.9575 131.835 1000 50 0.6341658 +6 139.59 143.4675 1000 50 0.60823405 +7 178.365 182.2425 1000 50 0.6451596 +8 186.12 189.9975 1000 50 0.82998466 +9 201.63 205.5075 1000 50 0.75589406 +10 213.2625 217.14 1000 50 0.6491813 +11 217.14 221.01749999999998 1000 50 0.7016125 +12 275.3025 279.18 1000 50 0.8662185 +13 290.8125 294.69 1000 50 0.5251316 +14 321.8325 325.71 1000 50 0.64809465 +15 407.1375 411.015 1000 50 0.5973742 +16 411.015 414.8925 1000 50 0.9908187 +17 476.9325 480.81 1000 50 0.85746086 +18 480.81 484.6875 1000 50 0.71086293 +19 507.9525 511.83 1000 50 0.79394937 +20 511.83 515.7075 1000 50 0.91436124 +21 546.7275 550.605 1000 50 0.6516418 +22 601.0125 604.8900000000001 1000 50 0.5256015 +23 616.5225 620.4000000000001 1000 50 0.8155822 +24 647.5425 651.4200000000001 1000 50 0.6215045 +25 659.175 663.0525 1000 50 0.7368213 +26 713.46 717.3375000000001 1000 50 0.57750905 +27 725.0925 728.97 1000 50 0.6525679 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_00-15-55_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_00-15-55_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..9fbb22e796a4e4b4096b3f2619767c9c278c7a90 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_00-15-55_annot_2022-11-30_01.txt @@ -0,0 +1,20 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.5005236 +2 50.4075 54.285 1000 50 0.50911117 +3 139.59 143.4675 1000 50 0.59164804 +4 162.855 166.7325 1000 50 0.54786545 +5 178.365 182.2425 1000 50 0.53832465 +6 201.63 205.5075 1000 50 0.759787 +7 213.2625 217.14 1000 50 0.7325302 +8 232.65 236.5275 1000 50 0.73861456 +9 244.2825 248.16 1000 50 0.5488199 +10 248.16 252.0375 1000 50 0.5221725 +11 275.3025 279.18 1000 50 0.604062 +12 290.8125 294.69 1000 50 0.54666525 +13 306.3225 310.2 1000 50 0.78042346 +14 414.8925 418.77 1000 50 0.61935645 +15 430.4025 434.28 1000 50 0.5925473 +16 445.9125 449.79 1000 50 0.57290447 +17 476.9325 480.81 1000 50 0.57334906 +18 496.32 500.1975 1000 50 0.75015646 +19 523.4625 527.34 1000 50 0.50864077 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_01-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_01-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..4f55201d8d0c71fa9277c3fae621b39ba3100bb5 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_01-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,25 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 34.8975 38.775 1000 50 0.6350528 +2 89.1825 93.06 1000 50 0.7238582 +3 151.2225 155.1 1000 50 0.7220111 +4 217.14 221.01749999999998 1000 50 0.59247476 +5 221.0175 224.895 1000 50 0.58241534 +6 232.65 236.5275 1000 50 0.9417606 +7 244.2825 248.16 1000 50 0.5242218 +8 279.18 283.0575 1000 50 0.50423527 +9 294.69 298.5675 1000 50 0.5808482 +10 337.3425 341.21999999999997 1000 50 0.5212356 +11 352.8525 356.73 1000 50 0.7410249 +12 356.73 360.6075 1000 50 0.8129122 +13 372.24 376.1175 1000 50 0.55076885 +14 403.26 407.1375 1000 50 0.5803523 +15 457.545 461.4225 1000 50 0.5226226 +16 527.34 531.2175000000001 1000 50 0.69937265 +17 569.9925 573.87 1000 50 0.53878176 +18 682.44 686.3175000000001 1000 50 0.5675298 +19 725.0925 728.97 1000 50 0.66011316 +20 767.745 771.6225000000001 1000 50 0.8282536 +21 969.375 973.2525 1000 50 0.53780836 +22 981.0075 984.8850000000001 1000 50 0.714791 +23 1019.7825 1023.6600000000001 1000 50 0.65036213 +24 1031.415 1035.2925 1000 50 0.58890146 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_01-21-14_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_01-21-14_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..2bb07ae5ae632a75d1dee19dc5f3c6820f466df1 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_01-21-14_annot_2022-11-30_01.txt @@ -0,0 +1,6 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 34.8975 38.775 1000 50 0.5121363 +2 69.795 73.6725 1000 50 0.8324235 +3 135.7125 139.59 1000 50 0.5703977 +4 201.63 205.5075 1000 50 0.94431615 +5 224.895 228.7725 1000 50 0.661064 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_02-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_02-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0aa140098a6a64655dc01fbbb6b92f09184c0c21 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_02-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,60 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 38.775 42.652499999999996 1000 50 0.737386 +2 100.815 104.6925 1000 50 0.72394115 +3 108.57 112.44749999999999 1000 50 0.5832078 +4 116.325 120.2025 1000 50 0.5326732 +5 139.59 143.4675 1000 50 0.6070674 +6 143.4675 147.345 1000 50 0.868954 +7 174.4875 178.365 1000 50 0.8059232 +8 213.2625 217.14 1000 50 0.6078309 +9 224.895 228.7725 1000 50 0.6188046 +10 275.3025 279.18 1000 50 0.7676495 +11 286.935 290.8125 1000 50 0.63999677 +12 294.69 298.5675 1000 50 0.69478 +13 306.3225 310.2 1000 50 0.5553063 +14 314.0775 317.955 1000 50 0.5727619 +15 356.73 360.6075 1000 50 0.5218362 +16 395.505 399.3825 1000 50 0.5227227 +17 399.3825 403.26 1000 50 0.79591954 +18 411.015 414.8925 1000 50 0.69747454 +19 422.6475 426.525 1000 50 0.5296574 +20 438.1575 442.035 1000 50 0.5216314 +21 442.035 445.9125 1000 50 0.80506706 +22 515.7075 519.585 1000 50 0.72778624 +23 531.2175 535.095 1000 50 0.6537169 +24 535.095 538.9725000000001 1000 50 0.6939367 +25 566.115 569.9925000000001 1000 50 0.54583424 +26 612.645 616.5225 1000 50 0.5596068 +27 635.91 639.7875 1000 50 0.87055826 +28 647.5425 651.4200000000001 1000 50 0.5198072 +29 690.195 694.0725000000001 1000 50 0.6586496 +30 697.95 701.8275000000001 1000 50 0.59695214 +31 752.235 756.1125000000001 1000 50 0.5564991 +32 759.99 763.8675000000001 1000 50 0.8687321 +33 771.6225 775.5 1000 50 0.745041 +34 794.8875 798.7650000000001 1000 50 0.63954085 +35 829.785 833.6625 1000 50 0.58957016 +36 841.4175 845.2950000000001 1000 50 0.70007896 +37 845.295 849.1725 1000 50 0.5040522 +38 856.9275 860.8050000000001 1000 50 0.50218743 +39 899.58 903.4575000000001 1000 50 0.64664465 +40 926.7225 930.6 1000 50 0.61015755 +41 934.4775 938.355 1000 50 0.6043967 +42 965.4975 969.375 1000 50 0.592605 +43 1004.2725 1008.1500000000001 1000 50 0.5635989 +44 1019.7825 1023.6600000000001 1000 50 0.7166601 +45 1023.66 1027.5375 1000 50 0.603185 +46 1043.0475 1046.925 1000 50 0.6931752 +47 1077.945 1081.8225 1000 50 0.64394623 +48 1089.5775 1093.4550000000002 1000 50 0.54892826 +49 1159.3725 1163.25 1000 50 0.65110403 +50 1209.78 1213.6575 1000 50 0.52652115 +51 1213.6575 1217.535 1000 50 0.59059477 +52 1217.535 1221.4125000000001 1000 50 0.53762406 +53 1233.045 1236.9225000000001 1000 50 0.77236694 +54 1267.9425 1271.8200000000002 1000 50 0.65751004 +55 1279.575 1283.4525 1000 50 0.8536242 +56 1318.35 1322.2275 1000 50 0.7538498 +57 1349.37 1353.2475 1000 50 0.57182205 +58 1361.0025 1364.88 1000 50 0.6505617 +59 1368.7575 1372.635 1000 50 0.64853406 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_03-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_03-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..cfa3129e708820aa70a9bc73f76db178b7dd05e2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_03-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,83 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.75583506 +2 15.51 19.3875 1000 50 0.5251516 +3 27.1425 31.02 1000 50 0.55041605 +4 31.02 34.8975 1000 50 0.85942334 +5 42.6525 46.53 1000 50 0.9165694 +6 46.53 50.4075 1000 50 0.7389612 +7 50.4075 54.285 1000 50 0.8961259 +8 58.1625 62.04 1000 50 0.58524656 +9 69.795 73.6725 1000 50 0.7369542 +10 77.55 81.4275 1000 50 0.73338825 +11 155.1 158.9775 1000 50 0.63714325 +12 209.385 213.2625 1000 50 0.57494605 +13 259.7925 263.67 1000 50 0.77267367 +14 263.67 267.5475 1000 50 0.5608314 +15 275.3025 279.18 1000 50 0.56708634 +16 286.935 290.8125 1000 50 0.53724974 +17 310.2 314.0775 1000 50 0.6503988 +18 376.1175 379.995 1000 50 0.5667686 +19 379.995 383.8725 1000 50 0.6167431 +20 387.75 391.6275 1000 50 0.69172144 +21 395.505 399.3825 1000 50 0.6661956 +22 399.3825 403.26 1000 50 0.6705925 +23 449.79 453.6675 1000 50 0.76984024 +24 496.32 500.1975 1000 50 0.6549141 +25 535.095 538.9725000000001 1000 50 0.7988651 +26 546.7275 550.605 1000 50 0.98777056 +27 558.36 562.2375000000001 1000 50 0.5757415 +28 581.625 585.5025 1000 50 0.9520807 +29 608.7675 612.6450000000001 1000 50 0.7059972 +30 651.42 655.2975 1000 50 0.58196646 +31 659.175 663.0525 1000 50 0.50375336 +32 663.0525 666.9300000000001 1000 50 0.7096761 +33 666.93 670.8075 1000 50 0.6709009 +34 674.685 678.5625 1000 50 0.6068424 +35 705.705 709.5825000000001 1000 50 0.79320824 +36 709.5825 713.46 1000 50 0.7026795 +37 717.3375 721.215 1000 50 0.59928995 +38 721.215 725.0925000000001 1000 50 0.8359426 +39 736.725 740.6025000000001 1000 50 0.52542675 +40 740.6025 744.48 1000 50 0.56663805 +41 756.1125 759.99 1000 50 0.51278627 +42 775.5 779.3775 1000 50 0.5195257 +43 779.3775 783.2550000000001 1000 50 0.9383165 +44 806.52 810.3975 1000 50 0.74511904 +45 814.275 818.1525 1000 50 0.72356 +46 841.4175 845.2950000000001 1000 50 0.50421375 +47 853.05 856.9275 1000 50 0.57719857 +48 868.56 872.4375 1000 50 0.5337666 +49 903.4575 907.335 1000 50 0.6433379 +50 918.9675 922.845 1000 50 0.7503527 +51 934.4775 938.355 1000 50 0.5536823 +52 946.11 949.9875000000001 1000 50 0.79101586 +53 957.7425 961.62 1000 50 0.6153837 +54 965.4975 969.375 1000 50 0.63526756 +55 969.375 973.2525 1000 50 0.6462273 +56 973.2525 977.1300000000001 1000 50 0.6215711 +57 984.885 988.7625 1000 50 0.5670401 +58 1012.0275 1015.9050000000001 1000 50 0.6619715 +59 1015.905 1019.7825 1000 50 0.6685599 +60 1039.17 1043.0475000000001 1000 50 0.755065 +61 1046.925 1050.8025 1000 50 0.51247126 +62 1050.8025 1054.68 1000 50 0.7799243 +63 1074.0675 1077.9450000000002 1000 50 0.798874 +64 1136.1075 1139.9850000000001 1000 50 0.8805855 +65 1143.8625 1147.74 1000 50 0.50031465 +66 1182.6375 1186.515 1000 50 0.6415266 +67 1190.3925 1194.27 1000 50 0.77716064 +68 1198.1475 1202.025 1000 50 0.6745678 +69 1209.78 1213.6575 1000 50 0.5046 +70 1217.535 1221.4125000000001 1000 50 0.51890004 +71 1310.595 1314.4725 1000 50 0.76617485 +72 1326.105 1329.9825 1000 50 0.5635491 +73 1337.7375 1341.615 1000 50 0.6052231 +74 1361.0025 1364.88 1000 50 0.6599168 +75 1364.88 1368.7575000000002 1000 50 0.6918338 +76 1368.7575 1372.635 1000 50 0.58110696 +77 1384.2675 1388.145 1000 50 0.80470777 +78 1388.145 1392.0225 1000 50 0.772092 +79 1399.7775 1403.655 1000 50 0.5838019 +80 1415.2875 1419.165 1000 50 0.5703714 +81 1450.185 1454.0625 1000 50 0.75559676 +82 1492.8375 1496.7150000000001 1000 50 0.5252385 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_04-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_04-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..54f412b0abf6c6d881e762db4dd72ff2a8db4810 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_04-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,5 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.7659342 +2 50.4075 54.285 1000 50 0.5111502 +3 73.6725 77.55 1000 50 0.5522041 +4 89.1825 93.06 1000 50 0.6636806 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_04-05-20_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_04-05-20_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..35af63741e74b6f7314de9556ef8d11fcbaa0b7e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_04-05-20_annot_2022-11-30_01.txt @@ -0,0 +1,75 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 34.8975 38.775 1000 50 0.71619654 +2 46.53 50.4075 1000 50 0.55028105 +3 50.4075 54.285 1000 50 0.5685571 +4 62.04 65.9175 1000 50 0.5583923 +5 73.6725 77.55 1000 50 0.61653876 +6 100.815 104.6925 1000 50 0.5019687 +7 104.6925 108.57 1000 50 0.5498319 +8 112.4475 116.325 1000 50 0.523319 +9 147.345 151.2225 1000 50 0.5715398 +10 166.7325 170.60999999999999 1000 50 0.58472294 +11 221.0175 224.895 1000 50 0.6042095 +12 228.7725 232.65 1000 50 0.5261942 +13 279.18 283.0575 1000 50 0.6790548 +14 294.69 298.5675 1000 50 0.88658756 +15 302.445 306.3225 1000 50 0.5844379 +16 314.0775 317.955 1000 50 0.5711364 +17 325.71 329.5875 1000 50 0.672497 +18 337.3425 341.21999999999997 1000 50 0.6838482 +19 356.73 360.6075 1000 50 0.506336 +20 360.6075 364.485 1000 50 0.68574035 +21 403.26 407.1375 1000 50 0.51428175 +22 449.79 453.6675 1000 50 0.8651263 +23 465.3 469.1775 1000 50 0.5493179 +24 476.9325 480.81 1000 50 0.5709537 +25 507.9525 511.83 1000 50 0.54585946 +26 519.585 523.4625000000001 1000 50 0.5220416 +27 527.34 531.2175000000001 1000 50 0.5410059 +28 535.095 538.9725000000001 1000 50 0.72252417 +29 546.7275 550.605 1000 50 0.74286765 +30 550.605 554.4825000000001 1000 50 0.82613313 +31 554.4825 558.36 1000 50 0.5101495 +32 601.0125 604.8900000000001 1000 50 0.5304 +33 635.91 639.7875 1000 50 0.60296184 +34 639.7875 643.6650000000001 1000 50 0.5382861 +35 655.2975 659.1750000000001 1000 50 0.5297241 +36 666.93 670.8075 1000 50 0.621523 +37 686.3175 690.195 1000 50 0.75933427 +38 697.95 701.8275000000001 1000 50 0.7845717 +39 709.5825 713.46 1000 50 0.6805964 +40 736.725 740.6025000000001 1000 50 0.73043954 +41 744.48 748.3575000000001 1000 50 0.51064 +42 756.1125 759.99 1000 50 0.8632106 +43 763.8675 767.745 1000 50 0.5147054 +44 775.5 779.3775 1000 50 0.71989703 +45 779.3775 783.2550000000001 1000 50 0.50403214 +46 783.255 787.1325 1000 50 0.5747235 +47 806.52 810.3975 1000 50 0.7938242 +48 814.275 818.1525 1000 50 0.5156269 +49 818.1525 822.0300000000001 1000 50 0.6604109 +50 841.4175 845.2950000000001 1000 50 0.54860944 +51 845.295 849.1725 1000 50 0.5326691 +52 849.1725 853.0500000000001 1000 50 0.96912056 +53 860.805 864.6825 1000 50 0.5358853 +54 872.4375 876.315 1000 50 0.5902473 +55 922.845 926.7225000000001 1000 50 0.52094966 +56 930.6 934.4775000000001 1000 50 0.95947707 +57 942.2325 946.11 1000 50 0.5568109 +58 961.62 965.4975000000001 1000 50 0.6030713 +59 973.2525 977.1300000000001 1000 50 0.5722379 +60 992.64 996.5175 1000 50 0.60539764 +61 1046.925 1050.8025 1000 50 0.6535185 +62 1054.68 1058.5575000000001 1000 50 0.5753429 +63 1062.435 1066.3125 1000 50 0.6893821 +64 1074.0675 1077.9450000000002 1000 50 0.61925906 +65 1077.945 1081.8225 1000 50 0.6268375 +66 1081.8225 1085.7 1000 50 0.784415 +67 1085.7 1089.5775 1000 50 0.50539637 +68 1097.3325 1101.21 1000 50 0.76099944 +69 1139.985 1143.8625 1000 50 0.54786134 +70 1147.74 1151.6175 1000 50 0.538391 +71 1159.3725 1163.25 1000 50 0.5029607 +72 1167.1275 1171.005 1000 50 0.8406276 +73 1174.8825 1178.76 1000 50 0.5073458 +74 1178.76 1182.6375 1000 50 0.6157743 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_05-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_05-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d375180fa036e523d545a1d9f78bce47e89e76a2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_05-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,44 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.8519168 +2 19.3875 23.265 1000 50 0.7065482 +3 27.1425 31.02 1000 50 0.5228868 +4 31.02 34.8975 1000 50 0.66215074 +5 34.8975 38.775 1000 50 0.694213 +6 69.795 73.6725 1000 50 0.7757755 +7 77.55 81.4275 1000 50 0.7832104 +8 89.1825 93.06 1000 50 0.6566331 +9 93.06 96.9375 1000 50 0.58944553 +10 96.9375 100.815 1000 50 0.55878145 +11 104.6925 108.57 1000 50 0.7410829 +12 127.9575 131.835 1000 50 0.69165194 +13 139.59 143.4675 1000 50 0.79746383 +14 143.4675 147.345 1000 50 0.9918664 +15 166.7325 170.60999999999999 1000 50 0.989512 +16 170.61 174.4875 1000 50 0.6965571 +17 178.365 182.2425 1000 50 0.83577895 +18 189.9975 193.875 1000 50 0.51267475 +19 193.875 197.7525 1000 50 0.5540345 +20 205.5075 209.385 1000 50 0.6198408 +21 209.385 213.2625 1000 50 0.9075451 +22 228.7725 232.65 1000 50 0.7090942 +23 232.65 236.5275 1000 50 0.546338 +24 240.405 244.2825 1000 50 0.7075751 +25 244.2825 248.16 1000 50 0.92911464 +26 252.0375 255.915 1000 50 0.9545463 +27 255.915 259.7925 1000 50 0.87419856 +28 267.5475 271.425 1000 50 0.74750215 +29 271.425 275.3025 1000 50 0.7619019 +30 279.18 283.0575 1000 50 0.5040308 +31 286.935 290.8125 1000 50 0.6829701 +32 294.69 298.5675 1000 50 0.7550749 +33 310.2 314.0775 1000 50 0.53570014 +34 325.71 329.5875 1000 50 0.51625097 +35 337.3425 341.21999999999997 1000 50 0.558227 +36 352.8525 356.73 1000 50 0.542528 +37 356.73 360.6075 1000 50 0.732914 +38 360.6075 364.485 1000 50 0.6010917 +39 364.485 368.3625 1000 50 0.53385454 +40 391.6275 395.505 1000 50 0.7137319 +41 395.505 399.3825 1000 50 0.9997557 +42 399.3825 403.26 1000 50 0.95312613 +43 403.26 407.1375 1000 50 0.9119531 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_05-10-39_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_05-10-39_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..df7aa69dcc95409563ff1ee7fd6225a17051dfec --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_05-10-39_annot_2022-11-30_01.txt @@ -0,0 +1,73 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 19.3875 23.265 1000 50 0.7046817 +2 62.04 65.9175 1000 50 0.89541245 +3 77.55 81.4275 1000 50 0.5546575 +4 81.4275 85.30499999999999 1000 50 0.67314935 +5 89.1825 93.06 1000 50 0.6299111 +6 93.06 96.9375 1000 50 0.9997956 +7 108.57 112.44749999999999 1000 50 0.56945264 +8 120.2025 124.08 1000 50 0.5600914 +9 124.08 127.9575 1000 50 0.99446577 +10 139.59 143.4675 1000 50 0.6193613 +11 143.4675 147.345 1000 50 0.51982135 +12 147.345 151.2225 1000 50 0.9659394 +13 162.855 166.7325 1000 50 0.9561064 +14 170.61 174.4875 1000 50 0.7320249 +15 197.7525 201.63 1000 50 0.9880733 +16 224.895 228.7725 1000 50 0.639691 +17 236.5275 240.405 1000 50 0.68663204 +18 244.2825 248.16 1000 50 0.5863455 +19 255.915 259.7925 1000 50 0.98858786 +20 263.67 267.5475 1000 50 0.5719061 +21 286.935 290.8125 1000 50 0.50176364 +22 290.8125 294.69 1000 50 0.71817106 +23 314.0775 317.955 1000 50 0.6869853 +24 325.71 329.5875 1000 50 0.5520363 +25 333.465 337.3425 1000 50 0.6743646 +26 368.3625 372.24 1000 50 0.508152 +27 383.8725 387.75 1000 50 0.76186216 +28 391.6275 395.505 1000 50 0.6509082 +29 395.505 399.3825 1000 50 0.5752171 +30 403.26 407.1375 1000 50 0.72370225 +31 461.4225 465.3 1000 50 0.50161684 +32 465.3 469.1775 1000 50 0.566452 +33 476.9325 480.81 1000 50 0.6763864 +34 488.565 492.4425 1000 50 0.5415367 +35 492.4425 496.32 1000 50 0.628716 +36 507.9525 511.83 1000 50 0.9948579 +37 515.7075 519.585 1000 50 0.98039323 +38 531.2175 535.095 1000 50 0.59561306 +39 535.095 538.9725000000001 1000 50 0.74321645 +40 538.9725 542.85 1000 50 0.7436308 +41 542.85 546.7275000000001 1000 50 0.7321441 +42 550.605 554.4825000000001 1000 50 0.6311483 +43 562.2375 566.115 1000 50 0.68326 +44 573.87 577.7475000000001 1000 50 0.7051835 +45 585.5025 589.3800000000001 1000 50 0.6416048 +46 589.38 593.2575 1000 50 0.8965987 +47 597.135 601.0125 1000 50 0.5137316 +48 604.89 608.7675 1000 50 0.6676253 +49 620.4 624.2775 1000 50 0.65750295 +50 624.2775 628.1550000000001 1000 50 0.76009196 +51 628.155 632.0325 1000 50 0.6924573 +52 639.7875 643.6650000000001 1000 50 0.91235334 +53 647.5425 651.4200000000001 1000 50 0.74130136 +54 651.42 655.2975 1000 50 0.5356798 +55 663.0525 666.9300000000001 1000 50 0.6730036 +56 666.93 670.8075 1000 50 0.78788316 +57 678.5625 682.44 1000 50 0.9130233 +58 701.8275 705.705 1000 50 0.7925505 +59 705.705 709.5825000000001 1000 50 0.67838407 +60 744.48 748.3575000000001 1000 50 0.6167371 +61 759.99 763.8675000000001 1000 50 0.59807014 +62 771.6225 775.5 1000 50 0.52345234 +63 787.1325 791.0100000000001 1000 50 0.7457069 +64 794.8875 798.7650000000001 1000 50 0.5075276 +65 798.765 802.6425 1000 50 0.6309759 +66 806.52 810.3975 1000 50 0.6761872 +67 814.275 818.1525 1000 50 0.786669 +68 818.1525 822.0300000000001 1000 50 0.5443038 +69 825.9075 829.7850000000001 1000 50 0.9998741 +70 837.54 841.4175 1000 50 0.8319586 +71 841.4175 845.2950000000001 1000 50 0.5379799 +72 849.1725 853.0500000000001 1000 50 0.6535889 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_06-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_06-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0796e383d0fcff5aa0312ddf0c774c48f31137dc --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_06-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,51 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.673042 +2 11.6325 15.51 1000 50 0.5640569 +3 31.02 34.8975 1000 50 0.73144424 +4 38.775 42.652499999999996 1000 50 0.78436047 +5 46.53 50.4075 1000 50 0.6084782 +6 50.4075 54.285 1000 50 0.6032471 +7 73.6725 77.55 1000 50 0.83761334 +8 124.08 127.9575 1000 50 0.5225535 +9 135.7125 139.59 1000 50 0.5623581 +10 166.7325 170.60999999999999 1000 50 0.88514763 +11 189.9975 193.875 1000 50 0.954485 +12 193.875 197.7525 1000 50 0.64200777 +13 213.2625 217.14 1000 50 0.7040357 +14 224.895 228.7725 1000 50 0.6221606 +15 232.65 236.5275 1000 50 0.9554579 +16 248.16 252.0375 1000 50 0.82248676 +17 252.0375 255.915 1000 50 0.5256671 +18 255.915 259.7925 1000 50 0.5198921 +19 294.69 298.5675 1000 50 0.5919116 +20 333.465 337.3425 1000 50 0.95270765 +21 352.8525 356.73 1000 50 0.9053984 +22 364.485 368.3625 1000 50 0.5871858 +23 368.3625 372.24 1000 50 0.97043467 +24 376.1175 379.995 1000 50 0.55357766 +25 387.75 391.6275 1000 50 0.58612335 +26 395.505 399.3825 1000 50 0.76239306 +27 422.6475 426.525 1000 50 0.7041956 +28 457.545 461.4225 1000 50 0.9390656 +29 484.6875 488.565 1000 50 0.7880961 +30 496.32 500.1975 1000 50 0.6264373 +31 515.7075 519.585 1000 50 0.79415345 +32 531.2175 535.095 1000 50 0.897739 +33 535.095 538.9725000000001 1000 50 0.8496073 +34 538.9725 542.85 1000 50 0.5542875 +35 546.7275 550.605 1000 50 0.7129743 +36 550.605 554.4825000000001 1000 50 0.70328766 +37 566.115 569.9925000000001 1000 50 0.60368174 +38 569.9925 573.87 1000 50 0.8010515 +39 585.5025 589.3800000000001 1000 50 0.61595917 +40 589.38 593.2575 1000 50 0.55175203 +41 608.7675 612.6450000000001 1000 50 0.57838446 +42 628.155 632.0325 1000 50 0.5866036 +43 632.0325 635.9100000000001 1000 50 0.8661662 +44 647.5425 651.4200000000001 1000 50 0.9859633 +45 651.42 655.2975 1000 50 0.6772483 +46 682.44 686.3175000000001 1000 50 0.96895367 +47 686.3175 690.195 1000 50 0.6381941 +48 713.46 717.3375000000001 1000 50 0.9914784 +49 728.97 732.8475000000001 1000 50 0.7044446 +50 732.8475 736.725 1000 50 0.5225789 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_06-15-56_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_06-15-56_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..95c8b0f4d344f67a069a0553998c2524a30a1037 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_06-15-56_annot_2022-11-30_01.txt @@ -0,0 +1,44 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.58612686 +2 31.02 34.8975 1000 50 0.5594202 +3 42.6525 46.53 1000 50 0.7216376 +4 54.285 58.162499999999994 1000 50 0.63132656 +5 58.1625 62.04 1000 50 0.771324 +6 65.9175 69.795 1000 50 0.6541252 +7 77.55 81.4275 1000 50 0.50505555 +8 93.06 96.9375 1000 50 0.54540586 +9 112.4475 116.325 1000 50 0.60902154 +10 116.325 120.2025 1000 50 0.5877731 +11 124.08 127.9575 1000 50 0.8232214 +12 135.7125 139.59 1000 50 0.53539413 +13 143.4675 147.345 1000 50 0.6237978 +14 151.2225 155.1 1000 50 0.57282436 +15 178.365 182.2425 1000 50 0.53368443 +16 186.12 189.9975 1000 50 0.5090468 +17 244.2825 248.16 1000 50 0.60845286 +18 248.16 252.0375 1000 50 0.62044597 +19 255.915 259.7925 1000 50 0.60371614 +20 259.7925 263.67 1000 50 0.77051014 +21 283.0575 286.935 1000 50 0.563876 +22 294.69 298.5675 1000 50 0.66153526 +23 302.445 306.3225 1000 50 0.83299965 +24 306.3225 310.2 1000 50 0.8634216 +25 317.955 321.8325 1000 50 0.6277683 +26 333.465 337.3425 1000 50 0.7712833 +27 341.22 345.0975 1000 50 0.934765 +28 345.0975 348.975 1000 50 0.9748424 +29 356.73 360.6075 1000 50 0.7007139 +30 364.485 368.3625 1000 50 0.5234463 +31 372.24 376.1175 1000 50 0.73094 +32 376.1175 379.995 1000 50 0.63801926 +33 383.8725 387.75 1000 50 0.6397087 +34 399.3825 403.26 1000 50 0.5382819 +35 453.6675 457.545 1000 50 0.9783745 +36 457.545 461.4225 1000 50 0.8477626 +37 492.4425 496.32 1000 50 0.76562506 +38 504.075 507.9525 1000 50 0.62620807 +39 507.9525 511.83 1000 50 0.558356 +40 511.83 515.7075 1000 50 0.71113986 +41 523.4625 527.34 1000 50 0.6647501 +42 531.2175 535.095 1000 50 0.71575594 +43 542.85 546.7275000000001 1000 50 0.5494508 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_07-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_07-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..dc374ff1c75810ab3c28c022d31648140176e802 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_07-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,53 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.97478104 +2 23.265 27.142500000000002 1000 50 0.69519764 +3 65.9175 69.795 1000 50 0.75126606 +4 69.795 73.6725 1000 50 0.7888215 +5 85.305 89.1825 1000 50 0.76401764 +6 89.1825 93.06 1000 50 0.8611486 +7 131.835 135.7125 1000 50 0.5633381 +8 139.59 143.4675 1000 50 0.7176419 +9 151.2225 155.1 1000 50 0.5772633 +10 182.2425 186.12 1000 50 0.68998194 +11 209.385 213.2625 1000 50 0.53402156 +12 217.14 221.01749999999998 1000 50 0.99538076 +13 228.7725 232.65 1000 50 0.5332655 +14 232.65 236.5275 1000 50 0.5734822 +15 267.5475 271.425 1000 50 0.5158826 +16 275.3025 279.18 1000 50 0.7066876 +17 290.8125 294.69 1000 50 0.6977614 +18 306.3225 310.2 1000 50 0.7543506 +19 325.71 329.5875 1000 50 0.5397016 +20 333.465 337.3425 1000 50 0.7209785 +21 345.0975 348.975 1000 50 0.58261025 +22 368.3625 372.24 1000 50 0.5160105 +23 372.24 376.1175 1000 50 0.555386 +24 411.015 414.8925 1000 50 0.5188541 +25 422.6475 426.525 1000 50 0.5350851 +26 449.79 453.6675 1000 50 0.5998331 +27 473.055 476.9325 1000 50 0.6666772 +28 519.585 523.4625000000001 1000 50 0.62215805 +29 531.2175 535.095 1000 50 0.8186121 +30 624.2775 628.1550000000001 1000 50 0.91911155 +31 690.195 694.0725000000001 1000 50 0.7784843 +32 701.8275 705.705 1000 50 0.97588956 +33 713.46 717.3375000000001 1000 50 0.81037897 +34 717.3375 721.215 1000 50 0.869704 +35 728.97 732.8475000000001 1000 50 0.85353357 +36 732.8475 736.725 1000 50 0.6757899 +37 763.8675 767.745 1000 50 0.7408444 +38 771.6225 775.5 1000 50 0.65742135 +39 787.1325 791.0100000000001 1000 50 0.58597255 +40 810.3975 814.2750000000001 1000 50 0.6095798 +41 814.275 818.1525 1000 50 0.7672379 +42 822.03 825.9075 1000 50 0.52637744 +43 829.785 833.6625 1000 50 0.80410457 +44 833.6625 837.5400000000001 1000 50 0.7145357 +45 853.05 856.9275 1000 50 0.5269497 +46 903.4575 907.335 1000 50 0.77399963 +47 1008.15 1012.0275 1000 50 0.7507206 +48 1015.905 1019.7825 1000 50 0.7409528 +49 1019.7825 1023.6600000000001 1000 50 0.7038136 +50 1023.66 1027.5375 1000 50 0.5699463 +51 1027.5375 1031.415 1000 50 0.5796527 +52 1046.925 1050.8025 1000 50 0.71498597 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_07-21-14_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_07-21-14_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f0b7a83ad8fbbc9377fe5adce5e71d6d19c3a5ec --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_07-21-14_annot_2022-11-30_01.txt @@ -0,0 +1,9 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 69.795 73.6725 1000 50 0.54484755 +2 108.57 112.44749999999999 1000 50 0.70824677 +3 127.9575 131.835 1000 50 0.6414385 +4 147.345 151.2225 1000 50 0.56880397 +5 158.9775 162.855 1000 50 0.5534663 +6 166.7325 170.60999999999999 1000 50 0.63850385 +7 189.9975 193.875 1000 50 0.67156935 +8 224.895 228.7725 1000 50 0.62531275 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_08-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_08-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..94d6561320b50984f6944ccb52a98321def24e82 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_08-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,106 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.56053805 +2 23.265 27.142500000000002 1000 50 0.58740526 +3 31.02 34.8975 1000 50 0.54104084 +4 34.8975 38.775 1000 50 0.516603 +5 38.775 42.652499999999996 1000 50 0.58158606 +6 46.53 50.4075 1000 50 0.5639158 +7 62.04 65.9175 1000 50 0.8649411 +8 73.6725 77.55 1000 50 0.66554755 +9 108.57 112.44749999999999 1000 50 0.7971481 +10 127.9575 131.835 1000 50 0.6791988 +11 135.7125 139.59 1000 50 0.7593735 +12 143.4675 147.345 1000 50 0.58827114 +13 147.345 151.2225 1000 50 0.54898316 +14 162.855 166.7325 1000 50 0.9188459 +15 178.365 182.2425 1000 50 0.56882125 +16 182.2425 186.12 1000 50 0.6901076 +17 193.875 197.7525 1000 50 0.9988617 +18 205.5075 209.385 1000 50 0.52729934 +19 221.0175 224.895 1000 50 0.679947 +20 228.7725 232.65 1000 50 0.59910154 +21 232.65 236.5275 1000 50 0.8697684 +22 252.0375 255.915 1000 50 0.77500695 +23 263.67 267.5475 1000 50 0.62847275 +24 271.425 275.3025 1000 50 0.7177984 +25 294.69 298.5675 1000 50 0.65120244 +26 310.2 314.0775 1000 50 0.53054833 +27 317.955 321.8325 1000 50 0.6061729 +28 325.71 329.5875 1000 50 0.5628312 +29 333.465 337.3425 1000 50 0.9267132 +30 352.8525 356.73 1000 50 0.6517983 +31 360.6075 364.485 1000 50 0.74496824 +32 364.485 368.3625 1000 50 0.94240606 +33 376.1175 379.995 1000 50 0.56058955 +34 395.505 399.3825 1000 50 0.5303569 +35 411.015 414.8925 1000 50 0.7178931 +36 414.8925 418.77 1000 50 0.7152835 +37 430.4025 434.28 1000 50 0.52353823 +38 445.9125 449.79 1000 50 0.5698436 +39 449.79 453.6675 1000 50 0.7337706 +40 484.6875 488.565 1000 50 0.71021074 +41 492.4425 496.32 1000 50 0.5028822 +42 515.7075 519.585 1000 50 0.9311629 +43 519.585 523.4625000000001 1000 50 0.5747379 +44 535.095 538.9725000000001 1000 50 0.6229211 +45 538.9725 542.85 1000 50 0.5706137 +46 542.85 546.7275000000001 1000 50 0.6342013 +47 558.36 562.2375000000001 1000 50 0.7741916 +48 589.38 593.2575 1000 50 0.6174096 +49 601.0125 604.8900000000001 1000 50 0.5063236 +50 604.89 608.7675 1000 50 0.5430991 +51 612.645 616.5225 1000 50 0.5997181 +52 624.2775 628.1550000000001 1000 50 0.68026745 +53 628.155 632.0325 1000 50 0.7810889 +54 639.7875 643.6650000000001 1000 50 0.56092614 +55 663.0525 666.9300000000001 1000 50 0.5292198 +56 666.93 670.8075 1000 50 0.50548005 +57 686.3175 690.195 1000 50 0.63799655 +58 697.95 701.8275000000001 1000 50 0.5552247 +59 717.3375 721.215 1000 50 0.7080943 +60 732.8475 736.725 1000 50 0.51194674 +61 740.6025 744.48 1000 50 0.7619986 +62 744.48 748.3575000000001 1000 50 0.53040665 +63 756.1125 759.99 1000 50 0.5009942 +64 759.99 763.8675000000001 1000 50 0.53144383 +65 775.5 779.3775 1000 50 0.5041051 +66 787.1325 791.0100000000001 1000 50 0.7530866 +67 825.9075 829.7850000000001 1000 50 0.7714199 +68 845.295 849.1725 1000 50 0.627768 +69 864.6825 868.5600000000001 1000 50 0.7418954 +70 872.4375 876.315 1000 50 0.7681127 +71 887.9475 891.825 1000 50 0.73979056 +72 899.58 903.4575000000001 1000 50 0.84351534 +73 922.845 926.7225000000001 1000 50 0.74652827 +74 953.865 957.7425000000001 1000 50 0.6565579 +75 977.13 981.0075 1000 50 0.7846547 +76 981.0075 984.8850000000001 1000 50 0.6309241 +77 992.64 996.5175 1000 50 0.6479807 +78 996.5175 1000.3950000000001 1000 50 0.7729551 +79 1015.905 1019.7825 1000 50 0.8738694 +80 1023.66 1027.5375 1000 50 0.54264706 +81 1027.5375 1031.415 1000 50 0.89293015 +82 1035.2925 1039.17 1000 50 0.5159962 +83 1050.8025 1054.68 1000 50 0.955229 +84 1054.68 1058.5575000000001 1000 50 0.5753906 +85 1058.5575 1062.435 1000 50 0.79805785 +86 1070.19 1074.0675 1000 50 0.78457344 +87 1074.0675 1077.9450000000002 1000 50 0.67770106 +88 1085.7 1089.5775 1000 50 0.7300443 +89 1124.475 1128.3525 1000 50 0.8493363 +90 1174.8825 1178.76 1000 50 0.7458529 +91 1182.6375 1186.515 1000 50 0.5399416 +92 1186.515 1190.3925000000002 1000 50 0.58958524 +93 1198.1475 1202.025 1000 50 0.72203 +94 1202.025 1205.9025000000001 1000 50 0.7926835 +95 1213.6575 1217.535 1000 50 0.83054596 +96 1217.535 1221.4125000000001 1000 50 0.7129929 +97 1240.8 1244.6775 1000 50 0.5029259 +98 1252.4325 1256.31 1000 50 0.52268815 +99 1260.1875 1264.065 1000 50 0.6995025 +100 1302.84 1306.7175 1000 50 0.5331862 +101 1306.7175 1310.595 1000 50 0.57713485 +102 1310.595 1314.4725 1000 50 0.7262963 +103 1314.4725 1318.3500000000001 1000 50 0.8552431 +104 1341.615 1345.4925 1000 50 0.7180333 +105 1368.7575 1372.635 1000 50 0.5482407 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_09-01-55_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_09-01-55_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..98070add712ce6ad0fffec0bb04eb8ce04f01ea7 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_09-01-55_annot_2022-11-30_01.txt @@ -0,0 +1,203 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9998381 +2 3.8775 7.755 1000 50 0.96749204 +3 15.51 19.3875 1000 50 0.9822005 +4 19.3875 23.265 1000 50 0.8351736 +5 23.265 27.142500000000002 1000 50 0.99943775 +6 27.1425 31.02 1000 50 0.7374788 +7 31.02 34.8975 1000 50 0.65621823 +8 34.8975 38.775 1000 50 0.9958097 +9 42.6525 46.53 1000 50 0.94010174 +10 54.285 58.162499999999994 1000 50 0.99998343 +11 62.04 65.9175 1000 50 0.9750871 +12 65.9175 69.795 1000 50 0.6427649 +13 69.795 73.6725 1000 50 0.55733657 +14 73.6725 77.55 1000 50 0.9988532 +15 81.4275 85.30499999999999 1000 50 0.99991965 +16 93.06 96.9375 1000 50 0.61232483 +17 100.815 104.6925 1000 50 0.7037768 +18 104.6925 108.57 1000 50 0.88619596 +19 108.57 112.44749999999999 1000 50 0.52650064 +20 112.4475 116.325 1000 50 0.62025243 +21 116.325 120.2025 1000 50 0.88687974 +22 124.08 127.9575 1000 50 0.8483587 +23 127.9575 131.835 1000 50 0.76079005 +24 139.59 143.4675 1000 50 0.79832214 +25 143.4675 147.345 1000 50 0.8745781 +26 147.345 151.2225 1000 50 0.72994804 +27 151.2225 155.1 1000 50 0.598506 +28 158.9775 162.855 1000 50 0.7885757 +29 162.855 166.7325 1000 50 0.83808213 +30 166.7325 170.60999999999999 1000 50 0.8756296 +31 170.61 174.4875 1000 50 0.9832849 +32 174.4875 178.365 1000 50 0.9010951 +33 178.365 182.2425 1000 50 0.66482604 +34 182.2425 186.12 1000 50 0.73177963 +35 189.9975 193.875 1000 50 0.7525066 +36 197.7525 201.63 1000 50 0.5717453 +37 201.63 205.5075 1000 50 0.62689835 +38 209.385 213.2625 1000 50 0.83795756 +39 213.2625 217.14 1000 50 0.84805936 +40 224.895 228.7725 1000 50 0.5205246 +41 228.7725 232.65 1000 50 0.9990903 +42 232.65 236.5275 1000 50 0.57140344 +43 236.5275 240.405 1000 50 0.89356124 +44 259.7925 263.67 1000 50 0.5361497 +45 275.3025 279.18 1000 50 0.72799486 +46 290.8125 294.69 1000 50 0.718725 +47 298.5675 302.445 1000 50 0.84389555 +48 306.3225 310.2 1000 50 0.77916884 +49 314.0775 317.955 1000 50 0.64126116 +50 321.8325 325.71 1000 50 0.69184154 +51 329.5875 333.465 1000 50 0.6353782 +52 337.3425 341.21999999999997 1000 50 0.6552294 +53 360.6075 364.485 1000 50 0.65315044 +54 368.3625 372.24 1000 50 0.5111654 +55 372.24 376.1175 1000 50 0.71169376 +56 383.8725 387.75 1000 50 0.5427108 +57 399.3825 403.26 1000 50 0.9422642 +58 403.26 407.1375 1000 50 0.69360554 +59 418.77 422.6475 1000 50 0.98555654 +60 422.6475 426.525 1000 50 0.6076645 +61 430.4025 434.28 1000 50 0.8698922 +62 438.1575 442.035 1000 50 0.6230674 +63 453.6675 457.545 1000 50 0.9972542 +64 465.3 469.1775 1000 50 0.7968773 +65 469.1775 473.055 1000 50 0.68971616 +66 473.055 476.9325 1000 50 0.6353229 +67 476.9325 480.81 1000 50 0.90049416 +68 484.6875 488.565 1000 50 0.93321633 +69 488.565 492.4425 1000 50 0.5275894 +70 496.32 500.1975 1000 50 0.9784072 +71 500.1975 504.075 1000 50 0.6110639 +72 504.075 507.9525 1000 50 0.5445468 +73 515.7075 519.585 1000 50 0.9296861 +74 523.4625 527.34 1000 50 0.9017979 +75 527.34 531.2175000000001 1000 50 0.9895818 +76 535.095 538.9725000000001 1000 50 0.7188546 +77 542.85 546.7275000000001 1000 50 0.5944101 +78 546.7275 550.605 1000 50 0.946279 +79 558.36 562.2375000000001 1000 50 0.9712336 +80 562.2375 566.115 1000 50 0.58142674 +81 566.115 569.9925000000001 1000 50 0.58620447 +82 569.9925 573.87 1000 50 0.9647633 +83 573.87 577.7475000000001 1000 50 0.799469 +84 577.7475 581.625 1000 50 0.99928904 +85 589.38 593.2575 1000 50 0.99433607 +86 593.2575 597.1350000000001 1000 50 0.9003164 +87 597.135 601.0125 1000 50 0.96696454 +88 601.0125 604.8900000000001 1000 50 0.98789364 +89 604.89 608.7675 1000 50 0.998993 +90 608.7675 612.6450000000001 1000 50 0.9978108 +91 616.5225 620.4000000000001 1000 50 0.999992 +92 624.2775 628.1550000000001 1000 50 0.76369035 +93 628.155 632.0325 1000 50 0.88053596 +94 635.91 639.7875 1000 50 0.9998634 +95 643.665 647.5425 1000 50 0.5727361 +96 647.5425 651.4200000000001 1000 50 0.9999789 +97 651.42 655.2975 1000 50 0.8177981 +98 655.2975 659.1750000000001 1000 50 0.6041606 +99 659.175 663.0525 1000 50 0.99011505 +100 663.0525 666.9300000000001 1000 50 0.5177231 +101 666.93 670.8075 1000 50 0.6757807 +102 670.8075 674.6850000000001 1000 50 0.99969673 +103 674.685 678.5625 1000 50 0.560303 +104 678.5625 682.44 1000 50 0.9999999 +105 682.44 686.3175000000001 1000 50 0.50481755 +106 686.3175 690.195 1000 50 0.9999912 +107 690.195 694.0725000000001 1000 50 0.999961 +108 697.95 701.8275000000001 1000 50 0.99976987 +109 701.8275 705.705 1000 50 0.9435736 +110 705.705 709.5825000000001 1000 50 0.5715426 +111 709.5825 713.46 1000 50 0.71119976 +112 728.97 732.8475000000001 1000 50 0.7688079 +113 732.8475 736.725 1000 50 0.7486339 +114 740.6025 744.48 1000 50 0.6927821 +115 744.48 748.3575000000001 1000 50 0.5538699 +116 748.3575 752.235 1000 50 0.9983175 +117 752.235 756.1125000000001 1000 50 0.6265773 +118 756.1125 759.99 1000 50 0.9658849 +119 787.1325 791.0100000000001 1000 50 0.79664165 +120 791.01 794.8875 1000 50 0.9541436 +121 798.765 802.6425 1000 50 0.6984533 +122 802.6425 806.5200000000001 1000 50 0.9498855 +123 806.52 810.3975 1000 50 0.68580467 +124 818.1525 822.0300000000001 1000 50 0.5570018 +125 829.785 833.6625 1000 50 0.5418653 +126 841.4175 845.2950000000001 1000 50 0.64660597 +127 849.1725 853.0500000000001 1000 50 0.5067369 +128 856.9275 860.8050000000001 1000 50 0.68186843 +129 868.56 872.4375 1000 50 0.9575313 +130 880.1925 884.07 1000 50 0.69340026 +131 887.9475 891.825 1000 50 0.77357036 +132 903.4575 907.335 1000 50 0.7557151 +133 915.09 918.9675000000001 1000 50 0.57458866 +134 918.9675 922.845 1000 50 0.58001727 +135 922.845 926.7225000000001 1000 50 0.8339203 +136 926.7225 930.6 1000 50 0.97811 +137 938.355 942.2325000000001 1000 50 0.6216429 +138 946.11 949.9875000000001 1000 50 0.8223675 +139 949.9875 953.865 1000 50 0.61434937 +140 957.7425 961.62 1000 50 0.501579 +141 992.64 996.5175 1000 50 0.57995886 +142 996.5175 1000.3950000000001 1000 50 0.9946701 +143 1000.395 1004.2725 1000 50 0.66311693 +144 1008.15 1012.0275 1000 50 0.50836664 +145 1012.0275 1015.9050000000001 1000 50 0.6307052 +146 1019.7825 1023.6600000000001 1000 50 0.5833757 +147 1023.66 1027.5375 1000 50 0.7506223 +148 1035.2925 1039.17 1000 50 0.71337384 +149 1043.0475 1046.925 1000 50 0.5471265 +150 1050.8025 1054.68 1000 50 0.5523519 +151 1070.19 1074.0675 1000 50 0.58310467 +152 1074.0675 1077.9450000000002 1000 50 0.5700269 +153 1081.8225 1085.7 1000 50 0.64261997 +154 1085.7 1089.5775 1000 50 0.9926885 +155 1097.3325 1101.21 1000 50 0.9984378 +156 1101.21 1105.0875 1000 50 0.83334744 +157 1108.965 1112.8425 1000 50 0.9277544 +158 1112.8425 1116.72 1000 50 0.54859424 +159 1116.72 1120.5975 1000 50 0.6387548 +160 1124.475 1128.3525 1000 50 0.772264 +161 1132.23 1136.1075 1000 50 0.9320245 +162 1147.74 1151.6175 1000 50 0.992568 +163 1151.6175 1155.4950000000001 1000 50 0.85138917 +164 1163.25 1167.1275 1000 50 0.7994658 +165 1171.005 1174.8825000000002 1000 50 0.82495576 +166 1174.8825 1178.76 1000 50 0.9834095 +167 1178.76 1182.6375 1000 50 0.87481844 +168 1182.6375 1186.515 1000 50 0.7842003 +169 1186.515 1190.3925000000002 1000 50 0.9999964 +170 1190.3925 1194.27 1000 50 0.97572064 +171 1194.27 1198.1475 1000 50 0.9915006 +172 1198.1475 1202.025 1000 50 0.62842464 +173 1205.9025 1209.78 1000 50 0.9991805 +174 1209.78 1213.6575 1000 50 0.67844194 +175 1213.6575 1217.535 1000 50 0.85985273 +176 1221.4125 1225.29 1000 50 0.58336395 +177 1225.29 1229.1675 1000 50 0.99993527 +178 1233.045 1236.9225000000001 1000 50 0.9966653 +179 1236.9225 1240.8 1000 50 0.8822401 +180 1240.8 1244.6775 1000 50 0.7461058 +181 1244.6775 1248.555 1000 50 0.99521494 +182 1252.4325 1256.31 1000 50 0.9999956 +183 1256.31 1260.1875 1000 50 0.8061941 +184 1260.1875 1264.065 1000 50 0.999419 +185 1264.065 1267.9425 1000 50 0.9958799 +186 1271.82 1275.6975 1000 50 0.99991477 +187 1275.6975 1279.575 1000 50 0.8577868 +188 1283.4525 1287.3300000000002 1000 50 0.9992138 +189 1291.2075 1295.085 1000 50 0.99999535 +190 1295.085 1298.9625 1000 50 0.99936706 +191 1302.84 1306.7175 1000 50 0.9999999 +192 1310.595 1314.4725 1000 50 0.65425694 +193 1322.2275 1326.105 1000 50 0.82993394 +194 1329.9825 1333.8600000000001 1000 50 0.88590866 +195 1333.86 1337.7375 1000 50 0.7483406 +196 1337.7375 1341.615 1000 50 0.8087968 +197 1349.37 1353.2475 1000 50 0.65047234 +198 1368.7575 1372.635 1000 50 0.51581424 +199 1372.635 1376.5125 1000 50 0.79422045 +200 1376.5125 1380.39 1000 50 0.9859947 +201 1380.39 1384.2675000000002 1000 50 0.7010497 +202 1384.2675 1388.145 1000 50 0.89462537 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_10-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_10-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1fa21d1db7bd21f2b8e8a38fed1350c8b4362286 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_10-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,18 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 19.3875 23.265 1000 50 0.7293848 +2 50.4075 54.285 1000 50 0.63130707 +3 54.285 58.162499999999994 1000 50 0.83955824 +4 58.1625 62.04 1000 50 0.6214216 +5 69.795 73.6725 1000 50 0.7563366 +6 77.55 81.4275 1000 50 0.5878043 +7 81.4275 85.30499999999999 1000 50 0.6437649 +8 96.9375 100.815 1000 50 0.7512339 +9 100.815 104.6925 1000 50 0.5526238 +10 104.6925 108.57 1000 50 0.69071436 +11 124.08 127.9575 1000 50 0.8192102 +12 127.9575 131.835 1000 50 0.5290539 +13 139.59 143.4675 1000 50 0.63275766 +14 143.4675 147.345 1000 50 0.66162694 +15 147.345 151.2225 1000 50 0.6314424 +16 182.2425 186.12 1000 50 0.90739685 +17 189.9975 193.875 1000 50 0.5178615 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_10-07-08_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_10-07-08_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..34934eea4d09e2d78f4bd797711d576473a6137c --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_10-07-08_annot_2022-11-30_01.txt @@ -0,0 +1,120 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.62893677 +2 3.8775 7.755 1000 50 0.78389287 +3 7.755 11.6325 1000 50 0.7431863 +4 11.6325 15.51 1000 50 0.9201139 +5 15.51 19.3875 1000 50 0.7856322 +6 19.3875 23.265 1000 50 0.92167467 +7 27.1425 31.02 1000 50 0.8787421 +8 42.6525 46.53 1000 50 0.9601548 +9 50.4075 54.285 1000 50 0.5072663 +10 62.04 65.9175 1000 50 0.6183767 +11 77.55 81.4275 1000 50 0.899126 +12 85.305 89.1825 1000 50 0.98172057 +13 93.06 96.9375 1000 50 0.7756495 +14 112.4475 116.325 1000 50 0.6224003 +15 139.59 143.4675 1000 50 0.54993576 +16 143.4675 147.345 1000 50 0.7000118 +17 151.2225 155.1 1000 50 0.83845884 +18 162.855 166.7325 1000 50 0.9973551 +19 178.365 182.2425 1000 50 0.76310813 +20 182.2425 186.12 1000 50 0.84474283 +21 193.875 197.7525 1000 50 0.8187911 +22 213.2625 217.14 1000 50 0.9565506 +23 224.895 228.7725 1000 50 0.98422295 +24 228.7725 232.65 1000 50 0.9606934 +25 232.65 236.5275 1000 50 0.99757284 +26 236.5275 240.405 1000 50 0.97634023 +27 252.0375 255.915 1000 50 0.6143538 +28 255.915 259.7925 1000 50 0.8780467 +29 263.67 267.5475 1000 50 0.576122 +30 267.5475 271.425 1000 50 0.65261537 +31 279.18 283.0575 1000 50 0.9670843 +32 286.935 290.8125 1000 50 0.9001309 +33 290.8125 294.69 1000 50 0.6276709 +34 314.0775 317.955 1000 50 0.7326656 +35 329.5875 333.465 1000 50 0.6135318 +36 333.465 337.3425 1000 50 0.99816436 +37 341.22 345.0975 1000 50 0.92989635 +38 345.0975 348.975 1000 50 0.8732911 +39 348.975 352.8525 1000 50 0.99300474 +40 360.6075 364.485 1000 50 0.998906 +41 364.485 368.3625 1000 50 0.5501676 +42 368.3625 372.24 1000 50 0.9795163 +43 372.24 376.1175 1000 50 0.9993012 +44 376.1175 379.995 1000 50 0.6201716 +45 379.995 383.8725 1000 50 0.99993134 +46 383.8725 387.75 1000 50 0.9643172 +47 387.75 391.6275 1000 50 0.65402466 +48 399.3825 403.26 1000 50 0.96008277 +49 403.26 407.1375 1000 50 0.92798316 +50 407.1375 411.015 1000 50 0.9901406 +51 411.015 414.8925 1000 50 0.637079 +52 418.77 422.6475 1000 50 0.9999629 +53 422.6475 426.525 1000 50 0.62999 +54 438.1575 442.035 1000 50 0.99897397 +55 442.035 445.9125 1000 50 0.6032698 +56 445.9125 449.79 1000 50 0.99993396 +57 457.545 461.4225 1000 50 0.9995042 +58 461.4225 465.3 1000 50 0.6032504 +59 465.3 469.1775 1000 50 0.9955077 +60 476.9325 480.81 1000 50 0.99983406 +61 480.81 484.6875 1000 50 0.5124706 +62 484.6875 488.565 1000 50 0.92674124 +63 488.565 492.4425 1000 50 0.90054005 +64 492.4425 496.32 1000 50 0.7244005 +65 496.32 500.1975 1000 50 0.99997306 +66 500.1975 504.075 1000 50 0.9819004 +67 515.7075 519.585 1000 50 0.6926138 +68 519.585 523.4625000000001 1000 50 0.9216401 +69 527.34 531.2175000000001 1000 50 0.85409755 +70 542.85 546.7275000000001 1000 50 0.750333 +71 554.4825 558.36 1000 50 0.80994153 +72 558.36 562.2375000000001 1000 50 0.62031126 +73 573.87 577.7475000000001 1000 50 0.65343785 +74 577.7475 581.625 1000 50 0.9201574 +75 593.2575 597.1350000000001 1000 50 0.6929482 +76 597.135 601.0125 1000 50 0.61539066 +77 616.5225 620.4000000000001 1000 50 0.96030897 +78 628.155 632.0325 1000 50 0.9627374 +79 632.0325 635.9100000000001 1000 50 0.9863463 +80 639.7875 643.6650000000001 1000 50 0.5698309 +81 643.665 647.5425 1000 50 0.6003991 +82 663.0525 666.9300000000001 1000 50 0.6985869 +83 690.195 694.0725000000001 1000 50 0.5539422 +84 694.0725 697.95 1000 50 0.5496033 +85 713.46 717.3375000000001 1000 50 0.68470687 +86 721.215 725.0925000000001 1000 50 0.5109878 +87 732.8475 736.725 1000 50 0.51268536 +88 752.235 756.1125000000001 1000 50 0.6354377 +89 771.6225 775.5 1000 50 0.66029084 +90 787.1325 791.0100000000001 1000 50 0.74306124 +91 806.52 810.3975 1000 50 0.58167136 +92 814.275 818.1525 1000 50 0.99276924 +93 818.1525 822.0300000000001 1000 50 0.96640456 +94 825.9075 829.7850000000001 1000 50 0.87985796 +95 841.4175 845.2950000000001 1000 50 0.64367586 +96 845.295 849.1725 1000 50 0.71197116 +97 853.05 856.9275 1000 50 0.6273716 +98 864.6825 868.5600000000001 1000 50 0.58372533 +99 868.56 872.4375 1000 50 0.71828514 +100 876.315 880.1925000000001 1000 50 0.61666006 +101 884.07 887.9475000000001 1000 50 0.68008095 +102 891.825 895.7025000000001 1000 50 0.8142227 +103 895.7025 899.58 1000 50 0.5919834 +104 911.2125 915.09 1000 50 0.8244587 +105 922.845 926.7225000000001 1000 50 0.7595576 +106 934.4775 938.355 1000 50 0.71521044 +107 946.11 949.9875000000001 1000 50 0.8297235 +108 957.7425 961.62 1000 50 0.6618311 +109 965.4975 969.375 1000 50 0.6923404 +110 973.2525 977.1300000000001 1000 50 0.7059882 +111 977.13 981.0075 1000 50 0.724265 +112 988.7625 992.6400000000001 1000 50 0.86679995 +113 1004.2725 1008.1500000000001 1000 50 0.9386916 +114 1012.0275 1015.9050000000001 1000 50 0.8402519 +115 1023.66 1027.5375 1000 50 0.962237 +116 1031.415 1035.2925 1000 50 0.63861686 +117 1035.2925 1039.17 1000 50 0.8299918 +118 1054.68 1058.5575000000001 1000 50 0.6306326 +119 1066.3125 1070.19 1000 50 0.6533682 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_11-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_11-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..9339ec8d1499dfa994c84bd539e01fbe0bb4476e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_11-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,75 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.6871145 +2 7.755 11.6325 1000 50 0.63006544 +3 15.51 19.3875 1000 50 0.8182598 +4 19.3875 23.265 1000 50 0.66149974 +5 27.1425 31.02 1000 50 0.78418565 +6 31.02 34.8975 1000 50 0.6670275 +7 34.8975 38.775 1000 50 0.5024486 +8 38.775 42.652499999999996 1000 50 0.69769937 +9 50.4075 54.285 1000 50 0.5300082 +10 62.04 65.9175 1000 50 0.6800105 +11 73.6725 77.55 1000 50 0.75640714 +12 77.55 81.4275 1000 50 0.7067845 +13 85.305 89.1825 1000 50 0.7014739 +14 112.4475 116.325 1000 50 0.5158835 +15 124.08 127.9575 1000 50 0.6067071 +16 127.9575 131.835 1000 50 0.8580808 +17 139.59 143.4675 1000 50 0.75973356 +18 151.2225 155.1 1000 50 0.8801427 +19 158.9775 162.855 1000 50 0.62870574 +20 162.855 166.7325 1000 50 0.9638039 +21 170.61 174.4875 1000 50 0.67717534 +22 178.365 182.2425 1000 50 0.77524334 +23 186.12 189.9975 1000 50 0.51392907 +24 189.9975 193.875 1000 50 0.99905914 +25 197.7525 201.63 1000 50 0.9866257 +26 205.5075 209.385 1000 50 0.9965918 +27 209.385 213.2625 1000 50 0.90844476 +28 213.2625 217.14 1000 50 0.6532836 +29 217.14 221.01749999999998 1000 50 0.6709787 +30 221.0175 224.895 1000 50 0.60270953 +31 224.895 228.7725 1000 50 0.5250753 +32 228.7725 232.65 1000 50 0.94403625 +33 236.5275 240.405 1000 50 0.9980415 +34 240.405 244.2825 1000 50 0.8361224 +35 244.2825 248.16 1000 50 0.746258 +36 252.0375 255.915 1000 50 0.99915695 +37 255.915 259.7925 1000 50 0.86449987 +38 259.7925 263.67 1000 50 0.99996173 +39 263.67 267.5475 1000 50 0.9980539 +40 279.18 283.0575 1000 50 0.874155 +41 283.0575 286.935 1000 50 0.8591273 +42 286.935 290.8125 1000 50 0.83821326 +43 290.8125 294.69 1000 50 0.99981505 +44 294.69 298.5675 1000 50 0.7936445 +45 306.3225 310.2 1000 50 0.99412495 +46 317.955 321.8325 1000 50 0.9990626 +47 333.465 337.3425 1000 50 0.9733647 +48 341.22 345.0975 1000 50 0.5464792 +49 345.0975 348.975 1000 50 0.74133414 +50 352.8525 356.73 1000 50 0.95087785 +51 356.73 360.6075 1000 50 0.9647816 +52 360.6075 364.485 1000 50 0.6781554 +53 368.3625 372.24 1000 50 0.9134119 +54 372.24 376.1175 1000 50 0.96040714 +55 376.1175 379.995 1000 50 0.54684585 +56 379.995 383.8725 1000 50 0.9735598 +57 383.8725 387.75 1000 50 0.97122395 +58 387.75 391.6275 1000 50 0.952047 +59 395.505 399.3825 1000 50 0.9009968 +60 399.3825 403.26 1000 50 0.7238767 +61 403.26 407.1375 1000 50 0.580552 +62 426.525 430.4025 1000 50 0.99922967 +63 430.4025 434.28 1000 50 0.5136557 +64 434.28 438.15749999999997 1000 50 0.86458755 +65 438.1575 442.035 1000 50 0.6044237 +66 442.035 445.9125 1000 50 0.765025 +67 445.9125 449.79 1000 50 0.9396636 +68 449.79 453.6675 1000 50 0.9890154 +69 465.3 469.1775 1000 50 0.99951935 +70 484.6875 488.565 1000 50 0.8205412 +71 488.565 492.4425 1000 50 0.8371736 +72 496.32 500.1975 1000 50 0.6962484 +73 507.9525 511.83 1000 50 0.82936156 +74 515.7075 519.585 1000 50 0.7011827 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_11-12-26_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_11-12-26_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..88fd92a11ef135f75c8d19ef785ed6759b398977 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_11-12-26_annot_2022-11-30_01.txt @@ -0,0 +1,111 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.8161305 +2 7.755 11.6325 1000 50 0.8027206 +3 11.6325 15.51 1000 50 0.9503433 +4 15.51 19.3875 1000 50 0.57154685 +5 19.3875 23.265 1000 50 0.7259711 +6 31.02 34.8975 1000 50 0.99649566 +7 38.775 42.652499999999996 1000 50 0.6671344 +8 42.6525 46.53 1000 50 0.99963176 +9 50.4075 54.285 1000 50 0.8315714 +10 54.285 58.162499999999994 1000 50 0.98430866 +11 65.9175 69.795 1000 50 0.65589386 +12 69.795 73.6725 1000 50 0.724981 +13 73.6725 77.55 1000 50 0.9942947 +14 81.4275 85.30499999999999 1000 50 0.71221924 +15 85.305 89.1825 1000 50 0.8961942 +16 96.9375 100.815 1000 50 0.9625549 +17 104.6925 108.57 1000 50 0.54922587 +18 108.57 112.44749999999999 1000 50 0.89207155 +19 116.325 120.2025 1000 50 0.9322539 +20 120.2025 124.08 1000 50 0.99898547 +21 127.9575 131.835 1000 50 0.5393411 +22 135.7125 139.59 1000 50 0.6903024 +23 139.59 143.4675 1000 50 0.9988104 +24 147.345 151.2225 1000 50 0.89151984 +25 151.2225 155.1 1000 50 0.99121124 +26 158.9775 162.855 1000 50 0.9070371 +27 162.855 166.7325 1000 50 0.84977376 +28 170.61 174.4875 1000 50 0.61137706 +29 174.4875 178.365 1000 50 0.89871186 +30 178.365 182.2425 1000 50 0.7093926 +31 182.2425 186.12 1000 50 0.67317146 +32 197.7525 201.63 1000 50 0.9779629 +33 201.63 205.5075 1000 50 0.9400745 +34 205.5075 209.385 1000 50 0.9999826 +35 209.385 213.2625 1000 50 0.5348996 +36 224.895 228.7725 1000 50 0.7463092 +37 232.65 236.5275 1000 50 0.99999917 +38 240.405 244.2825 1000 50 0.98729986 +39 244.2825 248.16 1000 50 0.9871178 +40 252.0375 255.915 1000 50 0.52452785 +41 259.7925 263.67 1000 50 0.99996424 +42 263.67 267.5475 1000 50 0.99999976 +43 275.3025 279.18 1000 50 0.97076404 +44 279.18 283.0575 1000 50 0.99623317 +45 283.0575 286.935 1000 50 0.6084706 +46 286.935 290.8125 1000 50 0.56486404 +47 298.5675 302.445 1000 50 0.9999889 +48 302.445 306.3225 1000 50 0.8939977 +49 306.3225 310.2 1000 50 0.97407556 +50 314.0775 317.955 1000 50 0.6599946 +51 317.955 321.8325 1000 50 0.99998295 +52 321.8325 325.71 1000 50 0.74627614 +53 325.71 329.5875 1000 50 0.9585933 +54 329.5875 333.465 1000 50 0.6009966 +55 333.465 337.3425 1000 50 0.5470342 +56 337.3425 341.21999999999997 1000 50 0.9918726 +57 341.22 345.0975 1000 50 0.66029376 +58 345.0975 348.975 1000 50 0.9960582 +59 356.73 360.6075 1000 50 0.99604625 +60 364.485 368.3625 1000 50 0.9999951 +61 368.3625 372.24 1000 50 0.9999995 +62 372.24 376.1175 1000 50 0.6878763 +63 376.1175 379.995 1000 50 0.9999708 +64 379.995 383.8725 1000 50 0.63820857 +65 383.8725 387.75 1000 50 0.9942352 +66 395.505 399.3825 1000 50 0.9989562 +67 399.3825 403.26 1000 50 0.6811554 +68 403.26 407.1375 1000 50 0.99732155 +69 407.1375 411.015 1000 50 0.7355523 +70 411.015 414.8925 1000 50 0.8798958 +71 414.8925 418.77 1000 50 0.8032151 +72 422.6475 426.525 1000 50 0.60324967 +73 426.525 430.4025 1000 50 0.52821493 +74 430.4025 434.28 1000 50 0.59372807 +75 434.28 438.15749999999997 1000 50 0.71156126 +76 438.1575 442.035 1000 50 0.9693002 +77 449.79 453.6675 1000 50 0.73823065 +78 453.6675 457.545 1000 50 0.57995576 +79 457.545 461.4225 1000 50 0.946766 +80 465.3 469.1775 1000 50 0.944885 +81 488.565 492.4425 1000 50 0.8171585 +82 492.4425 496.32 1000 50 0.8224635 +83 500.1975 504.075 1000 50 0.63899195 +84 504.075 507.9525 1000 50 0.7619205 +85 527.34 531.2175000000001 1000 50 0.76446205 +86 535.095 538.9725000000001 1000 50 0.6510532 +87 550.605 554.4825000000001 1000 50 0.7175727 +88 562.2375 566.115 1000 50 0.93596995 +89 569.9925 573.87 1000 50 0.5149503 +90 581.625 585.5025 1000 50 0.5169818 +91 601.0125 604.8900000000001 1000 50 0.518822 +92 608.7675 612.6450000000001 1000 50 0.99522805 +93 620.4 624.2775 1000 50 0.86519223 +94 632.0325 635.9100000000001 1000 50 0.9039116 +95 639.7875 643.6650000000001 1000 50 0.7009006 +96 643.665 647.5425 1000 50 0.9481939 +97 651.42 655.2975 1000 50 0.60032976 +98 674.685 678.5625 1000 50 0.98942155 +99 682.44 686.3175000000001 1000 50 0.78113556 +100 686.3175 690.195 1000 50 0.98541194 +101 694.0725 697.95 1000 50 0.9640418 +102 697.95 701.8275000000001 1000 50 0.99606895 +103 705.705 709.5825000000001 1000 50 0.9617866 +104 709.5825 713.46 1000 50 0.6752584 +105 717.3375 721.215 1000 50 0.99233174 +106 721.215 725.0925000000001 1000 50 0.9662117 +107 728.97 732.8475000000001 1000 50 0.9847787 +108 740.6025 744.48 1000 50 0.5028173 +109 744.48 748.3575000000001 1000 50 0.99084795 +110 752.235 756.1125000000001 1000 50 0.7273125 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_12-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_12-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..8f9d91f2f89e21f54bb66dfbd12500b2f6f41a5d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_12-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,139 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.98580533 +2 11.6325 15.51 1000 50 0.86647815 +3 15.51 19.3875 1000 50 0.55307376 +4 19.3875 23.265 1000 50 0.6186571 +5 23.265 27.142500000000002 1000 50 0.99723417 +6 31.02 34.8975 1000 50 0.99782515 +7 34.8975 38.775 1000 50 0.87925553 +8 38.775 42.652499999999996 1000 50 0.5332087 +9 42.6525 46.53 1000 50 0.6387802 +10 50.4075 54.285 1000 50 0.9994954 +11 54.285 58.162499999999994 1000 50 0.7688401 +12 62.04 65.9175 1000 50 0.9936604 +13 65.9175 69.795 1000 50 0.84582406 +14 69.795 73.6725 1000 50 0.9987287 +15 73.6725 77.55 1000 50 0.7913493 +16 81.4275 85.30499999999999 1000 50 0.9847148 +17 85.305 89.1825 1000 50 0.6054937 +18 89.1825 93.06 1000 50 0.99954575 +19 93.06 96.9375 1000 50 0.9742619 +20 96.9375 100.815 1000 50 0.74197996 +21 100.815 104.6925 1000 50 0.9999993 +22 104.6925 108.57 1000 50 0.9993259 +23 108.57 112.44749999999999 1000 50 0.85054183 +24 112.4475 116.325 1000 50 0.9993569 +25 116.325 120.2025 1000 50 0.8805128 +26 120.2025 124.08 1000 50 0.99279237 +27 124.08 127.9575 1000 50 0.5226827 +28 131.835 135.7125 1000 50 0.8935401 +29 135.7125 139.59 1000 50 0.9806326 +30 139.59 143.4675 1000 50 0.78193945 +31 143.4675 147.345 1000 50 0.96026057 +32 147.345 151.2225 1000 50 0.5471302 +33 158.9775 162.855 1000 50 0.6194124 +34 170.61 174.4875 1000 50 0.72470343 +35 178.365 182.2425 1000 50 0.91006964 +36 182.2425 186.12 1000 50 0.7264961 +37 189.9975 193.875 1000 50 0.50019276 +38 197.7525 201.63 1000 50 0.77141976 +39 201.63 205.5075 1000 50 0.84359914 +40 205.5075 209.385 1000 50 0.75517815 +41 209.385 213.2625 1000 50 0.7434219 +42 217.14 221.01749999999998 1000 50 0.5502148 +43 221.0175 224.895 1000 50 0.5578688 +44 236.5275 240.405 1000 50 0.5496936 +45 244.2825 248.16 1000 50 0.6974546 +46 248.16 252.0375 1000 50 0.83413976 +47 252.0375 255.915 1000 50 0.5269303 +48 255.915 259.7925 1000 50 0.61470026 +49 259.7925 263.67 1000 50 0.97314125 +50 267.5475 271.425 1000 50 0.5493349 +51 271.425 275.3025 1000 50 0.67271054 +52 275.3025 279.18 1000 50 0.56993765 +53 279.18 283.0575 1000 50 0.8041492 +54 283.0575 286.935 1000 50 0.71110535 +55 298.5675 302.445 1000 50 0.82845926 +56 314.0775 317.955 1000 50 0.5639155 +57 333.465 337.3425 1000 50 0.8234078 +58 337.3425 341.21999999999997 1000 50 0.9652497 +59 348.975 352.8525 1000 50 0.5739004 +60 352.8525 356.73 1000 50 0.56677353 +61 360.6075 364.485 1000 50 0.54143924 +62 368.3625 372.24 1000 50 0.5404783 +63 399.3825 403.26 1000 50 0.8797928 +64 403.26 407.1375 1000 50 0.684568 +65 434.28 438.15749999999997 1000 50 0.5411522 +66 438.1575 442.035 1000 50 0.99627316 +67 445.9125 449.79 1000 50 0.5828467 +68 449.79 453.6675 1000 50 0.95289767 +69 453.6675 457.545 1000 50 0.5866627 +70 457.545 461.4225 1000 50 0.5321755 +71 461.4225 465.3 1000 50 0.6598778 +72 469.1775 473.055 1000 50 0.5030803 +73 473.055 476.9325 1000 50 0.81239265 +74 476.9325 480.81 1000 50 0.76766944 +75 484.6875 488.565 1000 50 0.82466775 +76 488.565 492.4425 1000 50 0.99990964 +77 492.4425 496.32 1000 50 0.83132136 +78 496.32 500.1975 1000 50 0.8220688 +79 500.1975 504.075 1000 50 0.9941186 +80 504.075 507.9525 1000 50 0.7371714 +81 507.9525 511.83 1000 50 0.9325666 +82 519.585 523.4625000000001 1000 50 0.97689134 +83 527.34 531.2175000000001 1000 50 0.9033735 +84 535.095 538.9725000000001 1000 50 0.7186366 +85 542.85 546.7275000000001 1000 50 0.98976034 +86 550.605 554.4825000000001 1000 50 0.9921997 +87 554.4825 558.36 1000 50 0.93657625 +88 558.36 562.2375000000001 1000 50 0.9040055 +89 562.2375 566.115 1000 50 0.5144635 +90 566.115 569.9925000000001 1000 50 0.9841501 +91 569.9925 573.87 1000 50 0.944136 +92 573.87 577.7475000000001 1000 50 0.9802516 +93 581.625 585.5025 1000 50 0.83912855 +94 585.5025 589.3800000000001 1000 50 0.9126403 +95 593.2575 597.1350000000001 1000 50 0.79069275 +96 597.135 601.0125 1000 50 0.99045545 +97 601.0125 604.8900000000001 1000 50 0.9674771 +98 612.645 616.5225 1000 50 0.96291775 +99 616.5225 620.4000000000001 1000 50 0.97976446 +100 620.4 624.2775 1000 50 0.9904236 +101 624.2775 628.1550000000001 1000 50 0.6848382 +102 628.155 632.0325 1000 50 0.9987226 +103 632.0325 635.9100000000001 1000 50 0.8236238 +104 635.91 639.7875 1000 50 0.99564713 +105 643.665 647.5425 1000 50 0.99915254 +106 647.5425 651.4200000000001 1000 50 0.99819934 +107 663.0525 666.9300000000001 1000 50 0.9445928 +108 670.8075 674.6850000000001 1000 50 0.6566761 +109 674.685 678.5625 1000 50 0.6056119 +110 678.5625 682.44 1000 50 0.64107585 +111 682.44 686.3175000000001 1000 50 0.99919194 +112 686.3175 690.195 1000 50 0.8646388 +113 690.195 694.0725000000001 1000 50 0.88854796 +114 709.5825 713.46 1000 50 0.94878024 +115 713.46 717.3375000000001 1000 50 0.71520966 +116 717.3375 721.215 1000 50 0.5261529 +117 721.215 725.0925000000001 1000 50 0.6237336 +118 740.6025 744.48 1000 50 0.61483103 +119 744.48 748.3575000000001 1000 50 0.9969342 +120 748.3575 752.235 1000 50 0.9683423 +121 752.235 756.1125000000001 1000 50 0.98715115 +122 756.1125 759.99 1000 50 0.88138777 +123 759.99 763.8675000000001 1000 50 0.833417 +124 763.8675 767.745 1000 50 0.98590994 +125 767.745 771.6225000000001 1000 50 0.88458586 +126 771.6225 775.5 1000 50 0.99891305 +127 775.5 779.3775 1000 50 0.9974745 +128 779.3775 783.2550000000001 1000 50 0.89265174 +129 783.255 787.1325 1000 50 0.7208478 +130 787.1325 791.0100000000001 1000 50 0.95645624 +131 791.01 794.8875 1000 50 0.7024943 +132 794.8875 798.7650000000001 1000 50 0.9676532 +133 798.765 802.6425 1000 50 0.99760747 +134 802.6425 806.5200000000001 1000 50 0.63801426 +135 806.52 810.3975 1000 50 0.9999913 +136 810.3975 814.2750000000001 1000 50 0.9751549 +137 814.275 818.1525 1000 50 0.7550663 +138 833.6625 837.5400000000001 1000 50 0.68179303 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_12-17-46_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_12-17-46_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ed26017f191face27eb268566fca5b3e14966913 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_12-17-46_annot_2022-11-30_01.txt @@ -0,0 +1,68 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.9992441 +2 15.51 19.3875 1000 50 0.86055225 +3 19.3875 23.265 1000 50 0.8665206 +4 27.1425 31.02 1000 50 0.99862754 +5 42.6525 46.53 1000 50 0.99193174 +6 46.53 50.4075 1000 50 0.61953855 +7 50.4075 54.285 1000 50 0.6856654 +8 54.285 58.162499999999994 1000 50 0.71111345 +9 58.1625 62.04 1000 50 0.9511082 +10 65.9175 69.795 1000 50 0.5830798 +11 69.795 73.6725 1000 50 0.9999851 +12 77.55 81.4275 1000 50 0.9999956 +13 81.4275 85.30499999999999 1000 50 0.98844236 +14 85.305 89.1825 1000 50 0.99996805 +15 89.1825 93.06 1000 50 0.97928417 +16 93.06 96.9375 1000 50 0.5676432 +17 96.9375 100.815 1000 50 0.99999905 +18 100.815 104.6925 1000 50 0.9939885 +19 104.6925 108.57 1000 50 0.9999732 +20 108.57 112.44749999999999 1000 50 0.99908566 +21 112.4475 116.325 1000 50 0.7389698 +22 116.325 120.2025 1000 50 0.99999 +23 120.2025 124.08 1000 50 0.51784074 +24 124.08 127.9575 1000 50 0.98465824 +25 127.9575 131.835 1000 50 0.6908003 +26 131.835 135.7125 1000 50 0.7096117 +27 143.4675 147.345 1000 50 0.99878436 +28 151.2225 155.1 1000 50 0.99878186 +29 155.1 158.9775 1000 50 0.9779448 +30 158.9775 162.855 1000 50 0.9981964 +31 162.855 166.7325 1000 50 0.5823008 +32 166.7325 170.60999999999999 1000 50 0.75306475 +33 182.2425 186.12 1000 50 0.9833816 +34 205.5075 209.385 1000 50 0.968236 +35 209.385 213.2625 1000 50 0.6954147 +36 217.14 221.01749999999998 1000 50 0.7617076 +37 221.0175 224.895 1000 50 0.77789897 +38 224.895 228.7725 1000 50 0.8348435 +39 228.7725 232.65 1000 50 0.5391558 +40 232.65 236.5275 1000 50 0.88717735 +41 236.5275 240.405 1000 50 0.9790957 +42 244.2825 248.16 1000 50 0.844546 +43 252.0375 255.915 1000 50 0.7342313 +44 259.7925 263.67 1000 50 0.6316117 +45 263.67 267.5475 1000 50 0.50165963 +46 267.5475 271.425 1000 50 0.9437609 +47 271.425 275.3025 1000 50 0.9363749 +48 275.3025 279.18 1000 50 0.9966002 +49 286.935 290.8125 1000 50 0.6430606 +50 298.5675 302.445 1000 50 0.7232029 +51 302.445 306.3225 1000 50 0.8958629 +52 310.2 314.0775 1000 50 0.603406 +53 317.955 321.8325 1000 50 0.66758496 +54 321.8325 325.71 1000 50 0.5204347 +55 329.5875 333.465 1000 50 0.5140578 +56 333.465 337.3425 1000 50 0.83225757 +57 337.3425 341.21999999999997 1000 50 0.8089835 +58 352.8525 356.73 1000 50 0.5822703 +59 356.73 360.6075 1000 50 0.81540227 +60 364.485 368.3625 1000 50 0.68977624 +61 372.24 376.1175 1000 50 0.6586303 +62 379.995 383.8725 1000 50 0.53622407 +63 395.505 399.3825 1000 50 0.54925203 +64 399.3825 403.26 1000 50 0.50373024 +65 403.26 407.1375 1000 50 0.59488934 +66 418.77 422.6475 1000 50 0.5122412 +67 430.4025 434.28 1000 50 0.59085387 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_13-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_13-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b3b329b5554bb15f614db755dce9c310ec5d9bdb --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_13-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,195 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.99517447 +2 23.265 27.142500000000002 1000 50 0.71730715 +3 27.1425 31.02 1000 50 0.72757506 +4 31.02 34.8975 1000 50 0.91311437 +5 38.775 42.652499999999996 1000 50 0.90616995 +6 42.6525 46.53 1000 50 0.9188414 +7 50.4075 54.285 1000 50 0.6256761 +8 62.04 65.9175 1000 50 0.74216014 +9 65.9175 69.795 1000 50 0.5543801 +10 69.795 73.6725 1000 50 0.91984475 +11 81.4275 85.30499999999999 1000 50 0.7724052 +12 89.1825 93.06 1000 50 0.61785483 +13 93.06 96.9375 1000 50 0.6176109 +14 96.9375 100.815 1000 50 0.9244981 +15 100.815 104.6925 1000 50 0.9389677 +16 104.6925 108.57 1000 50 0.99082714 +17 108.57 112.44749999999999 1000 50 0.9958156 +18 116.325 120.2025 1000 50 0.99975365 +19 120.2025 124.08 1000 50 0.9952434 +20 124.08 127.9575 1000 50 0.8741538 +21 127.9575 131.835 1000 50 0.9966 +22 131.835 135.7125 1000 50 0.5419969 +23 135.7125 139.59 1000 50 0.9999496 +24 139.59 143.4675 1000 50 0.99739254 +25 147.345 151.2225 1000 50 0.9999348 +26 151.2225 155.1 1000 50 0.9336671 +27 155.1 158.9775 1000 50 0.9077403 +28 158.9775 162.855 1000 50 0.9999999 +29 162.855 166.7325 1000 50 0.5703305 +30 166.7325 170.60999999999999 1000 50 0.5106959 +31 170.61 174.4875 1000 50 0.99975735 +32 174.4875 178.365 1000 50 0.59909046 +33 178.365 182.2425 1000 50 0.98868 +34 186.12 189.9975 1000 50 0.64774036 +35 197.7525 201.63 1000 50 0.99947184 +36 201.63 205.5075 1000 50 0.78351057 +37 209.385 213.2625 1000 50 0.79606634 +38 213.2625 217.14 1000 50 0.9842976 +39 217.14 221.01749999999998 1000 50 0.99952435 +40 221.0175 224.895 1000 50 0.8110054 +41 224.895 228.7725 1000 50 0.9462899 +42 228.7725 232.65 1000 50 0.9984113 +43 236.5275 240.405 1000 50 0.8706992 +44 244.2825 248.16 1000 50 0.9958949 +45 248.16 252.0375 1000 50 0.9994312 +46 255.915 259.7925 1000 50 0.98885053 +47 259.7925 263.67 1000 50 0.9973586 +48 263.67 267.5475 1000 50 0.76087976 +49 267.5475 271.425 1000 50 0.99996316 +50 271.425 275.3025 1000 50 0.61107445 +51 275.3025 279.18 1000 50 0.998326 +52 279.18 283.0575 1000 50 0.990577 +53 286.935 290.8125 1000 50 0.9999639 +54 294.69 298.5675 1000 50 0.83928823 +55 310.2 314.0775 1000 50 0.81613505 +56 317.955 321.8325 1000 50 0.7972386 +57 321.8325 325.71 1000 50 0.5256181 +58 329.5875 333.465 1000 50 0.87573475 +59 333.465 337.3425 1000 50 0.61588097 +60 341.22 345.0975 1000 50 0.91442287 +61 345.0975 348.975 1000 50 0.9930072 +62 348.975 352.8525 1000 50 0.62078416 +63 356.73 360.6075 1000 50 0.9067397 +64 360.6075 364.485 1000 50 0.62193334 +65 364.485 368.3625 1000 50 0.8030407 +66 368.3625 372.24 1000 50 0.9979361 +67 383.8725 387.75 1000 50 0.750924 +68 391.6275 395.505 1000 50 0.52728987 +69 395.505 399.3825 1000 50 0.93314564 +70 399.3825 403.26 1000 50 0.91562736 +71 411.015 414.8925 1000 50 0.6340397 +72 414.8925 418.77 1000 50 0.66170913 +73 418.77 422.6475 1000 50 0.5620924 +74 430.4025 434.28 1000 50 0.50760704 +75 445.9125 449.79 1000 50 0.87768614 +76 449.79 453.6675 1000 50 0.63735163 +77 457.545 461.4225 1000 50 0.61810297 +78 465.3 469.1775 1000 50 0.8126472 +79 469.1775 473.055 1000 50 0.543984 +80 480.81 484.6875 1000 50 0.9465418 +81 484.6875 488.565 1000 50 0.54072654 +82 492.4425 496.32 1000 50 0.6103065 +83 500.1975 504.075 1000 50 0.84450495 +84 507.9525 511.83 1000 50 0.5047495 +85 519.585 523.4625000000001 1000 50 0.6331865 +86 523.4625 527.34 1000 50 0.50760716 +87 535.095 538.9725000000001 1000 50 0.9374117 +88 542.85 546.7275000000001 1000 50 0.77288836 +89 554.4825 558.36 1000 50 0.6868786 +90 569.9925 573.87 1000 50 0.9992255 +91 573.87 577.7475000000001 1000 50 0.9997669 +92 577.7475 581.625 1000 50 0.9998667 +93 581.625 585.5025 1000 50 0.8464766 +94 585.5025 589.3800000000001 1000 50 0.87144303 +95 589.38 593.2575 1000 50 0.96990716 +96 593.2575 597.1350000000001 1000 50 0.881939 +97 597.135 601.0125 1000 50 0.8976034 +98 620.4 624.2775 1000 50 0.9949064 +99 628.155 632.0325 1000 50 0.82356155 +100 632.0325 635.9100000000001 1000 50 0.98216677 +101 635.91 639.7875 1000 50 0.67915875 +102 643.665 647.5425 1000 50 0.9824638 +103 651.42 655.2975 1000 50 0.96526104 +104 655.2975 659.1750000000001 1000 50 0.52135366 +105 659.175 663.0525 1000 50 0.76621014 +106 663.0525 666.9300000000001 1000 50 0.6170734 +107 666.93 670.8075 1000 50 0.6525083 +108 670.8075 674.6850000000001 1000 50 0.95082533 +109 674.685 678.5625 1000 50 0.99845266 +110 678.5625 682.44 1000 50 0.79009694 +111 682.44 686.3175000000001 1000 50 0.8869038 +112 694.0725 697.95 1000 50 0.9975304 +113 697.95 701.8275000000001 1000 50 0.5362807 +114 705.705 709.5825000000001 1000 50 0.9914546 +115 709.5825 713.46 1000 50 0.98863834 +116 713.46 717.3375000000001 1000 50 0.9662152 +117 721.215 725.0925000000001 1000 50 0.9804253 +118 725.0925 728.97 1000 50 0.9232209 +119 732.8475 736.725 1000 50 0.91976357 +120 740.6025 744.48 1000 50 0.99995816 +121 744.48 748.3575000000001 1000 50 0.9996282 +122 748.3575 752.235 1000 50 0.6693028 +123 752.235 756.1125000000001 1000 50 0.9949266 +124 756.1125 759.99 1000 50 0.6724588 +125 759.99 763.8675000000001 1000 50 0.9999893 +126 763.8675 767.745 1000 50 0.999962 +127 767.745 771.6225000000001 1000 50 0.9999913 +128 771.6225 775.5 1000 50 0.59341383 +129 779.3775 783.2550000000001 1000 50 1.0 +130 783.255 787.1325 1000 50 0.67872167 +131 787.1325 791.0100000000001 1000 50 0.99999785 +132 791.01 794.8875 1000 50 0.8525714 +133 794.8875 798.7650000000001 1000 50 0.55629206 +134 798.765 802.6425 1000 50 0.9990803 +135 806.52 810.3975 1000 50 0.6185641 +136 810.3975 814.2750000000001 1000 50 0.94899255 +137 814.275 818.1525 1000 50 0.83428 +138 818.1525 822.0300000000001 1000 50 0.9953622 +139 822.03 825.9075 1000 50 0.939555 +140 825.9075 829.7850000000001 1000 50 0.63219607 +141 829.785 833.6625 1000 50 0.9985965 +142 837.54 841.4175 1000 50 0.7935939 +143 845.295 849.1725 1000 50 0.87648225 +144 849.1725 853.0500000000001 1000 50 0.8491394 +145 853.05 856.9275 1000 50 0.85045546 +146 856.9275 860.8050000000001 1000 50 0.95995575 +147 860.805 864.6825 1000 50 0.8938883 +148 884.07 887.9475000000001 1000 50 0.7077904 +149 891.825 895.7025000000001 1000 50 0.56031954 +150 903.4575 907.335 1000 50 0.93062156 +151 907.335 911.2125000000001 1000 50 0.7012795 +152 911.2125 915.09 1000 50 0.7810299 +153 915.09 918.9675000000001 1000 50 0.9947404 +154 918.9675 922.845 1000 50 0.9871788 +155 922.845 926.7225000000001 1000 50 0.9484974 +156 926.7225 930.6 1000 50 0.5958195 +157 930.6 934.4775000000001 1000 50 0.9133597 +158 934.4775 938.355 1000 50 0.9946136 +159 938.355 942.2325000000001 1000 50 0.83259934 +160 949.9875 953.865 1000 50 0.9990277 +161 961.62 965.4975000000001 1000 50 0.75892615 +162 984.885 988.7625 1000 50 0.89904195 +163 992.64 996.5175 1000 50 0.62215585 +164 1000.395 1004.2725 1000 50 0.9051666 +165 1004.2725 1008.1500000000001 1000 50 0.58211225 +166 1015.905 1019.7825 1000 50 0.5641812 +167 1019.7825 1023.6600000000001 1000 50 0.92641354 +168 1023.66 1027.5375 1000 50 0.8107637 +169 1027.5375 1031.415 1000 50 0.8131908 +170 1031.415 1035.2925 1000 50 0.5813774 +171 1035.2925 1039.17 1000 50 0.7714356 +172 1039.17 1043.0475000000001 1000 50 0.81751937 +173 1050.8025 1054.68 1000 50 0.703585 +174 1054.68 1058.5575000000001 1000 50 0.7138651 +175 1066.3125 1070.19 1000 50 0.5227378 +176 1070.19 1074.0675 1000 50 0.5644238 +177 1074.0675 1077.9450000000002 1000 50 0.7004556 +178 1077.945 1081.8225 1000 50 0.6310666 +179 1093.455 1097.3325 1000 50 0.76296103 +180 1097.3325 1101.21 1000 50 0.5954952 +181 1101.21 1105.0875 1000 50 0.88510644 +182 1105.0875 1108.9650000000001 1000 50 0.59010327 +183 1108.965 1112.8425 1000 50 0.59931874 +184 1112.8425 1116.72 1000 50 0.9253567 +185 1116.72 1120.5975 1000 50 0.5173297 +186 1120.5975 1124.4750000000001 1000 50 0.99536765 +187 1124.475 1128.3525 1000 50 0.5898318 +188 1128.3525 1132.23 1000 50 0.79357946 +189 1132.23 1136.1075 1000 50 0.6138543 +190 1139.985 1143.8625 1000 50 0.7900925 +191 1143.8625 1147.74 1000 50 0.67509997 +192 1147.74 1151.6175 1000 50 0.6996834 +193 1155.495 1159.3725 1000 50 0.5870662 +194 1159.3725 1163.25 1000 50 0.92676634 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_13-23-04_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_13-23-04_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e5928dcb8dcb1cb8f3d7b69a371b0f43cb1cfe63 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_13-23-04_annot_2022-11-30_01.txt @@ -0,0 +1,17 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.97266746 +2 11.6325 15.51 1000 50 0.9934169 +3 15.51 19.3875 1000 50 0.52475643 +4 23.265 27.142500000000002 1000 50 0.99247146 +5 27.1425 31.02 1000 50 0.8053918 +6 31.02 34.8975 1000 50 0.9998549 +7 34.8975 38.775 1000 50 0.9016126 +8 38.775 42.652499999999996 1000 50 0.98684293 +9 42.6525 46.53 1000 50 0.9999219 +10 46.53 50.4075 1000 50 0.6391352 +11 50.4075 54.285 1000 50 0.9389809 +12 54.285 58.162499999999994 1000 50 0.5625564 +13 65.9175 69.795 1000 50 0.6399995 +14 69.795 73.6725 1000 50 0.56332123 +15 73.6725 77.55 1000 50 0.9522024 +16 77.55 81.4275 1000 50 0.5458572 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_14-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_14-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..cc727a122a0130bd5da268937cbdd651bf656da9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_14-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,230 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9436406 +2 11.6325 15.51 1000 50 0.9935906 +3 19.3875 23.265 1000 50 0.9412906 +4 23.265 27.142500000000002 1000 50 0.81480557 +5 27.1425 31.02 1000 50 0.93327975 +6 31.02 34.8975 1000 50 0.7917679 +7 34.8975 38.775 1000 50 0.9153892 +8 38.775 42.652499999999996 1000 50 0.994041 +9 42.6525 46.53 1000 50 0.6148575 +10 50.4075 54.285 1000 50 0.8331542 +11 54.285 58.162499999999994 1000 50 0.7948052 +12 62.04 65.9175 1000 50 0.94480395 +13 65.9175 69.795 1000 50 0.7631206 +14 69.795 73.6725 1000 50 0.9496541 +15 73.6725 77.55 1000 50 0.9009829 +16 77.55 81.4275 1000 50 0.9721672 +17 81.4275 85.30499999999999 1000 50 0.9912299 +18 104.6925 108.57 1000 50 0.98448724 +19 108.57 112.44749999999999 1000 50 0.69347215 +20 112.4475 116.325 1000 50 0.99937564 +21 116.325 120.2025 1000 50 0.92762405 +22 120.2025 124.08 1000 50 0.6542199 +23 124.08 127.9575 1000 50 0.99082434 +24 127.9575 131.835 1000 50 0.5330612 +25 131.835 135.7125 1000 50 0.9823366 +26 135.7125 139.59 1000 50 0.7370377 +27 139.59 143.4675 1000 50 0.9070313 +28 143.4675 147.345 1000 50 0.9999802 +29 147.345 151.2225 1000 50 0.9996722 +30 151.2225 155.1 1000 50 0.9998903 +31 155.1 158.9775 1000 50 0.8727072 +32 158.9775 162.855 1000 50 0.68365985 +33 162.855 166.7325 1000 50 0.9987495 +34 170.61 174.4875 1000 50 0.99979323 +35 174.4875 178.365 1000 50 0.9770109 +36 178.365 182.2425 1000 50 0.9839086 +37 182.2425 186.12 1000 50 0.9985891 +38 186.12 189.9975 1000 50 0.9983821 +39 189.9975 193.875 1000 50 0.9998771 +40 193.875 197.7525 1000 50 0.9971698 +41 197.7525 201.63 1000 50 0.9989416 +42 201.63 205.5075 1000 50 0.98970336 +43 205.5075 209.385 1000 50 0.6979129 +44 209.385 213.2625 1000 50 0.99652773 +45 213.2625 217.14 1000 50 0.96220046 +46 217.14 221.01749999999998 1000 50 0.81633794 +47 221.0175 224.895 1000 50 0.71490633 +48 224.895 228.7725 1000 50 0.5976911 +49 228.7725 232.65 1000 50 0.9991978 +50 232.65 236.5275 1000 50 0.99999654 +51 244.2825 248.16 1000 50 0.9035633 +52 248.16 252.0375 1000 50 0.68917865 +53 252.0375 255.915 1000 50 0.9999802 +54 255.915 259.7925 1000 50 0.9958473 +55 259.7925 263.67 1000 50 0.9992756 +56 271.425 275.3025 1000 50 0.9989774 +57 275.3025 279.18 1000 50 0.5283408 +58 279.18 283.0575 1000 50 0.91040605 +59 283.0575 286.935 1000 50 0.8707526 +60 290.8125 294.69 1000 50 0.99024385 +61 294.69 298.5675 1000 50 0.8849291 +62 298.5675 302.445 1000 50 0.9477746 +63 302.445 306.3225 1000 50 0.5346142 +64 306.3225 310.2 1000 50 0.9080018 +65 314.0775 317.955 1000 50 0.7586787 +66 317.955 321.8325 1000 50 0.5286677 +67 321.8325 325.71 1000 50 0.54911405 +68 333.465 337.3425 1000 50 0.51248723 +69 337.3425 341.21999999999997 1000 50 0.80359095 +70 341.22 345.0975 1000 50 0.99830914 +71 352.8525 356.73 1000 50 0.9950328 +72 364.485 368.3625 1000 50 0.83694077 +73 368.3625 372.24 1000 50 0.9861172 +74 372.24 376.1175 1000 50 0.7752866 +75 379.995 383.8725 1000 50 0.99534804 +76 383.8725 387.75 1000 50 0.6130322 +77 387.75 391.6275 1000 50 0.8342303 +78 391.6275 395.505 1000 50 0.8588202 +79 395.505 399.3825 1000 50 0.9838139 +80 399.3825 403.26 1000 50 0.6615285 +81 407.1375 411.015 1000 50 0.78242564 +82 438.1575 442.035 1000 50 0.92422146 +83 442.035 445.9125 1000 50 0.71580493 +84 465.3 469.1775 1000 50 0.5117981 +85 469.1775 473.055 1000 50 0.90294975 +86 480.81 484.6875 1000 50 0.67519534 +87 515.7075 519.585 1000 50 0.53234583 +88 523.4625 527.34 1000 50 0.702817 +89 527.34 531.2175000000001 1000 50 0.9997218 +90 531.2175 535.095 1000 50 0.9713515 +91 535.095 538.9725000000001 1000 50 0.951872 +92 546.7275 550.605 1000 50 0.86486316 +93 558.36 562.2375000000001 1000 50 0.6330764 +94 562.2375 566.115 1000 50 0.66387963 +95 573.87 577.7475000000001 1000 50 0.6024305 +96 577.7475 581.625 1000 50 0.78938955 +97 581.625 585.5025 1000 50 0.80269825 +98 593.2575 597.1350000000001 1000 50 0.833189 +99 597.135 601.0125 1000 50 0.9601896 +100 601.0125 604.8900000000001 1000 50 0.60491395 +101 604.89 608.7675 1000 50 0.9057542 +102 608.7675 612.6450000000001 1000 50 0.86259973 +103 616.5225 620.4000000000001 1000 50 0.9836321 +104 620.4 624.2775 1000 50 0.8947647 +105 632.0325 635.9100000000001 1000 50 0.64398795 +106 635.91 639.7875 1000 50 0.58819413 +107 639.7875 643.6650000000001 1000 50 0.9901328 +108 651.42 655.2975 1000 50 0.6295831 +109 655.2975 659.1750000000001 1000 50 0.998108 +110 659.175 663.0525 1000 50 0.7059707 +111 663.0525 666.9300000000001 1000 50 0.99858403 +112 670.8075 674.6850000000001 1000 50 0.8774219 +113 674.685 678.5625 1000 50 0.5487177 +114 682.44 686.3175000000001 1000 50 0.64397085 +115 686.3175 690.195 1000 50 0.85649467 +116 690.195 694.0725000000001 1000 50 0.55749196 +117 697.95 701.8275000000001 1000 50 0.99997723 +118 701.8275 705.705 1000 50 0.9996172 +119 705.705 709.5825000000001 1000 50 0.604533 +120 709.5825 713.46 1000 50 0.98160833 +121 717.3375 721.215 1000 50 0.8511733 +122 721.215 725.0925000000001 1000 50 0.9974389 +123 728.97 732.8475000000001 1000 50 0.9541518 +124 732.8475 736.725 1000 50 0.5966668 +125 736.725 740.6025000000001 1000 50 0.9895187 +126 748.3575 752.235 1000 50 0.9999782 +127 756.1125 759.99 1000 50 0.99512154 +128 763.8675 767.745 1000 50 0.8624154 +129 767.745 771.6225000000001 1000 50 0.58193773 +130 771.6225 775.5 1000 50 0.6268124 +131 783.255 787.1325 1000 50 0.73199916 +132 791.01 794.8875 1000 50 0.72826713 +133 794.8875 798.7650000000001 1000 50 0.7084604 +134 798.765 802.6425 1000 50 0.96969014 +135 802.6425 806.5200000000001 1000 50 0.90373904 +136 810.3975 814.2750000000001 1000 50 0.9540174 +137 818.1525 822.0300000000001 1000 50 0.52327555 +138 822.03 825.9075 1000 50 0.88013786 +139 829.785 833.6625 1000 50 0.5175714 +140 833.6625 837.5400000000001 1000 50 0.82266396 +141 849.1725 853.0500000000001 1000 50 0.88934743 +142 853.05 856.9275 1000 50 0.92489886 +143 856.9275 860.8050000000001 1000 50 0.98076916 +144 860.805 864.6825 1000 50 0.9832653 +145 864.6825 868.5600000000001 1000 50 0.9991967 +146 876.315 880.1925000000001 1000 50 0.9903211 +147 880.1925 884.07 1000 50 0.99419194 +148 895.7025 899.58 1000 50 0.99990034 +149 899.58 903.4575000000001 1000 50 0.61518735 +150 903.4575 907.335 1000 50 0.9999659 +151 907.335 911.2125000000001 1000 50 0.812849 +152 911.2125 915.09 1000 50 0.9265624 +153 915.09 918.9675000000001 1000 50 0.56058174 +154 918.9675 922.845 1000 50 0.9802059 +155 922.845 926.7225000000001 1000 50 0.51306903 +156 938.355 942.2325000000001 1000 50 0.54512155 +157 949.9875 953.865 1000 50 0.57754856 +158 953.865 957.7425000000001 1000 50 0.54927844 +159 957.7425 961.62 1000 50 0.6055915 +160 969.375 973.2525 1000 50 0.6105407 +161 973.2525 977.1300000000001 1000 50 0.661774 +162 981.0075 984.8850000000001 1000 50 0.51005304 +163 988.7625 992.6400000000001 1000 50 0.761591 +164 996.5175 1000.3950000000001 1000 50 0.96199006 +165 1004.2725 1008.1500000000001 1000 50 0.72531 +166 1019.7825 1023.6600000000001 1000 50 0.7461296 +167 1035.2925 1039.17 1000 50 0.7127727 +168 1046.925 1050.8025 1000 50 0.57886446 +169 1050.8025 1054.68 1000 50 0.58725125 +170 1054.68 1058.5575000000001 1000 50 0.9891838 +171 1085.7 1089.5775 1000 50 0.5988872 +172 1089.5775 1093.4550000000002 1000 50 0.5570402 +173 1093.455 1097.3325 1000 50 0.5165558 +174 1097.3325 1101.21 1000 50 0.61629593 +175 1108.965 1112.8425 1000 50 0.9943487 +176 1116.72 1120.5975 1000 50 0.6719259 +177 1120.5975 1124.4750000000001 1000 50 0.5531609 +178 1128.3525 1132.23 1000 50 0.9951115 +179 1143.8625 1147.74 1000 50 0.5945426 +180 1147.74 1151.6175 1000 50 0.8495852 +181 1155.495 1159.3725 1000 50 0.9053315 +182 1159.3725 1163.25 1000 50 0.61708057 +183 1163.25 1167.1275 1000 50 0.9998367 +184 1167.1275 1171.005 1000 50 0.9998523 +185 1174.8825 1178.76 1000 50 0.5879615 +186 1178.76 1182.6375 1000 50 0.80387795 +187 1182.6375 1186.515 1000 50 0.9996716 +188 1186.515 1190.3925000000002 1000 50 0.99514717 +189 1190.3925 1194.27 1000 50 0.8264291 +190 1194.27 1198.1475 1000 50 0.9999696 +191 1205.9025 1209.78 1000 50 0.98871535 +192 1209.78 1213.6575 1000 50 0.6098814 +193 1213.6575 1217.535 1000 50 0.9993586 +194 1221.4125 1225.29 1000 50 0.98477095 +195 1225.29 1229.1675 1000 50 0.83748406 +196 1229.1675 1233.045 1000 50 0.64738345 +197 1233.045 1236.9225000000001 1000 50 0.67253774 +198 1248.555 1252.4325000000001 1000 50 0.9811561 +199 1252.4325 1256.31 1000 50 0.99781704 +200 1260.1875 1264.065 1000 50 0.9949883 +201 1271.82 1275.6975 1000 50 0.8679297 +202 1287.33 1291.2075 1000 50 0.8508548 +203 1291.2075 1295.085 1000 50 0.7336483 +204 1298.9625 1302.8400000000001 1000 50 0.99177563 +205 1302.84 1306.7175 1000 50 0.93289745 +206 1314.4725 1318.3500000000001 1000 50 0.93961936 +207 1318.35 1322.2275 1000 50 0.9381707 +208 1326.105 1329.9825 1000 50 0.77770776 +209 1329.9825 1333.8600000000001 1000 50 0.99712014 +210 1333.86 1337.7375 1000 50 0.6542381 +211 1337.7375 1341.615 1000 50 0.9999901 +212 1341.615 1345.4925 1000 50 0.88471764 +213 1345.4925 1349.3700000000001 1000 50 0.9875871 +214 1349.37 1353.2475 1000 50 0.999579 +215 1357.125 1361.0025 1000 50 0.9935689 +216 1361.0025 1364.88 1000 50 0.76486903 +217 1368.7575 1372.635 1000 50 0.67484015 +218 1376.5125 1380.39 1000 50 0.8708431 +219 1380.39 1384.2675000000002 1000 50 0.63547295 +220 1388.145 1392.0225 1000 50 0.9832092 +221 1392.0225 1395.9 1000 50 0.606899 +222 1395.9 1399.7775000000001 1000 50 0.837482 +223 1407.5325 1411.41 1000 50 0.9945214 +224 1411.41 1415.2875000000001 1000 50 0.71115106 +225 1423.0425 1426.92 1000 50 0.5827086 +226 1430.7975 1434.675 1000 50 0.939129 +227 1442.43 1446.3075000000001 1000 50 0.5561003 +228 1457.94 1461.8175 1000 50 0.7737918 +229 1477.3275 1481.2050000000002 1000 50 0.92370546 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_15-01-53_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_15-01-53_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e209f41fdfbd714f2abb98f379d8ddff6f94fa56 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_15-01-53_annot_2022-11-30_01.txt @@ -0,0 +1,173 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.56673276 +2 15.51 19.3875 1000 50 0.5206324 +3 27.1425 31.02 1000 50 0.7040671 +4 46.53 50.4075 1000 50 0.9998704 +5 50.4075 54.285 1000 50 0.8280507 +6 58.1625 62.04 1000 50 0.9963521 +7 62.04 65.9175 1000 50 0.92275316 +8 73.6725 77.55 1000 50 0.9961123 +9 77.55 81.4275 1000 50 0.9799875 +10 81.4275 85.30499999999999 1000 50 0.8432368 +11 89.1825 93.06 1000 50 0.9506199 +12 96.9375 100.815 1000 50 0.9635216 +13 100.815 104.6925 1000 50 0.9020107 +14 108.57 112.44749999999999 1000 50 0.7527623 +15 112.4475 116.325 1000 50 0.9631543 +16 127.9575 131.835 1000 50 0.8500954 +17 135.7125 139.59 1000 50 0.71313035 +18 139.59 143.4675 1000 50 0.51505035 +19 147.345 151.2225 1000 50 0.99908507 +20 151.2225 155.1 1000 50 0.99759966 +21 155.1 158.9775 1000 50 0.8922144 +22 162.855 166.7325 1000 50 0.7354588 +23 170.61 174.4875 1000 50 0.9940269 +24 182.2425 186.12 1000 50 0.5311725 +25 189.9975 193.875 1000 50 0.9147043 +26 221.0175 224.895 1000 50 0.5167643 +27 228.7725 232.65 1000 50 0.97126794 +28 236.5275 240.405 1000 50 0.92909515 +29 240.405 244.2825 1000 50 0.998357 +30 244.2825 248.16 1000 50 0.95263755 +31 252.0375 255.915 1000 50 0.9612276 +32 255.915 259.7925 1000 50 0.5149465 +33 259.7925 263.67 1000 50 0.9997259 +34 263.67 267.5475 1000 50 0.9565184 +35 267.5475 271.425 1000 50 0.6509509 +36 271.425 275.3025 1000 50 0.9996132 +37 275.3025 279.18 1000 50 0.93998134 +38 279.18 283.0575 1000 50 0.99660635 +39 283.0575 286.935 1000 50 0.88443375 +40 286.935 290.8125 1000 50 0.97252345 +41 290.8125 294.69 1000 50 0.99074066 +42 294.69 298.5675 1000 50 0.9187858 +43 298.5675 302.445 1000 50 0.8529814 +44 317.955 321.8325 1000 50 0.9225723 +45 364.485 368.3625 1000 50 0.97452503 +46 387.75 391.6275 1000 50 0.7261718 +47 403.26 407.1375 1000 50 0.6835883 +48 407.1375 411.015 1000 50 0.7647521 +49 411.015 414.8925 1000 50 0.61267966 +50 414.8925 418.77 1000 50 0.9063192 +51 418.77 422.6475 1000 50 0.98252445 +52 422.6475 426.525 1000 50 0.9373908 +53 426.525 430.4025 1000 50 0.99991024 +54 434.28 438.15749999999997 1000 50 0.999491 +55 438.1575 442.035 1000 50 0.7986648 +56 442.035 445.9125 1000 50 0.93022406 +57 449.79 453.6675 1000 50 0.79392475 +58 465.3 469.1775 1000 50 0.52599657 +59 469.1775 473.055 1000 50 0.96219283 +60 473.055 476.9325 1000 50 0.51095444 +61 484.6875 488.565 1000 50 0.9501052 +62 500.1975 504.075 1000 50 0.9654395 +63 507.9525 511.83 1000 50 0.7766854 +64 511.83 515.7075 1000 50 0.75640184 +65 523.4625 527.34 1000 50 0.90886337 +66 527.34 531.2175000000001 1000 50 0.68039364 +67 531.2175 535.095 1000 50 0.66471714 +68 538.9725 542.85 1000 50 0.7969099 +69 554.4825 558.36 1000 50 0.58737725 +70 569.9925 573.87 1000 50 0.99425656 +71 577.7475 581.625 1000 50 0.8390825 +72 585.5025 589.3800000000001 1000 50 0.9953525 +73 593.2575 597.1350000000001 1000 50 0.98277575 +74 604.89 608.7675 1000 50 0.6351116 +75 608.7675 612.6450000000001 1000 50 0.5839463 +76 612.645 616.5225 1000 50 0.9999505 +77 624.2775 628.1550000000001 1000 50 0.63304114 +78 628.155 632.0325 1000 50 0.83772326 +79 639.7875 643.6650000000001 1000 50 0.60464543 +80 643.665 647.5425 1000 50 0.99289143 +81 655.2975 659.1750000000001 1000 50 0.96149784 +82 659.175 663.0525 1000 50 0.9130626 +83 663.0525 666.9300000000001 1000 50 0.99954563 +84 678.5625 682.44 1000 50 0.6406684 +85 682.44 686.3175000000001 1000 50 0.8673452 +86 709.5825 713.46 1000 50 0.8921666 +87 713.46 717.3375000000001 1000 50 0.54687774 +88 717.3375 721.215 1000 50 0.999159 +89 728.97 732.8475000000001 1000 50 0.90922767 +90 740.6025 744.48 1000 50 0.84820676 +91 744.48 748.3575000000001 1000 50 0.96129555 +92 748.3575 752.235 1000 50 0.76077074 +93 756.1125 759.99 1000 50 0.7814192 +94 771.6225 775.5 1000 50 0.99088764 +95 775.5 779.3775 1000 50 0.5746628 +96 783.255 787.1325 1000 50 0.76788455 +97 787.1325 791.0100000000001 1000 50 0.5191761 +98 794.8875 798.7650000000001 1000 50 0.99586356 +99 798.765 802.6425 1000 50 0.84786856 +100 806.52 810.3975 1000 50 0.9997013 +101 810.3975 814.2750000000001 1000 50 0.98648703 +102 814.275 818.1525 1000 50 0.51146114 +103 818.1525 822.0300000000001 1000 50 0.8885275 +104 822.03 825.9075 1000 50 0.5771734 +105 825.9075 829.7850000000001 1000 50 0.8917181 +106 829.785 833.6625 1000 50 0.60141754 +107 833.6625 837.5400000000001 1000 50 0.6483531 +108 837.54 841.4175 1000 50 0.97372854 +109 853.05 856.9275 1000 50 0.9072469 +110 868.56 872.4375 1000 50 0.5918748 +111 880.1925 884.07 1000 50 0.78525066 +112 884.07 887.9475000000001 1000 50 0.89857846 +113 887.9475 891.825 1000 50 0.79672456 +114 895.7025 899.58 1000 50 0.96026134 +115 903.4575 907.335 1000 50 0.8172538 +116 930.6 934.4775000000001 1000 50 0.85564375 +117 934.4775 938.355 1000 50 0.996415 +118 942.2325 946.11 1000 50 0.9441019 +119 946.11 949.9875000000001 1000 50 0.9923119 +120 953.865 957.7425000000001 1000 50 0.9376217 +121 961.62 965.4975000000001 1000 50 0.81403375 +122 965.4975 969.375 1000 50 0.62987036 +123 981.0075 984.8850000000001 1000 50 0.59778005 +124 996.5175 1000.3950000000001 1000 50 0.55361223 +125 1004.2725 1008.1500000000001 1000 50 0.8627556 +126 1054.68 1058.5575000000001 1000 50 0.7906242 +127 1058.5575 1062.435 1000 50 0.9899795 +128 1070.19 1074.0675 1000 50 0.54392475 +129 1074.0675 1077.9450000000002 1000 50 0.90413034 +130 1077.945 1081.8225 1000 50 0.52940625 +131 1081.8225 1085.7 1000 50 0.99903584 +132 1112.8425 1116.72 1000 50 0.8201845 +133 1116.72 1120.5975 1000 50 0.7793991 +134 1147.74 1151.6175 1000 50 0.55307436 +135 1167.1275 1171.005 1000 50 0.8242046 +136 1174.8825 1178.76 1000 50 0.6838667 +137 1194.27 1198.1475 1000 50 0.7247033 +138 1213.6575 1217.535 1000 50 0.97359765 +139 1229.1675 1233.045 1000 50 0.5951345 +140 1233.045 1236.9225000000001 1000 50 0.896502 +141 1236.9225 1240.8 1000 50 0.9203203 +142 1240.8 1244.6775 1000 50 0.854993 +143 1244.6775 1248.555 1000 50 0.99988806 +144 1248.555 1252.4325000000001 1000 50 0.9906556 +145 1256.31 1260.1875 1000 50 0.9995946 +146 1260.1875 1264.065 1000 50 0.786953 +147 1264.065 1267.9425 1000 50 0.90959394 +148 1267.9425 1271.8200000000002 1000 50 0.97853833 +149 1271.82 1275.6975 1000 50 0.98641634 +150 1275.6975 1279.575 1000 50 0.9668054 +151 1279.575 1283.4525 1000 50 0.8736967 +152 1283.4525 1287.3300000000002 1000 50 0.7981455 +153 1287.33 1291.2075 1000 50 0.9981427 +154 1291.2075 1295.085 1000 50 0.9599397 +155 1295.085 1298.9625 1000 50 0.6921177 +156 1302.84 1306.7175 1000 50 0.97007036 +157 1314.4725 1318.3500000000001 1000 50 0.9624544 +158 1318.35 1322.2275 1000 50 0.51537544 +159 1322.2275 1326.105 1000 50 0.5326832 +160 1326.105 1329.9825 1000 50 0.9986987 +161 1329.9825 1333.8600000000001 1000 50 0.8530107 +162 1333.86 1337.7375 1000 50 0.9850448 +163 1337.7375 1341.615 1000 50 0.7915347 +164 1341.615 1345.4925 1000 50 0.99949396 +165 1349.37 1353.2475 1000 50 0.66476226 +166 1353.2475 1357.125 1000 50 0.9511462 +167 1357.125 1361.0025 1000 50 0.7157701 +168 1361.0025 1364.88 1000 50 0.9387854 +169 1364.88 1368.7575000000002 1000 50 0.9896347 +170 1368.7575 1372.635 1000 50 0.9740427 +171 1376.5125 1380.39 1000 50 0.85909534 +172 1384.2675 1388.145 1000 50 0.6087543 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_16-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_16-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..df78142deaea57780053324c53ac39de9e95d458 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_16-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,25 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.94571763 +2 23.265 27.142500000000002 1000 50 0.99830985 +3 27.1425 31.02 1000 50 0.7249828 +4 31.02 34.8975 1000 50 0.9991229 +5 34.8975 38.775 1000 50 0.9971923 +6 38.775 42.652499999999996 1000 50 0.68004423 +7 42.6525 46.53 1000 50 0.5988046 +8 46.53 50.4075 1000 50 0.74494016 +9 54.285 58.162499999999994 1000 50 0.9954906 +10 58.1625 62.04 1000 50 0.9993642 +11 62.04 65.9175 1000 50 0.55638665 +12 73.6725 77.55 1000 50 0.801016 +13 77.55 81.4275 1000 50 0.89411956 +14 81.4275 85.30499999999999 1000 50 0.63538265 +15 96.9375 100.815 1000 50 0.7699942 +16 104.6925 108.57 1000 50 0.5335513 +17 116.325 120.2025 1000 50 0.86772203 +18 131.835 135.7125 1000 50 0.63053715 +19 155.1 158.9775 1000 50 0.9873771 +20 162.855 166.7325 1000 50 0.6410564 +21 178.365 182.2425 1000 50 0.92959946 +22 197.7525 201.63 1000 50 0.7541942 +23 201.63 205.5075 1000 50 0.97312456 +24 209.385 213.2625 1000 50 0.9990343 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_16-07-11_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_16-07-11_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..7a7d1f13195aa8d3a490de382922f3137b0f0ebd --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_16-07-11_annot_2022-11-30_01.txt @@ -0,0 +1,126 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.9995571 +2 11.6325 15.51 1000 50 0.731059 +3 19.3875 23.265 1000 50 0.9998597 +4 23.265 27.142500000000002 1000 50 0.98518777 +5 31.02 34.8975 1000 50 0.99792165 +6 34.8975 38.775 1000 50 0.9999964 +7 38.775 42.652499999999996 1000 50 0.8635465 +8 42.6525 46.53 1000 50 0.9199855 +9 46.53 50.4075 1000 50 0.9999168 +10 50.4075 54.285 1000 50 0.69760245 +11 54.285 58.162499999999994 1000 50 0.99966264 +12 58.1625 62.04 1000 50 0.99971443 +13 62.04 65.9175 1000 50 0.99999356 +14 65.9175 69.795 1000 50 0.9999815 +15 69.795 73.6725 1000 50 0.99979407 +16 73.6725 77.55 1000 50 0.99192435 +17 77.55 81.4275 1000 50 0.99823964 +18 81.4275 85.30499999999999 1000 50 0.99996483 +19 85.305 89.1825 1000 50 0.9377512 +20 89.1825 93.06 1000 50 0.9999769 +21 93.06 96.9375 1000 50 0.99987733 +22 96.9375 100.815 1000 50 0.9181992 +23 100.815 104.6925 1000 50 0.99994755 +24 104.6925 108.57 1000 50 0.984475 +25 112.4475 116.325 1000 50 0.9999974 +26 116.325 120.2025 1000 50 0.99989915 +27 120.2025 124.08 1000 50 0.902573 +28 124.08 127.9575 1000 50 0.99966574 +29 127.9575 131.835 1000 50 0.77810884 +30 131.835 135.7125 1000 50 0.99690187 +31 135.7125 139.59 1000 50 0.99842787 +32 139.59 143.4675 1000 50 0.5408638 +33 143.4675 147.345 1000 50 0.6846322 +34 147.345 151.2225 1000 50 0.99995434 +35 151.2225 155.1 1000 50 0.9995364 +36 162.855 166.7325 1000 50 0.7798364 +37 174.4875 178.365 1000 50 0.5656218 +38 186.12 189.9975 1000 50 0.9698556 +39 201.63 205.5075 1000 50 0.7627599 +40 213.2625 217.14 1000 50 0.9995598 +41 221.0175 224.895 1000 50 0.9100663 +42 224.895 228.7725 1000 50 0.88018036 +43 232.65 236.5275 1000 50 0.8146586 +44 236.5275 240.405 1000 50 0.52483666 +45 240.405 244.2825 1000 50 0.8129977 +46 244.2825 248.16 1000 50 0.9988757 +47 252.0375 255.915 1000 50 0.99873155 +48 263.67 267.5475 1000 50 0.98723197 +49 275.3025 279.18 1000 50 0.98950654 +50 283.0575 286.935 1000 50 0.9938775 +51 286.935 290.8125 1000 50 0.9047118 +52 294.69 298.5675 1000 50 0.57888234 +53 298.5675 302.445 1000 50 0.50683314 +54 302.445 306.3225 1000 50 0.7591735 +55 310.2 314.0775 1000 50 0.9351538 +56 333.465 337.3425 1000 50 0.9398918 +57 337.3425 341.21999999999997 1000 50 0.533202 +58 341.22 345.0975 1000 50 0.99696004 +59 356.73 360.6075 1000 50 0.6561532 +60 364.485 368.3625 1000 50 0.8234585 +61 376.1175 379.995 1000 50 0.977991 +62 407.1375 411.015 1000 50 0.8809246 +63 422.6475 426.525 1000 50 0.8071116 +64 426.525 430.4025 1000 50 0.98997307 +65 430.4025 434.28 1000 50 0.9645622 +66 434.28 438.15749999999997 1000 50 0.7325649 +67 438.1575 442.035 1000 50 0.99613404 +68 445.9125 449.79 1000 50 0.86032665 +69 453.6675 457.545 1000 50 0.71484774 +70 457.545 461.4225 1000 50 0.9806997 +71 476.9325 480.81 1000 50 0.99301046 +72 484.6875 488.565 1000 50 0.7853036 +73 500.1975 504.075 1000 50 0.8823046 +74 504.075 507.9525 1000 50 0.6985757 +75 507.9525 511.83 1000 50 0.7080267 +76 515.7075 519.585 1000 50 0.9995049 +77 519.585 523.4625000000001 1000 50 0.98363507 +78 531.2175 535.095 1000 50 0.9347003 +79 538.9725 542.85 1000 50 0.94880897 +80 542.85 546.7275000000001 1000 50 0.80942386 +81 546.7275 550.605 1000 50 0.9467334 +82 558.36 562.2375000000001 1000 50 0.87330645 +83 569.9925 573.87 1000 50 0.9953869 +84 577.7475 581.625 1000 50 0.78273743 +85 581.625 585.5025 1000 50 0.9874384 +86 589.38 593.2575 1000 50 0.9979658 +87 597.135 601.0125 1000 50 0.7724416 +88 612.645 616.5225 1000 50 0.73611975 +89 624.2775 628.1550000000001 1000 50 0.79353666 +90 632.0325 635.9100000000001 1000 50 0.84205943 +91 643.665 647.5425 1000 50 0.56719184 +92 647.5425 651.4200000000001 1000 50 0.84131145 +93 651.42 655.2975 1000 50 0.9922437 +94 655.2975 659.1750000000001 1000 50 0.6879971 +95 659.175 663.0525 1000 50 0.62237716 +96 682.44 686.3175000000001 1000 50 0.7814795 +97 713.46 717.3375000000001 1000 50 0.5177061 +98 721.215 725.0925000000001 1000 50 0.5675604 +99 725.0925 728.97 1000 50 0.77845633 +100 732.8475 736.725 1000 50 0.87166685 +101 740.6025 744.48 1000 50 0.69663334 +102 756.1125 759.99 1000 50 0.5642103 +103 767.745 771.6225000000001 1000 50 0.529254 +104 802.6425 806.5200000000001 1000 50 0.62047726 +105 806.52 810.3975 1000 50 0.7627457 +106 814.275 818.1525 1000 50 0.58749586 +107 825.9075 829.7850000000001 1000 50 0.6214583 +108 845.295 849.1725 1000 50 0.96866846 +109 860.805 864.6825 1000 50 0.7391483 +110 915.09 918.9675000000001 1000 50 0.9362574 +111 918.9675 922.845 1000 50 0.5683285 +112 942.2325 946.11 1000 50 0.5171628 +113 977.13 981.0075 1000 50 0.97524613 +114 981.0075 984.8850000000001 1000 50 0.7898104 +115 992.64 996.5175 1000 50 0.86992866 +116 996.5175 1000.3950000000001 1000 50 0.7590588 +117 1000.395 1004.2725 1000 50 0.6896012 +118 1019.7825 1023.6600000000001 1000 50 0.740385 +119 1023.66 1027.5375 1000 50 0.9032406 +120 1031.415 1035.2925 1000 50 0.78632337 +121 1035.2925 1039.17 1000 50 0.57190996 +122 1054.68 1058.5575000000001 1000 50 0.5444225 +123 1058.5575 1062.435 1000 50 0.85024256 +124 1066.3125 1070.19 1000 50 0.9883752 +125 1070.19 1074.0675 1000 50 0.89083487 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_17-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_17-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..59c6995c075124c6951ade2b445cc5c2d17b3301 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_17-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,91 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.74565977 +2 19.3875 23.265 1000 50 0.9981255 +3 23.265 27.142500000000002 1000 50 0.96458733 +4 38.775 42.652499999999996 1000 50 0.574738 +5 62.04 65.9175 1000 50 0.9997018 +6 65.9175 69.795 1000 50 0.98357785 +7 69.795 73.6725 1000 50 0.90226865 +8 73.6725 77.55 1000 50 0.87257004 +9 77.55 81.4275 1000 50 0.6669614 +10 81.4275 85.30499999999999 1000 50 0.99986434 +11 85.305 89.1825 1000 50 0.83339614 +12 89.1825 93.06 1000 50 0.9980665 +13 93.06 96.9375 1000 50 0.94796246 +14 100.815 104.6925 1000 50 0.99998176 +15 108.57 112.44749999999999 1000 50 0.99977154 +16 112.4475 116.325 1000 50 0.8453113 +17 116.325 120.2025 1000 50 0.99697554 +18 120.2025 124.08 1000 50 0.9999565 +19 127.9575 131.835 1000 50 0.9826199 +20 135.7125 139.59 1000 50 0.99999976 +21 143.4675 147.345 1000 50 0.95707506 +22 147.345 151.2225 1000 50 0.99840444 +23 155.1 158.9775 1000 50 0.988014 +24 158.9775 162.855 1000 50 0.8881164 +25 166.7325 170.60999999999999 1000 50 0.60436404 +26 170.61 174.4875 1000 50 0.7117247 +27 174.4875 178.365 1000 50 0.99990284 +28 178.365 182.2425 1000 50 0.99904805 +29 186.12 189.9975 1000 50 0.9999999 +30 193.875 197.7525 1000 50 0.99936837 +31 205.5075 209.385 1000 50 0.9982488 +32 209.385 213.2625 1000 50 0.99966717 +33 213.2625 217.14 1000 50 0.8141655 +34 217.14 221.01749999999998 1000 50 0.9745135 +35 221.0175 224.895 1000 50 0.69723344 +36 224.895 228.7725 1000 50 0.99482083 +37 228.7725 232.65 1000 50 0.9436545 +38 232.65 236.5275 1000 50 0.55576944 +39 236.5275 240.405 1000 50 0.60968435 +40 240.405 244.2825 1000 50 0.94533855 +41 244.2825 248.16 1000 50 0.9931411 +42 248.16 252.0375 1000 50 0.9996927 +43 252.0375 255.915 1000 50 0.9794079 +44 255.915 259.7925 1000 50 0.9974975 +45 259.7925 263.67 1000 50 0.9957623 +46 263.67 267.5475 1000 50 0.79217386 +47 267.5475 271.425 1000 50 0.9816326 +48 271.425 275.3025 1000 50 0.99956983 +49 275.3025 279.18 1000 50 0.8969085 +50 279.18 283.0575 1000 50 0.9970373 +51 283.0575 286.935 1000 50 0.9999974 +52 286.935 290.8125 1000 50 0.9449286 +53 294.69 298.5675 1000 50 0.99973434 +54 306.3225 310.2 1000 50 0.99705136 +55 310.2 314.0775 1000 50 0.7377812 +56 314.0775 317.955 1000 50 0.6970367 +57 317.955 321.8325 1000 50 0.5939609 +58 321.8325 325.71 1000 50 0.56613654 +59 325.71 329.5875 1000 50 0.9884792 +60 329.5875 333.465 1000 50 0.52307445 +61 341.22 345.0975 1000 50 0.56729114 +62 352.8525 356.73 1000 50 0.57602435 +63 356.73 360.6075 1000 50 0.93793494 +64 368.3625 372.24 1000 50 0.50390553 +65 387.75 391.6275 1000 50 0.51899713 +66 395.505 399.3825 1000 50 0.87584865 +67 399.3825 403.26 1000 50 0.75103533 +68 403.26 407.1375 1000 50 0.82970715 +69 411.015 414.8925 1000 50 0.7455374 +70 414.8925 418.77 1000 50 0.9247687 +71 418.77 422.6475 1000 50 0.9940672 +72 426.525 430.4025 1000 50 0.9872607 +73 434.28 438.15749999999997 1000 50 0.82524043 +74 438.1575 442.035 1000 50 0.90502435 +75 442.035 445.9125 1000 50 0.96922493 +76 445.9125 449.79 1000 50 0.70292526 +77 453.6675 457.545 1000 50 0.8807817 +78 457.545 461.4225 1000 50 0.54495156 +79 461.4225 465.3 1000 50 0.9879412 +80 469.1775 473.055 1000 50 0.9974849 +81 476.9325 480.81 1000 50 0.61602324 +82 480.81 484.6875 1000 50 0.9285453 +83 484.6875 488.565 1000 50 0.99912816 +84 492.4425 496.32 1000 50 0.9844022 +85 496.32 500.1975 1000 50 0.9241869 +86 500.1975 504.075 1000 50 0.88633054 +87 504.075 507.9525 1000 50 0.9371941 +88 507.9525 511.83 1000 50 0.9306258 +89 519.585 523.4625000000001 1000 50 0.9966227 +90 527.34 531.2175000000001 1000 50 0.9873061 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_17-12-30_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_17-12-30_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..45654b15e90e7c3642706dc511615fc4fdfe31c5 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_17-12-30_annot_2022-11-30_01.txt @@ -0,0 +1,101 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99733526 +2 7.755 11.6325 1000 50 0.605141 +3 11.6325 15.51 1000 50 0.8669288 +4 31.02 34.8975 1000 50 0.7787431 +5 34.8975 38.775 1000 50 0.76318353 +6 46.53 50.4075 1000 50 0.8633277 +7 58.1625 62.04 1000 50 0.8944165 +8 62.04 65.9175 1000 50 0.67156 +9 65.9175 69.795 1000 50 0.8776683 +10 69.795 73.6725 1000 50 0.8692251 +11 73.6725 77.55 1000 50 0.97253335 +12 77.55 81.4275 1000 50 0.70031375 +13 81.4275 85.30499999999999 1000 50 0.99766636 +14 85.305 89.1825 1000 50 0.9369903 +15 89.1825 93.06 1000 50 0.98917717 +16 93.06 96.9375 1000 50 0.8532609 +17 96.9375 100.815 1000 50 0.9899435 +18 100.815 104.6925 1000 50 0.99684215 +19 104.6925 108.57 1000 50 0.9742329 +20 108.57 112.44749999999999 1000 50 0.9985946 +21 112.4475 116.325 1000 50 0.91817516 +22 116.325 120.2025 1000 50 0.9427826 +23 120.2025 124.08 1000 50 0.9898066 +24 124.08 127.9575 1000 50 0.9987845 +25 127.9575 131.835 1000 50 0.626866 +26 135.7125 139.59 1000 50 0.9295396 +27 139.59 143.4675 1000 50 0.8906774 +28 151.2225 155.1 1000 50 0.87743044 +29 162.855 166.7325 1000 50 0.92470586 +30 166.7325 170.60999999999999 1000 50 0.7200943 +31 193.875 197.7525 1000 50 0.74486405 +32 228.7725 232.65 1000 50 0.57881635 +33 263.67 267.5475 1000 50 0.64173645 +34 275.3025 279.18 1000 50 0.8728533 +35 283.0575 286.935 1000 50 0.9169025 +36 290.8125 294.69 1000 50 0.5827222 +37 294.69 298.5675 1000 50 0.6967046 +38 306.3225 310.2 1000 50 0.8418014 +39 314.0775 317.955 1000 50 0.7351819 +40 325.71 329.5875 1000 50 0.7744117 +41 345.0975 348.975 1000 50 0.9529349 +42 348.975 352.8525 1000 50 0.97882813 +43 356.73 360.6075 1000 50 0.9268356 +44 364.485 368.3625 1000 50 0.79137826 +45 368.3625 372.24 1000 50 0.9995826 +46 372.24 376.1175 1000 50 0.94676644 +47 379.995 383.8725 1000 50 0.5243185 +48 387.75 391.6275 1000 50 0.83348703 +49 391.6275 395.505 1000 50 0.679429 +50 399.3825 403.26 1000 50 0.95069873 +51 414.8925 418.77 1000 50 0.6878996 +52 422.6475 426.525 1000 50 0.51257616 +53 442.035 445.9125 1000 50 0.6913341 +54 445.9125 449.79 1000 50 0.92701787 +55 449.79 453.6675 1000 50 0.6035506 +56 453.6675 457.545 1000 50 0.998679 +57 457.545 461.4225 1000 50 0.98627687 +58 461.4225 465.3 1000 50 0.8239685 +59 465.3 469.1775 1000 50 0.99834144 +60 473.055 476.9325 1000 50 0.999944 +61 476.9325 480.81 1000 50 0.999602 +62 480.81 484.6875 1000 50 0.92029715 +63 484.6875 488.565 1000 50 0.9999807 +64 492.4425 496.32 1000 50 0.97221214 +65 496.32 500.1975 1000 50 0.9960375 +66 500.1975 504.075 1000 50 0.9854983 +67 504.075 507.9525 1000 50 0.86366475 +68 511.83 515.7075 1000 50 0.97587675 +69 515.7075 519.585 1000 50 0.9974099 +70 519.585 523.4625000000001 1000 50 0.9900237 +71 523.4625 527.34 1000 50 0.8315174 +72 527.34 531.2175000000001 1000 50 0.975274 +73 531.2175 535.095 1000 50 0.9776244 +74 535.095 538.9725000000001 1000 50 0.9965173 +75 538.9725 542.85 1000 50 0.9613031 +76 542.85 546.7275000000001 1000 50 0.9841993 +77 546.7275 550.605 1000 50 0.9659345 +78 550.605 554.4825000000001 1000 50 0.9995103 +79 558.36 562.2375000000001 1000 50 0.9983272 +80 562.2375 566.115 1000 50 0.98907346 +81 569.9925 573.87 1000 50 0.99991 +82 573.87 577.7475000000001 1000 50 0.9426335 +83 581.625 585.5025 1000 50 0.7872263 +84 585.5025 589.3800000000001 1000 50 0.5621482 +85 593.2575 597.1350000000001 1000 50 0.9967456 +86 597.135 601.0125 1000 50 0.58988464 +87 601.0125 604.8900000000001 1000 50 0.9988182 +88 604.89 608.7675 1000 50 0.8043402 +89 608.7675 612.6450000000001 1000 50 0.95413727 +90 620.4 624.2775 1000 50 0.81281817 +91 624.2775 628.1550000000001 1000 50 0.90996933 +92 628.155 632.0325 1000 50 0.9538657 +93 632.0325 635.9100000000001 1000 50 0.9359782 +94 643.665 647.5425 1000 50 0.5215759 +95 647.5425 651.4200000000001 1000 50 0.996739 +96 659.175 663.0525 1000 50 0.60185087 +97 674.685 678.5625 1000 50 0.8762608 +98 694.0725 697.95 1000 50 0.88878435 +99 721.215 725.0925000000001 1000 50 0.5198639 +100 744.48 748.3575000000001 1000 50 0.68969357 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_18-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_18-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..edaac9fea7a75aa46246cc7d1a5e37d4af8d0422 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_18-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,114 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9933624 +2 7.755 11.6325 1000 50 0.9811039 +3 11.6325 15.51 1000 50 0.990253 +4 15.51 19.3875 1000 50 0.99118876 +5 19.3875 23.265 1000 50 0.99722517 +6 23.265 27.142500000000002 1000 50 0.9758007 +7 31.02 34.8975 1000 50 0.9997632 +8 58.1625 62.04 1000 50 0.9868917 +9 62.04 65.9175 1000 50 0.94715416 +10 65.9175 69.795 1000 50 0.7356607 +11 73.6725 77.55 1000 50 0.99991214 +12 77.55 81.4275 1000 50 0.9171078 +13 81.4275 85.30499999999999 1000 50 0.58798194 +14 85.305 89.1825 1000 50 0.53065014 +15 89.1825 93.06 1000 50 0.5663666 +16 93.06 96.9375 1000 50 0.53545165 +17 100.815 104.6925 1000 50 0.7863124 +18 104.6925 108.57 1000 50 0.9127545 +19 108.57 112.44749999999999 1000 50 0.9994293 +20 112.4475 116.325 1000 50 0.66883254 +21 116.325 120.2025 1000 50 0.5374433 +22 120.2025 124.08 1000 50 0.9999622 +23 151.2225 155.1 1000 50 0.87528384 +24 155.1 158.9775 1000 50 0.5471463 +25 162.855 166.7325 1000 50 0.9743781 +26 166.7325 170.60999999999999 1000 50 0.9996836 +27 174.4875 178.365 1000 50 0.93662673 +28 178.365 182.2425 1000 50 0.82829076 +29 182.2425 186.12 1000 50 0.9996094 +30 186.12 189.9975 1000 50 0.9584714 +31 189.9975 193.875 1000 50 0.73465794 +32 197.7525 201.63 1000 50 0.98126066 +33 205.5075 209.385 1000 50 0.99944896 +34 209.385 213.2625 1000 50 0.85986364 +35 213.2625 217.14 1000 50 0.95367986 +36 217.14 221.01749999999998 1000 50 0.99736965 +37 221.0175 224.895 1000 50 0.5062523 +38 224.895 228.7725 1000 50 0.98878074 +39 228.7725 232.65 1000 50 0.6308974 +40 236.5275 240.405 1000 50 0.7936873 +41 244.2825 248.16 1000 50 0.9918711 +42 248.16 252.0375 1000 50 0.9860161 +43 252.0375 255.915 1000 50 0.8930925 +44 263.67 267.5475 1000 50 0.62821436 +45 271.425 275.3025 1000 50 0.99993646 +46 275.3025 279.18 1000 50 0.89919025 +47 283.0575 286.935 1000 50 0.78687364 +48 286.935 290.8125 1000 50 0.9459559 +49 290.8125 294.69 1000 50 0.5468862 +50 294.69 298.5675 1000 50 0.83101535 +51 310.2 314.0775 1000 50 0.98417073 +52 314.0775 317.955 1000 50 0.8728356 +53 337.3425 341.21999999999997 1000 50 0.76878357 +54 345.0975 348.975 1000 50 0.6347606 +55 348.975 352.8525 1000 50 0.6201943 +56 356.73 360.6075 1000 50 0.52305514 +57 360.6075 364.485 1000 50 0.76207745 +58 376.1175 379.995 1000 50 0.87841237 +59 407.1375 411.015 1000 50 0.97300965 +60 418.77 422.6475 1000 50 0.77041787 +61 426.525 430.4025 1000 50 0.5337311 +62 469.1775 473.055 1000 50 0.5144001 +63 473.055 476.9325 1000 50 0.9517057 +64 507.9525 511.83 1000 50 0.70275164 +65 519.585 523.4625000000001 1000 50 0.7198127 +66 527.34 531.2175000000001 1000 50 0.59196454 +67 531.2175 535.095 1000 50 0.93148494 +68 538.9725 542.85 1000 50 0.8478991 +69 550.605 554.4825000000001 1000 50 0.5423781 +70 554.4825 558.36 1000 50 0.5564854 +71 558.36 562.2375000000001 1000 50 0.9784461 +72 562.2375 566.115 1000 50 0.9989881 +73 569.9925 573.87 1000 50 0.81526315 +74 577.7475 581.625 1000 50 0.8514455 +75 585.5025 589.3800000000001 1000 50 0.74405944 +76 593.2575 597.1350000000001 1000 50 0.99632347 +77 604.89 608.7675 1000 50 0.99786645 +78 608.7675 612.6450000000001 1000 50 0.98699564 +79 612.645 616.5225 1000 50 0.5506047 +80 620.4 624.2775 1000 50 0.99780446 +81 628.155 632.0325 1000 50 0.9982667 +82 632.0325 635.9100000000001 1000 50 0.99842703 +83 635.91 639.7875 1000 50 0.99944776 +84 639.7875 643.6650000000001 1000 50 0.9801875 +85 643.665 647.5425 1000 50 0.8768659 +86 647.5425 651.4200000000001 1000 50 0.97742873 +87 651.42 655.2975 1000 50 0.8740939 +88 655.2975 659.1750000000001 1000 50 0.98232734 +89 659.175 663.0525 1000 50 0.7104738 +90 666.93 670.8075 1000 50 0.6276948 +91 678.5625 682.44 1000 50 0.99751174 +92 690.195 694.0725000000001 1000 50 0.810277 +93 694.0725 697.95 1000 50 0.84192854 +94 705.705 709.5825000000001 1000 50 0.94394535 +95 709.5825 713.46 1000 50 0.99776745 +96 713.46 717.3375000000001 1000 50 0.9999603 +97 717.3375 721.215 1000 50 0.9774419 +98 721.215 725.0925000000001 1000 50 0.9962923 +99 725.0925 728.97 1000 50 0.94455636 +100 736.725 740.6025000000001 1000 50 0.5245772 +101 740.6025 744.48 1000 50 0.66818565 +102 748.3575 752.235 1000 50 0.57614946 +103 752.235 756.1125000000001 1000 50 0.5286882 +104 756.1125 759.99 1000 50 0.74855125 +105 763.8675 767.745 1000 50 0.7068631 +106 775.5 779.3775 1000 50 0.9268162 +107 787.1325 791.0100000000001 1000 50 0.9975804 +108 791.01 794.8875 1000 50 0.5762742 +109 798.765 802.6425 1000 50 0.9831283 +110 814.275 818.1525 1000 50 0.57523906 +111 822.03 825.9075 1000 50 0.7053899 +112 829.785 833.6625 1000 50 0.6917614 +113 841.4175 845.2950000000001 1000 50 0.8002102 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_18-17-49_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_18-17-49_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..492099c4cb877a11926809cd7969cc2f5cba8fc2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_18-17-49_annot_2022-11-30_01.txt @@ -0,0 +1,49 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.99243826 +2 7.755 11.6325 1000 50 0.81908876 +3 11.6325 15.51 1000 50 0.91855663 +4 19.3875 23.265 1000 50 0.7837468 +5 27.1425 31.02 1000 50 0.56776905 +6 34.8975 38.775 1000 50 0.52597225 +7 42.6525 46.53 1000 50 0.74812955 +8 46.53 50.4075 1000 50 0.9963154 +9 58.1625 62.04 1000 50 0.9643471 +10 65.9175 69.795 1000 50 0.61092675 +11 73.6725 77.55 1000 50 0.9649038 +12 77.55 81.4275 1000 50 0.5218208 +13 85.305 89.1825 1000 50 0.9664679 +14 93.06 96.9375 1000 50 0.84554213 +15 96.9375 100.815 1000 50 0.9031746 +16 100.815 104.6925 1000 50 0.8256899 +17 108.57 112.44749999999999 1000 50 0.87284356 +18 112.4475 116.325 1000 50 0.83399177 +19 124.08 127.9575 1000 50 0.95449686 +20 127.9575 131.835 1000 50 0.98057 +21 131.835 135.7125 1000 50 0.69967496 +22 135.7125 139.59 1000 50 0.97883064 +23 139.59 143.4675 1000 50 0.7760793 +24 143.4675 147.345 1000 50 0.99311733 +25 151.2225 155.1 1000 50 0.70657116 +26 155.1 158.9775 1000 50 0.999765 +27 166.7325 170.60999999999999 1000 50 0.60193646 +28 182.2425 186.12 1000 50 0.6113462 +29 186.12 189.9975 1000 50 0.99009913 +30 189.9975 193.875 1000 50 0.7467065 +31 236.5275 240.405 1000 50 0.53284204 +32 283.0575 286.935 1000 50 0.9047104 +33 286.935 290.8125 1000 50 0.9516191 +34 294.69 298.5675 1000 50 0.9983234 +35 314.0775 317.955 1000 50 0.99295264 +36 325.71 329.5875 1000 50 0.540269 +37 356.73 360.6075 1000 50 0.90270954 +38 360.6075 364.485 1000 50 0.9615439 +39 364.485 368.3625 1000 50 0.56116444 +40 368.3625 372.24 1000 50 0.99923253 +41 372.24 376.1175 1000 50 0.998451 +42 379.995 383.8725 1000 50 0.99988604 +43 395.505 399.3825 1000 50 0.94325405 +44 407.1375 411.015 1000 50 0.9840575 +45 411.015 414.8925 1000 50 0.9984049 +46 418.77 422.6475 1000 50 0.99987185 +47 426.525 430.4025 1000 50 0.99994993 +48 430.4025 434.28 1000 50 0.9695441 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_19-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_19-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e2660c95bd19e2b7775101c480d10ee100e59831 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_19-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,189 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.99924785 +2 15.51 19.3875 1000 50 0.9999994 +3 19.3875 23.265 1000 50 0.948014 +4 27.1425 31.02 1000 50 0.9999676 +5 31.02 34.8975 1000 50 0.5607164 +6 34.8975 38.775 1000 50 0.7475818 +7 38.775 42.652499999999996 1000 50 0.999744 +8 42.6525 46.53 1000 50 0.9189007 +9 46.53 50.4075 1000 50 0.9969817 +10 50.4075 54.285 1000 50 0.9996463 +11 54.285 58.162499999999994 1000 50 0.66398823 +12 58.1625 62.04 1000 50 0.98096424 +13 62.04 65.9175 1000 50 0.81991637 +14 69.795 73.6725 1000 50 0.99999774 +15 73.6725 77.55 1000 50 0.944326 +16 77.55 81.4275 1000 50 0.99911624 +17 81.4275 85.30499999999999 1000 50 0.9999269 +18 85.305 89.1825 1000 50 0.5956583 +19 89.1825 93.06 1000 50 0.9716071 +20 104.6925 108.57 1000 50 0.732671 +21 112.4475 116.325 1000 50 0.81671405 +22 116.325 120.2025 1000 50 0.93148226 +23 124.08 127.9575 1000 50 0.62248546 +24 131.835 135.7125 1000 50 0.5478369 +25 143.4675 147.345 1000 50 0.9966787 +26 155.1 158.9775 1000 50 0.81233144 +27 166.7325 170.60999999999999 1000 50 0.5430022 +28 174.4875 178.365 1000 50 0.99777514 +29 178.365 182.2425 1000 50 0.69285816 +30 186.12 189.9975 1000 50 0.9513163 +31 189.9975 193.875 1000 50 0.8007869 +32 197.7525 201.63 1000 50 0.9992244 +33 201.63 205.5075 1000 50 0.5255182 +34 205.5075 209.385 1000 50 0.9710725 +35 209.385 213.2625 1000 50 0.92284596 +36 213.2625 217.14 1000 50 0.84210026 +37 217.14 221.01749999999998 1000 50 0.99997187 +38 221.0175 224.895 1000 50 0.5389227 +39 224.895 228.7725 1000 50 0.9989034 +40 228.7725 232.65 1000 50 0.6721009 +41 232.65 236.5275 1000 50 0.9304562 +42 240.405 244.2825 1000 50 0.6561203 +43 244.2825 248.16 1000 50 0.99999905 +44 248.16 252.0375 1000 50 0.5850459 +45 252.0375 255.915 1000 50 0.9759281 +46 255.915 259.7925 1000 50 0.8245565 +47 259.7925 263.67 1000 50 0.9986941 +48 263.67 267.5475 1000 50 0.7182636 +49 267.5475 271.425 1000 50 0.9976586 +50 271.425 275.3025 1000 50 0.9389492 +51 275.3025 279.18 1000 50 0.98938584 +52 279.18 283.0575 1000 50 0.99063146 +53 283.0575 286.935 1000 50 0.7466421 +54 286.935 290.8125 1000 50 0.9998777 +55 290.8125 294.69 1000 50 0.9984389 +56 294.69 298.5675 1000 50 0.9666051 +57 298.5675 302.445 1000 50 0.99998105 +58 306.3225 310.2 1000 50 0.98951334 +59 310.2 314.0775 1000 50 0.9991554 +60 314.0775 317.955 1000 50 0.7051377 +61 317.955 321.8325 1000 50 0.9878749 +62 321.8325 325.71 1000 50 0.99717534 +63 329.5875 333.465 1000 50 0.9999819 +64 333.465 337.3425 1000 50 0.9539885 +65 337.3425 341.21999999999997 1000 50 0.9999336 +66 341.22 345.0975 1000 50 0.8787391 +67 345.0975 348.975 1000 50 0.94641155 +68 348.975 352.8525 1000 50 0.98620355 +69 352.8525 356.73 1000 50 0.7163518 +70 356.73 360.6075 1000 50 0.9999982 +71 360.6075 364.485 1000 50 0.6332075 +72 364.485 368.3625 1000 50 0.99835473 +73 368.3625 372.24 1000 50 1.0 +74 372.24 376.1175 1000 50 0.652153 +75 376.1175 379.995 1000 50 0.9552617 +76 379.995 383.8725 1000 50 0.96374965 +77 383.8725 387.75 1000 50 0.99963295 +78 387.75 391.6275 1000 50 0.999818 +79 391.6275 395.505 1000 50 0.9597593 +80 395.505 399.3825 1000 50 0.99446714 +81 399.3825 403.26 1000 50 0.8793198 +82 407.1375 411.015 1000 50 0.75040835 +83 414.8925 418.77 1000 50 0.7185098 +84 418.77 422.6475 1000 50 0.62136954 +85 422.6475 426.525 1000 50 0.5547851 +86 430.4025 434.28 1000 50 0.7279103 +87 434.28 438.15749999999997 1000 50 0.8305685 +88 438.1575 442.035 1000 50 0.87660855 +89 442.035 445.9125 1000 50 0.98892957 +90 445.9125 449.79 1000 50 0.6466262 +91 449.79 453.6675 1000 50 0.7210311 +92 461.4225 465.3 1000 50 0.5804178 +93 469.1775 473.055 1000 50 0.6858776 +94 527.34 531.2175000000001 1000 50 0.9941186 +95 546.7275 550.605 1000 50 0.9245112 +96 550.605 554.4825000000001 1000 50 0.5625442 +97 558.36 562.2375000000001 1000 50 0.9658301 +98 562.2375 566.115 1000 50 0.71062756 +99 566.115 569.9925000000001 1000 50 0.8642121 +100 577.7475 581.625 1000 50 0.6754031 +101 589.38 593.2575 1000 50 0.50374633 +102 597.135 601.0125 1000 50 0.616925 +103 601.0125 604.8900000000001 1000 50 0.9230207 +104 612.645 616.5225 1000 50 0.97582203 +105 616.5225 620.4000000000001 1000 50 0.9769772 +106 620.4 624.2775 1000 50 0.65873176 +107 624.2775 628.1550000000001 1000 50 0.9769553 +108 628.155 632.0325 1000 50 0.8732999 +109 632.0325 635.9100000000001 1000 50 0.8448264 +110 639.7875 643.6650000000001 1000 50 0.9979553 +111 643.665 647.5425 1000 50 0.95635766 +112 647.5425 651.4200000000001 1000 50 0.99965954 +113 655.2975 659.1750000000001 1000 50 0.99798006 +114 659.175 663.0525 1000 50 0.97052604 +115 663.0525 666.9300000000001 1000 50 0.9356417 +116 666.93 670.8075 1000 50 0.9970503 +117 670.8075 674.6850000000001 1000 50 0.9927456 +118 674.685 678.5625 1000 50 0.99906296 +119 678.5625 682.44 1000 50 0.67637026 +120 682.44 686.3175000000001 1000 50 0.99963665 +121 686.3175 690.195 1000 50 0.99999774 +122 690.195 694.0725000000001 1000 50 0.99642843 +123 694.0725 697.95 1000 50 0.99722975 +124 697.95 701.8275000000001 1000 50 0.999984 +125 701.8275 705.705 1000 50 0.99083227 +126 705.705 709.5825000000001 1000 50 0.5145107 +127 709.5825 713.46 1000 50 0.92315793 +128 713.46 717.3375000000001 1000 50 0.9999429 +129 717.3375 721.215 1000 50 0.5499207 +130 721.215 725.0925000000001 1000 50 0.98501366 +131 725.0925 728.97 1000 50 0.6788011 +132 728.97 732.8475000000001 1000 50 0.99838233 +133 732.8475 736.725 1000 50 0.92194706 +134 736.725 740.6025000000001 1000 50 0.85371625 +135 740.6025 744.48 1000 50 0.826023 +136 744.48 748.3575000000001 1000 50 0.99980074 +137 752.235 756.1125000000001 1000 50 0.95654404 +138 756.1125 759.99 1000 50 0.9698537 +139 759.99 763.8675000000001 1000 50 0.53809965 +140 763.8675 767.745 1000 50 0.9197965 +141 775.5 779.3775 1000 50 0.9598066 +142 794.8875 798.7650000000001 1000 50 0.64093894 +143 798.765 802.6425 1000 50 0.62673056 +144 806.52 810.3975 1000 50 0.9376749 +145 818.1525 822.0300000000001 1000 50 0.9190775 +146 822.03 825.9075 1000 50 0.7759862 +147 833.6625 837.5400000000001 1000 50 0.9587439 +148 837.54 841.4175 1000 50 0.5810396 +149 841.4175 845.2950000000001 1000 50 0.58634216 +150 860.805 864.6825 1000 50 0.99999917 +151 864.6825 868.5600000000001 1000 50 0.9758852 +152 868.56 872.4375 1000 50 0.97391385 +153 887.9475 891.825 1000 50 0.7572149 +154 891.825 895.7025000000001 1000 50 0.99627614 +155 895.7025 899.58 1000 50 0.942351 +156 899.58 903.4575000000001 1000 50 0.63673985 +157 903.4575 907.335 1000 50 0.99931514 +158 907.335 911.2125000000001 1000 50 0.84837204 +159 911.2125 915.09 1000 50 0.5447961 +160 915.09 918.9675000000001 1000 50 0.99844235 +161 922.845 926.7225000000001 1000 50 0.9991535 +162 926.7225 930.6 1000 50 0.9948197 +163 930.6 934.4775000000001 1000 50 0.6222062 +164 934.4775 938.355 1000 50 0.99793077 +165 946.11 949.9875000000001 1000 50 0.6728068 +166 949.9875 953.865 1000 50 0.97603226 +167 957.7425 961.62 1000 50 0.77586967 +168 961.62 965.4975000000001 1000 50 0.6012647 +169 969.375 973.2525 1000 50 0.7847696 +170 977.13 981.0075 1000 50 0.7843172 +171 984.885 988.7625 1000 50 0.8831129 +172 988.7625 992.6400000000001 1000 50 0.6393701 +173 996.5175 1000.3950000000001 1000 50 0.5858812 +174 1000.395 1004.2725 1000 50 0.84270996 +175 1004.2725 1008.1500000000001 1000 50 0.59170234 +176 1019.7825 1023.6600000000001 1000 50 0.6215545 +177 1031.415 1035.2925 1000 50 0.9223149 +178 1046.925 1050.8025 1000 50 0.7251145 +179 1070.19 1074.0675 1000 50 0.7737333 +180 1077.945 1081.8225 1000 50 0.91772354 +181 1089.5775 1093.4550000000002 1000 50 0.67751837 +182 1093.455 1097.3325 1000 50 0.9891929 +183 1101.21 1105.0875 1000 50 0.60915536 +184 1116.72 1120.5975 1000 50 0.9714084 +185 1124.475 1128.3525 1000 50 0.8329123 +186 1136.1075 1139.9850000000001 1000 50 0.9676147 +187 1139.985 1143.8625 1000 50 0.5427342 +188 1159.3725 1163.25 1000 50 0.5216387 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_19-23-07_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_19-23-07_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1e62ac2b42d69e5e97a89f503fad23bf05af6299 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_19-23-07_annot_2022-11-30_01.txt @@ -0,0 +1,22 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.65330434 +2 7.755 11.6325 1000 50 0.9127211 +3 11.6325 15.51 1000 50 0.9908285 +4 15.51 19.3875 1000 50 0.7999685 +5 19.3875 23.265 1000 50 0.77412736 +6 23.265 27.142500000000002 1000 50 0.59968615 +7 27.1425 31.02 1000 50 0.9954367 +8 31.02 34.8975 1000 50 0.8932238 +9 34.8975 38.775 1000 50 0.9898942 +10 38.775 42.652499999999996 1000 50 0.94447064 +11 42.6525 46.53 1000 50 0.98587346 +12 46.53 50.4075 1000 50 0.92323375 +13 50.4075 54.285 1000 50 0.91759044 +14 54.285 58.162499999999994 1000 50 0.6332083 +15 58.1625 62.04 1000 50 0.50401735 +16 65.9175 69.795 1000 50 0.6690175 +17 73.6725 77.55 1000 50 0.60232323 +18 85.305 89.1825 1000 50 0.9605426 +19 96.9375 100.815 1000 50 0.7452114 +20 100.815 104.6925 1000 50 0.6718096 +21 104.6925 108.57 1000 50 0.5375221 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_20-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_20-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ece3ca70c0b7af636c2e78923b8dee6d776c835c --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_20-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,235 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99943143 +2 7.755 11.6325 1000 50 0.99964976 +3 11.6325 15.51 1000 50 0.99030733 +4 15.51 19.3875 1000 50 0.5149324 +5 19.3875 23.265 1000 50 0.9060413 +6 23.265 27.142500000000002 1000 50 0.86827695 +7 27.1425 31.02 1000 50 0.9480623 +8 31.02 34.8975 1000 50 0.9871387 +9 38.775 42.652499999999996 1000 50 0.9994342 +10 42.6525 46.53 1000 50 0.99999964 +11 50.4075 54.285 1000 50 0.99977666 +12 54.285 58.162499999999994 1000 50 0.9991166 +13 58.1625 62.04 1000 50 0.9994167 +14 62.04 65.9175 1000 50 0.6650413 +15 65.9175 69.795 1000 50 0.69003785 +16 69.795 73.6725 1000 50 0.51802343 +17 73.6725 77.55 1000 50 0.95459884 +18 77.55 81.4275 1000 50 0.99987674 +19 81.4275 85.30499999999999 1000 50 0.9999815 +20 85.305 89.1825 1000 50 0.9911419 +21 89.1825 93.06 1000 50 0.99995625 +22 96.9375 100.815 1000 50 0.9999999 +23 100.815 104.6925 1000 50 0.9884682 +24 104.6925 108.57 1000 50 0.9999975 +25 108.57 112.44749999999999 1000 50 0.9997875 +26 112.4475 116.325 1000 50 0.9991208 +27 116.325 120.2025 1000 50 0.99999547 +28 124.08 127.9575 1000 50 1.0 +29 127.9575 131.835 1000 50 0.99329364 +30 131.835 135.7125 1000 50 0.9982765 +31 135.7125 139.59 1000 50 1.0 +32 139.59 143.4675 1000 50 0.6583221 +33 143.4675 147.345 1000 50 0.9996973 +34 147.345 151.2225 1000 50 1.0 +35 155.1 158.9775 1000 50 0.999894 +36 158.9775 162.855 1000 50 0.9339634 +37 162.855 166.7325 1000 50 0.99998593 +38 166.7325 170.60999999999999 1000 50 0.9999993 +39 170.61 174.4875 1000 50 0.98766077 +40 174.4875 178.365 1000 50 0.99999976 +41 182.2425 186.12 1000 50 0.999969 +42 186.12 189.9975 1000 50 0.85887885 +43 193.875 197.7525 1000 50 0.9861925 +44 197.7525 201.63 1000 50 0.51008964 +45 201.63 205.5075 1000 50 0.9707987 +46 205.5075 209.385 1000 50 0.9994112 +47 209.385 213.2625 1000 50 0.9984816 +48 213.2625 217.14 1000 50 0.9822182 +49 217.14 221.01749999999998 1000 50 0.8305143 +50 221.0175 224.895 1000 50 0.9985135 +51 224.895 228.7725 1000 50 0.94958603 +52 228.7725 232.65 1000 50 0.9951834 +53 232.65 236.5275 1000 50 0.9998074 +54 236.5275 240.405 1000 50 0.8257298 +55 240.405 244.2825 1000 50 0.9999027 +56 244.2825 248.16 1000 50 0.84381723 +57 248.16 252.0375 1000 50 0.9877517 +58 252.0375 255.915 1000 50 0.9996383 +59 255.915 259.7925 1000 50 0.9999871 +60 259.7925 263.67 1000 50 0.97837836 +61 263.67 267.5475 1000 50 0.99999475 +62 275.3025 279.18 1000 50 0.99747926 +63 279.18 283.0575 1000 50 0.7897174 +64 283.0575 286.935 1000 50 0.9998393 +65 286.935 290.8125 1000 50 0.99964774 +66 290.8125 294.69 1000 50 0.9833361 +67 294.69 298.5675 1000 50 0.9657769 +68 298.5675 302.445 1000 50 0.94919276 +69 302.445 306.3225 1000 50 0.98261136 +70 306.3225 310.2 1000 50 0.99292326 +71 310.2 314.0775 1000 50 0.9888474 +72 314.0775 317.955 1000 50 0.79301155 +73 317.955 321.8325 1000 50 0.8748827 +74 321.8325 325.71 1000 50 0.8892413 +75 325.71 329.5875 1000 50 0.94201225 +76 329.5875 333.465 1000 50 0.97702926 +77 333.465 337.3425 1000 50 0.9977285 +78 337.3425 341.21999999999997 1000 50 0.99999976 +79 341.22 345.0975 1000 50 0.914607 +80 352.8525 356.73 1000 50 0.9510765 +81 356.73 360.6075 1000 50 0.7535392 +82 364.485 368.3625 1000 50 0.83007246 +83 368.3625 372.24 1000 50 0.8227982 +84 376.1175 379.995 1000 50 0.57635343 +85 383.8725 387.75 1000 50 0.5047129 +86 395.505 399.3825 1000 50 0.73171496 +87 407.1375 411.015 1000 50 0.99996686 +88 414.8925 418.77 1000 50 0.9977196 +89 422.6475 426.525 1000 50 0.5746879 +90 426.525 430.4025 1000 50 0.98572415 +91 434.28 438.15749999999997 1000 50 0.9794759 +92 445.9125 449.79 1000 50 0.72448236 +93 449.79 453.6675 1000 50 0.50759125 +94 469.1775 473.055 1000 50 0.78789866 +95 476.9325 480.81 1000 50 0.82669175 +96 496.32 500.1975 1000 50 0.56813633 +97 500.1975 504.075 1000 50 0.648714 +98 504.075 507.9525 1000 50 0.9256763 +99 511.83 515.7075 1000 50 0.8720612 +100 515.7075 519.585 1000 50 0.7581977 +101 523.4625 527.34 1000 50 0.6374099 +102 535.095 538.9725000000001 1000 50 0.91977435 +103 538.9725 542.85 1000 50 0.54056346 +104 546.7275 550.605 1000 50 0.75011426 +105 566.115 569.9925000000001 1000 50 0.5206151 +106 573.87 577.7475000000001 1000 50 0.84263843 +107 577.7475 581.625 1000 50 0.7866999 +108 601.0125 604.8900000000001 1000 50 0.9866623 +109 604.89 608.7675 1000 50 0.7988263 +110 608.7675 612.6450000000001 1000 50 0.99334866 +111 612.645 616.5225 1000 50 0.77037746 +112 620.4 624.2775 1000 50 0.9990614 +113 624.2775 628.1550000000001 1000 50 0.7829003 +114 628.155 632.0325 1000 50 0.59023845 +115 632.0325 635.9100000000001 1000 50 0.999542 +116 651.42 655.2975 1000 50 0.7726161 +117 655.2975 659.1750000000001 1000 50 0.6340386 +118 659.175 663.0525 1000 50 0.9104002 +119 663.0525 666.9300000000001 1000 50 0.99994195 +120 666.93 670.8075 1000 50 0.99433196 +121 670.8075 674.6850000000001 1000 50 0.99931824 +122 674.685 678.5625 1000 50 0.9427777 +123 678.5625 682.44 1000 50 0.992516 +124 682.44 686.3175000000001 1000 50 0.5450577 +125 690.195 694.0725000000001 1000 50 0.99970573 +126 694.0725 697.95 1000 50 0.9977532 +127 697.95 701.8275000000001 1000 50 0.9962624 +128 701.8275 705.705 1000 50 0.999498 +129 705.705 709.5825000000001 1000 50 0.99598664 +130 709.5825 713.46 1000 50 0.99986386 +131 713.46 717.3375000000001 1000 50 0.99682057 +132 717.3375 721.215 1000 50 0.9999709 +133 721.215 725.0925000000001 1000 50 0.78265285 +134 725.0925 728.97 1000 50 0.9999145 +135 728.97 732.8475000000001 1000 50 0.99999535 +136 736.725 740.6025000000001 1000 50 0.99995315 +137 740.6025 744.48 1000 50 0.99895537 +138 744.48 748.3575000000001 1000 50 0.7177602 +139 748.3575 752.235 1000 50 0.99997103 +140 752.235 756.1125000000001 1000 50 0.99999475 +141 759.99 763.8675000000001 1000 50 0.9999558 +142 763.8675 767.745 1000 50 0.87462044 +143 767.745 771.6225000000001 1000 50 0.9148274 +144 771.6225 775.5 1000 50 0.999992 +145 775.5 779.3775 1000 50 0.9993344 +146 779.3775 783.2550000000001 1000 50 0.6104355 +147 783.255 787.1325 1000 50 1.0 +148 794.8875 798.7650000000001 1000 50 0.9999671 +149 798.765 802.6425 1000 50 0.9572498 +150 802.6425 806.5200000000001 1000 50 0.8874006 +151 806.52 810.3975 1000 50 0.91271645 +152 810.3975 814.2750000000001 1000 50 0.92690563 +153 814.275 818.1525 1000 50 0.99558467 +154 822.03 825.9075 1000 50 0.99838746 +155 825.9075 829.7850000000001 1000 50 0.920152 +156 833.6625 837.5400000000001 1000 50 0.8295278 +157 837.54 841.4175 1000 50 0.63551456 +158 841.4175 845.2950000000001 1000 50 0.5751121 +159 845.295 849.1725 1000 50 0.69293106 +160 853.05 856.9275 1000 50 0.8675804 +161 860.805 864.6825 1000 50 0.9966882 +162 864.6825 868.5600000000001 1000 50 0.9989452 +163 884.07 887.9475000000001 1000 50 0.75359255 +164 887.9475 891.825 1000 50 0.88073146 +165 891.825 895.7025000000001 1000 50 0.8845462 +166 895.7025 899.58 1000 50 0.99547416 +167 899.58 903.4575000000001 1000 50 0.9999795 +168 903.4575 907.335 1000 50 0.52346987 +169 907.335 911.2125000000001 1000 50 0.9988029 +170 915.09 918.9675000000001 1000 50 0.99965525 +171 918.9675 922.845 1000 50 0.9511766 +172 922.845 926.7225000000001 1000 50 0.9555587 +173 926.7225 930.6 1000 50 0.9998307 +174 930.6 934.4775000000001 1000 50 0.9997272 +175 934.4775 938.355 1000 50 0.9997298 +176 938.355 942.2325000000001 1000 50 0.99844676 +177 942.2325 946.11 1000 50 0.7678335 +178 946.11 949.9875000000001 1000 50 0.99954766 +179 949.9875 953.865 1000 50 0.9999924 +180 953.865 957.7425000000001 1000 50 0.9574964 +181 961.62 965.4975000000001 1000 50 0.8295102 +182 965.4975 969.375 1000 50 0.87187123 +183 977.13 981.0075 1000 50 0.96723 +184 1000.395 1004.2725 1000 50 0.5501015 +185 1012.0275 1015.9050000000001 1000 50 0.9209242 +186 1015.905 1019.7825 1000 50 0.7518451 +187 1046.925 1050.8025 1000 50 0.6933355 +188 1058.5575 1062.435 1000 50 0.8028663 +189 1081.8225 1085.7 1000 50 0.69514847 +190 1143.8625 1147.74 1000 50 0.7096182 +191 1151.6175 1155.4950000000001 1000 50 0.61698896 +192 1155.495 1159.3725 1000 50 0.663532 +193 1163.25 1167.1275 1000 50 0.9421636 +194 1178.76 1182.6375 1000 50 0.6355705 +195 1225.29 1229.1675 1000 50 0.58321303 +196 1264.065 1267.9425 1000 50 0.97801083 +197 1283.4525 1287.3300000000002 1000 50 0.9972874 +198 1287.33 1291.2075 1000 50 0.9975132 +199 1291.2075 1295.085 1000 50 0.98967487 +200 1295.085 1298.9625 1000 50 0.9832224 +201 1298.9625 1302.8400000000001 1000 50 0.9915734 +202 1302.84 1306.7175 1000 50 0.83498245 +203 1306.7175 1310.595 1000 50 0.99998915 +204 1310.595 1314.4725 1000 50 0.9994875 +205 1318.35 1322.2275 1000 50 0.99821836 +206 1322.2275 1326.105 1000 50 0.9999372 +207 1326.105 1329.9825 1000 50 0.71112424 +208 1333.86 1337.7375 1000 50 0.9769239 +209 1337.7375 1341.615 1000 50 0.70941293 +210 1341.615 1345.4925 1000 50 0.998667 +211 1345.4925 1349.3700000000001 1000 50 0.99222684 +212 1353.2475 1357.125 1000 50 0.9999964 +213 1357.125 1361.0025 1000 50 0.94141287 +214 1361.0025 1364.88 1000 50 0.96000177 +215 1364.88 1368.7575000000002 1000 50 0.9999999 +216 1368.7575 1372.635 1000 50 0.9999988 +217 1376.5125 1380.39 1000 50 0.99981076 +218 1380.39 1384.2675000000002 1000 50 0.99971884 +219 1384.2675 1388.145 1000 50 0.97369903 +220 1388.145 1392.0225 1000 50 0.9996126 +221 1392.0225 1395.9 1000 50 0.9993767 +222 1399.7775 1403.655 1000 50 0.7517853 +223 1407.5325 1411.41 1000 50 0.5721642 +224 1411.41 1415.2875000000001 1000 50 0.82737005 +225 1419.165 1423.0425 1000 50 0.99808264 +226 1423.0425 1426.92 1000 50 0.5336832 +227 1430.7975 1434.675 1000 50 0.99994934 +228 1434.675 1438.5525 1000 50 0.9913394 +229 1442.43 1446.3075000000001 1000 50 0.9997582 +230 1457.94 1461.8175 1000 50 0.9397558 +231 1461.8175 1465.6950000000002 1000 50 0.5686615 +232 1469.5725 1473.45 1000 50 0.9417363 +233 1477.3275 1481.2050000000002 1000 50 0.99097985 +234 1485.0825 1488.96 1000 50 0.90153354 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_21-01-54_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_21-01-54_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..fff969ed8cddc1264dedd442fa1d7d4dd9dae0fd --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_21-01-54_annot_2022-11-30_01.txt @@ -0,0 +1,191 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.5578574 +2 19.3875 23.265 1000 50 0.53119737 +3 50.4075 54.285 1000 50 0.9836182 +4 62.04 65.9175 1000 50 0.9458044 +5 65.9175 69.795 1000 50 0.92920923 +6 69.795 73.6725 1000 50 0.9341031 +7 73.6725 77.55 1000 50 0.5834764 +8 77.55 81.4275 1000 50 0.5049134 +9 85.305 89.1825 1000 50 0.86513984 +10 89.1825 93.06 1000 50 0.6734748 +11 147.345 151.2225 1000 50 0.7799684 +12 158.9775 162.855 1000 50 0.50163734 +13 178.365 182.2425 1000 50 0.5910041 +14 189.9975 193.875 1000 50 0.50383556 +15 193.875 197.7525 1000 50 0.599602 +16 205.5075 209.385 1000 50 0.59414756 +17 221.0175 224.895 1000 50 0.53594035 +18 232.65 236.5275 1000 50 0.78950125 +19 255.915 259.7925 1000 50 0.6838 +20 263.67 267.5475 1000 50 0.7595701 +21 271.425 275.3025 1000 50 0.56053066 +22 275.3025 279.18 1000 50 0.66983145 +23 283.0575 286.935 1000 50 0.92192584 +24 306.3225 310.2 1000 50 0.72143334 +25 329.5875 333.465 1000 50 0.67143285 +26 341.22 345.0975 1000 50 0.7759131 +27 345.0975 348.975 1000 50 0.81905115 +28 352.8525 356.73 1000 50 0.8830148 +29 364.485 368.3625 1000 50 0.6826635 +30 383.8725 387.75 1000 50 0.5358136 +31 414.8925 418.77 1000 50 0.6184743 +32 426.525 430.4025 1000 50 0.6772543 +33 438.1575 442.035 1000 50 0.6949796 +34 445.9125 449.79 1000 50 0.6965718 +35 461.4225 465.3 1000 50 0.65846187 +36 473.055 476.9325 1000 50 0.63305503 +37 476.9325 480.81 1000 50 0.6651581 +38 488.565 492.4425 1000 50 0.7473781 +39 500.1975 504.075 1000 50 0.8509452 +40 507.9525 511.83 1000 50 0.5577599 +41 519.585 523.4625000000001 1000 50 0.86658514 +42 523.4625 527.34 1000 50 0.62724715 +43 527.34 531.2175000000001 1000 50 0.69747967 +44 542.85 546.7275000000001 1000 50 0.6157344 +45 550.605 554.4825000000001 1000 50 0.77822614 +46 554.4825 558.36 1000 50 0.54135364 +47 573.87 577.7475000000001 1000 50 0.53843534 +48 577.7475 581.625 1000 50 0.9954181 +49 581.625 585.5025 1000 50 0.7281833 +50 585.5025 589.3800000000001 1000 50 0.5383379 +51 601.0125 604.8900000000001 1000 50 0.7959256 +52 608.7675 612.6450000000001 1000 50 0.5877281 +53 635.91 639.7875 1000 50 0.69000643 +54 666.93 670.8075 1000 50 0.53942674 +55 690.195 694.0725000000001 1000 50 0.82377434 +56 697.95 701.8275000000001 1000 50 0.7022813 +57 713.46 717.3375000000001 1000 50 0.8608671 +58 717.3375 721.215 1000 50 0.5033074 +59 725.0925 728.97 1000 50 0.66111606 +60 728.97 732.8475000000001 1000 50 0.7655583 +61 736.725 740.6025000000001 1000 50 0.7945387 +62 740.6025 744.48 1000 50 0.83920497 +63 748.3575 752.235 1000 50 0.5649039 +64 771.6225 775.5 1000 50 0.53133494 +65 783.255 787.1325 1000 50 0.7236313 +66 787.1325 791.0100000000001 1000 50 0.9497091 +67 791.01 794.8875 1000 50 0.6316261 +68 798.765 802.6425 1000 50 0.5509317 +69 802.6425 806.5200000000001 1000 50 0.5649691 +70 810.3975 814.2750000000001 1000 50 0.99641126 +71 814.275 818.1525 1000 50 0.7384922 +72 818.1525 822.0300000000001 1000 50 0.76503485 +73 822.03 825.9075 1000 50 0.66760904 +74 841.4175 845.2950000000001 1000 50 0.99642015 +75 872.4375 876.315 1000 50 0.9866724 +76 876.315 880.1925000000001 1000 50 0.89978933 +77 880.1925 884.07 1000 50 0.6382779 +78 884.07 887.9475000000001 1000 50 0.93747777 +79 895.7025 899.58 1000 50 0.6146188 +80 899.58 903.4575000000001 1000 50 0.69009805 +81 903.4575 907.335 1000 50 0.76583296 +82 907.335 911.2125000000001 1000 50 0.99699056 +83 911.2125 915.09 1000 50 0.7263917 +84 915.09 918.9675000000001 1000 50 0.9912623 +85 922.845 926.7225000000001 1000 50 0.9742595 +86 926.7225 930.6 1000 50 0.7942115 +87 930.6 934.4775000000001 1000 50 0.55871964 +88 934.4775 938.355 1000 50 0.99854076 +89 938.355 942.2325000000001 1000 50 0.6610565 +90 942.2325 946.11 1000 50 0.98089623 +91 946.11 949.9875000000001 1000 50 0.99944526 +92 949.9875 953.865 1000 50 0.50977343 +93 953.865 957.7425000000001 1000 50 0.9667327 +94 957.7425 961.62 1000 50 0.99900323 +95 961.62 965.4975000000001 1000 50 0.9992836 +96 965.4975 969.375 1000 50 1.0 +97 969.375 973.2525 1000 50 0.6177866 +98 973.2525 977.1300000000001 1000 50 1.0 +99 977.13 981.0075 1000 50 0.9960706 +100 981.0075 984.8850000000001 1000 50 0.8944311 +101 984.885 988.7625 1000 50 0.9972101 +102 988.7625 992.6400000000001 1000 50 0.9997594 +103 992.64 996.5175 1000 50 0.9999995 +104 996.5175 1000.3950000000001 1000 50 0.99813986 +105 1000.395 1004.2725 1000 50 1.0 +106 1004.2725 1008.1500000000001 1000 50 0.99824023 +107 1008.15 1012.0275 1000 50 0.9997042 +108 1012.0275 1015.9050000000001 1000 50 1.0 +109 1015.905 1019.7825 1000 50 0.9999999 +110 1019.7825 1023.6600000000001 1000 50 0.99999976 +111 1023.66 1027.5375 1000 50 1.0 +112 1027.5375 1031.415 1000 50 0.99980885 +113 1031.415 1035.2925 1000 50 0.9999926 +114 1035.2925 1039.17 1000 50 0.99852645 +115 1039.17 1043.0475000000001 1000 50 1.0 +116 1043.0475 1046.925 1000 50 0.99997604 +117 1046.925 1050.8025 1000 50 0.9999753 +118 1050.8025 1054.68 1000 50 0.99999964 +119 1054.68 1058.5575000000001 1000 50 0.59802157 +120 1058.5575 1062.435 1000 50 1.0 +121 1062.435 1066.3125 1000 50 0.99999976 +122 1066.3125 1070.19 1000 50 0.99999917 +123 1070.19 1074.0675 1000 50 1.0 +124 1074.0675 1077.9450000000002 1000 50 0.99973804 +125 1077.945 1081.8225 1000 50 0.9999871 +126 1081.8225 1085.7 1000 50 0.99999225 +127 1085.7 1089.5775 1000 50 0.999998 +128 1089.5775 1093.4550000000002 1000 50 1.0 +129 1093.455 1097.3325 1000 50 0.9998982 +130 1097.3325 1101.21 1000 50 0.99999833 +131 1101.21 1105.0875 1000 50 0.99999964 +132 1105.0875 1108.9650000000001 1000 50 0.9976271 +133 1108.965 1112.8425 1000 50 0.9999964 +134 1112.8425 1116.72 1000 50 1.0 +135 1116.72 1120.5975 1000 50 0.9976688 +136 1120.5975 1124.4750000000001 1000 50 0.9996649 +137 1124.475 1128.3525 1000 50 0.99999976 +138 1128.3525 1132.23 1000 50 0.99999666 +139 1132.23 1136.1075 1000 50 0.99524057 +140 1136.1075 1139.9850000000001 1000 50 0.9999989 +141 1139.985 1143.8625 1000 50 0.999984 +142 1143.8625 1147.74 1000 50 0.9999976 +143 1147.74 1151.6175 1000 50 0.99999535 +144 1151.6175 1155.4950000000001 1000 50 0.9999956 +145 1155.495 1159.3725 1000 50 0.9999963 +146 1159.3725 1163.25 1000 50 0.9999919 +147 1163.25 1167.1275 1000 50 0.9999982 +148 1167.1275 1171.005 1000 50 0.99988604 +149 1171.005 1174.8825000000002 1000 50 0.9992429 +150 1174.8825 1178.76 1000 50 0.9967924 +151 1178.76 1182.6375 1000 50 0.99513865 +152 1182.6375 1186.515 1000 50 0.9999796 +153 1186.515 1190.3925000000002 1000 50 0.9998766 +154 1190.3925 1194.27 1000 50 0.9999589 +155 1194.27 1198.1475 1000 50 0.99997437 +156 1198.1475 1202.025 1000 50 0.96714145 +157 1202.025 1205.9025000000001 1000 50 0.9999789 +158 1205.9025 1209.78 1000 50 0.9996855 +159 1209.78 1213.6575 1000 50 0.99986506 +160 1213.6575 1217.535 1000 50 0.9999999 +161 1217.535 1221.4125000000001 1000 50 0.99924266 +162 1221.4125 1225.29 1000 50 0.99833137 +163 1225.29 1229.1675 1000 50 0.99993086 +164 1229.1675 1233.045 1000 50 0.9999833 +165 1233.045 1236.9225000000001 1000 50 0.99840873 +166 1236.9225 1240.8 1000 50 0.99975723 +167 1240.8 1244.6775 1000 50 0.99987984 +168 1244.6775 1248.555 1000 50 0.9999583 +169 1248.555 1252.4325000000001 1000 50 0.9954211 +170 1252.4325 1256.31 1000 50 0.99719965 +171 1256.31 1260.1875 1000 50 0.99981076 +172 1260.1875 1264.065 1000 50 0.99998856 +173 1264.065 1267.9425 1000 50 0.56903744 +174 1267.9425 1271.8200000000002 1000 50 0.90067697 +175 1271.82 1275.6975 1000 50 0.98022103 +176 1275.6975 1279.575 1000 50 0.77534324 +177 1283.4525 1287.3300000000002 1000 50 0.70572436 +178 1295.085 1298.9625 1000 50 0.87113017 +179 1310.595 1314.4725 1000 50 0.6482407 +180 1322.2275 1326.105 1000 50 0.8277763 +181 1326.105 1329.9825 1000 50 0.5421029 +182 1333.86 1337.7375 1000 50 0.83676654 +183 1345.4925 1349.3700000000001 1000 50 0.58459276 +184 1357.125 1361.0025 1000 50 0.85180455 +185 1361.0025 1364.88 1000 50 0.5965489 +186 1372.635 1376.5125 1000 50 0.54484004 +187 1376.5125 1380.39 1000 50 0.6271159 +188 1380.39 1384.2675000000002 1000 50 0.6343271 +189 1384.2675 1388.145 1000 50 0.6373366 +190 1388.145 1392.0225 1000 50 0.74640834 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_22-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_22-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5d3b4f68fc2770ef4e9b4134386d2308fb683301 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_22-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,56 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99999714 +2 3.8775 7.755 1000 50 0.9999999 +3 11.6325 15.51 1000 50 0.9999995 +4 15.51 19.3875 1000 50 0.9999956 +5 19.3875 23.265 1000 50 0.9999138 +6 23.265 27.142500000000002 1000 50 1.0 +7 27.1425 31.02 1000 50 0.9999988 +8 31.02 34.8975 1000 50 0.9999988 +9 34.8975 38.775 1000 50 1.0 +10 38.775 42.652499999999996 1000 50 0.9999094 +11 42.6525 46.53 1000 50 0.9950618 +12 46.53 50.4075 1000 50 0.9999819 +13 50.4075 54.285 1000 50 0.99999595 +14 54.285 58.162499999999994 1000 50 0.99611264 +15 58.1625 62.04 1000 50 0.9999999 +16 62.04 65.9175 1000 50 0.99999917 +17 65.9175 69.795 1000 50 0.805195 +18 69.795 73.6725 1000 50 1.0 +19 73.6725 77.55 1000 50 0.99999964 +20 77.55 81.4275 1000 50 0.99997866 +21 81.4275 85.30499999999999 1000 50 0.99999976 +22 85.305 89.1825 1000 50 0.9999938 +23 89.1825 93.06 1000 50 0.99997354 +24 93.06 96.9375 1000 50 0.91263384 +25 96.9375 100.815 1000 50 0.9999876 +26 100.815 104.6925 1000 50 1.0 +27 104.6925 108.57 1000 50 0.9998466 +28 108.57 112.44749999999999 1000 50 1.0 +29 112.4475 116.325 1000 50 0.99994767 +30 116.325 120.2025 1000 50 1.0 +31 120.2025 124.08 1000 50 0.9999995 +32 124.08 127.9575 1000 50 0.9999956 +33 127.9575 131.835 1000 50 0.9999831 +34 131.835 135.7125 1000 50 0.9994087 +35 135.7125 139.59 1000 50 1.0 +36 139.59 143.4675 1000 50 0.99999666 +37 143.4675 147.345 1000 50 0.9999988 +38 147.345 151.2225 1000 50 0.99999785 +39 151.2225 155.1 1000 50 0.99999917 +40 155.1 158.9775 1000 50 0.99991393 +41 158.9775 162.855 1000 50 0.9999976 +42 162.855 166.7325 1000 50 0.9999995 +43 166.7325 170.60999999999999 1000 50 0.9999467 +44 170.61 174.4875 1000 50 0.999966 +45 174.4875 178.365 1000 50 1.0 +46 178.365 182.2425 1000 50 1.0 +47 182.2425 186.12 1000 50 0.999998 +48 186.12 189.9975 1000 50 0.999997 +49 189.9975 193.875 1000 50 0.8019665 +50 193.875 197.7525 1000 50 0.99996805 +51 197.7525 201.63 1000 50 0.99996316 +52 201.63 205.5075 1000 50 0.9999962 +53 205.5075 209.385 1000 50 0.9999975 +54 209.385 213.2625 1000 50 0.99884844 +55 213.2625 217.14 1000 50 0.98639697 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_22-07-12_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_22-07-12_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5717aa2084c635d76864585a4076058a5489f926 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_22-07-12_annot_2022-11-30_01.txt @@ -0,0 +1,247 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9791564 +2 3.8775 7.755 1000 50 0.8365484 +3 7.755 11.6325 1000 50 0.99989915 +4 11.6325 15.51 1000 50 0.63561237 +5 15.51 19.3875 1000 50 0.9510521 +6 19.3875 23.265 1000 50 0.9964742 +7 46.53 50.4075 1000 50 0.54321444 +8 54.285 58.162499999999994 1000 50 0.9731712 +9 62.04 65.9175 1000 50 0.9998902 +10 65.9175 69.795 1000 50 0.9705447 +11 69.795 73.6725 1000 50 0.9995552 +12 73.6725 77.55 1000 50 0.9526066 +13 77.55 81.4275 1000 50 0.97272384 +14 81.4275 85.30499999999999 1000 50 0.9473786 +15 85.305 89.1825 1000 50 0.9999999 +16 89.1825 93.06 1000 50 0.9606147 +17 93.06 96.9375 1000 50 0.999899 +18 96.9375 100.815 1000 50 0.99994814 +19 100.815 104.6925 1000 50 0.99999654 +20 104.6925 108.57 1000 50 0.99616736 +21 108.57 112.44749999999999 1000 50 0.99998677 +22 112.4475 116.325 1000 50 0.9978563 +23 116.325 120.2025 1000 50 0.9822995 +24 120.2025 124.08 1000 50 0.5111971 +25 124.08 127.9575 1000 50 0.99982566 +26 127.9575 131.835 1000 50 0.63591653 +27 131.835 135.7125 1000 50 0.9604592 +28 135.7125 139.59 1000 50 0.9999976 +29 139.59 143.4675 1000 50 0.56894374 +30 143.4675 147.345 1000 50 0.99998426 +31 147.345 151.2225 1000 50 0.9996387 +32 151.2225 155.1 1000 50 0.95439833 +33 155.1 158.9775 1000 50 0.9999999 +34 158.9775 162.855 1000 50 0.99934834 +35 162.855 166.7325 1000 50 0.75488204 +36 166.7325 170.60999999999999 1000 50 0.99998367 +37 170.61 174.4875 1000 50 0.99990594 +38 174.4875 178.365 1000 50 0.5741037 +39 178.365 182.2425 1000 50 0.99963725 +40 182.2425 186.12 1000 50 0.99999654 +41 186.12 189.9975 1000 50 0.9735083 +42 189.9975 193.875 1000 50 1.0 +43 193.875 197.7525 1000 50 0.9999199 +44 197.7525 201.63 1000 50 0.99997294 +45 201.63 205.5075 1000 50 0.9996233 +46 205.5075 209.385 1000 50 0.99999905 +47 209.385 213.2625 1000 50 0.99999964 +48 213.2625 217.14 1000 50 0.99298966 +49 217.14 221.01749999999998 1000 50 0.99999976 +50 221.0175 224.895 1000 50 0.9999982 +51 224.895 228.7725 1000 50 0.99999666 +52 228.7725 232.65 1000 50 0.9995827 +53 232.65 236.5275 1000 50 0.99999964 +54 236.5275 240.405 1000 50 0.99899834 +55 240.405 244.2825 1000 50 0.99947375 +56 244.2825 248.16 1000 50 0.9998914 +57 248.16 252.0375 1000 50 0.9879127 +58 252.0375 255.915 1000 50 0.9999199 +59 255.915 259.7925 1000 50 0.9999769 +60 259.7925 263.67 1000 50 0.9995726 +61 263.67 267.5475 1000 50 0.9999907 +62 267.5475 271.425 1000 50 0.9841658 +63 271.425 275.3025 1000 50 0.99999833 +64 275.3025 279.18 1000 50 0.9999895 +65 279.18 283.0575 1000 50 0.99970514 +66 283.0575 286.935 1000 50 0.99960965 +67 286.935 290.8125 1000 50 0.9999722 +68 290.8125 294.69 1000 50 0.999411 +69 294.69 298.5675 1000 50 0.99931335 +70 302.445 306.3225 1000 50 0.9999492 +71 306.3225 310.2 1000 50 0.99999976 +72 310.2 314.0775 1000 50 0.999987 +73 314.0775 317.955 1000 50 1.0 +74 317.955 321.8325 1000 50 0.9995055 +75 321.8325 325.71 1000 50 0.99997747 +76 325.71 329.5875 1000 50 0.7293098 +77 329.5875 333.465 1000 50 0.99999833 +78 333.465 337.3425 1000 50 0.999998 +79 337.3425 341.21999999999997 1000 50 0.9999931 +80 341.22 345.0975 1000 50 1.0 +81 345.0975 348.975 1000 50 0.98415715 +82 348.975 352.8525 1000 50 0.9747883 +83 352.8525 356.73 1000 50 0.9997334 +84 356.73 360.6075 1000 50 0.99999964 +85 360.6075 364.485 1000 50 0.9999994 +86 364.485 368.3625 1000 50 0.99998844 +87 368.3625 372.24 1000 50 0.9991972 +88 372.24 376.1175 1000 50 0.995413 +89 376.1175 379.995 1000 50 1.0 +90 379.995 383.8725 1000 50 1.0 +91 383.8725 387.75 1000 50 0.9999938 +92 387.75 391.6275 1000 50 1.0 +93 391.6275 395.505 1000 50 0.9884095 +94 395.505 399.3825 1000 50 0.9937915 +95 399.3825 403.26 1000 50 0.9991111 +96 403.26 407.1375 1000 50 0.9992048 +97 407.1375 411.015 1000 50 0.999974 +98 411.015 414.8925 1000 50 0.9999969 +99 414.8925 418.77 1000 50 0.99999905 +100 418.77 422.6475 1000 50 0.99999547 +101 422.6475 426.525 1000 50 0.8677544 +102 426.525 430.4025 1000 50 0.99999774 +103 430.4025 434.28 1000 50 0.97328305 +104 434.28 438.15749999999997 1000 50 0.99994874 +105 438.1575 442.035 1000 50 0.99970716 +106 442.035 445.9125 1000 50 0.99995255 +107 445.9125 449.79 1000 50 0.99363965 +108 449.79 453.6675 1000 50 0.9901265 +109 453.6675 457.545 1000 50 0.9997019 +110 457.545 461.4225 1000 50 0.9993629 +111 461.4225 465.3 1000 50 0.99833614 +112 465.3 469.1775 1000 50 0.9999875 +113 469.1775 473.055 1000 50 0.99945706 +114 473.055 476.9325 1000 50 0.99982005 +115 476.9325 480.81 1000 50 0.9999888 +116 480.81 484.6875 1000 50 0.99480987 +117 484.6875 488.565 1000 50 0.99986064 +118 488.565 492.4425 1000 50 0.99992454 +119 492.4425 496.32 1000 50 0.9999795 +120 496.32 500.1975 1000 50 0.99756986 +121 500.1975 504.075 1000 50 0.99996936 +122 504.075 507.9525 1000 50 0.9999722 +123 507.9525 511.83 1000 50 0.99719584 +124 511.83 515.7075 1000 50 0.99999547 +125 515.7075 519.585 1000 50 0.9999931 +126 519.585 523.4625000000001 1000 50 0.9999461 +127 527.34 531.2175000000001 1000 50 0.9997478 +128 531.2175 535.095 1000 50 0.9933698 +129 535.095 538.9725000000001 1000 50 0.99747014 +130 538.9725 542.85 1000 50 0.9478481 +131 546.7275 550.605 1000 50 0.7642124 +132 550.605 554.4825000000001 1000 50 0.71673906 +133 566.115 569.9925000000001 1000 50 0.59158653 +134 577.7475 581.625 1000 50 0.5816977 +135 581.625 585.5025 1000 50 0.98590475 +136 589.38 593.2575 1000 50 0.7933946 +137 593.2575 597.1350000000001 1000 50 0.82944125 +138 597.135 601.0125 1000 50 0.6820984 +139 601.0125 604.8900000000001 1000 50 0.9517316 +140 612.645 616.5225 1000 50 0.8829325 +141 620.4 624.2775 1000 50 0.5632994 +142 647.5425 651.4200000000001 1000 50 0.6984744 +143 651.42 655.2975 1000 50 0.7259787 +144 655.2975 659.1750000000001 1000 50 0.5593508 +145 663.0525 666.9300000000001 1000 50 0.8114648 +146 670.8075 674.6850000000001 1000 50 0.670067 +147 674.685 678.5625 1000 50 0.9970693 +148 678.5625 682.44 1000 50 0.99413514 +149 682.44 686.3175000000001 1000 50 0.95232165 +150 686.3175 690.195 1000 50 0.6209443 +151 697.95 701.8275000000001 1000 50 0.9455267 +152 701.8275 705.705 1000 50 0.64436704 +153 705.705 709.5825000000001 1000 50 0.99959487 +154 709.5825 713.46 1000 50 0.99685824 +155 713.46 717.3375000000001 1000 50 0.845221 +156 717.3375 721.215 1000 50 0.99975544 +157 721.215 725.0925000000001 1000 50 0.91347677 +158 725.0925 728.97 1000 50 0.9940118 +159 728.97 732.8475000000001 1000 50 0.96632963 +160 732.8475 736.725 1000 50 0.5593457 +161 736.725 740.6025000000001 1000 50 0.9998708 +162 740.6025 744.48 1000 50 0.99963343 +163 744.48 748.3575000000001 1000 50 0.70818913 +164 748.3575 752.235 1000 50 0.9999063 +165 752.235 756.1125000000001 1000 50 0.9999987 +166 756.1125 759.99 1000 50 0.9998367 +167 759.99 763.8675000000001 1000 50 0.99999917 +168 763.8675 767.745 1000 50 0.9999999 +169 767.745 771.6225000000001 1000 50 0.99999225 +170 771.6225 775.5 1000 50 0.99801207 +171 775.5 779.3775 1000 50 0.99971277 +172 779.3775 783.2550000000001 1000 50 0.9999732 +173 783.255 787.1325 1000 50 0.9999888 +174 787.1325 791.0100000000001 1000 50 0.98211724 +175 791.01 794.8875 1000 50 1.0 +176 794.8875 798.7650000000001 1000 50 0.99606174 +177 798.765 802.6425 1000 50 0.9961272 +178 802.6425 806.5200000000001 1000 50 0.9998834 +179 806.52 810.3975 1000 50 0.99998605 +180 810.3975 814.2750000000001 1000 50 0.9999982 +181 814.275 818.1525 1000 50 0.9982135 +182 818.1525 822.0300000000001 1000 50 0.991795 +183 822.03 825.9075 1000 50 1.0 +184 825.9075 829.7850000000001 1000 50 0.99966717 +185 829.785 833.6625 1000 50 0.99991775 +186 833.6625 837.5400000000001 1000 50 0.9999999 +187 837.54 841.4175 1000 50 0.9999287 +188 841.4175 845.2950000000001 1000 50 0.9962871 +189 845.295 849.1725 1000 50 0.9994941 +190 849.1725 853.0500000000001 1000 50 1.0 +191 853.05 856.9275 1000 50 0.9989096 +192 856.9275 860.8050000000001 1000 50 0.99893147 +193 860.805 864.6825 1000 50 0.99981517 +194 864.6825 868.5600000000001 1000 50 1.0 +195 868.56 872.4375 1000 50 0.9998622 +196 872.4375 876.315 1000 50 1.0 +197 880.1925 884.07 1000 50 1.0 +198 884.07 887.9475000000001 1000 50 0.9996474 +199 887.9475 891.825 1000 50 0.9998883 +200 891.825 895.7025000000001 1000 50 0.9999993 +201 895.7025 899.58 1000 50 0.99998784 +202 899.58 903.4575000000001 1000 50 0.99994874 +203 903.4575 907.335 1000 50 0.8458631 +204 907.335 911.2125000000001 1000 50 1.0 +205 911.2125 915.09 1000 50 0.99771297 +206 915.09 918.9675000000001 1000 50 0.9999956 +207 918.9675 922.845 1000 50 1.0 +208 922.845 926.7225000000001 1000 50 0.9998234 +209 926.7225 930.6 1000 50 0.99999976 +210 930.6 934.4775000000001 1000 50 0.99938464 +211 934.4775 938.355 1000 50 0.9999156 +212 938.355 942.2325000000001 1000 50 0.9998809 +213 942.2325 946.11 1000 50 0.9993901 +214 946.11 949.9875000000001 1000 50 0.99998784 +215 949.9875 953.865 1000 50 0.9999999 +216 953.865 957.7425000000001 1000 50 0.9924935 +217 957.7425 961.62 1000 50 1.0 +218 961.62 965.4975000000001 1000 50 0.9999813 +219 965.4975 969.375 1000 50 0.99999964 +220 969.375 973.2525 1000 50 0.99999464 +221 973.2525 977.1300000000001 1000 50 0.999749 +222 977.13 981.0075 1000 50 1.0 +223 981.0075 984.8850000000001 1000 50 0.99999857 +224 984.885 988.7625 1000 50 0.99866414 +225 988.7625 992.6400000000001 1000 50 1.0 +226 992.64 996.5175 1000 50 0.9264598 +227 996.5175 1000.3950000000001 1000 50 1.0 +228 1000.395 1004.2725 1000 50 0.9999982 +229 1004.2725 1008.1500000000001 1000 50 0.9999999 +230 1008.15 1012.0275 1000 50 1.0 +231 1012.0275 1015.9050000000001 1000 50 0.9996804 +232 1015.905 1019.7825 1000 50 0.9999999 +233 1019.7825 1023.6600000000001 1000 50 0.937267 +234 1023.66 1027.5375 1000 50 0.99999917 +235 1027.5375 1031.415 1000 50 0.99539655 +236 1031.415 1035.2925 1000 50 1.0 +237 1035.2925 1039.17 1000 50 0.9999838 +238 1039.17 1043.0475000000001 1000 50 0.9998796 +239 1043.0475 1046.925 1000 50 0.9999188 +240 1046.925 1050.8025 1000 50 0.9999871 +241 1050.8025 1054.68 1000 50 1.0 +242 1054.68 1058.5575000000001 1000 50 0.9948343 +243 1058.5575 1062.435 1000 50 0.99996674 +244 1062.435 1066.3125 1000 50 0.9808879 +245 1066.3125 1070.19 1000 50 0.9999865 +246 1070.19 1074.0675 1000 50 0.9995988 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_23-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_23-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..dd1c49918de8e07245900b0060e2a3712d39ebf8 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_23-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,113 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.7811349 +2 3.8775 7.755 1000 50 0.50289464 +3 11.6325 15.51 1000 50 0.65189475 +4 15.51 19.3875 1000 50 0.7175768 +5 31.02 34.8975 1000 50 0.6922985 +6 54.285 58.162499999999994 1000 50 0.77801305 +7 58.1625 62.04 1000 50 0.5038498 +8 65.9175 69.795 1000 50 0.8099962 +9 81.4275 85.30499999999999 1000 50 0.6696738 +10 89.1825 93.06 1000 50 0.7053167 +11 93.06 96.9375 1000 50 0.54137385 +12 112.4475 116.325 1000 50 0.77124506 +13 120.2025 124.08 1000 50 0.56811553 +14 143.4675 147.345 1000 50 0.9689372 +15 147.345 151.2225 1000 50 0.8511537 +16 151.2225 155.1 1000 50 0.99857795 +17 155.1 158.9775 1000 50 0.72968715 +18 158.9775 162.855 1000 50 0.99260837 +19 162.855 166.7325 1000 50 0.99999833 +20 166.7325 170.60999999999999 1000 50 0.92007124 +21 170.61 174.4875 1000 50 0.9999362 +22 174.4875 178.365 1000 50 0.73901826 +23 178.365 182.2425 1000 50 0.9886354 +24 182.2425 186.12 1000 50 0.5468086 +25 186.12 189.9975 1000 50 0.9999783 +26 189.9975 193.875 1000 50 0.99985385 +27 193.875 197.7525 1000 50 0.9999908 +28 197.7525 201.63 1000 50 0.7259136 +29 201.63 205.5075 1000 50 0.9999995 +30 205.5075 209.385 1000 50 1.0 +31 209.385 213.2625 1000 50 0.75443816 +32 213.2625 217.14 1000 50 1.0 +33 217.14 221.01749999999998 1000 50 0.9710594 +34 221.0175 224.895 1000 50 0.99999774 +35 224.895 228.7725 1000 50 0.9757968 +36 232.65 236.5275 1000 50 0.9997055 +37 236.5275 240.405 1000 50 0.9999931 +38 240.405 244.2825 1000 50 0.97164774 +39 244.2825 248.16 1000 50 0.99999464 +40 248.16 252.0375 1000 50 0.9979475 +41 255.915 259.7925 1000 50 0.9997749 +42 259.7925 263.67 1000 50 0.99999964 +43 263.67 267.5475 1000 50 0.99998796 +44 267.5475 271.425 1000 50 0.9995561 +45 271.425 275.3025 1000 50 0.9999937 +46 275.3025 279.18 1000 50 0.99999404 +47 279.18 283.0575 1000 50 0.99847895 +48 283.0575 286.935 1000 50 0.5341377 +49 286.935 290.8125 1000 50 1.0 +50 290.8125 294.69 1000 50 0.99975437 +51 294.69 298.5675 1000 50 0.96317357 +52 298.5675 302.445 1000 50 0.992276 +53 302.445 306.3225 1000 50 0.9999794 +54 306.3225 310.2 1000 50 1.0 +55 310.2 314.0775 1000 50 0.9999249 +56 314.0775 317.955 1000 50 0.9998354 +57 317.955 321.8325 1000 50 0.9999999 +58 321.8325 325.71 1000 50 1.0 +59 325.71 329.5875 1000 50 0.9986577 +60 329.5875 333.465 1000 50 1.0 +61 333.465 337.3425 1000 50 0.9999912 +62 337.3425 341.21999999999997 1000 50 0.9999753 +63 341.22 345.0975 1000 50 0.9999949 +64 345.0975 348.975 1000 50 0.9999956 +65 348.975 352.8525 1000 50 1.0 +66 352.8525 356.73 1000 50 0.99999976 +67 356.73 360.6075 1000 50 0.9699496 +68 360.6075 364.485 1000 50 0.9999995 +69 364.485 368.3625 1000 50 0.9999999 +70 368.3625 372.24 1000 50 0.9999894 +71 372.24 376.1175 1000 50 1.0 +72 376.1175 379.995 1000 50 0.99993515 +73 379.995 383.8725 1000 50 1.0 +74 383.8725 387.75 1000 50 0.9999665 +75 387.75 391.6275 1000 50 0.99999785 +76 391.6275 395.505 1000 50 0.9999976 +77 395.505 399.3825 1000 50 0.99970883 +78 399.3825 403.26 1000 50 0.99999654 +79 403.26 407.1375 1000 50 0.999987 +80 407.1375 411.015 1000 50 1.0 +81 411.015 414.8925 1000 50 0.9999913 +82 414.8925 418.77 1000 50 1.0 +83 418.77 422.6475 1000 50 0.9999982 +84 422.6475 426.525 1000 50 1.0 +85 426.525 430.4025 1000 50 0.99999845 +86 430.4025 434.28 1000 50 1.0 +87 434.28 438.15749999999997 1000 50 1.0 +88 438.1575 442.035 1000 50 0.99999833 +89 442.035 445.9125 1000 50 1.0 +90 445.9125 449.79 1000 50 0.9999974 +91 449.79 453.6675 1000 50 0.9999994 +92 453.6675 457.545 1000 50 0.989479 +93 457.545 461.4225 1000 50 1.0 +94 461.4225 465.3 1000 50 0.9998932 +95 465.3 469.1775 1000 50 0.9999995 +96 469.1775 473.055 1000 50 1.0 +97 473.055 476.9325 1000 50 1.0 +98 476.9325 480.81 1000 50 1.0 +99 480.81 484.6875 1000 50 0.99999213 +100 484.6875 488.565 1000 50 1.0 +101 488.565 492.4425 1000 50 0.9960139 +102 492.4425 496.32 1000 50 1.0 +103 496.32 500.1975 1000 50 1.0 +104 500.1975 504.075 1000 50 0.9997464 +105 504.075 507.9525 1000 50 0.99999905 +106 507.9525 511.83 1000 50 0.9928308 +107 511.83 515.7075 1000 50 1.0 +108 515.7075 519.585 1000 50 0.99979466 +109 519.585 523.4625000000001 1000 50 0.9999974 +110 523.4625 527.34 1000 50 0.9995963 +111 527.34 531.2175000000001 1000 50 0.9999957 +112 531.2175 535.095 1000 50 0.9994411 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_23-12-30_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_23-12-30_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..889fdd9ee6325174a1659791a49ffb1e83f5e7b0 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-10_2kHz/channelA_2021-03-10_23-12-30_annot_2022-11-30_01.txt @@ -0,0 +1,138 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.59051985 +2 15.51 19.3875 1000 50 0.54955405 +3 19.3875 23.265 1000 50 0.68184584 +4 58.1625 62.04 1000 50 0.64704156 +5 62.04 65.9175 1000 50 0.5103318 +6 77.55 81.4275 1000 50 0.8032373 +7 85.305 89.1825 1000 50 0.6029361 +8 93.06 96.9375 1000 50 0.69513017 +9 116.325 120.2025 1000 50 0.6487573 +10 120.2025 124.08 1000 50 0.85999036 +11 124.08 127.9575 1000 50 0.87618285 +12 127.9575 131.835 1000 50 0.8197157 +13 131.835 135.7125 1000 50 0.5500938 +14 135.7125 139.59 1000 50 0.5900499 +15 151.2225 155.1 1000 50 0.9975067 +16 155.1 158.9775 1000 50 0.8305542 +17 170.61 174.4875 1000 50 0.5460508 +18 174.4875 178.365 1000 50 0.5162681 +19 182.2425 186.12 1000 50 0.65725577 +20 189.9975 193.875 1000 50 0.9517282 +21 193.875 197.7525 1000 50 0.99687093 +22 197.7525 201.63 1000 50 0.9999914 +23 201.63 205.5075 1000 50 0.9945897 +24 205.5075 209.385 1000 50 0.99999607 +25 209.385 213.2625 1000 50 0.97543406 +26 213.2625 217.14 1000 50 0.9995191 +27 217.14 221.01749999999998 1000 50 0.9999801 +28 221.0175 224.895 1000 50 0.9999949 +29 224.895 228.7725 1000 50 0.99484324 +30 228.7725 232.65 1000 50 0.99999976 +31 236.5275 240.405 1000 50 0.99992394 +32 240.405 244.2825 1000 50 0.94210696 +33 244.2825 248.16 1000 50 0.9999925 +34 248.16 252.0375 1000 50 0.9998826 +35 252.0375 255.915 1000 50 0.9988651 +36 255.915 259.7925 1000 50 0.99999595 +37 263.67 267.5475 1000 50 0.9890338 +38 267.5475 271.425 1000 50 0.9996582 +39 275.3025 279.18 1000 50 0.99988365 +40 279.18 283.0575 1000 50 0.99994195 +41 286.935 290.8125 1000 50 0.99971 +42 290.8125 294.69 1000 50 0.999967 +43 298.5675 302.445 1000 50 0.99999726 +44 306.3225 310.2 1000 50 0.99999654 +45 310.2 314.0775 1000 50 0.9999471 +46 314.0775 317.955 1000 50 0.9720082 +47 317.955 321.8325 1000 50 0.9999994 +48 321.8325 325.71 1000 50 0.9999976 +49 325.71 329.5875 1000 50 0.81308156 +50 329.5875 333.465 1000 50 0.99977344 +51 333.465 337.3425 1000 50 0.7481765 +52 337.3425 341.21999999999997 1000 50 0.99846184 +53 341.22 345.0975 1000 50 0.99999774 +54 348.975 352.8525 1000 50 0.9955972 +55 352.8525 356.73 1000 50 0.9977992 +56 356.73 360.6075 1000 50 1.0 +57 360.6075 364.485 1000 50 0.9999993 +58 364.485 368.3625 1000 50 0.99680173 +59 368.3625 372.24 1000 50 0.9996761 +60 372.24 376.1175 1000 50 0.9992361 +61 376.1175 379.995 1000 50 0.9999999 +62 379.995 383.8725 1000 50 0.9999958 +63 383.8725 387.75 1000 50 1.0 +64 387.75 391.6275 1000 50 1.0 +65 391.6275 395.505 1000 50 0.99119496 +66 395.505 399.3825 1000 50 0.9829307 +67 399.3825 403.26 1000 50 0.9696745 +68 403.26 407.1375 1000 50 1.0 +69 407.1375 411.015 1000 50 1.0 +70 411.015 414.8925 1000 50 0.83636326 +71 414.8925 418.77 1000 50 1.0 +72 418.77 422.6475 1000 50 0.99872595 +73 422.6475 426.525 1000 50 0.9999993 +74 426.525 430.4025 1000 50 1.0 +75 430.4025 434.28 1000 50 0.9997763 +76 434.28 438.15749999999997 1000 50 1.0 +77 438.1575 442.035 1000 50 0.9999893 +78 442.035 445.9125 1000 50 0.9999534 +79 445.9125 449.79 1000 50 0.9994479 +80 449.79 453.6675 1000 50 0.99944013 +81 453.6675 457.545 1000 50 1.0 +82 457.545 461.4225 1000 50 0.9997004 +83 461.4225 465.3 1000 50 1.0 +84 465.3 469.1775 1000 50 0.99999917 +85 469.1775 473.055 1000 50 0.9997913 +86 473.055 476.9325 1000 50 0.99983525 +87 476.9325 480.81 1000 50 0.9979165 +88 480.81 484.6875 1000 50 0.99990094 +89 484.6875 488.565 1000 50 0.9999423 +90 488.565 492.4425 1000 50 0.99695206 +91 492.4425 496.32 1000 50 0.9997912 +92 496.32 500.1975 1000 50 0.9942006 +93 500.1975 504.075 1000 50 0.9977133 +94 504.075 507.9525 1000 50 0.99998736 +95 507.9525 511.83 1000 50 0.9986512 +96 511.83 515.7075 1000 50 0.99994504 +97 523.4625 527.34 1000 50 0.9999641 +98 527.34 531.2175000000001 1000 50 0.9921927 +99 531.2175 535.095 1000 50 0.9999844 +100 535.095 538.9725000000001 1000 50 0.99994123 +101 538.9725 542.85 1000 50 0.99852055 +102 542.85 546.7275000000001 1000 50 0.99563074 +103 546.7275 550.605 1000 50 0.9999845 +104 550.605 554.4825000000001 1000 50 0.9999937 +105 554.4825 558.36 1000 50 0.9999993 +106 558.36 562.2375000000001 1000 50 0.9942211 +107 562.2375 566.115 1000 50 0.999964 +108 566.115 569.9925000000001 1000 50 0.9999181 +109 569.9925 573.87 1000 50 0.9999993 +110 573.87 577.7475000000001 1000 50 0.9990895 +111 577.7475 581.625 1000 50 0.99999976 +112 581.625 585.5025 1000 50 0.99997246 +113 585.5025 589.3800000000001 1000 50 0.998621 +114 589.38 593.2575 1000 50 0.9999994 +115 593.2575 597.1350000000001 1000 50 0.99907434 +116 597.135 601.0125 1000 50 0.9999999 +117 601.0125 604.8900000000001 1000 50 0.9975873 +118 608.7675 612.6450000000001 1000 50 0.84636956 +119 620.4 624.2775 1000 50 0.8970737 +120 628.155 632.0325 1000 50 0.7829365 +121 632.0325 635.9100000000001 1000 50 0.51993746 +122 635.91 639.7875 1000 50 0.6954366 +123 639.7875 643.6650000000001 1000 50 0.96639687 +124 647.5425 651.4200000000001 1000 50 0.9073258 +125 651.42 655.2975 1000 50 0.99227285 +126 655.2975 659.1750000000001 1000 50 0.99439347 +127 663.0525 666.9300000000001 1000 50 0.8686593 +128 666.93 670.8075 1000 50 0.9145374 +129 678.5625 682.44 1000 50 0.97638446 +130 682.44 686.3175000000001 1000 50 0.83203346 +131 686.3175 690.195 1000 50 0.71089786 +132 694.0725 697.95 1000 50 0.73698324 +133 705.705 709.5825000000001 1000 50 0.98773545 +134 713.46 717.3375000000001 1000 50 0.61684114 +135 725.0925 728.97 1000 50 0.56090456 +136 728.97 732.8475000000001 1000 50 0.9634642 +137 748.3575 752.235 1000 50 0.9319665 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_00-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_00-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..cf3c64b2068e87f7b9b20ef94dfe4de371bea65d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_00-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,174 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.6071598 +2 3.8775 7.755 1000 50 0.62514585 +3 7.755 11.6325 1000 50 0.60978657 +4 11.6325 15.51 1000 50 0.7141496 +5 15.51 19.3875 1000 50 0.99922574 +6 19.3875 23.265 1000 50 0.99998176 +7 27.1425 31.02 1000 50 0.9999993 +8 31.02 34.8975 1000 50 0.950321 +9 38.775 42.652499999999996 1000 50 0.9999994 +10 42.6525 46.53 1000 50 0.7149196 +11 46.53 50.4075 1000 50 0.9999168 +12 50.4075 54.285 1000 50 0.999944 +13 54.285 58.162499999999994 1000 50 0.7508541 +14 58.1625 62.04 1000 50 0.99994576 +15 62.04 65.9175 1000 50 0.9999492 +16 69.795 73.6725 1000 50 0.9999157 +17 73.6725 77.55 1000 50 0.69369185 +18 81.4275 85.30499999999999 1000 50 0.9993467 +19 89.1825 93.06 1000 50 0.9971239 +20 93.06 96.9375 1000 50 0.9993093 +21 100.815 104.6925 1000 50 0.9999974 +22 104.6925 108.57 1000 50 0.94718623 +23 108.57 112.44749999999999 1000 50 0.8758043 +24 112.4475 116.325 1000 50 0.9998529 +25 116.325 120.2025 1000 50 0.9823178 +26 124.08 127.9575 1000 50 0.99999833 +27 127.9575 131.835 1000 50 0.99958473 +28 131.835 135.7125 1000 50 0.9999893 +29 135.7125 139.59 1000 50 0.5332149 +30 139.59 143.4675 1000 50 0.99997044 +31 143.4675 147.345 1000 50 0.89108706 +32 147.345 151.2225 1000 50 0.9999223 +33 151.2225 155.1 1000 50 0.99999857 +34 155.1 158.9775 1000 50 0.9994236 +35 158.9775 162.855 1000 50 1.0 +36 162.855 166.7325 1000 50 0.9999566 +37 166.7325 170.60999999999999 1000 50 0.9999038 +38 170.61 174.4875 1000 50 1.0 +39 174.4875 178.365 1000 50 0.9994093 +40 178.365 182.2425 1000 50 0.99999666 +41 186.12 189.9975 1000 50 0.99976903 +42 189.9975 193.875 1000 50 0.999997 +43 193.875 197.7525 1000 50 0.99999344 +44 197.7525 201.63 1000 50 1.0 +45 201.63 205.5075 1000 50 0.99978524 +46 205.5075 209.385 1000 50 0.8661728 +47 209.385 213.2625 1000 50 0.99999917 +48 213.2625 217.14 1000 50 0.99999964 +49 217.14 221.01749999999998 1000 50 0.9999987 +50 221.0175 224.895 1000 50 0.9999865 +51 224.895 228.7725 1000 50 0.99999857 +52 228.7725 232.65 1000 50 0.9999993 +53 232.65 236.5275 1000 50 0.9999987 +54 236.5275 240.405 1000 50 0.99999964 +55 240.405 244.2825 1000 50 0.99428445 +56 244.2825 248.16 1000 50 1.0 +57 248.16 252.0375 1000 50 0.99988604 +58 252.0375 255.915 1000 50 0.9999895 +59 255.915 259.7925 1000 50 0.9999411 +60 259.7925 263.67 1000 50 0.9999571 +61 263.67 267.5475 1000 50 1.0 +62 267.5475 271.425 1000 50 0.9999093 +63 271.425 275.3025 1000 50 0.99961346 +64 275.3025 279.18 1000 50 0.99999976 +65 279.18 283.0575 1000 50 0.9999765 +66 283.0575 286.935 1000 50 0.999995 +67 286.935 290.8125 1000 50 0.9999999 +68 290.8125 294.69 1000 50 0.99993336 +69 294.69 298.5675 1000 50 1.0 +70 298.5675 302.445 1000 50 0.99997187 +71 302.445 306.3225 1000 50 0.99999595 +72 306.3225 310.2 1000 50 0.9999838 +73 310.2 314.0775 1000 50 0.99998355 +74 314.0775 317.955 1000 50 1.0 +75 317.955 321.8325 1000 50 0.99859804 +76 321.8325 325.71 1000 50 0.99999833 +77 325.71 329.5875 1000 50 0.99999666 +78 329.5875 333.465 1000 50 0.999243 +79 333.465 337.3425 1000 50 1.0 +80 337.3425 341.21999999999997 1000 50 0.9999225 +81 341.22 345.0975 1000 50 0.99999523 +82 345.0975 348.975 1000 50 0.9999945 +83 348.975 352.8525 1000 50 0.99999964 +84 352.8525 356.73 1000 50 0.9999094 +85 356.73 360.6075 1000 50 0.9999927 +86 360.6075 364.485 1000 50 0.9983388 +87 364.485 368.3625 1000 50 0.99996054 +88 368.3625 372.24 1000 50 0.872132 +89 372.24 376.1175 1000 50 0.99939024 +90 376.1175 379.995 1000 50 0.9999933 +91 379.995 383.8725 1000 50 0.9999902 +92 383.8725 387.75 1000 50 0.9994542 +93 387.75 391.6275 1000 50 0.999974 +94 391.6275 395.505 1000 50 0.9998616 +95 395.505 399.3825 1000 50 0.57226676 +96 399.3825 403.26 1000 50 0.900215 +97 403.26 407.1375 1000 50 0.98917717 +98 407.1375 411.015 1000 50 0.9999964 +99 411.015 414.8925 1000 50 0.96089935 +100 414.8925 418.77 1000 50 0.99847656 +101 418.77 422.6475 1000 50 0.99999917 +102 422.6475 426.525 1000 50 0.9999194 +103 426.525 430.4025 1000 50 0.999572 +104 430.4025 434.28 1000 50 0.99994063 +105 434.28 438.15749999999997 1000 50 0.9908778 +106 438.1575 442.035 1000 50 0.9996805 +107 442.035 445.9125 1000 50 0.99837 +108 445.9125 449.79 1000 50 0.9996387 +109 449.79 453.6675 1000 50 0.99975044 +110 453.6675 457.545 1000 50 0.99998116 +111 457.545 461.4225 1000 50 0.9945351 +112 461.4225 465.3 1000 50 0.9999671 +113 465.3 469.1775 1000 50 0.99985385 +114 469.1775 473.055 1000 50 0.99995947 +115 473.055 476.9325 1000 50 0.9999682 +116 476.9325 480.81 1000 50 0.9999937 +117 480.81 484.6875 1000 50 0.9999912 +118 484.6875 488.565 1000 50 0.860689 +119 488.565 492.4425 1000 50 0.62865496 +120 492.4425 496.32 1000 50 0.7585859 +121 504.075 507.9525 1000 50 0.7521505 +122 515.7075 519.585 1000 50 0.5052261 +123 531.2175 535.095 1000 50 0.68012536 +124 535.095 538.9725000000001 1000 50 0.9407561 +125 550.605 554.4825000000001 1000 50 0.6232545 +126 554.4825 558.36 1000 50 0.9139671 +127 558.36 562.2375000000001 1000 50 0.5218094 +128 577.7475 581.625 1000 50 0.78923035 +129 585.5025 589.3800000000001 1000 50 0.6177536 +130 604.89 608.7675 1000 50 0.60291845 +131 620.4 624.2775 1000 50 0.5961924 +132 635.91 639.7875 1000 50 0.55513114 +133 643.665 647.5425 1000 50 0.850669 +134 670.8075 674.6850000000001 1000 50 0.9669299 +135 682.44 686.3175000000001 1000 50 0.9012904 +136 686.3175 690.195 1000 50 0.78691083 +137 694.0725 697.95 1000 50 0.5358041 +138 697.95 701.8275000000001 1000 50 0.64357936 +139 701.8275 705.705 1000 50 0.9553575 +140 709.5825 713.46 1000 50 0.9981121 +141 713.46 717.3375000000001 1000 50 0.9999902 +142 717.3375 721.215 1000 50 0.7690897 +143 721.215 725.0925000000001 1000 50 0.99964845 +144 725.0925 728.97 1000 50 0.984272 +145 732.8475 736.725 1000 50 1.0 +146 736.725 740.6025000000001 1000 50 0.9944278 +147 740.6025 744.48 1000 50 0.8226743 +148 744.48 748.3575000000001 1000 50 0.99997354 +149 748.3575 752.235 1000 50 0.8621902 +150 752.235 756.1125000000001 1000 50 0.99999964 +151 756.1125 759.99 1000 50 0.999998 +152 759.99 763.8675000000001 1000 50 0.8408227 +153 763.8675 767.745 1000 50 0.9997626 +154 767.745 771.6225000000001 1000 50 0.9976901 +155 771.6225 775.5 1000 50 0.58008045 +156 775.5 779.3775 1000 50 1.0 +157 783.255 787.1325 1000 50 0.99999416 +158 787.1325 791.0100000000001 1000 50 0.999938 +159 791.01 794.8875 1000 50 0.7336741 +160 794.8875 798.7650000000001 1000 50 0.9989662 +161 798.765 802.6425 1000 50 0.9951083 +162 802.6425 806.5200000000001 1000 50 0.7167165 +163 806.52 810.3975 1000 50 0.9999987 +164 810.3975 814.2750000000001 1000 50 0.9999391 +165 814.275 818.1525 1000 50 0.99998033 +166 818.1525 822.0300000000001 1000 50 0.99999917 +167 822.03 825.9075 1000 50 0.9990798 +168 825.9075 829.7850000000001 1000 50 0.9999769 +169 829.785 833.6625 1000 50 0.9999646 +170 833.6625 837.5400000000001 1000 50 0.75973666 +171 837.54 841.4175 1000 50 1.0 +172 841.4175 845.2950000000001 1000 50 0.98933804 +173 845.295 849.1725 1000 50 0.99995947 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_00-17-47_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_00-17-47_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..51ed1272fdffba21efb00f335f629051b3fc33a3 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_00-17-47_annot_2022-11-30_01.txt @@ -0,0 +1,88 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99808574 +2 3.8775 7.755 1000 50 0.9892616 +3 19.3875 23.265 1000 50 0.6752649 +4 23.265 27.142500000000002 1000 50 0.9999858 +5 27.1425 31.02 1000 50 0.8473517 +6 31.02 34.8975 1000 50 0.80480057 +7 34.8975 38.775 1000 50 0.8963747 +8 38.775 42.652499999999996 1000 50 0.9107625 +9 46.53 50.4075 1000 50 0.9983083 +10 50.4075 54.285 1000 50 0.88890916 +11 54.285 58.162499999999994 1000 50 0.9632762 +12 58.1625 62.04 1000 50 0.6071104 +13 62.04 65.9175 1000 50 0.94230413 +14 65.9175 69.795 1000 50 0.98149246 +15 69.795 73.6725 1000 50 0.9998054 +16 73.6725 77.55 1000 50 0.93894744 +17 77.55 81.4275 1000 50 0.9871996 +18 81.4275 85.30499999999999 1000 50 0.9993493 +19 85.305 89.1825 1000 50 0.9983687 +20 89.1825 93.06 1000 50 0.9362204 +21 93.06 96.9375 1000 50 0.99867404 +22 96.9375 100.815 1000 50 0.9999051 +23 100.815 104.6925 1000 50 0.97360206 +24 104.6925 108.57 1000 50 0.8756572 +25 108.57 112.44749999999999 1000 50 0.99204516 +26 112.4475 116.325 1000 50 0.9822809 +27 116.325 120.2025 1000 50 0.9960659 +28 124.08 127.9575 1000 50 0.99815935 +29 127.9575 131.835 1000 50 0.9999112 +30 131.835 135.7125 1000 50 0.69181085 +31 135.7125 139.59 1000 50 0.99549305 +32 139.59 143.4675 1000 50 0.8968976 +33 143.4675 147.345 1000 50 0.99463755 +34 147.345 151.2225 1000 50 0.988837 +35 151.2225 155.1 1000 50 0.7845774 +36 158.9775 162.855 1000 50 0.6133072 +37 166.7325 170.60999999999999 1000 50 0.89052534 +38 170.61 174.4875 1000 50 0.9967969 +39 174.4875 178.365 1000 50 0.6505605 +40 178.365 182.2425 1000 50 0.97740537 +41 182.2425 186.12 1000 50 0.964986 +42 186.12 189.9975 1000 50 0.9021427 +43 189.9975 193.875 1000 50 0.9986376 +44 193.875 197.7525 1000 50 0.9987423 +45 201.63 205.5075 1000 50 0.99996245 +46 205.5075 209.385 1000 50 0.8531722 +47 213.2625 217.14 1000 50 0.9891671 +48 217.14 221.01749999999998 1000 50 0.9948367 +49 221.0175 224.895 1000 50 0.8126714 +50 224.895 228.7725 1000 50 0.99999416 +51 228.7725 232.65 1000 50 0.6953861 +52 236.5275 240.405 1000 50 0.7767866 +53 252.0375 255.915 1000 50 0.5391504 +54 255.915 259.7925 1000 50 0.6729443 +55 279.18 283.0575 1000 50 0.5364376 +56 286.935 290.8125 1000 50 0.53769374 +57 290.8125 294.69 1000 50 0.77341455 +58 294.69 298.5675 1000 50 0.5216389 +59 302.445 306.3225 1000 50 0.99684143 +60 314.0775 317.955 1000 50 0.9963462 +61 321.8325 325.71 1000 50 0.6630996 +62 325.71 329.5875 1000 50 0.82511884 +63 333.465 337.3425 1000 50 0.9839723 +64 337.3425 341.21999999999997 1000 50 0.99516463 +65 341.22 345.0975 1000 50 0.9999428 +66 345.0975 348.975 1000 50 0.97348887 +67 348.975 352.8525 1000 50 0.9741708 +68 352.8525 356.73 1000 50 0.99996936 +69 356.73 360.6075 1000 50 0.9999528 +70 360.6075 364.485 1000 50 0.99817824 +71 364.485 368.3625 1000 50 0.9999527 +72 368.3625 372.24 1000 50 0.86916035 +73 372.24 376.1175 1000 50 0.73700404 +74 376.1175 379.995 1000 50 0.9987154 +75 379.995 383.8725 1000 50 0.82567567 +76 383.8725 387.75 1000 50 0.99954104 +77 387.75 391.6275 1000 50 0.9999778 +78 391.6275 395.505 1000 50 0.99978715 +79 395.505 399.3825 1000 50 0.9998745 +80 403.26 407.1375 1000 50 0.9415727 +81 407.1375 411.015 1000 50 0.56592 +82 411.015 414.8925 1000 50 0.74663424 +83 418.77 422.6475 1000 50 0.9998252 +84 422.6475 426.525 1000 50 0.6317117 +85 426.525 430.4025 1000 50 0.66803086 +86 430.4025 434.28 1000 50 0.9999708 +87 434.28 438.15749999999997 1000 50 0.7324039 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_01-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_01-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1cc03683948062649f587ca0c247a246207d2a30 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_01-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,264 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99982953 +2 3.8775 7.755 1000 50 0.99999857 +3 7.755 11.6325 1000 50 0.9999964 +4 11.6325 15.51 1000 50 0.99996686 +5 15.51 19.3875 1000 50 0.9999994 +6 19.3875 23.265 1000 50 0.9999014 +7 23.265 27.142500000000002 1000 50 0.99999976 +8 27.1425 31.02 1000 50 0.9955525 +9 31.02 34.8975 1000 50 1.0 +10 34.8975 38.775 1000 50 0.9878564 +11 38.775 42.652499999999996 1000 50 0.99998796 +12 42.6525 46.53 1000 50 1.0 +13 46.53 50.4075 1000 50 0.9999974 +14 50.4075 54.285 1000 50 0.9998436 +15 54.285 58.162499999999994 1000 50 0.9999975 +16 58.1625 62.04 1000 50 1.0 +17 62.04 65.9175 1000 50 0.9999975 +18 65.9175 69.795 1000 50 1.0 +19 69.795 73.6725 1000 50 0.99789196 +20 73.6725 77.55 1000 50 0.99999964 +21 77.55 81.4275 1000 50 0.9999999 +22 81.4275 85.30499999999999 1000 50 0.99997246 +23 85.305 89.1825 1000 50 0.9999994 +24 89.1825 93.06 1000 50 0.93019396 +25 93.06 96.9375 1000 50 1.0 +26 96.9375 100.815 1000 50 1.0 +27 100.815 104.6925 1000 50 0.9997789 +28 104.6925 108.57 1000 50 1.0 +29 108.57 112.44749999999999 1000 50 0.9996505 +30 112.4475 116.325 1000 50 0.9999871 +31 116.325 120.2025 1000 50 0.9998307 +32 120.2025 124.08 1000 50 0.9998679 +33 124.08 127.9575 1000 50 0.9999918 +34 127.9575 131.835 1000 50 0.99999976 +35 131.835 135.7125 1000 50 0.999948 +36 135.7125 139.59 1000 50 1.0 +37 139.59 143.4675 1000 50 1.0 +38 143.4675 147.345 1000 50 0.9998357 +39 147.345 151.2225 1000 50 0.9999999 +40 151.2225 155.1 1000 50 0.999969 +41 155.1 158.9775 1000 50 0.9999894 +42 158.9775 162.855 1000 50 0.999673 +43 162.855 166.7325 1000 50 0.8745092 +44 166.7325 170.60999999999999 1000 50 0.9999982 +45 170.61 174.4875 1000 50 0.99955267 +46 174.4875 178.365 1000 50 0.7871121 +47 178.365 182.2425 1000 50 0.99999607 +48 182.2425 186.12 1000 50 0.99740356 +49 186.12 189.9975 1000 50 0.99990964 +50 189.9975 193.875 1000 50 0.9990023 +51 193.875 197.7525 1000 50 0.99871814 +52 197.7525 201.63 1000 50 0.99994695 +53 201.63 205.5075 1000 50 0.9999831 +54 205.5075 209.385 1000 50 0.98118216 +55 209.385 213.2625 1000 50 0.9962639 +56 213.2625 217.14 1000 50 0.8630695 +57 217.14 221.01749999999998 1000 50 0.99969923 +58 221.0175 224.895 1000 50 0.9991841 +59 224.895 228.7725 1000 50 0.99998057 +60 228.7725 232.65 1000 50 0.9999542 +61 232.65 236.5275 1000 50 0.99990094 +62 236.5275 240.405 1000 50 0.94812596 +63 240.405 244.2825 1000 50 0.99999607 +64 244.2825 248.16 1000 50 0.9999831 +65 248.16 252.0375 1000 50 0.91740286 +66 252.0375 255.915 1000 50 0.9999838 +67 255.915 259.7925 1000 50 0.99988854 +68 259.7925 263.67 1000 50 0.9999815 +69 263.67 267.5475 1000 50 0.9979017 +70 267.5475 271.425 1000 50 0.9999883 +71 271.425 275.3025 1000 50 0.99953187 +72 275.3025 279.18 1000 50 0.99999285 +73 279.18 283.0575 1000 50 0.9981419 +74 283.0575 286.935 1000 50 0.99546355 +75 286.935 290.8125 1000 50 0.97766626 +76 290.8125 294.69 1000 50 0.9998777 +77 294.69 298.5675 1000 50 0.9999999 +78 298.5675 302.445 1000 50 0.9991578 +79 302.445 306.3225 1000 50 0.9999814 +80 306.3225 310.2 1000 50 0.9999238 +81 310.2 314.0775 1000 50 0.929336 +82 314.0775 317.955 1000 50 0.7579205 +83 317.955 321.8325 1000 50 0.95066243 +84 321.8325 325.71 1000 50 0.72366124 +85 329.5875 333.465 1000 50 0.50162256 +86 333.465 337.3425 1000 50 0.59525365 +87 341.22 345.0975 1000 50 0.66304487 +88 348.975 352.8525 1000 50 0.54104614 +89 352.8525 356.73 1000 50 0.70266336 +90 356.73 360.6075 1000 50 0.78283095 +91 360.6075 364.485 1000 50 0.65979993 +92 364.485 368.3625 1000 50 0.63616633 +93 372.24 376.1175 1000 50 0.53641176 +94 391.6275 395.505 1000 50 0.71559536 +95 395.505 399.3825 1000 50 0.864181 +96 399.3825 403.26 1000 50 0.6000538 +97 403.26 407.1375 1000 50 0.9353757 +98 407.1375 411.015 1000 50 0.6162707 +99 414.8925 418.77 1000 50 0.5835172 +100 422.6475 426.525 1000 50 0.87512153 +101 426.525 430.4025 1000 50 0.76012427 +102 442.035 445.9125 1000 50 0.5776222 +103 445.9125 449.79 1000 50 0.5057317 +104 461.4225 465.3 1000 50 0.9202328 +105 465.3 469.1775 1000 50 0.55290425 +106 473.055 476.9325 1000 50 0.59495634 +107 476.9325 480.81 1000 50 0.8284376 +108 480.81 484.6875 1000 50 0.874202 +109 484.6875 488.565 1000 50 0.68017644 +110 488.565 492.4425 1000 50 0.79291785 +111 496.32 500.1975 1000 50 0.972265 +112 500.1975 504.075 1000 50 0.71057343 +113 523.4625 527.34 1000 50 0.55235064 +114 527.34 531.2175000000001 1000 50 0.9978678 +115 531.2175 535.095 1000 50 0.9999995 +116 535.095 538.9725000000001 1000 50 0.99999905 +117 538.9725 542.85 1000 50 0.9989993 +118 542.85 546.7275000000001 1000 50 0.9999491 +119 546.7275 550.605 1000 50 0.9999976 +120 550.605 554.4825000000001 1000 50 0.99994075 +121 554.4825 558.36 1000 50 0.9999709 +122 558.36 562.2375000000001 1000 50 0.9313912 +123 562.2375 566.115 1000 50 0.99997294 +124 566.115 569.9925000000001 1000 50 0.5368622 +125 569.9925 573.87 1000 50 0.81125754 +126 573.87 577.7475000000001 1000 50 0.6103646 +127 577.7475 581.625 1000 50 0.861619 +128 581.625 585.5025 1000 50 0.93443096 +129 589.38 593.2575 1000 50 0.9999988 +130 597.135 601.0125 1000 50 0.9999999 +131 601.0125 604.8900000000001 1000 50 0.99999714 +132 604.89 608.7675 1000 50 0.9866159 +133 608.7675 612.6450000000001 1000 50 0.9998975 +134 612.645 616.5225 1000 50 0.99999833 +135 616.5225 620.4000000000001 1000 50 0.6246626 +136 620.4 624.2775 1000 50 0.9999852 +137 624.2775 628.1550000000001 1000 50 0.9999057 +138 628.155 632.0325 1000 50 0.7345604 +139 632.0325 635.9100000000001 1000 50 0.9999149 +140 635.91 639.7875 1000 50 0.999995 +141 643.665 647.5425 1000 50 0.9998975 +142 647.5425 651.4200000000001 1000 50 0.678681 +143 655.2975 659.1750000000001 1000 50 0.99999833 +144 659.175 663.0525 1000 50 0.9976138 +145 666.93 670.8075 1000 50 0.9999999 +146 670.8075 674.6850000000001 1000 50 0.97124195 +147 674.685 678.5625 1000 50 0.99999976 +148 678.5625 682.44 1000 50 0.99996245 +149 686.3175 690.195 1000 50 0.9998667 +150 690.195 694.0725000000001 1000 50 0.9999758 +151 697.95 701.8275000000001 1000 50 1.0 +152 705.705 709.5825000000001 1000 50 0.99671495 +153 709.5825 713.46 1000 50 0.99995685 +154 713.46 717.3375000000001 1000 50 0.86816585 +155 717.3375 721.215 1000 50 0.99996805 +156 721.215 725.0925000000001 1000 50 0.99796754 +157 725.0925 728.97 1000 50 0.9999999 +158 728.97 732.8475000000001 1000 50 0.9957814 +159 732.8475 736.725 1000 50 0.9999411 +160 736.725 740.6025000000001 1000 50 0.99990296 +161 740.6025 744.48 1000 50 0.99999964 +162 744.48 748.3575000000001 1000 50 1.0 +163 748.3575 752.235 1000 50 0.96943384 +164 752.235 756.1125000000001 1000 50 0.99995816 +165 756.1125 759.99 1000 50 0.99999714 +166 759.99 763.8675000000001 1000 50 0.99985576 +167 763.8675 767.745 1000 50 1.0 +168 767.745 771.6225000000001 1000 50 0.9971206 +169 771.6225 775.5 1000 50 0.99997306 +170 775.5 779.3775 1000 50 1.0 +171 779.3775 783.2550000000001 1000 50 0.99957305 +172 783.255 787.1325 1000 50 0.99999976 +173 787.1325 791.0100000000001 1000 50 0.96782315 +174 791.01 794.8875 1000 50 1.0 +175 794.8875 798.7650000000001 1000 50 0.9948025 +176 798.765 802.6425 1000 50 1.0 +177 802.6425 806.5200000000001 1000 50 0.99860364 +178 806.52 810.3975 1000 50 1.0 +179 810.3975 814.2750000000001 1000 50 0.99980897 +180 814.275 818.1525 1000 50 0.9999944 +181 818.1525 822.0300000000001 1000 50 1.0 +182 822.03 825.9075 1000 50 0.9901518 +183 825.9075 829.7850000000001 1000 50 1.0 +184 829.785 833.6625 1000 50 0.9998223 +185 833.6625 837.5400000000001 1000 50 1.0 +186 837.54 841.4175 1000 50 0.9999888 +187 841.4175 845.2950000000001 1000 50 0.9999999 +188 845.295 849.1725 1000 50 0.9999784 +189 849.1725 853.0500000000001 1000 50 0.9999995 +190 853.05 856.9275 1000 50 0.99995744 +191 856.9275 860.8050000000001 1000 50 0.9999999 +192 860.805 864.6825 1000 50 0.9999865 +193 864.6825 868.5600000000001 1000 50 0.9999007 +194 868.56 872.4375 1000 50 0.9999503 +195 872.4375 876.315 1000 50 0.9998062 +196 876.315 880.1925000000001 1000 50 0.99999774 +197 880.1925 884.07 1000 50 0.99995565 +198 884.07 887.9475000000001 1000 50 0.9742295 +199 887.9475 891.825 1000 50 0.99999714 +200 891.825 895.7025000000001 1000 50 0.9999993 +201 895.7025 899.58 1000 50 0.9998963 +202 899.58 903.4575000000001 1000 50 0.9999827 +203 903.4575 907.335 1000 50 0.99811256 +204 907.335 911.2125000000001 1000 50 0.9998853 +205 911.2125 915.09 1000 50 0.9998134 +206 915.09 918.9675000000001 1000 50 0.99998355 +207 918.9675 922.845 1000 50 0.9999993 +208 922.845 926.7225000000001 1000 50 0.99992764 +209 926.7225 930.6 1000 50 0.99995196 +210 930.6 934.4775000000001 1000 50 0.99999976 +211 934.4775 938.355 1000 50 0.9999714 +212 938.355 942.2325000000001 1000 50 0.9999993 +213 942.2325 946.11 1000 50 0.9999999 +214 946.11 949.9875000000001 1000 50 0.9999994 +215 949.9875 953.865 1000 50 0.9999981 +216 953.865 957.7425000000001 1000 50 1.0 +217 957.7425 961.62 1000 50 0.9999939 +218 961.62 965.4975000000001 1000 50 0.9999999 +219 965.4975 969.375 1000 50 0.99922645 +220 969.375 973.2525 1000 50 1.0 +221 973.2525 977.1300000000001 1000 50 0.999995 +222 977.13 981.0075 1000 50 0.9989281 +223 981.0075 984.8850000000001 1000 50 0.995297 +224 984.885 988.7625 1000 50 0.99982685 +225 988.7625 992.6400000000001 1000 50 0.9998294 +226 992.64 996.5175 1000 50 0.99924374 +227 996.5175 1000.3950000000001 1000 50 0.9988649 +228 1000.395 1004.2725 1000 50 0.9999807 +229 1004.2725 1008.1500000000001 1000 50 0.9999037 +230 1008.15 1012.0275 1000 50 0.9999943 +231 1012.0275 1015.9050000000001 1000 50 0.99971884 +232 1015.905 1019.7825 1000 50 0.99975353 +233 1019.7825 1023.6600000000001 1000 50 0.99657285 +234 1023.66 1027.5375 1000 50 0.9994271 +235 1027.5375 1031.415 1000 50 0.98896295 +236 1031.415 1035.2925 1000 50 0.99987745 +237 1035.2925 1039.17 1000 50 0.99955887 +238 1039.17 1043.0475000000001 1000 50 0.99999464 +239 1043.0475 1046.925 1000 50 0.9878422 +240 1046.925 1050.8025 1000 50 0.9996736 +241 1050.8025 1054.68 1000 50 0.9999964 +242 1054.68 1058.5575000000001 1000 50 0.98948413 +243 1058.5575 1062.435 1000 50 0.999997 +244 1062.435 1066.3125 1000 50 0.9998172 +245 1066.3125 1070.19 1000 50 0.99975675 +246 1070.19 1074.0675 1000 50 0.9999981 +247 1074.0675 1077.9450000000002 1000 50 0.99999046 +248 1077.945 1081.8225 1000 50 0.99983656 +249 1081.8225 1085.7 1000 50 0.9999913 +250 1085.7 1089.5775 1000 50 0.99999154 +251 1089.5775 1093.4550000000002 1000 50 0.9999982 +252 1093.455 1097.3325 1000 50 0.99995995 +253 1097.3325 1101.21 1000 50 0.99984884 +254 1105.0875 1108.9650000000001 1000 50 0.9878429 +255 1108.965 1112.8425 1000 50 0.56836 +256 1116.72 1120.5975 1000 50 0.68379104 +257 1120.5975 1124.4750000000001 1000 50 0.8187428 +258 1132.23 1136.1075 1000 50 0.57578266 +259 1139.985 1143.8625 1000 50 0.514542 +260 1143.8625 1147.74 1000 50 0.98929137 +261 1151.6175 1155.4950000000001 1000 50 0.5432677 +262 1159.3725 1163.25 1000 50 0.68630004 +263 1163.25 1167.1275 1000 50 0.68107766 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_01-23-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_01-23-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..7411618563f75fac1b760efd137aeeb2c2248e4f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_01-23-05_annot_2022-11-30_01.txt @@ -0,0 +1,29 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999347 +2 7.755 11.6325 1000 50 0.99968684 +3 11.6325 15.51 1000 50 0.9999995 +4 15.51 19.3875 1000 50 0.99628156 +5 19.3875 23.265 1000 50 0.99982774 +6 23.265 27.142500000000002 1000 50 0.99888784 +7 27.1425 31.02 1000 50 0.99994826 +8 31.02 34.8975 1000 50 0.99977356 +9 34.8975 38.775 1000 50 0.999663 +10 38.775 42.652499999999996 1000 50 0.55166113 +11 42.6525 46.53 1000 50 0.99999416 +12 54.285 58.162499999999994 1000 50 0.999995 +13 58.1625 62.04 1000 50 0.9885435 +14 62.04 65.9175 1000 50 0.9991654 +15 65.9175 69.795 1000 50 0.999691 +16 69.795 73.6725 1000 50 0.99999726 +17 73.6725 77.55 1000 50 0.99999905 +18 77.55 81.4275 1000 50 1.0 +19 81.4275 85.30499999999999 1000 50 0.99999785 +20 85.305 89.1825 1000 50 0.99999094 +21 89.1825 93.06 1000 50 0.9999294 +22 93.06 96.9375 1000 50 0.99999225 +23 96.9375 100.815 1000 50 1.0 +24 100.815 104.6925 1000 50 0.99999964 +25 104.6925 108.57 1000 50 0.99999976 +26 108.57 112.44749999999999 1000 50 0.9977849 +27 112.4475 116.325 1000 50 0.8809035 +28 116.325 120.2025 1000 50 0.99999845 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_02-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_02-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..2a840089bdeda615f29ab48e508fa43e5beb20ea --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_02-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,157 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99997115 +2 3.8775 7.755 1000 50 1.0 +3 7.755 11.6325 1000 50 0.99998903 +4 11.6325 15.51 1000 50 0.99946386 +5 19.3875 23.265 1000 50 0.99999774 +6 23.265 27.142500000000002 1000 50 0.999699 +7 27.1425 31.02 1000 50 0.64750254 +8 31.02 34.8975 1000 50 0.999954 +9 34.8975 38.775 1000 50 0.9998927 +10 38.775 42.652499999999996 1000 50 0.9999958 +11 42.6525 46.53 1000 50 0.99908864 +12 46.53 50.4075 1000 50 0.9999696 +13 50.4075 54.285 1000 50 0.99949825 +14 54.285 58.162499999999994 1000 50 0.9999999 +15 58.1625 62.04 1000 50 0.99990714 +16 62.04 65.9175 1000 50 0.99906975 +17 65.9175 69.795 1000 50 0.9655754 +18 69.795 73.6725 1000 50 0.9992423 +19 73.6725 77.55 1000 50 0.6591878 +20 77.55 81.4275 1000 50 0.97650343 +21 81.4275 85.30499999999999 1000 50 0.835192 +22 96.9375 100.815 1000 50 0.8168541 +23 100.815 104.6925 1000 50 0.8967372 +24 104.6925 108.57 1000 50 0.62546074 +25 116.325 120.2025 1000 50 0.6812467 +26 124.08 127.9575 1000 50 0.72995055 +27 147.345 151.2225 1000 50 0.71873295 +28 158.9775 162.855 1000 50 0.53745884 +29 170.61 174.4875 1000 50 0.92465144 +30 178.365 182.2425 1000 50 0.8612327 +31 186.12 189.9975 1000 50 0.616195 +32 197.7525 201.63 1000 50 0.71306074 +33 209.385 213.2625 1000 50 0.6087349 +34 213.2625 217.14 1000 50 0.5007488 +35 224.895 228.7725 1000 50 0.7233911 +36 236.5275 240.405 1000 50 0.6043824 +37 240.405 244.2825 1000 50 0.75179255 +38 252.0375 255.915 1000 50 0.64066875 +39 325.71 329.5875 1000 50 0.55644 +40 329.5875 333.465 1000 50 0.6582623 +41 352.8525 356.73 1000 50 0.5598489 +42 360.6075 364.485 1000 50 0.53613824 +43 368.3625 372.24 1000 50 0.53016335 +44 379.995 383.8725 1000 50 0.54178053 +45 391.6275 395.505 1000 50 0.67845494 +46 395.505 399.3825 1000 50 0.69895136 +47 411.015 414.8925 1000 50 0.9560762 +48 418.77 422.6475 1000 50 0.96265197 +49 422.6475 426.525 1000 50 0.59440446 +50 430.4025 434.28 1000 50 0.7707897 +51 434.28 438.15749999999997 1000 50 0.7000497 +52 438.1575 442.035 1000 50 0.5580054 +53 449.79 453.6675 1000 50 0.99916434 +54 457.545 461.4225 1000 50 0.69559854 +55 469.1775 473.055 1000 50 0.7041493 +56 480.81 484.6875 1000 50 0.9253392 +57 484.6875 488.565 1000 50 0.69128275 +58 504.075 507.9525 1000 50 0.86144036 +59 511.83 515.7075 1000 50 0.6113711 +60 515.7075 519.585 1000 50 0.80194056 +61 519.585 523.4625000000001 1000 50 0.9227762 +62 523.4625 527.34 1000 50 0.53416854 +63 531.2175 535.095 1000 50 0.8887704 +64 535.095 538.9725000000001 1000 50 0.62203646 +65 550.605 554.4825000000001 1000 50 0.76353544 +66 558.36 562.2375000000001 1000 50 0.50645083 +67 562.2375 566.115 1000 50 0.6796167 +68 566.115 569.9925000000001 1000 50 0.6894828 +69 577.7475 581.625 1000 50 0.5309332 +70 589.38 593.2575 1000 50 0.5067729 +71 593.2575 597.1350000000001 1000 50 0.5548236 +72 608.7675 612.6450000000001 1000 50 0.5294245 +73 616.5225 620.4000000000001 1000 50 0.86685383 +74 628.155 632.0325 1000 50 0.7137732 +75 643.665 647.5425 1000 50 0.5245019 +76 655.2975 659.1750000000001 1000 50 0.5946229 +77 674.685 678.5625 1000 50 0.61916006 +78 694.0725 697.95 1000 50 0.8853528 +79 721.215 725.0925000000001 1000 50 0.6915709 +80 728.97 732.8475000000001 1000 50 0.99997854 +81 732.8475 736.725 1000 50 0.9926442 +82 736.725 740.6025000000001 1000 50 0.99614704 +83 748.3575 752.235 1000 50 0.8645247 +84 756.1125 759.99 1000 50 0.54891527 +85 759.99 763.8675000000001 1000 50 0.65971005 +86 783.255 787.1325 1000 50 0.6053202 +87 787.1325 791.0100000000001 1000 50 0.8677088 +88 806.52 810.3975 1000 50 0.5405732 +89 810.3975 814.2750000000001 1000 50 0.6216989 +90 818.1525 822.0300000000001 1000 50 0.9989849 +91 822.03 825.9075 1000 50 0.77324694 +92 825.9075 829.7850000000001 1000 50 0.85913193 +93 837.54 841.4175 1000 50 0.8065946 +94 860.805 864.6825 1000 50 0.5758814 +95 864.6825 868.5600000000001 1000 50 0.6826818 +96 872.4375 876.315 1000 50 0.67193043 +97 880.1925 884.07 1000 50 0.65235823 +98 903.4575 907.335 1000 50 0.6746891 +99 915.09 918.9675000000001 1000 50 0.7137606 +100 926.7225 930.6 1000 50 0.6729235 +101 938.355 942.2325000000001 1000 50 0.73838454 +102 942.2325 946.11 1000 50 0.7602327 +103 953.865 957.7425000000001 1000 50 0.79263765 +104 961.62 965.4975000000001 1000 50 0.66897607 +105 969.375 973.2525 1000 50 0.6420811 +106 977.13 981.0075 1000 50 0.558372 +107 984.885 988.7625 1000 50 0.7102467 +108 988.7625 992.6400000000001 1000 50 0.73244995 +109 1004.2725 1008.1500000000001 1000 50 0.57245725 +110 1019.7825 1023.6600000000001 1000 50 0.520455 +111 1031.415 1035.2925 1000 50 0.899833 +112 1043.0475 1046.925 1000 50 0.66144663 +113 1054.68 1058.5575000000001 1000 50 0.5283152 +114 1058.5575 1062.435 1000 50 0.55342245 +115 1066.3125 1070.19 1000 50 0.86776096 +116 1070.19 1074.0675 1000 50 0.5352282 +117 1074.0675 1077.9450000000002 1000 50 0.6543546 +118 1077.945 1081.8225 1000 50 0.650553 +119 1108.965 1112.8425 1000 50 0.7136732 +120 1112.8425 1116.72 1000 50 0.9644716 +121 1120.5975 1124.4750000000001 1000 50 0.77002686 +122 1128.3525 1132.23 1000 50 0.5075681 +123 1136.1075 1139.9850000000001 1000 50 0.84667397 +124 1139.985 1143.8625 1000 50 0.7188559 +125 1147.74 1151.6175 1000 50 0.9430638 +126 1151.6175 1155.4950000000001 1000 50 0.9992155 +127 1163.25 1167.1275 1000 50 0.9705146 +128 1171.005 1174.8825000000002 1000 50 0.97445756 +129 1174.8825 1178.76 1000 50 0.9954561 +130 1178.76 1182.6375 1000 50 0.8415586 +131 1186.515 1190.3925000000002 1000 50 0.76226366 +132 1198.1475 1202.025 1000 50 0.7877483 +133 1217.535 1221.4125000000001 1000 50 0.73559076 +134 1221.4125 1225.29 1000 50 0.9961236 +135 1225.29 1229.1675 1000 50 0.6340928 +136 1229.1675 1233.045 1000 50 0.76774305 +137 1233.045 1236.9225000000001 1000 50 0.6480401 +138 1248.555 1252.4325000000001 1000 50 0.6065316 +139 1256.31 1260.1875 1000 50 0.56604207 +140 1283.4525 1287.3300000000002 1000 50 0.8176189 +141 1287.33 1291.2075 1000 50 0.6171909 +142 1295.085 1298.9625 1000 50 0.5589242 +143 1314.4725 1318.3500000000001 1000 50 0.648834 +144 1318.35 1322.2275 1000 50 0.528754 +145 1322.2275 1326.105 1000 50 0.6741593 +146 1329.9825 1333.8600000000001 1000 50 0.67104685 +147 1337.7375 1341.615 1000 50 0.6462278 +148 1349.37 1353.2475 1000 50 0.51166624 +149 1361.0025 1364.88 1000 50 0.6592677 +150 1364.88 1368.7575000000002 1000 50 0.9007282 +151 1384.2675 1388.145 1000 50 0.9098451 +152 1407.5325 1411.41 1000 50 0.6076365 +153 1411.41 1415.2875000000001 1000 50 0.8174957 +154 1457.94 1461.8175 1000 50 0.5555378 +155 1461.8175 1465.6950000000002 1000 50 0.8025667 +156 1465.695 1469.5725 1000 50 0.55750096 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_03-01-53_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_03-01-53_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f647f809040f85fa531492199b5a5269710fac6f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_03-01-53_annot_2022-11-30_01.txt @@ -0,0 +1,277 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99979025 +2 3.8775 7.755 1000 50 0.7284046 +3 7.755 11.6325 1000 50 0.99763775 +4 15.51 19.3875 1000 50 0.9999988 +5 19.3875 23.265 1000 50 0.97304916 +6 23.265 27.142500000000002 1000 50 0.9999654 +7 27.1425 31.02 1000 50 0.99996257 +8 31.02 34.8975 1000 50 0.6368204 +9 34.8975 38.775 1000 50 0.9999776 +10 38.775 42.652499999999996 1000 50 0.9917955 +11 42.6525 46.53 1000 50 0.99998975 +12 46.53 50.4075 1000 50 0.99996126 +13 50.4075 54.285 1000 50 0.9973309 +14 54.285 58.162499999999994 1000 50 1.0 +15 58.1625 62.04 1000 50 0.73485535 +16 62.04 65.9175 1000 50 0.56040406 +17 65.9175 69.795 1000 50 0.99999654 +18 69.795 73.6725 1000 50 0.99166054 +19 73.6725 77.55 1000 50 0.9996587 +20 77.55 81.4275 1000 50 0.99999666 +21 81.4275 85.30499999999999 1000 50 0.95226866 +22 85.305 89.1825 1000 50 1.0 +23 89.1825 93.06 1000 50 0.9978903 +24 93.06 96.9375 1000 50 0.99872786 +25 96.9375 100.815 1000 50 0.9999864 +26 100.815 104.6925 1000 50 0.99996114 +27 104.6925 108.57 1000 50 0.99999166 +28 108.57 112.44749999999999 1000 50 1.0 +29 112.4475 116.325 1000 50 0.999057 +30 116.325 120.2025 1000 50 0.9999999 +31 120.2025 124.08 1000 50 0.95985514 +32 124.08 127.9575 1000 50 0.9881847 +33 127.9575 131.835 1000 50 0.99632925 +34 131.835 135.7125 1000 50 0.9999945 +35 135.7125 139.59 1000 50 0.5373793 +36 139.59 143.4675 1000 50 0.9999844 +37 143.4675 147.345 1000 50 0.99747235 +38 147.345 151.2225 1000 50 0.84976053 +39 151.2225 155.1 1000 50 0.99929476 +40 155.1 158.9775 1000 50 0.9905867 +41 158.9775 162.855 1000 50 0.9941843 +42 162.855 166.7325 1000 50 0.9996263 +43 166.7325 170.60999999999999 1000 50 0.99972063 +44 170.61 174.4875 1000 50 0.9972862 +45 174.4875 178.365 1000 50 0.9999999 +46 178.365 182.2425 1000 50 0.68854135 +47 182.2425 186.12 1000 50 0.999995 +48 189.9975 193.875 1000 50 1.0 +49 193.875 197.7525 1000 50 0.9963482 +50 197.7525 201.63 1000 50 0.9999981 +51 201.63 205.5075 1000 50 0.6855719 +52 209.385 213.2625 1000 50 0.9999982 +53 213.2625 217.14 1000 50 0.6447298 +54 217.14 221.01749999999998 1000 50 0.95476604 +55 221.0175 224.895 1000 50 0.7981283 +56 224.895 228.7725 1000 50 0.8494042 +57 236.5275 240.405 1000 50 0.5858289 +58 248.16 252.0375 1000 50 0.5374701 +59 259.7925 263.67 1000 50 0.71514755 +60 263.67 267.5475 1000 50 0.7625829 +61 267.5475 271.425 1000 50 0.57373816 +62 290.8125 294.69 1000 50 0.741009 +63 321.8325 325.71 1000 50 0.5350562 +64 345.0975 348.975 1000 50 0.77058893 +65 356.73 360.6075 1000 50 0.676052 +66 391.6275 395.505 1000 50 0.9931726 +67 395.505 399.3825 1000 50 0.8948457 +68 399.3825 403.26 1000 50 0.5644544 +69 403.26 407.1375 1000 50 0.7194885 +70 411.015 414.8925 1000 50 0.66329783 +71 414.8925 418.77 1000 50 0.9327241 +72 418.77 422.6475 1000 50 0.77519196 +73 422.6475 426.525 1000 50 0.99999785 +74 426.525 430.4025 1000 50 0.7720665 +75 430.4025 434.28 1000 50 0.9999547 +76 438.1575 442.035 1000 50 0.999818 +77 442.035 445.9125 1000 50 0.9998839 +78 445.9125 449.79 1000 50 0.9999646 +79 449.79 453.6675 1000 50 0.69421494 +80 453.6675 457.545 1000 50 0.9997799 +81 457.545 461.4225 1000 50 0.99997973 +82 465.3 469.1775 1000 50 0.99999976 +83 469.1775 473.055 1000 50 0.99998045 +84 473.055 476.9325 1000 50 0.99997807 +85 476.9325 480.81 1000 50 0.9999918 +86 480.81 484.6875 1000 50 0.8852522 +87 484.6875 488.565 1000 50 0.9901814 +88 488.565 492.4425 1000 50 0.99999774 +89 492.4425 496.32 1000 50 0.9652283 +90 496.32 500.1975 1000 50 0.64898 +91 500.1975 504.075 1000 50 0.9999577 +92 504.075 507.9525 1000 50 0.999255 +93 507.9525 511.83 1000 50 0.9999995 +94 511.83 515.7075 1000 50 0.99990535 +95 519.585 523.4625000000001 1000 50 0.9856836 +96 523.4625 527.34 1000 50 0.998698 +97 527.34 531.2175000000001 1000 50 0.90013963 +98 531.2175 535.095 1000 50 1.0 +99 535.095 538.9725000000001 1000 50 0.99853015 +100 538.9725 542.85 1000 50 0.998926 +101 542.85 546.7275000000001 1000 50 0.99918467 +102 550.605 554.4825000000001 1000 50 0.9999641 +103 554.4825 558.36 1000 50 0.9829888 +104 562.2375 566.115 1000 50 0.99996424 +105 566.115 569.9925000000001 1000 50 0.999982 +106 569.9925 573.87 1000 50 0.99501026 +107 573.87 577.7475000000001 1000 50 0.99503976 +108 577.7475 581.625 1000 50 0.9811224 +109 581.625 585.5025 1000 50 0.9998858 +110 589.38 593.2575 1000 50 0.9999956 +111 593.2575 597.1350000000001 1000 50 0.9999881 +112 597.135 601.0125 1000 50 0.99998987 +113 601.0125 604.8900000000001 1000 50 0.9999733 +114 604.89 608.7675 1000 50 0.9999975 +115 608.7675 612.6450000000001 1000 50 0.9999881 +116 612.645 616.5225 1000 50 0.9938046 +117 616.5225 620.4000000000001 1000 50 0.99999976 +118 620.4 624.2775 1000 50 0.9999286 +119 624.2775 628.1550000000001 1000 50 0.99999714 +120 628.155 632.0325 1000 50 1.0 +121 632.0325 635.9100000000001 1000 50 0.9999981 +122 635.91 639.7875 1000 50 1.0 +123 639.7875 643.6650000000001 1000 50 0.9945963 +124 643.665 647.5425 1000 50 0.9999999 +125 647.5425 651.4200000000001 1000 50 0.9999994 +126 651.42 655.2975 1000 50 0.9981895 +127 655.2975 659.1750000000001 1000 50 1.0 +128 663.0525 666.9300000000001 1000 50 1.0 +129 666.93 670.8075 1000 50 0.99999666 +130 670.8075 674.6850000000001 1000 50 0.85828584 +131 674.685 678.5625 1000 50 0.9993316 +132 678.5625 682.44 1000 50 0.9929628 +133 686.3175 690.195 1000 50 0.9999825 +134 690.195 694.0725000000001 1000 50 0.9925237 +135 694.0725 697.95 1000 50 0.99995124 +136 697.95 701.8275000000001 1000 50 0.99952066 +137 705.705 709.5825000000001 1000 50 0.9704331 +138 709.5825 713.46 1000 50 0.7929642 +139 717.3375 721.215 1000 50 0.999941 +140 721.215 725.0925000000001 1000 50 0.9861602 +141 728.97 732.8475000000001 1000 50 0.9999758 +142 732.8475 736.725 1000 50 0.99999535 +143 736.725 740.6025000000001 1000 50 0.97526574 +144 740.6025 744.48 1000 50 0.9999604 +145 744.48 748.3575000000001 1000 50 0.9998815 +146 748.3575 752.235 1000 50 0.9997638 +147 752.235 756.1125000000001 1000 50 0.99999726 +148 756.1125 759.99 1000 50 0.7286162 +149 759.99 763.8675000000001 1000 50 0.9999999 +150 763.8675 767.745 1000 50 0.9821275 +151 767.745 771.6225000000001 1000 50 0.9981647 +152 771.6225 775.5 1000 50 0.9995734 +153 775.5 779.3775 1000 50 0.9999634 +154 779.3775 783.2550000000001 1000 50 0.9999788 +155 783.255 787.1325 1000 50 0.99999464 +156 787.1325 791.0100000000001 1000 50 0.99999976 +157 791.01 794.8875 1000 50 0.99994695 +158 794.8875 798.7650000000001 1000 50 0.9999616 +159 806.52 810.3975 1000 50 0.5728411 +160 837.54 841.4175 1000 50 0.909694 +161 887.9475 891.825 1000 50 0.6445611 +162 899.58 903.4575000000001 1000 50 0.5492945 +163 911.2125 915.09 1000 50 0.5373759 +164 918.9675 922.845 1000 50 0.5721548 +165 922.845 926.7225000000001 1000 50 0.52668023 +166 930.6 934.4775000000001 1000 50 0.6425295 +167 949.9875 953.865 1000 50 0.67241204 +168 957.7425 961.62 1000 50 0.9999479 +169 965.4975 969.375 1000 50 0.9577269 +170 969.375 973.2525 1000 50 0.9985966 +171 973.2525 977.1300000000001 1000 50 0.9993747 +172 977.13 981.0075 1000 50 0.9999807 +173 984.885 988.7625 1000 50 0.999908 +174 988.7625 992.6400000000001 1000 50 0.9999354 +175 996.5175 1000.3950000000001 1000 50 0.9998406 +176 1000.395 1004.2725 1000 50 0.5226878 +177 1004.2725 1008.1500000000001 1000 50 0.63112664 +178 1008.15 1012.0275 1000 50 1.0 +179 1012.0275 1015.9050000000001 1000 50 0.99999356 +180 1015.905 1019.7825 1000 50 0.99360365 +181 1019.7825 1023.6600000000001 1000 50 0.926027 +182 1023.66 1027.5375 1000 50 0.9993123 +183 1027.5375 1031.415 1000 50 0.9999993 +184 1031.415 1035.2925 1000 50 0.9999186 +185 1035.2925 1039.17 1000 50 0.9187959 +186 1039.17 1043.0475000000001 1000 50 0.9992481 +187 1043.0475 1046.925 1000 50 0.99935776 +188 1046.925 1050.8025 1000 50 0.99891484 +189 1050.8025 1054.68 1000 50 0.9999924 +190 1054.68 1058.5575000000001 1000 50 0.9999945 +191 1058.5575 1062.435 1000 50 0.9999931 +192 1062.435 1066.3125 1000 50 0.99995077 +193 1066.3125 1070.19 1000 50 0.9999999 +194 1070.19 1074.0675 1000 50 0.9999827 +195 1074.0675 1077.9450000000002 1000 50 0.99985075 +196 1077.945 1081.8225 1000 50 0.9957178 +197 1081.8225 1085.7 1000 50 0.9999962 +198 1085.7 1089.5775 1000 50 0.999995 +199 1089.5775 1093.4550000000002 1000 50 0.9999999 +200 1093.455 1097.3325 1000 50 0.9999995 +201 1097.3325 1101.21 1000 50 1.0 +202 1101.21 1105.0875 1000 50 0.99999964 +203 1105.0875 1108.9650000000001 1000 50 0.9999696 +204 1108.965 1112.8425 1000 50 0.9848779 +205 1112.8425 1116.72 1000 50 0.99999905 +206 1116.72 1120.5975 1000 50 0.99999976 +207 1120.5975 1124.4750000000001 1000 50 0.9999865 +208 1124.475 1128.3525 1000 50 0.9999958 +209 1128.3525 1132.23 1000 50 0.99998593 +210 1132.23 1136.1075 1000 50 1.0 +211 1136.1075 1139.9850000000001 1000 50 0.9960859 +212 1139.985 1143.8625 1000 50 0.99999905 +213 1143.8625 1147.74 1000 50 1.0 +214 1147.74 1151.6175 1000 50 0.99999595 +215 1151.6175 1155.4950000000001 1000 50 0.90089005 +216 1155.495 1159.3725 1000 50 0.9999999 +217 1159.3725 1163.25 1000 50 0.9999683 +218 1163.25 1167.1275 1000 50 0.9999999 +219 1167.1275 1171.005 1000 50 0.9979656 +220 1171.005 1174.8825000000002 1000 50 0.9999988 +221 1174.8825 1178.76 1000 50 1.0 +222 1178.76 1182.6375 1000 50 0.9999999 +223 1182.6375 1186.515 1000 50 0.999243 +224 1186.515 1190.3925000000002 1000 50 1.0 +225 1190.3925 1194.27 1000 50 0.99958366 +226 1194.27 1198.1475 1000 50 0.9969932 +227 1198.1475 1202.025 1000 50 0.7180057 +228 1202.025 1205.9025000000001 1000 50 0.9999995 +229 1205.9025 1209.78 1000 50 0.9999963 +230 1209.78 1213.6575 1000 50 0.9999504 +231 1213.6575 1217.535 1000 50 0.9999964 +232 1217.535 1221.4125000000001 1000 50 0.9999379 +233 1221.4125 1225.29 1000 50 0.99986243 +234 1225.29 1229.1675 1000 50 0.9999999 +235 1229.1675 1233.045 1000 50 0.9999988 +236 1233.045 1236.9225000000001 1000 50 0.9999995 +237 1236.9225 1240.8 1000 50 0.9983901 +238 1240.8 1244.6775 1000 50 1.0 +239 1244.6775 1248.555 1000 50 0.99979895 +240 1248.555 1252.4325000000001 1000 50 1.0 +241 1252.4325 1256.31 1000 50 0.9994814 +242 1256.31 1260.1875 1000 50 1.0 +243 1260.1875 1264.065 1000 50 1.0 +244 1264.065 1267.9425 1000 50 0.99333656 +245 1267.9425 1271.8200000000002 1000 50 1.0 +246 1271.82 1275.6975 1000 50 0.9999151 +247 1275.6975 1279.575 1000 50 0.9999995 +248 1279.575 1283.4525 1000 50 0.9982383 +249 1283.4525 1287.3300000000002 1000 50 0.9870472 +250 1287.33 1291.2075 1000 50 0.9998915 +251 1291.2075 1295.085 1000 50 0.99963224 +252 1295.085 1298.9625 1000 50 0.9999988 +253 1298.9625 1302.8400000000001 1000 50 0.9999958 +254 1302.84 1306.7175 1000 50 0.9999777 +255 1306.7175 1310.595 1000 50 1.0 +256 1310.595 1314.4725 1000 50 0.99990785 +257 1314.4725 1318.3500000000001 1000 50 0.99999547 +258 1318.35 1322.2275 1000 50 0.999928 +259 1322.2275 1326.105 1000 50 0.99058795 +260 1326.105 1329.9825 1000 50 1.0 +261 1329.9825 1333.8600000000001 1000 50 0.9692793 +262 1333.86 1337.7375 1000 50 0.99999106 +263 1337.7375 1341.615 1000 50 0.9999999 +264 1341.615 1345.4925 1000 50 0.8567846 +265 1345.4925 1349.3700000000001 1000 50 1.0 +266 1349.37 1353.2475 1000 50 0.99981254 +267 1353.2475 1357.125 1000 50 0.9999995 +268 1357.125 1361.0025 1000 50 1.0 +269 1361.0025 1364.88 1000 50 0.99887365 +270 1364.88 1368.7575000000002 1000 50 1.0 +271 1368.7575 1372.635 1000 50 0.9999993 +272 1372.635 1376.5125 1000 50 0.9983746 +273 1376.5125 1380.39 1000 50 0.90702784 +274 1380.39 1384.2675000000002 1000 50 0.99999475 +275 1384.2675 1388.145 1000 50 0.53336525 +276 1388.145 1392.0225 1000 50 1.0 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_04-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_04-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e47525924d8bd6d029bd2e1ed8b8959ea0c9bd1e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_04-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,37 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.75477254 +2 7.755 11.6325 1000 50 0.7566222 +3 15.51 19.3875 1000 50 0.74607134 +4 19.3875 23.265 1000 50 0.61716247 +5 31.02 34.8975 1000 50 0.5763391 +6 38.775 42.652499999999996 1000 50 0.75378203 +7 62.04 65.9175 1000 50 0.5221762 +8 69.795 73.6725 1000 50 0.53562814 +9 85.305 89.1825 1000 50 0.6903143 +10 89.1825 93.06 1000 50 0.6759907 +11 93.06 96.9375 1000 50 0.7255964 +12 96.9375 100.815 1000 50 0.99983287 +13 108.57 112.44749999999999 1000 50 0.8764797 +14 112.4475 116.325 1000 50 0.63916606 +15 120.2025 124.08 1000 50 0.5804239 +16 124.08 127.9575 1000 50 0.67956924 +17 131.835 135.7125 1000 50 0.6157134 +18 139.59 143.4675 1000 50 0.64565927 +19 143.4675 147.345 1000 50 0.99940217 +20 147.345 151.2225 1000 50 0.99630946 +21 151.2225 155.1 1000 50 0.99999976 +22 155.1 158.9775 1000 50 0.785247 +23 158.9775 162.855 1000 50 0.9999968 +24 162.855 166.7325 1000 50 0.939742 +25 166.7325 170.60999999999999 1000 50 0.93601304 +26 170.61 174.4875 1000 50 0.99999964 +27 174.4875 178.365 1000 50 0.9999902 +28 178.365 182.2425 1000 50 0.6275392 +29 182.2425 186.12 1000 50 0.9999999 +30 186.12 189.9975 1000 50 0.9999627 +31 189.9975 193.875 1000 50 0.9999999 +32 193.875 197.7525 1000 50 0.9996456 +33 197.7525 201.63 1000 50 0.9952803 +34 201.63 205.5075 1000 50 0.9987987 +35 205.5075 209.385 1000 50 0.99999917 +36 209.385 213.2625 1000 50 0.7864725 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_04-07-11_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_04-07-11_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..8a134c7abbeb821b67302a9bc2e4492176c23a97 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_04-07-11_annot_2022-11-30_01.txt @@ -0,0 +1,227 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99999833 +2 3.8775 7.755 1000 50 1.0 +3 7.755 11.6325 1000 50 0.9997423 +4 11.6325 15.51 1000 50 0.99997365 +5 15.51 19.3875 1000 50 0.9999994 +6 19.3875 23.265 1000 50 0.99998116 +7 23.265 27.142500000000002 1000 50 0.99999857 +8 27.1425 31.02 1000 50 1.0 +9 31.02 34.8975 1000 50 0.9999809 +10 34.8975 38.775 1000 50 1.0 +11 38.775 42.652499999999996 1000 50 0.99987257 +12 42.6525 46.53 1000 50 0.9999999 +13 46.53 50.4075 1000 50 0.9985195 +14 50.4075 54.285 1000 50 0.9999409 +15 54.285 58.162499999999994 1000 50 0.9999901 +16 58.1625 62.04 1000 50 0.99998915 +17 62.04 65.9175 1000 50 0.9999176 +18 65.9175 69.795 1000 50 1.0 +19 69.795 73.6725 1000 50 0.9972728 +20 73.6725 77.55 1000 50 1.0 +21 77.55 81.4275 1000 50 0.99811363 +22 81.4275 85.30499999999999 1000 50 0.99638295 +23 85.305 89.1825 1000 50 1.0 +24 89.1825 93.06 1000 50 0.9993575 +25 93.06 96.9375 1000 50 1.0 +26 96.9375 100.815 1000 50 0.9999769 +27 100.815 104.6925 1000 50 0.9999999 +28 104.6925 108.57 1000 50 0.9999815 +29 108.57 112.44749999999999 1000 50 0.99963653 +30 112.4475 116.325 1000 50 1.0 +31 116.325 120.2025 1000 50 0.99855226 +32 120.2025 124.08 1000 50 0.9989157 +33 124.08 127.9575 1000 50 1.0 +34 127.9575 131.835 1000 50 0.9753308 +35 131.835 135.7125 1000 50 0.9977787 +36 135.7125 139.59 1000 50 0.83702546 +37 139.59 143.4675 1000 50 0.9980667 +38 143.4675 147.345 1000 50 0.9895153 +39 147.345 151.2225 1000 50 0.99988425 +40 151.2225 155.1 1000 50 0.99999976 +41 155.1 158.9775 1000 50 0.99990416 +42 158.9775 162.855 1000 50 0.99999917 +43 162.855 166.7325 1000 50 0.999998 +44 166.7325 170.60999999999999 1000 50 0.9999999 +45 170.61 174.4875 1000 50 0.99861896 +46 174.4875 178.365 1000 50 0.99998665 +47 178.365 182.2425 1000 50 0.9863441 +48 182.2425 186.12 1000 50 0.55646884 +49 186.12 189.9975 1000 50 0.8755687 +50 189.9975 193.875 1000 50 0.9905997 +51 193.875 197.7525 1000 50 0.8775562 +52 197.7525 201.63 1000 50 0.78653175 +53 201.63 205.5075 1000 50 0.99312747 +54 205.5075 209.385 1000 50 0.85923904 +55 209.385 213.2625 1000 50 0.58024544 +56 221.0175 224.895 1000 50 0.54724395 +57 228.7725 232.65 1000 50 0.6844391 +58 240.405 244.2825 1000 50 0.6436266 +59 244.2825 248.16 1000 50 0.5935761 +60 283.0575 286.935 1000 50 0.78251505 +61 286.935 290.8125 1000 50 0.99886996 +62 290.8125 294.69 1000 50 0.6894511 +63 298.5675 302.445 1000 50 0.75798243 +64 310.2 314.0775 1000 50 0.6279749 +65 325.71 329.5875 1000 50 0.7189395 +66 329.5875 333.465 1000 50 0.85627466 +67 333.465 337.3425 1000 50 0.59806925 +68 341.22 345.0975 1000 50 0.6449996 +69 345.0975 348.975 1000 50 0.8438317 +70 352.8525 356.73 1000 50 0.9764513 +71 360.6075 364.485 1000 50 0.9837198 +72 364.485 368.3625 1000 50 0.6985935 +73 383.8725 387.75 1000 50 0.9608756 +74 387.75 391.6275 1000 50 0.801 +75 395.505 399.3825 1000 50 0.6616906 +76 399.3825 403.26 1000 50 0.99924314 +77 403.26 407.1375 1000 50 0.95695454 +78 411.015 414.8925 1000 50 0.9991084 +79 414.8925 418.77 1000 50 0.72151446 +80 418.77 422.6475 1000 50 0.99924785 +81 422.6475 426.525 1000 50 0.9998392 +82 426.525 430.4025 1000 50 0.99924326 +83 430.4025 434.28 1000 50 0.9666655 +84 434.28 438.15749999999997 1000 50 0.99998343 +85 438.1575 442.035 1000 50 0.9998369 +86 442.035 445.9125 1000 50 0.82457584 +87 445.9125 449.79 1000 50 0.99995613 +88 449.79 453.6675 1000 50 0.99997056 +89 453.6675 457.545 1000 50 0.99969935 +90 457.545 461.4225 1000 50 0.99999833 +91 461.4225 465.3 1000 50 0.86378765 +92 465.3 469.1775 1000 50 0.6792921 +93 469.1775 473.055 1000 50 0.9999969 +94 473.055 476.9325 1000 50 0.9980965 +95 476.9325 480.81 1000 50 0.5882941 +96 480.81 484.6875 1000 50 0.9999763 +97 484.6875 488.565 1000 50 0.99999213 +98 488.565 492.4425 1000 50 0.7041743 +99 492.4425 496.32 1000 50 0.99999917 +100 496.32 500.1975 1000 50 0.9303515 +101 500.1975 504.075 1000 50 0.9927897 +102 504.075 507.9525 1000 50 0.9999696 +103 507.9525 511.83 1000 50 0.98560023 +104 511.83 515.7075 1000 50 0.9997701 +105 515.7075 519.585 1000 50 0.9644588 +106 519.585 523.4625000000001 1000 50 0.7678101 +107 523.4625 527.34 1000 50 0.9997397 +108 527.34 531.2175000000001 1000 50 0.9593255 +109 531.2175 535.095 1000 50 0.99999905 +110 535.095 538.9725000000001 1000 50 0.9931108 +111 538.9725 542.85 1000 50 0.85016996 +112 542.85 546.7275000000001 1000 50 0.99999845 +113 546.7275 550.605 1000 50 0.9979923 +114 550.605 554.4825000000001 1000 50 0.9994454 +115 554.4825 558.36 1000 50 1.0 +116 558.36 562.2375000000001 1000 50 0.5701808 +117 562.2375 566.115 1000 50 0.99704105 +118 566.115 569.9925000000001 1000 50 0.99995303 +119 569.9925 573.87 1000 50 0.9988574 +120 573.87 577.7475000000001 1000 50 0.9999827 +121 577.7475 581.625 1000 50 0.99997425 +122 581.625 585.5025 1000 50 0.9610886 +123 585.5025 589.3800000000001 1000 50 0.99999666 +124 589.38 593.2575 1000 50 0.9999933 +125 593.2575 597.1350000000001 1000 50 0.9999033 +126 597.135 601.0125 1000 50 0.9999335 +127 601.0125 604.8900000000001 1000 50 0.9999937 +128 604.89 608.7675 1000 50 1.0 +129 608.7675 612.6450000000001 1000 50 0.99998593 +130 612.645 616.5225 1000 50 0.9997702 +131 616.5225 620.4000000000001 1000 50 0.9769059 +132 620.4 624.2775 1000 50 1.0 +133 624.2775 628.1550000000001 1000 50 0.9999989 +134 628.155 632.0325 1000 50 1.0 +135 632.0325 635.9100000000001 1000 50 0.999992 +136 635.91 639.7875 1000 50 0.9999999 +137 639.7875 643.6650000000001 1000 50 0.99999964 +138 643.665 647.5425 1000 50 0.9999896 +139 647.5425 651.4200000000001 1000 50 1.0 +140 651.42 655.2975 1000 50 0.99435544 +141 655.2975 659.1750000000001 1000 50 1.0 +142 659.175 663.0525 1000 50 1.0 +143 663.0525 666.9300000000001 1000 50 0.9999988 +144 666.93 670.8075 1000 50 1.0 +145 670.8075 674.6850000000001 1000 50 0.999998 +146 674.685 678.5625 1000 50 0.9999982 +147 678.5625 682.44 1000 50 1.0 +148 682.44 686.3175000000001 1000 50 0.99999905 +149 686.3175 690.195 1000 50 0.99999964 +150 690.195 694.0725000000001 1000 50 0.98901224 +151 694.0725 697.95 1000 50 1.0 +152 697.95 701.8275000000001 1000 50 0.83330786 +153 701.8275 705.705 1000 50 1.0 +154 705.705 709.5825000000001 1000 50 0.9999964 +155 709.5825 713.46 1000 50 0.9998266 +156 713.46 717.3375000000001 1000 50 0.9999069 +157 717.3375 721.215 1000 50 0.9662792 +158 721.215 725.0925000000001 1000 50 0.99999976 +159 725.0925 728.97 1000 50 1.0 +160 728.97 732.8475000000001 1000 50 0.99998546 +161 732.8475 736.725 1000 50 0.9999989 +162 736.725 740.6025000000001 1000 50 0.9999709 +163 740.6025 744.48 1000 50 0.9999856 +164 744.48 748.3575000000001 1000 50 0.99998665 +165 748.3575 752.235 1000 50 0.99931574 +166 752.235 756.1125000000001 1000 50 1.0 +167 756.1125 759.99 1000 50 0.9991978 +168 759.99 763.8675000000001 1000 50 0.99768305 +169 763.8675 767.745 1000 50 0.99956375 +170 767.745 771.6225000000001 1000 50 0.99666363 +171 771.6225 775.5 1000 50 0.9999813 +172 775.5 779.3775 1000 50 0.9923092 +173 779.3775 783.2550000000001 1000 50 0.98991954 +174 783.255 787.1325 1000 50 0.9999814 +175 787.1325 791.0100000000001 1000 50 0.9762422 +176 791.01 794.8875 1000 50 0.55055255 +177 794.8875 798.7650000000001 1000 50 0.90477836 +178 802.6425 806.5200000000001 1000 50 0.9999862 +179 806.52 810.3975 1000 50 0.99975723 +180 810.3975 814.2750000000001 1000 50 0.9912594 +181 814.275 818.1525 1000 50 0.9999976 +182 818.1525 822.0300000000001 1000 50 0.99860305 +183 822.03 825.9075 1000 50 0.9999169 +184 825.9075 829.7850000000001 1000 50 0.9997948 +185 829.785 833.6625 1000 50 0.99991465 +186 833.6625 837.5400000000001 1000 50 0.99996066 +187 837.54 841.4175 1000 50 0.99982846 +188 841.4175 845.2950000000001 1000 50 0.99440163 +189 845.295 849.1725 1000 50 0.9990864 +190 849.1725 853.0500000000001 1000 50 0.99984694 +191 853.05 856.9275 1000 50 0.9982626 +192 856.9275 860.8050000000001 1000 50 0.99996877 +193 860.805 864.6825 1000 50 0.9998976 +194 864.6825 868.5600000000001 1000 50 0.99499786 +195 868.56 872.4375 1000 50 0.99997926 +196 872.4375 876.315 1000 50 0.999495 +197 876.315 880.1925000000001 1000 50 0.99762255 +198 880.1925 884.07 1000 50 0.99999976 +199 884.07 887.9475000000001 1000 50 0.9999201 +200 887.9475 891.825 1000 50 0.9999732 +201 891.825 895.7025000000001 1000 50 0.9999963 +202 895.7025 899.58 1000 50 0.9998816 +203 899.58 903.4575000000001 1000 50 0.99999094 +204 907.335 911.2125000000001 1000 50 0.8855949 +205 911.2125 915.09 1000 50 0.62104535 +206 918.9675 922.845 1000 50 0.9422313 +207 930.6 934.4775000000001 1000 50 0.9953128 +208 942.2325 946.11 1000 50 0.9895935 +209 946.11 949.9875000000001 1000 50 0.5774108 +210 957.7425 961.62 1000 50 0.66620094 +211 961.62 965.4975000000001 1000 50 0.94295186 +212 969.375 973.2525 1000 50 0.5386316 +213 973.2525 977.1300000000001 1000 50 0.65946084 +214 977.13 981.0075 1000 50 0.5904012 +215 981.0075 984.8850000000001 1000 50 0.5957302 +216 984.885 988.7625 1000 50 0.58478934 +217 988.7625 992.6400000000001 1000 50 0.5193841 +218 996.5175 1000.3950000000001 1000 50 0.5485538 +219 1000.395 1004.2725 1000 50 0.6811855 +220 1004.2725 1008.1500000000001 1000 50 0.9641003 +221 1023.66 1027.5375 1000 50 0.58181876 +222 1027.5375 1031.415 1000 50 0.71628165 +223 1035.2925 1039.17 1000 50 0.78253496 +224 1043.0475 1046.925 1000 50 0.6057703 +225 1046.925 1050.8025 1000 50 0.60668236 +226 1070.19 1074.0675 1000 50 0.62004924 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_05-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_05-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..be7de11b16f70b463623edb5c877fc1b1900cf9f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_05-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,129 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99995327 +2 3.8775 7.755 1000 50 0.99999154 +3 7.755 11.6325 1000 50 0.9995265 +4 11.6325 15.51 1000 50 1.0 +5 15.51 19.3875 1000 50 0.9999759 +6 19.3875 23.265 1000 50 1.0 +7 23.265 27.142500000000002 1000 50 0.993636 +8 27.1425 31.02 1000 50 0.99999714 +9 31.02 34.8975 1000 50 0.9997949 +10 34.8975 38.775 1000 50 0.99993765 +11 38.775 42.652499999999996 1000 50 0.9985322 +12 42.6525 46.53 1000 50 0.9999995 +13 46.53 50.4075 1000 50 0.9989924 +14 50.4075 54.285 1000 50 0.9999964 +15 54.285 58.162499999999994 1000 50 1.0 +16 58.1625 62.04 1000 50 0.9999858 +17 62.04 65.9175 1000 50 0.9999989 +18 65.9175 69.795 1000 50 0.999522 +19 69.795 73.6725 1000 50 0.9952899 +20 73.6725 77.55 1000 50 1.0 +21 77.55 81.4275 1000 50 0.99915147 +22 81.4275 85.30499999999999 1000 50 1.0 +23 85.305 89.1825 1000 50 0.994437 +24 89.1825 93.06 1000 50 1.0 +25 96.9375 100.815 1000 50 1.0 +26 100.815 104.6925 1000 50 0.99264514 +27 104.6925 108.57 1000 50 1.0 +28 108.57 112.44749999999999 1000 50 0.99508214 +29 112.4475 116.325 1000 50 1.0 +30 116.325 120.2025 1000 50 1.0 +31 120.2025 124.08 1000 50 0.70148396 +32 124.08 127.9575 1000 50 0.99999976 +33 127.9575 131.835 1000 50 0.9982064 +34 131.835 135.7125 1000 50 0.9999001 +35 135.7125 139.59 1000 50 0.9999317 +36 139.59 143.4675 1000 50 0.9998559 +37 143.4675 147.345 1000 50 0.9999987 +38 147.345 151.2225 1000 50 1.0 +39 151.2225 155.1 1000 50 0.99999225 +40 155.1 158.9775 1000 50 0.999997 +41 158.9775 162.855 1000 50 0.9999944 +42 162.855 166.7325 1000 50 0.9996351 +43 166.7325 170.60999999999999 1000 50 0.99998915 +44 170.61 174.4875 1000 50 0.99999917 +45 174.4875 178.365 1000 50 0.99999905 +46 178.365 182.2425 1000 50 0.8852629 +47 182.2425 186.12 1000 50 0.9999931 +48 186.12 189.9975 1000 50 0.94857454 +49 189.9975 193.875 1000 50 0.9999348 +50 193.875 197.7525 1000 50 0.99998176 +51 197.7525 201.63 1000 50 0.93119925 +52 201.63 205.5075 1000 50 0.96653 +53 205.5075 209.385 1000 50 0.99928004 +54 209.385 213.2625 1000 50 0.9806758 +55 213.2625 217.14 1000 50 0.9965 +56 217.14 221.01749999999998 1000 50 0.99999 +57 221.0175 224.895 1000 50 0.9997125 +58 224.895 228.7725 1000 50 0.9999125 +59 228.7725 232.65 1000 50 0.99999094 +60 232.65 236.5275 1000 50 0.9999993 +61 236.5275 240.405 1000 50 0.9943721 +62 240.405 244.2825 1000 50 0.9999858 +63 244.2825 248.16 1000 50 0.99998367 +64 248.16 252.0375 1000 50 0.99999666 +65 252.0375 255.915 1000 50 0.9999999 +66 255.915 259.7925 1000 50 0.94548523 +67 259.7925 263.67 1000 50 0.99406487 +68 263.67 267.5475 1000 50 0.99999833 +69 267.5475 271.425 1000 50 0.9999733 +70 271.425 275.3025 1000 50 0.99999964 +71 275.3025 279.18 1000 50 0.9992937 +72 283.0575 286.935 1000 50 0.99839336 +73 286.935 290.8125 1000 50 0.99928135 +74 290.8125 294.69 1000 50 0.7054682 +75 294.69 298.5675 1000 50 0.9943982 +76 302.445 306.3225 1000 50 0.62567484 +77 310.2 314.0775 1000 50 0.99991775 +78 317.955 321.8325 1000 50 0.93233544 +79 321.8325 325.71 1000 50 0.99709785 +80 329.5875 333.465 1000 50 0.98977154 +81 333.465 337.3425 1000 50 0.85344595 +82 341.22 345.0975 1000 50 0.9985159 +83 345.0975 348.975 1000 50 0.6203234 +84 348.975 352.8525 1000 50 0.7296038 +85 352.8525 356.73 1000 50 0.9999889 +86 356.73 360.6075 1000 50 0.9974341 +87 360.6075 364.485 1000 50 0.5617847 +88 364.485 368.3625 1000 50 0.99663395 +89 368.3625 372.24 1000 50 0.93288743 +90 376.1175 379.995 1000 50 0.97050786 +91 379.995 383.8725 1000 50 0.9941916 +92 383.8725 387.75 1000 50 0.6938431 +93 387.75 391.6275 1000 50 0.99969625 +94 391.6275 395.505 1000 50 0.99998486 +95 395.505 399.3825 1000 50 0.9946538 +96 399.3825 403.26 1000 50 1.0 +97 403.26 407.1375 1000 50 0.99402976 +98 407.1375 411.015 1000 50 0.99947375 +99 411.015 414.8925 1000 50 0.9998846 +100 418.77 422.6475 1000 50 0.99998164 +101 422.6475 426.525 1000 50 0.9935567 +102 426.525 430.4025 1000 50 0.966023 +103 430.4025 434.28 1000 50 0.9999999 +104 434.28 438.15749999999997 1000 50 0.9998227 +105 438.1575 442.035 1000 50 0.9395428 +106 442.035 445.9125 1000 50 0.99975616 +107 445.9125 449.79 1000 50 0.99999714 +108 449.79 453.6675 1000 50 0.999998 +109 453.6675 457.545 1000 50 0.9998801 +110 457.545 461.4225 1000 50 0.9999864 +111 461.4225 465.3 1000 50 0.9998884 +112 465.3 469.1775 1000 50 0.9981413 +113 469.1775 473.055 1000 50 0.99965525 +114 473.055 476.9325 1000 50 0.9999999 +115 476.9325 480.81 1000 50 0.9999894 +116 480.81 484.6875 1000 50 0.9998148 +117 484.6875 488.565 1000 50 0.9995901 +118 488.565 492.4425 1000 50 0.99998486 +119 492.4425 496.32 1000 50 1.0 +120 496.32 500.1975 1000 50 0.9999989 +121 500.1975 504.075 1000 50 0.9998467 +122 504.075 507.9525 1000 50 0.9999124 +123 507.9525 511.83 1000 50 0.9468689 +124 511.83 515.7075 1000 50 0.99944276 +125 515.7075 519.585 1000 50 0.9999807 +126 519.585 523.4625000000001 1000 50 0.9999571 +127 523.4625 527.34 1000 50 0.99959606 +128 527.34 531.2175000000001 1000 50 0.99911183 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_05-12-29_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_05-12-29_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..440b8a5069fb10da9241705a557a5671fab7744b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_05-12-29_annot_2022-11-30_01.txt @@ -0,0 +1,167 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9993075 +2 3.8775 7.755 1000 50 0.99889684 +3 7.755 11.6325 1000 50 0.9668838 +4 11.6325 15.51 1000 50 0.99986744 +5 15.51 19.3875 1000 50 0.97129446 +6 19.3875 23.265 1000 50 0.97779477 +7 23.265 27.142500000000002 1000 50 0.7057729 +8 27.1425 31.02 1000 50 0.9892453 +9 31.02 34.8975 1000 50 0.63952273 +10 38.775 42.652499999999996 1000 50 0.9736023 +11 42.6525 46.53 1000 50 0.9761019 +12 46.53 50.4075 1000 50 0.5940441 +13 54.285 58.162499999999994 1000 50 0.6586534 +14 58.1625 62.04 1000 50 0.68838084 +15 65.9175 69.795 1000 50 0.747404 +16 69.795 73.6725 1000 50 0.846799 +17 73.6725 77.55 1000 50 0.77077204 +18 77.55 81.4275 1000 50 0.6048781 +19 81.4275 85.30499999999999 1000 50 0.7708506 +20 89.1825 93.06 1000 50 0.5494201 +21 108.57 112.44749999999999 1000 50 0.6416521 +22 112.4475 116.325 1000 50 0.6298082 +23 124.08 127.9575 1000 50 0.61133516 +24 127.9575 131.835 1000 50 0.78307754 +25 131.835 135.7125 1000 50 0.5342405 +26 135.7125 139.59 1000 50 0.8231201 +27 139.59 143.4675 1000 50 0.59226257 +28 143.4675 147.345 1000 50 0.9315227 +29 147.345 151.2225 1000 50 0.9939423 +30 155.1 158.9775 1000 50 0.5458793 +31 158.9775 162.855 1000 50 0.9996656 +32 166.7325 170.60999999999999 1000 50 0.78854084 +33 178.365 182.2425 1000 50 0.71993715 +34 182.2425 186.12 1000 50 0.6398437 +35 186.12 189.9975 1000 50 0.756791 +36 189.9975 193.875 1000 50 0.9997619 +37 193.875 197.7525 1000 50 0.59061885 +38 201.63 205.5075 1000 50 0.68671405 +39 209.385 213.2625 1000 50 0.9970783 +40 217.14 221.01749999999998 1000 50 0.6706655 +41 221.0175 224.895 1000 50 0.97672814 +42 224.895 228.7725 1000 50 0.78199744 +43 228.7725 232.65 1000 50 0.9985903 +44 232.65 236.5275 1000 50 0.9999871 +45 236.5275 240.405 1000 50 0.6555427 +46 240.405 244.2825 1000 50 0.971429 +47 248.16 252.0375 1000 50 0.7710411 +48 252.0375 255.915 1000 50 0.99937916 +49 255.915 259.7925 1000 50 0.9999205 +50 259.7925 263.67 1000 50 0.987224 +51 263.67 267.5475 1000 50 0.96494603 +52 267.5475 271.425 1000 50 0.6530321 +53 271.425 275.3025 1000 50 0.9999461 +54 279.18 283.0575 1000 50 0.99636686 +55 283.0575 286.935 1000 50 0.99998605 +56 286.935 290.8125 1000 50 0.99996936 +57 290.8125 294.69 1000 50 0.9999678 +58 294.69 298.5675 1000 50 0.6217264 +59 298.5675 302.445 1000 50 0.9999999 +60 302.445 306.3225 1000 50 0.99998116 +61 306.3225 310.2 1000 50 0.510124 +62 310.2 314.0775 1000 50 0.9599921 +63 314.0775 317.955 1000 50 0.9999825 +64 321.8325 325.71 1000 50 0.9463686 +65 325.71 329.5875 1000 50 0.56478095 +66 333.465 337.3425 1000 50 0.99999094 +67 337.3425 341.21999999999997 1000 50 0.99999845 +68 341.22 345.0975 1000 50 1.0 +69 345.0975 348.975 1000 50 0.9904022 +70 348.975 352.8525 1000 50 0.99997044 +71 352.8525 356.73 1000 50 0.9999958 +72 356.73 360.6075 1000 50 0.9994679 +73 360.6075 364.485 1000 50 0.99887186 +74 364.485 368.3625 1000 50 0.9999982 +75 368.3625 372.24 1000 50 0.99996936 +76 372.24 376.1175 1000 50 0.9614611 +77 376.1175 379.995 1000 50 1.0 +78 379.995 383.8725 1000 50 0.99999976 +79 383.8725 387.75 1000 50 0.9999982 +80 387.75 391.6275 1000 50 0.99999094 +81 391.6275 395.505 1000 50 0.99741143 +82 395.505 399.3825 1000 50 0.99986684 +83 399.3825 403.26 1000 50 0.999997 +84 403.26 407.1375 1000 50 0.99807656 +85 407.1375 411.015 1000 50 1.0 +86 411.015 414.8925 1000 50 0.9999987 +87 414.8925 418.77 1000 50 0.99999964 +88 418.77 422.6475 1000 50 0.9815942 +89 422.6475 426.525 1000 50 0.9965873 +90 426.525 430.4025 1000 50 0.9999937 +91 430.4025 434.28 1000 50 0.9992774 +92 434.28 438.15749999999997 1000 50 0.81265336 +93 438.1575 442.035 1000 50 0.9999962 +94 442.035 445.9125 1000 50 0.9996848 +95 445.9125 449.79 1000 50 0.9951314 +96 449.79 453.6675 1000 50 1.0 +97 453.6675 457.545 1000 50 0.99994564 +98 457.545 461.4225 1000 50 0.9999958 +99 461.4225 465.3 1000 50 1.0 +100 465.3 469.1775 1000 50 0.9999554 +101 469.1775 473.055 1000 50 0.99999964 +102 473.055 476.9325 1000 50 0.99851424 +103 476.9325 480.81 1000 50 1.0 +104 480.81 484.6875 1000 50 0.99810153 +105 484.6875 488.565 1000 50 1.0 +106 488.565 492.4425 1000 50 0.9994282 +107 492.4425 496.32 1000 50 1.0 +108 496.32 500.1975 1000 50 0.98236555 +109 500.1975 504.075 1000 50 0.9999982 +110 504.075 507.9525 1000 50 1.0 +111 507.9525 511.83 1000 50 0.9996637 +112 511.83 515.7075 1000 50 1.0 +113 515.7075 519.585 1000 50 0.9993616 +114 519.585 523.4625000000001 1000 50 1.0 +115 523.4625 527.34 1000 50 0.9999949 +116 527.34 531.2175000000001 1000 50 1.0 +117 531.2175 535.095 1000 50 1.0 +118 535.095 538.9725000000001 1000 50 0.9965217 +119 538.9725 542.85 1000 50 1.0 +120 542.85 546.7275000000001 1000 50 0.9997826 +121 546.7275 550.605 1000 50 1.0 +122 550.605 554.4825000000001 1000 50 0.99813855 +123 554.4825 558.36 1000 50 0.92858166 +124 558.36 562.2375000000001 1000 50 0.99910396 +125 562.2375 566.115 1000 50 0.9999995 +126 566.115 569.9925000000001 1000 50 0.9999999 +127 569.9925 573.87 1000 50 0.99999917 +128 573.87 577.7475000000001 1000 50 0.9863913 +129 577.7475 581.625 1000 50 1.0 +130 581.625 585.5025 1000 50 0.9969578 +131 585.5025 589.3800000000001 1000 50 0.99999857 +132 589.38 593.2575 1000 50 1.0 +133 593.2575 597.1350000000001 1000 50 0.9975647 +134 597.135 601.0125 1000 50 0.9917555 +135 601.0125 604.8900000000001 1000 50 0.9931405 +136 604.89 608.7675 1000 50 0.9999932 +137 608.7675 612.6450000000001 1000 50 0.86489654 +138 612.645 616.5225 1000 50 0.9953146 +139 616.5225 620.4000000000001 1000 50 0.970391 +140 620.4 624.2775 1000 50 0.99958235 +141 624.2775 628.1550000000001 1000 50 0.987351 +142 628.155 632.0325 1000 50 0.9919803 +143 632.0325 635.9100000000001 1000 50 0.9999987 +144 635.91 639.7875 1000 50 0.95647967 +145 639.7875 643.6650000000001 1000 50 0.9996209 +146 643.665 647.5425 1000 50 0.99967444 +147 647.5425 651.4200000000001 1000 50 0.9925547 +148 651.42 655.2975 1000 50 0.9943311 +149 655.2975 659.1750000000001 1000 50 0.9999994 +150 659.175 663.0525 1000 50 0.9883465 +151 663.0525 666.9300000000001 1000 50 0.99997187 +152 666.93 670.8075 1000 50 0.9990589 +153 670.8075 674.6850000000001 1000 50 0.99999785 +154 674.685 678.5625 1000 50 0.9974335 +155 678.5625 682.44 1000 50 0.9998572 +156 682.44 686.3175000000001 1000 50 0.99853337 +157 686.3175 690.195 1000 50 0.99999547 +158 690.195 694.0725000000001 1000 50 0.98017466 +159 694.0725 697.95 1000 50 0.99997354 +160 697.95 701.8275000000001 1000 50 0.99688405 +161 701.8275 705.705 1000 50 1.0 +162 717.3375 721.215 1000 50 0.7263321 +163 721.215 725.0925000000001 1000 50 0.54548293 +164 744.48 748.3575000000001 1000 50 0.86337584 +165 748.3575 752.235 1000 50 0.9961661 +166 752.235 756.1125000000001 1000 50 0.6369891 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_06-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_06-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..111ba7d5535e13e447b5f23dc53133f38be47e17 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_06-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,158 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 1.0 +2 7.755 11.6325 1000 50 0.9794319 +3 11.6325 15.51 1000 50 0.9999994 +4 15.51 19.3875 1000 50 0.99998486 +5 19.3875 23.265 1000 50 0.9993299 +6 23.265 27.142500000000002 1000 50 0.9999621 +7 31.02 34.8975 1000 50 0.9993352 +8 34.8975 38.775 1000 50 0.99998116 +9 42.6525 46.53 1000 50 0.9999999 +10 46.53 50.4075 1000 50 0.5168596 +11 50.4075 54.285 1000 50 0.9993981 +12 54.285 58.162499999999994 1000 50 0.99989545 +13 58.1625 62.04 1000 50 0.9999045 +14 62.04 65.9175 1000 50 0.99996364 +15 65.9175 69.795 1000 50 0.99513876 +16 69.795 73.6725 1000 50 0.99999046 +17 73.6725 77.55 1000 50 0.99999774 +18 77.55 81.4275 1000 50 0.9999658 +19 81.4275 85.30499999999999 1000 50 0.9989864 +20 89.1825 93.06 1000 50 1.0 +21 93.06 96.9375 1000 50 0.9999597 +22 96.9375 100.815 1000 50 0.9999999 +23 100.815 104.6925 1000 50 1.0 +24 104.6925 108.57 1000 50 0.9999994 +25 108.57 112.44749999999999 1000 50 0.9984604 +26 112.4475 116.325 1000 50 0.9730449 +27 116.325 120.2025 1000 50 1.0 +28 120.2025 124.08 1000 50 0.99215937 +29 124.08 127.9575 1000 50 0.9999968 +30 127.9575 131.835 1000 50 1.0 +31 131.835 135.7125 1000 50 0.9999987 +32 135.7125 139.59 1000 50 0.99999905 +33 139.59 143.4675 1000 50 0.9483287 +34 143.4675 147.345 1000 50 1.0 +35 147.345 151.2225 1000 50 0.9743114 +36 151.2225 155.1 1000 50 1.0 +37 155.1 158.9775 1000 50 0.99911755 +38 158.9775 162.855 1000 50 0.999997 +39 162.855 166.7325 1000 50 0.9999999 +40 166.7325 170.60999999999999 1000 50 0.99999607 +41 170.61 174.4875 1000 50 1.0 +42 174.4875 178.365 1000 50 0.96934813 +43 178.365 182.2425 1000 50 1.0 +44 182.2425 186.12 1000 50 0.99999905 +45 186.12 189.9975 1000 50 0.98184896 +46 189.9975 193.875 1000 50 0.9999999 +47 193.875 197.7525 1000 50 0.9999999 +48 197.7525 201.63 1000 50 0.99996233 +49 201.63 205.5075 1000 50 0.91868466 +50 205.5075 209.385 1000 50 0.9994197 +51 209.385 213.2625 1000 50 0.9999982 +52 213.2625 217.14 1000 50 0.9961875 +53 217.14 221.01749999999998 1000 50 0.9989336 +54 221.0175 224.895 1000 50 0.99705255 +55 224.895 228.7725 1000 50 0.9999982 +56 228.7725 232.65 1000 50 0.99984026 +57 232.65 236.5275 1000 50 0.99998724 +58 236.5275 240.405 1000 50 0.99919635 +59 240.405 244.2825 1000 50 0.63238937 +60 244.2825 248.16 1000 50 0.986857 +61 248.16 252.0375 1000 50 0.99999845 +62 252.0375 255.915 1000 50 0.99994767 +63 255.915 259.7925 1000 50 0.97973675 +64 259.7925 263.67 1000 50 0.9998864 +65 267.5475 271.425 1000 50 0.9997757 +66 271.425 275.3025 1000 50 0.99504954 +67 275.3025 279.18 1000 50 0.9912704 +68 279.18 283.0575 1000 50 0.99984264 +69 283.0575 286.935 1000 50 0.99996257 +70 286.935 290.8125 1000 50 0.994099 +71 290.8125 294.69 1000 50 0.9999999 +72 294.69 298.5675 1000 50 0.99967384 +73 298.5675 302.445 1000 50 0.9998074 +74 302.445 306.3225 1000 50 0.9997881 +75 306.3225 310.2 1000 50 0.99993527 +76 310.2 314.0775 1000 50 0.9844536 +77 314.0775 317.955 1000 50 0.99998844 +78 317.955 321.8325 1000 50 0.99988306 +79 321.8325 325.71 1000 50 0.99985766 +80 325.71 329.5875 1000 50 0.99374855 +81 329.5875 333.465 1000 50 0.99996793 +82 333.465 337.3425 1000 50 0.9998951 +83 337.3425 341.21999999999997 1000 50 0.99999833 +84 341.22 345.0975 1000 50 0.9998833 +85 345.0975 348.975 1000 50 0.7221734 +86 356.73 360.6075 1000 50 0.70805216 +87 368.3625 372.24 1000 50 0.77303666 +88 376.1175 379.995 1000 50 0.6295594 +89 379.995 383.8725 1000 50 0.6257782 +90 391.6275 395.505 1000 50 0.78842527 +91 411.015 414.8925 1000 50 0.61418456 +92 418.77 422.6475 1000 50 0.51335937 +93 422.6475 426.525 1000 50 0.6724924 +94 430.4025 434.28 1000 50 0.51951975 +95 438.1575 442.035 1000 50 0.8193278 +96 442.035 445.9125 1000 50 0.5428717 +97 449.79 453.6675 1000 50 0.7135736 +98 457.545 461.4225 1000 50 0.84601015 +99 473.055 476.9325 1000 50 0.53894514 +100 476.9325 480.81 1000 50 0.6327856 +101 488.565 492.4425 1000 50 0.68710124 +102 504.075 507.9525 1000 50 0.57210517 +103 515.7075 519.585 1000 50 0.8343251 +104 523.4625 527.34 1000 50 0.5879141 +105 527.34 531.2175000000001 1000 50 0.51742774 +106 535.095 538.9725000000001 1000 50 0.71611166 +107 542.85 546.7275000000001 1000 50 0.9166515 +108 546.7275 550.605 1000 50 0.5063366 +109 550.605 554.4825000000001 1000 50 0.5286615 +110 554.4825 558.36 1000 50 0.86705 +111 558.36 562.2375000000001 1000 50 0.71223265 +112 562.2375 566.115 1000 50 0.87999135 +113 566.115 569.9925000000001 1000 50 0.985852 +114 569.9925 573.87 1000 50 0.70207995 +115 573.87 577.7475000000001 1000 50 0.9489923 +116 577.7475 581.625 1000 50 0.5906199 +117 581.625 585.5025 1000 50 0.5652211 +118 589.38 593.2575 1000 50 0.7897155 +119 593.2575 597.1350000000001 1000 50 0.6447163 +120 597.135 601.0125 1000 50 0.97609156 +121 601.0125 604.8900000000001 1000 50 0.99754554 +122 608.7675 612.6450000000001 1000 50 0.99027073 +123 612.645 616.5225 1000 50 0.90376955 +124 616.5225 620.4000000000001 1000 50 0.60124177 +125 620.4 624.2775 1000 50 0.79449433 +126 624.2775 628.1550000000001 1000 50 0.83056486 +127 632.0325 635.9100000000001 1000 50 0.81333685 +128 635.91 639.7875 1000 50 0.9265391 +129 639.7875 643.6650000000001 1000 50 0.9971975 +130 643.665 647.5425 1000 50 0.99447155 +131 647.5425 651.4200000000001 1000 50 0.76594406 +132 651.42 655.2975 1000 50 0.9986927 +133 655.2975 659.1750000000001 1000 50 0.94257975 +134 659.175 663.0525 1000 50 0.87132245 +135 666.93 670.8075 1000 50 0.56730026 +136 674.685 678.5625 1000 50 0.9584391 +137 678.5625 682.44 1000 50 0.61210227 +138 686.3175 690.195 1000 50 0.84592384 +139 690.195 694.0725000000001 1000 50 0.5322316 +140 701.8275 705.705 1000 50 0.5052376 +141 705.705 709.5825000000001 1000 50 0.6583641 +142 717.3375 721.215 1000 50 0.9947043 +143 721.215 725.0925000000001 1000 50 0.8070021 +144 725.0925 728.97 1000 50 0.8561194 +145 728.97 732.8475000000001 1000 50 0.6719147 +146 732.8475 736.725 1000 50 0.87110025 +147 740.6025 744.48 1000 50 0.985592 +148 759.99 763.8675000000001 1000 50 0.8235926 +149 763.8675 767.745 1000 50 0.5943385 +150 775.5 779.3775 1000 50 0.5427966 +151 787.1325 791.0100000000001 1000 50 0.550926 +152 802.6425 806.5200000000001 1000 50 0.6583048 +153 814.275 818.1525 1000 50 0.59678805 +154 818.1525 822.0300000000001 1000 50 0.77325433 +155 829.785 833.6625 1000 50 0.5853645 +156 833.6625 837.5400000000001 1000 50 0.6196863 +157 841.4175 845.2950000000001 1000 50 0.9405876 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_06-17-47_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_06-17-47_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a37194a18e00c54a446b90808559b92348bdd070 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_06-17-47_annot_2022-11-30_01.txt @@ -0,0 +1,62 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.6465298 +2 3.8775 7.755 1000 50 0.7241341 +3 11.6325 15.51 1000 50 0.51249593 +4 15.51 19.3875 1000 50 0.503518 +5 23.265 27.142500000000002 1000 50 0.80925214 +6 27.1425 31.02 1000 50 0.84381825 +7 31.02 34.8975 1000 50 0.6036789 +8 34.8975 38.775 1000 50 0.72992754 +9 38.775 42.652499999999996 1000 50 0.584319 +10 42.6525 46.53 1000 50 0.8303238 +11 58.1625 62.04 1000 50 0.68161404 +12 65.9175 69.795 1000 50 0.9891312 +13 69.795 73.6725 1000 50 0.68722844 +14 77.55 81.4275 1000 50 0.64894545 +15 81.4275 85.30499999999999 1000 50 0.9678161 +16 85.305 89.1825 1000 50 0.99835384 +17 89.1825 93.06 1000 50 0.9112625 +18 96.9375 100.815 1000 50 0.59079 +19 104.6925 108.57 1000 50 0.5852219 +20 108.57 112.44749999999999 1000 50 0.9844529 +21 112.4475 116.325 1000 50 0.8680299 +22 116.325 120.2025 1000 50 0.5518448 +23 124.08 127.9575 1000 50 0.6612525 +24 135.7125 139.59 1000 50 0.59011805 +25 139.59 143.4675 1000 50 0.9959532 +26 151.2225 155.1 1000 50 0.8685035 +27 155.1 158.9775 1000 50 0.71730626 +28 162.855 166.7325 1000 50 0.8226831 +29 174.4875 178.365 1000 50 0.9898028 +30 186.12 189.9975 1000 50 0.9782522 +31 201.63 205.5075 1000 50 0.6597034 +32 205.5075 209.385 1000 50 0.78253657 +33 213.2625 217.14 1000 50 0.94044304 +34 217.14 221.01749999999998 1000 50 0.96608734 +35 221.0175 224.895 1000 50 0.7058684 +36 224.895 228.7725 1000 50 0.9856 +37 228.7725 232.65 1000 50 0.74205184 +38 236.5275 240.405 1000 50 0.9851533 +39 240.405 244.2825 1000 50 0.87737477 +40 248.16 252.0375 1000 50 0.76883304 +41 255.915 259.7925 1000 50 0.99983823 +42 275.3025 279.18 1000 50 0.80122197 +43 279.18 283.0575 1000 50 0.58958226 +44 286.935 290.8125 1000 50 0.99630225 +45 290.8125 294.69 1000 50 0.7766947 +46 294.69 298.5675 1000 50 0.92336696 +47 310.2 314.0775 1000 50 0.6127704 +48 321.8325 325.71 1000 50 0.52798593 +49 329.5875 333.465 1000 50 0.7853052 +50 337.3425 341.21999999999997 1000 50 0.8923264 +51 348.975 352.8525 1000 50 0.6164287 +52 352.8525 356.73 1000 50 0.56415164 +53 360.6075 364.485 1000 50 0.80604595 +54 364.485 368.3625 1000 50 0.8785715 +55 372.24 376.1175 1000 50 0.722671 +56 376.1175 379.995 1000 50 0.61288065 +57 379.995 383.8725 1000 50 0.50452423 +58 399.3825 403.26 1000 50 0.5783298 +59 403.26 407.1375 1000 50 0.75021374 +60 414.8925 418.77 1000 50 0.55250007 +61 434.28 438.15749999999997 1000 50 0.7681926 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_07-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_07-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..3be2b69f24632bccdc90e15f984d4d6bc8275dc4 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_07-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,139 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.6381832 +2 3.8775 7.755 1000 50 0.7276757 +3 7.755 11.6325 1000 50 0.5520726 +4 19.3875 23.265 1000 50 0.5086882 +5 23.265 27.142500000000002 1000 50 0.60706484 +6 27.1425 31.02 1000 50 0.60722417 +7 38.775 42.652499999999996 1000 50 0.60351217 +8 42.6525 46.53 1000 50 0.5892071 +9 50.4075 54.285 1000 50 0.5548684 +10 58.1625 62.04 1000 50 0.6489671 +11 62.04 65.9175 1000 50 0.6810671 +12 65.9175 69.795 1000 50 0.5610552 +13 73.6725 77.55 1000 50 0.64999914 +14 81.4275 85.30499999999999 1000 50 0.85657126 +15 85.305 89.1825 1000 50 0.7410791 +16 93.06 96.9375 1000 50 0.6469673 +17 96.9375 100.815 1000 50 0.6162385 +18 108.57 112.44749999999999 1000 50 0.6099375 +19 116.325 120.2025 1000 50 0.6669378 +20 120.2025 124.08 1000 50 0.79959506 +21 135.7125 139.59 1000 50 0.6397626 +22 139.59 143.4675 1000 50 0.5666814 +23 143.4675 147.345 1000 50 0.64354837 +24 147.345 151.2225 1000 50 0.59195465 +25 155.1 158.9775 1000 50 0.6015476 +26 158.9775 162.855 1000 50 0.6462484 +27 174.4875 178.365 1000 50 0.53129303 +28 178.365 182.2425 1000 50 0.88553804 +29 197.7525 201.63 1000 50 0.68542 +30 213.2625 217.14 1000 50 0.52786875 +31 221.0175 224.895 1000 50 0.6865868 +32 232.65 236.5275 1000 50 0.56405807 +33 236.5275 240.405 1000 50 0.6787711 +34 244.2825 248.16 1000 50 0.6025273 +35 248.16 252.0375 1000 50 0.7673002 +36 252.0375 255.915 1000 50 0.54390115 +37 255.915 259.7925 1000 50 0.59425986 +38 275.3025 279.18 1000 50 0.9152325 +39 283.0575 286.935 1000 50 0.8120668 +40 286.935 290.8125 1000 50 0.7131212 +41 294.69 298.5675 1000 50 0.9997178 +42 298.5675 302.445 1000 50 0.69596475 +43 302.445 306.3225 1000 50 0.67326736 +44 306.3225 310.2 1000 50 0.9886052 +45 314.0775 317.955 1000 50 0.5107622 +46 317.955 321.8325 1000 50 0.6121295 +47 321.8325 325.71 1000 50 0.63308996 +48 325.71 329.5875 1000 50 0.97255784 +49 337.3425 341.21999999999997 1000 50 0.5583167 +50 345.0975 348.975 1000 50 0.99987125 +51 352.8525 356.73 1000 50 0.6870512 +52 356.73 360.6075 1000 50 0.9903992 +53 364.485 368.3625 1000 50 0.9662511 +54 391.6275 395.505 1000 50 0.7390729 +55 395.505 399.3825 1000 50 0.9803687 +56 407.1375 411.015 1000 50 0.72145075 +57 426.525 430.4025 1000 50 0.73802567 +58 430.4025 434.28 1000 50 0.6193277 +59 434.28 438.15749999999997 1000 50 0.6566249 +60 438.1575 442.035 1000 50 0.7047201 +61 442.035 445.9125 1000 50 0.7693253 +62 445.9125 449.79 1000 50 0.68899196 +63 461.4225 465.3 1000 50 0.5093781 +64 465.3 469.1775 1000 50 0.57651067 +65 469.1775 473.055 1000 50 0.60850203 +66 473.055 476.9325 1000 50 0.70669144 +67 476.9325 480.81 1000 50 0.97952294 +68 492.4425 496.32 1000 50 0.68383855 +69 496.32 500.1975 1000 50 0.92088896 +70 504.075 507.9525 1000 50 0.91265786 +71 507.9525 511.83 1000 50 0.5070309 +72 515.7075 519.585 1000 50 0.6159365 +73 523.4625 527.34 1000 50 0.5410912 +74 535.095 538.9725000000001 1000 50 0.6885614 +75 538.9725 542.85 1000 50 0.66524714 +76 550.605 554.4825000000001 1000 50 0.5622165 +77 558.36 562.2375000000001 1000 50 0.706376 +78 585.5025 589.3800000000001 1000 50 0.6048238 +79 589.38 593.2575 1000 50 0.5319443 +80 597.135 601.0125 1000 50 0.65218353 +81 604.89 608.7675 1000 50 0.6075836 +82 608.7675 612.6450000000001 1000 50 0.6890418 +83 620.4 624.2775 1000 50 0.6910856 +84 628.155 632.0325 1000 50 0.77801347 +85 635.91 639.7875 1000 50 0.617645 +86 643.665 647.5425 1000 50 0.5447236 +87 647.5425 651.4200000000001 1000 50 0.7657482 +88 651.42 655.2975 1000 50 0.7966987 +89 663.0525 666.9300000000001 1000 50 0.8472817 +90 666.93 670.8075 1000 50 0.6883774 +91 678.5625 682.44 1000 50 0.9865891 +92 682.44 686.3175000000001 1000 50 0.59905696 +93 686.3175 690.195 1000 50 0.9997962 +94 697.95 701.8275000000001 1000 50 0.9953803 +95 717.3375 721.215 1000 50 0.6527811 +96 725.0925 728.97 1000 50 0.5344639 +97 752.235 756.1125000000001 1000 50 0.69742984 +98 759.99 763.8675000000001 1000 50 0.52520436 +99 767.745 771.6225000000001 1000 50 0.53715837 +100 779.3775 783.2550000000001 1000 50 0.9349128 +101 787.1325 791.0100000000001 1000 50 0.6060281 +102 791.01 794.8875 1000 50 0.5493711 +103 798.765 802.6425 1000 50 0.5803275 +104 802.6425 806.5200000000001 1000 50 0.523567 +105 810.3975 814.2750000000001 1000 50 0.62308556 +106 818.1525 822.0300000000001 1000 50 0.5853208 +107 822.03 825.9075 1000 50 0.5138194 +108 833.6625 837.5400000000001 1000 50 0.5534347 +109 837.54 841.4175 1000 50 0.6126913 +110 841.4175 845.2950000000001 1000 50 0.8096412 +111 845.295 849.1725 1000 50 0.974345 +112 856.9275 860.8050000000001 1000 50 0.9135734 +113 864.6825 868.5600000000001 1000 50 0.9999924 +114 868.56 872.4375 1000 50 0.60802 +115 872.4375 876.315 1000 50 0.7127464 +116 876.315 880.1925000000001 1000 50 0.99972457 +117 884.07 887.9475000000001 1000 50 0.98461145 +118 895.7025 899.58 1000 50 0.76071286 +119 907.335 911.2125000000001 1000 50 0.78540844 +120 918.9675 922.845 1000 50 0.6845227 +121 926.7225 930.6 1000 50 0.6504913 +122 949.9875 953.865 1000 50 0.6907934 +123 973.2525 977.1300000000001 1000 50 0.84168214 +124 984.885 988.7625 1000 50 0.8672044 +125 988.7625 992.6400000000001 1000 50 0.7255304 +126 1000.395 1004.2725 1000 50 0.7801506 +127 1004.2725 1008.1500000000001 1000 50 0.8153288 +128 1012.0275 1015.9050000000001 1000 50 0.5348822 +129 1015.905 1019.7825 1000 50 0.622377 +130 1023.66 1027.5375 1000 50 0.5012304 +131 1027.5375 1031.415 1000 50 0.70179033 +132 1050.8025 1054.68 1000 50 0.9202789 +133 1058.5575 1062.435 1000 50 0.52125585 +134 1101.21 1105.0875 1000 50 0.5230639 +135 1105.0875 1108.9650000000001 1000 50 0.5705464 +136 1116.72 1120.5975 1000 50 0.61276007 +137 1139.985 1143.8625 1000 50 0.6728817 +138 1155.495 1159.3725 1000 50 0.6157987 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_07-23-06_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_07-23-06_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..3a5e46e3947dcd0eea59aa0b0eef7d2538140010 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_07-23-06_annot_2022-11-30_01.txt @@ -0,0 +1,24 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.98675007 +2 3.8775 7.755 1000 50 0.5357621 +3 15.51 19.3875 1000 50 0.58643913 +4 19.3875 23.265 1000 50 0.93155074 +5 23.265 27.142500000000002 1000 50 0.9876088 +6 27.1425 31.02 1000 50 0.5072882 +7 31.02 34.8975 1000 50 0.97568786 +8 34.8975 38.775 1000 50 0.8823187 +9 38.775 42.652499999999996 1000 50 0.7635432 +10 42.6525 46.53 1000 50 0.994162 +11 46.53 50.4075 1000 50 0.9908433 +12 50.4075 54.285 1000 50 0.8183178 +13 54.285 58.162499999999994 1000 50 0.99504036 +14 58.1625 62.04 1000 50 0.8361188 +15 62.04 65.9175 1000 50 0.90771323 +16 69.795 73.6725 1000 50 0.7028223 +17 73.6725 77.55 1000 50 0.79325646 +18 77.55 81.4275 1000 50 0.9340242 +19 81.4275 85.30499999999999 1000 50 0.5188683 +20 89.1825 93.06 1000 50 0.5387035 +21 93.06 96.9375 1000 50 0.60956573 +22 100.815 104.6925 1000 50 0.6565907 +23 108.57 112.44749999999999 1000 50 0.6685928 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_08-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_08-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..520e8a6624f831e9a7d77767928ea79310200973 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_08-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,180 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.56828666 +2 11.6325 15.51 1000 50 0.8988645 +3 15.51 19.3875 1000 50 0.9617944 +4 19.3875 23.265 1000 50 0.58573896 +5 23.265 27.142500000000002 1000 50 0.53801864 +6 27.1425 31.02 1000 50 0.9627765 +7 31.02 34.8975 1000 50 0.5405882 +8 46.53 50.4075 1000 50 0.5357883 +9 89.1825 93.06 1000 50 0.60024583 +10 96.9375 100.815 1000 50 0.6673931 +11 104.6925 108.57 1000 50 0.69352144 +12 108.57 112.44749999999999 1000 50 0.50883424 +13 120.2025 124.08 1000 50 0.6124398 +14 131.835 135.7125 1000 50 0.6602962 +15 151.2225 155.1 1000 50 0.50168586 +16 155.1 158.9775 1000 50 0.5038083 +17 158.9775 162.855 1000 50 0.5424051 +18 162.855 166.7325 1000 50 0.7406282 +19 182.2425 186.12 1000 50 0.6465042 +20 189.9975 193.875 1000 50 0.7050232 +21 197.7525 201.63 1000 50 0.5356129 +22 201.63 205.5075 1000 50 0.8291351 +23 205.5075 209.385 1000 50 0.5900672 +24 209.385 213.2625 1000 50 0.5152305 +25 221.0175 224.895 1000 50 0.6687928 +26 224.895 228.7725 1000 50 0.74665815 +27 228.7725 232.65 1000 50 0.7169791 +28 240.405 244.2825 1000 50 0.5257939 +29 248.16 252.0375 1000 50 0.7912239 +30 252.0375 255.915 1000 50 0.77639943 +31 267.5475 271.425 1000 50 0.8337908 +32 271.425 275.3025 1000 50 0.5637968 +33 290.8125 294.69 1000 50 0.68325025 +34 302.445 306.3225 1000 50 0.66419554 +35 306.3225 310.2 1000 50 0.7159338 +36 325.71 329.5875 1000 50 0.9814864 +37 329.5875 333.465 1000 50 0.6589224 +38 333.465 337.3425 1000 50 0.9998764 +39 341.22 345.0975 1000 50 0.9479361 +40 345.0975 348.975 1000 50 0.99156946 +41 352.8525 356.73 1000 50 0.6077539 +42 360.6075 364.485 1000 50 0.9998803 +43 364.485 368.3625 1000 50 0.5895717 +44 379.995 383.8725 1000 50 0.54405427 +45 403.26 407.1375 1000 50 0.86041665 +46 407.1375 411.015 1000 50 0.52958196 +47 414.8925 418.77 1000 50 0.9005189 +48 426.525 430.4025 1000 50 0.87221664 +49 430.4025 434.28 1000 50 0.9570207 +50 434.28 438.15749999999997 1000 50 0.5985916 +51 438.1575 442.035 1000 50 0.60526586 +52 457.545 461.4225 1000 50 0.6169381 +53 461.4225 465.3 1000 50 0.82972574 +54 469.1775 473.055 1000 50 0.74344033 +55 480.81 484.6875 1000 50 0.88074625 +56 484.6875 488.565 1000 50 0.80641246 +57 492.4425 496.32 1000 50 0.71838146 +58 496.32 500.1975 1000 50 0.92723656 +59 500.1975 504.075 1000 50 0.52554905 +60 504.075 507.9525 1000 50 0.54111826 +61 507.9525 511.83 1000 50 0.99697924 +62 511.83 515.7075 1000 50 0.7246508 +63 515.7075 519.585 1000 50 0.99703157 +64 519.585 523.4625000000001 1000 50 0.51603496 +65 523.4625 527.34 1000 50 0.55179167 +66 538.9725 542.85 1000 50 0.99766845 +67 542.85 546.7275000000001 1000 50 0.9877452 +68 546.7275 550.605 1000 50 0.82641435 +69 550.605 554.4825000000001 1000 50 0.9971686 +70 558.36 562.2375000000001 1000 50 0.6842289 +71 562.2375 566.115 1000 50 0.9185438 +72 569.9925 573.87 1000 50 0.5995103 +73 577.7475 581.625 1000 50 0.83851385 +74 585.5025 589.3800000000001 1000 50 0.988103 +75 589.38 593.2575 1000 50 0.7309517 +76 593.2575 597.1350000000001 1000 50 0.6158438 +77 597.135 601.0125 1000 50 0.9874149 +78 608.7675 612.6450000000001 1000 50 0.6159191 +79 612.645 616.5225 1000 50 0.51473325 +80 616.5225 620.4000000000001 1000 50 0.9538375 +81 624.2775 628.1550000000001 1000 50 0.65966946 +82 628.155 632.0325 1000 50 0.8435018 +83 632.0325 635.9100000000001 1000 50 0.97739834 +84 635.91 639.7875 1000 50 0.9999193 +85 663.0525 666.9300000000001 1000 50 0.5630554 +86 670.8075 674.6850000000001 1000 50 0.5064511 +87 686.3175 690.195 1000 50 0.56786305 +88 694.0725 697.95 1000 50 0.574314 +89 705.705 709.5825000000001 1000 50 0.8033984 +90 709.5825 713.46 1000 50 0.87753713 +91 728.97 732.8475000000001 1000 50 0.591093 +92 732.8475 736.725 1000 50 0.68606603 +93 736.725 740.6025000000001 1000 50 0.77807814 +94 740.6025 744.48 1000 50 0.6680599 +95 744.48 748.3575000000001 1000 50 0.5171575 +96 748.3575 752.235 1000 50 0.76880175 +97 752.235 756.1125000000001 1000 50 0.5640862 +98 756.1125 759.99 1000 50 0.70315355 +99 759.99 763.8675000000001 1000 50 0.6186301 +100 767.745 771.6225000000001 1000 50 0.6483333 +101 775.5 779.3775 1000 50 0.6039137 +102 779.3775 783.2550000000001 1000 50 0.7429433 +103 783.255 787.1325 1000 50 0.60061264 +104 787.1325 791.0100000000001 1000 50 0.74662673 +105 791.01 794.8875 1000 50 0.8527649 +106 802.6425 806.5200000000001 1000 50 0.574072 +107 806.52 810.3975 1000 50 0.75296456 +108 810.3975 814.2750000000001 1000 50 0.6257148 +109 818.1525 822.0300000000001 1000 50 0.7446749 +110 837.54 841.4175 1000 50 0.83994687 +111 849.1725 853.0500000000001 1000 50 0.54499143 +112 868.56 872.4375 1000 50 0.5704367 +113 876.315 880.1925000000001 1000 50 0.52720356 +114 880.1925 884.07 1000 50 0.5558737 +115 884.07 887.9475000000001 1000 50 0.62678623 +116 891.825 895.7025000000001 1000 50 0.5959511 +117 895.7025 899.58 1000 50 0.732479 +118 922.845 926.7225000000001 1000 50 0.6975936 +119 926.7225 930.6 1000 50 0.99999523 +120 934.4775 938.355 1000 50 0.9962507 +121 938.355 942.2325000000001 1000 50 0.9413415 +122 942.2325 946.11 1000 50 0.6878702 +123 946.11 949.9875000000001 1000 50 0.99748576 +124 953.865 957.7425000000001 1000 50 0.99592173 +125 957.7425 961.62 1000 50 0.9993605 +126 965.4975 969.375 1000 50 0.9927932 +127 977.13 981.0075 1000 50 0.9844132 +128 981.0075 984.8850000000001 1000 50 0.8145158 +129 988.7625 992.6400000000001 1000 50 0.55105203 +130 996.5175 1000.3950000000001 1000 50 0.9997094 +131 1004.2725 1008.1500000000001 1000 50 0.5625729 +132 1008.15 1012.0275 1000 50 0.99999213 +133 1019.7825 1023.6600000000001 1000 50 0.9996432 +134 1027.5375 1031.415 1000 50 0.99999607 +135 1031.415 1035.2925 1000 50 0.6041657 +136 1035.2925 1039.17 1000 50 0.50832045 +137 1039.17 1043.0475000000001 1000 50 0.6598114 +138 1043.0475 1046.925 1000 50 0.63196164 +139 1050.8025 1054.68 1000 50 0.55289286 +140 1066.3125 1070.19 1000 50 0.52526736 +141 1070.19 1074.0675 1000 50 0.7452572 +142 1074.0675 1077.9450000000002 1000 50 0.6300724 +143 1097.3325 1101.21 1000 50 0.5661967 +144 1116.72 1120.5975 1000 50 0.523647 +145 1132.23 1136.1075 1000 50 0.53160167 +146 1136.1075 1139.9850000000001 1000 50 0.85881686 +147 1151.6175 1155.4950000000001 1000 50 0.6915788 +148 1155.495 1159.3725 1000 50 0.5681216 +149 1159.3725 1163.25 1000 50 0.7875478 +150 1171.005 1174.8825000000002 1000 50 0.5707705 +151 1174.8825 1178.76 1000 50 0.66960067 +152 1182.6375 1186.515 1000 50 0.94480234 +153 1190.3925 1194.27 1000 50 0.7783721 +154 1194.27 1198.1475 1000 50 0.5814264 +155 1198.1475 1202.025 1000 50 0.64676994 +156 1213.6575 1217.535 1000 50 0.78852576 +157 1225.29 1229.1675 1000 50 0.6864961 +158 1233.045 1236.9225000000001 1000 50 0.7094809 +159 1248.555 1252.4325000000001 1000 50 0.7926302 +160 1252.4325 1256.31 1000 50 0.54117495 +161 1279.575 1283.4525 1000 50 0.7299273 +162 1306.7175 1310.595 1000 50 0.64948195 +163 1322.2275 1326.105 1000 50 0.592051 +164 1326.105 1329.9825 1000 50 0.8064932 +165 1337.7375 1341.615 1000 50 0.5495235 +166 1349.37 1353.2475 1000 50 0.5810803 +167 1353.2475 1357.125 1000 50 0.632134 +168 1364.88 1368.7575000000002 1000 50 0.6888685 +169 1368.7575 1372.635 1000 50 0.72760016 +170 1372.635 1376.5125 1000 50 0.8793353 +171 1380.39 1384.2675000000002 1000 50 0.51977175 +172 1384.2675 1388.145 1000 50 0.6039385 +173 1438.5525 1442.43 1000 50 0.5466362 +174 1446.3075 1450.185 1000 50 0.9999888 +175 1450.185 1454.0625 1000 50 0.7996202 +176 1457.94 1461.8175 1000 50 0.92071795 +177 1465.695 1469.5725 1000 50 0.7773534 +178 1473.45 1477.3275 1000 50 0.7568114 +179 1481.205 1485.0825 1000 50 0.898625 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_09-01-54_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_09-01-54_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..97467dbc57a6f3b86fb3396facabf16e2d2e979f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_09-01-54_annot_2022-11-30_01.txt @@ -0,0 +1,198 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.74894714 +2 7.755 11.6325 1000 50 0.99062246 +3 11.6325 15.51 1000 50 0.83267504 +4 27.1425 31.02 1000 50 0.6710661 +5 31.02 34.8975 1000 50 0.982001 +6 34.8975 38.775 1000 50 0.9392735 +7 38.775 42.652499999999996 1000 50 0.5319206 +8 46.53 50.4075 1000 50 0.8737297 +9 50.4075 54.285 1000 50 0.698619 +10 54.285 58.162499999999994 1000 50 0.9746832 +11 58.1625 62.04 1000 50 0.6413625 +12 62.04 65.9175 1000 50 0.73666483 +13 65.9175 69.795 1000 50 0.52569556 +14 69.795 73.6725 1000 50 0.828531 +15 77.55 81.4275 1000 50 0.5118413 +16 85.305 89.1825 1000 50 0.99521023 +17 89.1825 93.06 1000 50 0.99068624 +18 93.06 96.9375 1000 50 0.527456 +19 96.9375 100.815 1000 50 0.991037 +20 100.815 104.6925 1000 50 0.75630546 +21 104.6925 108.57 1000 50 0.5307394 +22 108.57 112.44749999999999 1000 50 0.9999622 +23 116.325 120.2025 1000 50 0.72234637 +24 120.2025 124.08 1000 50 0.6170083 +25 124.08 127.9575 1000 50 0.5958866 +26 131.835 135.7125 1000 50 0.89416873 +27 135.7125 139.59 1000 50 0.7010008 +28 143.4675 147.345 1000 50 0.5970493 +29 147.345 151.2225 1000 50 0.85020256 +30 151.2225 155.1 1000 50 0.8928067 +31 158.9775 162.855 1000 50 0.75406116 +32 162.855 166.7325 1000 50 0.69433874 +33 166.7325 170.60999999999999 1000 50 0.9248861 +34 170.61 174.4875 1000 50 0.6166062 +35 182.2425 186.12 1000 50 0.8056017 +36 186.12 189.9975 1000 50 0.93518716 +37 189.9975 193.875 1000 50 0.6665525 +38 193.875 197.7525 1000 50 0.7418585 +39 197.7525 201.63 1000 50 0.712868 +40 201.63 205.5075 1000 50 0.8399244 +41 205.5075 209.385 1000 50 0.66157365 +42 213.2625 217.14 1000 50 0.8279223 +43 217.14 221.01749999999998 1000 50 0.60011554 +44 236.5275 240.405 1000 50 0.8788497 +45 240.405 244.2825 1000 50 0.70345795 +46 244.2825 248.16 1000 50 0.589952 +47 252.0375 255.915 1000 50 0.89962786 +48 263.67 267.5475 1000 50 0.6735016 +49 267.5475 271.425 1000 50 0.5113233 +50 271.425 275.3025 1000 50 0.5861759 +51 283.0575 286.935 1000 50 0.9425158 +52 290.8125 294.69 1000 50 0.76304704 +53 294.69 298.5675 1000 50 0.9975636 +54 302.445 306.3225 1000 50 0.9387115 +55 306.3225 310.2 1000 50 0.76539296 +56 310.2 314.0775 1000 50 0.53524065 +57 314.0775 317.955 1000 50 0.99963284 +58 317.955 321.8325 1000 50 0.8330101 +59 321.8325 325.71 1000 50 0.6368947 +60 329.5875 333.465 1000 50 0.6078285 +61 337.3425 341.21999999999997 1000 50 0.5180812 +62 341.22 345.0975 1000 50 0.91730654 +63 348.975 352.8525 1000 50 0.98528975 +64 352.8525 356.73 1000 50 0.55238765 +65 356.73 360.6075 1000 50 0.8455722 +66 372.24 376.1175 1000 50 0.99997735 +67 379.995 383.8725 1000 50 0.681442 +68 383.8725 387.75 1000 50 0.95911163 +69 391.6275 395.505 1000 50 0.996988 +70 403.26 407.1375 1000 50 0.9999995 +71 407.1375 411.015 1000 50 0.91064703 +72 411.015 414.8925 1000 50 0.7713971 +73 418.77 422.6475 1000 50 0.5895706 +74 430.4025 434.28 1000 50 0.5625522 +75 434.28 438.15749999999997 1000 50 0.54023695 +76 442.035 445.9125 1000 50 0.53601986 +77 473.055 476.9325 1000 50 0.7664336 +78 484.6875 488.565 1000 50 0.7699908 +79 488.565 492.4425 1000 50 0.5009562 +80 492.4425 496.32 1000 50 0.6288779 +81 504.075 507.9525 1000 50 0.69606453 +82 511.83 515.7075 1000 50 0.5596897 +83 523.4625 527.34 1000 50 0.8521977 +84 527.34 531.2175000000001 1000 50 0.62185717 +85 542.85 546.7275000000001 1000 50 0.7018456 +86 558.36 562.2375000000001 1000 50 0.6379087 +87 562.2375 566.115 1000 50 0.57233024 +88 566.115 569.9925000000001 1000 50 0.5613904 +89 569.9925 573.87 1000 50 0.7092839 +90 573.87 577.7475000000001 1000 50 0.6434019 +91 589.38 593.2575 1000 50 0.5638702 +92 601.0125 604.8900000000001 1000 50 0.66491735 +93 616.5225 620.4000000000001 1000 50 0.6767826 +94 620.4 624.2775 1000 50 0.9351226 +95 624.2775 628.1550000000001 1000 50 0.5544816 +96 632.0325 635.9100000000001 1000 50 0.5141248 +97 635.91 639.7875 1000 50 0.7302192 +98 639.7875 643.6650000000001 1000 50 0.74836385 +99 655.2975 659.1750000000001 1000 50 0.5614061 +100 666.93 670.8075 1000 50 0.7381751 +101 690.195 694.0725000000001 1000 50 0.5577806 +102 701.8275 705.705 1000 50 0.59441155 +103 705.705 709.5825000000001 1000 50 0.5270036 +104 721.215 725.0925000000001 1000 50 0.5743822 +105 728.97 732.8475000000001 1000 50 0.8544316 +106 744.48 748.3575000000001 1000 50 0.7627714 +107 752.235 756.1125000000001 1000 50 0.67416453 +108 767.745 771.6225000000001 1000 50 0.80508447 +109 775.5 779.3775 1000 50 0.7497973 +110 787.1325 791.0100000000001 1000 50 0.9481474 +111 791.01 794.8875 1000 50 0.98198754 +112 798.765 802.6425 1000 50 0.9996101 +113 802.6425 806.5200000000001 1000 50 0.99287206 +114 806.52 810.3975 1000 50 0.9671339 +115 810.3975 814.2750000000001 1000 50 0.9861871 +116 818.1525 822.0300000000001 1000 50 0.99786806 +117 822.03 825.9075 1000 50 0.9999957 +118 825.9075 829.7850000000001 1000 50 0.58057386 +119 829.785 833.6625 1000 50 0.99941456 +120 833.6625 837.5400000000001 1000 50 0.9646475 +121 841.4175 845.2950000000001 1000 50 0.99818486 +122 845.295 849.1725 1000 50 0.9916517 +123 849.1725 853.0500000000001 1000 50 0.99975234 +124 856.9275 860.8050000000001 1000 50 0.9840798 +125 860.805 864.6825 1000 50 0.8364991 +126 864.6825 868.5600000000001 1000 50 0.99996066 +127 868.56 872.4375 1000 50 0.9999846 +128 872.4375 876.315 1000 50 0.79085284 +129 876.315 880.1925000000001 1000 50 0.9999995 +130 880.1925 884.07 1000 50 0.9895286 +131 884.07 887.9475000000001 1000 50 0.95844173 +132 887.9475 891.825 1000 50 0.9999577 +133 891.825 895.7025000000001 1000 50 0.7892192 +134 895.7025 899.58 1000 50 0.9083443 +135 907.335 911.2125000000001 1000 50 0.9998696 +136 911.2125 915.09 1000 50 0.86428744 +137 922.845 926.7225000000001 1000 50 0.98235244 +138 926.7225 930.6 1000 50 0.80245763 +139 930.6 934.4775000000001 1000 50 0.6068119 +140 938.355 942.2325000000001 1000 50 0.812574 +141 949.9875 953.865 1000 50 0.68369275 +142 957.7425 961.62 1000 50 0.97881967 +143 969.375 973.2525 1000 50 0.9444882 +144 984.885 988.7625 1000 50 0.95021325 +145 988.7625 992.6400000000001 1000 50 0.5511761 +146 996.5175 1000.3950000000001 1000 50 0.79536825 +147 1008.15 1012.0275 1000 50 0.94702446 +148 1012.0275 1015.9050000000001 1000 50 0.6892651 +149 1019.7825 1023.6600000000001 1000 50 0.7457133 +150 1023.66 1027.5375 1000 50 0.8364782 +151 1035.2925 1039.17 1000 50 0.9156449 +152 1062.435 1066.3125 1000 50 0.6811248 +153 1066.3125 1070.19 1000 50 0.63399106 +154 1074.0675 1077.9450000000002 1000 50 0.641746 +155 1077.945 1081.8225 1000 50 0.74332136 +156 1085.7 1089.5775 1000 50 0.5373485 +157 1097.3325 1101.21 1000 50 0.88350606 +158 1105.0875 1108.9650000000001 1000 50 0.5452669 +159 1116.72 1120.5975 1000 50 0.7279394 +160 1136.1075 1139.9850000000001 1000 50 0.52621907 +161 1147.74 1151.6175 1000 50 0.5550975 +162 1155.495 1159.3725 1000 50 0.51067203 +163 1209.78 1213.6575 1000 50 0.881864 +164 1213.6575 1217.535 1000 50 0.63916767 +165 1221.4125 1225.29 1000 50 0.64837295 +166 1229.1675 1233.045 1000 50 0.6080693 +167 1236.9225 1240.8 1000 50 0.994918 +168 1244.6775 1248.555 1000 50 0.67738986 +169 1248.555 1252.4325000000001 1000 50 0.9997576 +170 1252.4325 1256.31 1000 50 0.6916345 +171 1256.31 1260.1875 1000 50 0.74850726 +172 1260.1875 1264.065 1000 50 0.99950314 +173 1267.9425 1271.8200000000002 1000 50 0.6649222 +174 1279.575 1283.4525 1000 50 0.6132532 +175 1283.4525 1287.3300000000002 1000 50 0.80467653 +176 1287.33 1291.2075 1000 50 0.8687802 +177 1291.2075 1295.085 1000 50 0.99954814 +178 1295.085 1298.9625 1000 50 0.9986965 +179 1302.84 1306.7175 1000 50 0.99951553 +180 1306.7175 1310.595 1000 50 0.7879168 +181 1310.595 1314.4725 1000 50 0.9888415 +182 1314.4725 1318.3500000000001 1000 50 0.5776992 +183 1322.2275 1326.105 1000 50 0.98227787 +184 1326.105 1329.9825 1000 50 0.81787336 +185 1333.86 1337.7375 1000 50 0.9999976 +186 1337.7375 1341.615 1000 50 0.9083346 +187 1341.615 1345.4925 1000 50 0.509462 +188 1345.4925 1349.3700000000001 1000 50 0.9961558 +189 1349.37 1353.2475 1000 50 0.8775473 +190 1353.2475 1357.125 1000 50 0.9997408 +191 1361.0025 1364.88 1000 50 0.99921787 +192 1364.88 1368.7575000000002 1000 50 0.92195565 +193 1368.7575 1372.635 1000 50 0.9992888 +194 1372.635 1376.5125 1000 50 0.99684393 +195 1376.5125 1380.39 1000 50 0.96979773 +196 1380.39 1384.2675000000002 1000 50 0.9999956 +197 1384.2675 1388.145 1000 50 0.97946405 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_10-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_10-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..db2f0ef0395da7057cf0a96d8da08ae7b4d8a640 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_10-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,14 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 46.53 50.4075 1000 50 0.9325761 +2 62.04 65.9175 1000 50 0.61301756 +3 69.795 73.6725 1000 50 0.5651001 +4 73.6725 77.55 1000 50 0.84957325 +5 93.06 96.9375 1000 50 0.6205258 +6 96.9375 100.815 1000 50 0.5709503 +7 116.325 120.2025 1000 50 0.75802284 +8 120.2025 124.08 1000 50 0.65858275 +9 124.08 127.9575 1000 50 0.583384 +10 127.9575 131.835 1000 50 0.64327943 +11 131.835 135.7125 1000 50 0.6190561 +12 135.7125 139.59 1000 50 0.6737527 +13 139.59 143.4675 1000 50 0.7127698 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_10-06-01_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_10-06-01_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..64513ba9d8300547fc56f0a785ef5e78fdac7407 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_10-06-01_annot_2022-11-30_01.txt @@ -0,0 +1,207 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9989844 +2 3.8775 7.755 1000 50 0.99792045 +3 7.755 11.6325 1000 50 0.9399872 +4 11.6325 15.51 1000 50 0.9999629 +5 15.51 19.3875 1000 50 0.6718242 +6 19.3875 23.265 1000 50 0.9920912 +7 23.265 27.142500000000002 1000 50 0.73883396 +8 27.1425 31.02 1000 50 0.9990036 +9 31.02 34.8975 1000 50 0.9935499 +10 34.8975 38.775 1000 50 0.5931005 +11 38.775 42.652499999999996 1000 50 0.9999155 +12 42.6525 46.53 1000 50 0.9984113 +13 50.4075 54.285 1000 50 0.5821304 +14 54.285 58.162499999999994 1000 50 0.9977641 +15 58.1625 62.04 1000 50 0.5071589 +16 62.04 65.9175 1000 50 0.99428636 +17 65.9175 69.795 1000 50 0.9996773 +18 69.795 73.6725 1000 50 0.996736 +19 73.6725 77.55 1000 50 0.97525996 +20 77.55 81.4275 1000 50 1.0 +21 85.305 89.1825 1000 50 0.9999659 +22 89.1825 93.06 1000 50 0.9999993 +23 93.06 96.9375 1000 50 0.9997049 +24 96.9375 100.815 1000 50 0.99999166 +25 100.815 104.6925 1000 50 0.51573706 +26 104.6925 108.57 1000 50 0.9999987 +27 112.4475 116.325 1000 50 0.9999989 +28 116.325 120.2025 1000 50 0.9765577 +29 120.2025 124.08 1000 50 1.0 +30 124.08 127.9575 1000 50 0.999691 +31 127.9575 131.835 1000 50 0.99996674 +32 131.835 135.7125 1000 50 0.9999913 +33 139.59 143.4675 1000 50 1.0 +34 143.4675 147.345 1000 50 0.9972005 +35 147.345 151.2225 1000 50 1.0 +36 151.2225 155.1 1000 50 0.8510988 +37 155.1 158.9775 1000 50 1.0 +38 158.9775 162.855 1000 50 0.8022398 +39 166.7325 170.60999999999999 1000 50 0.9999964 +40 170.61 174.4875 1000 50 0.9484425 +41 174.4875 178.365 1000 50 0.61704046 +42 182.2425 186.12 1000 50 0.8934393 +43 186.12 189.9975 1000 50 0.8155585 +44 189.9975 193.875 1000 50 0.7913901 +45 193.875 197.7525 1000 50 0.93407905 +46 197.7525 201.63 1000 50 0.9999697 +47 205.5075 209.385 1000 50 0.78968143 +48 209.385 213.2625 1000 50 0.816545 +49 213.2625 217.14 1000 50 0.9959831 +50 217.14 221.01749999999998 1000 50 0.6973355 +51 221.0175 224.895 1000 50 0.99976987 +52 224.895 228.7725 1000 50 0.9995702 +53 232.65 236.5275 1000 50 0.9967997 +54 236.5275 240.405 1000 50 0.99893266 +55 240.405 244.2825 1000 50 0.99985576 +56 244.2825 248.16 1000 50 0.74568194 +57 248.16 252.0375 1000 50 0.9992574 +58 252.0375 255.915 1000 50 0.9504066 +59 255.915 259.7925 1000 50 0.99999917 +60 259.7925 263.67 1000 50 0.99829525 +61 263.67 267.5475 1000 50 0.9996512 +62 267.5475 271.425 1000 50 0.99258304 +63 271.425 275.3025 1000 50 0.99722064 +64 275.3025 279.18 1000 50 0.99805105 +65 279.18 283.0575 1000 50 0.97511655 +66 283.0575 286.935 1000 50 0.9969426 +67 290.8125 294.69 1000 50 0.9999747 +68 294.69 298.5675 1000 50 0.9969111 +69 298.5675 302.445 1000 50 0.68145704 +70 302.445 306.3225 1000 50 0.70557964 +71 306.3225 310.2 1000 50 0.54917985 +72 333.465 337.3425 1000 50 0.57579637 +73 337.3425 341.21999999999997 1000 50 0.5103712 +74 356.73 360.6075 1000 50 0.817211 +75 360.6075 364.485 1000 50 0.6985861 +76 364.485 368.3625 1000 50 0.5126841 +77 368.3625 372.24 1000 50 0.5206687 +78 383.8725 387.75 1000 50 0.7550809 +79 395.505 399.3825 1000 50 0.560173 +80 411.015 414.8925 1000 50 0.68857586 +81 418.77 422.6475 1000 50 0.5052393 +82 434.28 438.15749999999997 1000 50 0.7455342 +83 442.035 445.9125 1000 50 0.68917423 +84 453.6675 457.545 1000 50 0.7872247 +85 469.1775 473.055 1000 50 0.5415279 +86 500.1975 504.075 1000 50 0.7584047 +87 504.075 507.9525 1000 50 0.61886066 +88 507.9525 511.83 1000 50 0.97683084 +89 519.585 523.4625000000001 1000 50 0.98829645 +90 527.34 531.2175000000001 1000 50 0.56153077 +91 535.095 538.9725000000001 1000 50 0.6605753 +92 538.9725 542.85 1000 50 0.8124116 +93 542.85 546.7275000000001 1000 50 0.95367736 +94 546.7275 550.605 1000 50 0.76963603 +95 550.605 554.4825000000001 1000 50 0.99999666 +96 554.4825 558.36 1000 50 0.99469745 +97 558.36 562.2375000000001 1000 50 0.9189885 +98 562.2375 566.115 1000 50 0.7637113 +99 566.115 569.9925000000001 1000 50 0.9999994 +100 569.9925 573.87 1000 50 0.98914284 +101 577.7475 581.625 1000 50 0.9287649 +102 581.625 585.5025 1000 50 0.9739095 +103 585.5025 589.3800000000001 1000 50 0.9316669 +104 593.2575 597.1350000000001 1000 50 0.9962463 +105 597.135 601.0125 1000 50 0.9993765 +106 601.0125 604.8900000000001 1000 50 0.97498465 +107 608.7675 612.6450000000001 1000 50 0.77640826 +108 612.645 616.5225 1000 50 0.96600246 +109 620.4 624.2775 1000 50 0.99988997 +110 624.2775 628.1550000000001 1000 50 0.99995875 +111 628.155 632.0325 1000 50 0.9640249 +112 635.91 639.7875 1000 50 0.8662198 +113 639.7875 643.6650000000001 1000 50 0.9468644 +114 643.665 647.5425 1000 50 0.9999777 +115 647.5425 651.4200000000001 1000 50 0.84532815 +116 651.42 655.2975 1000 50 0.9992155 +117 655.2975 659.1750000000001 1000 50 0.88665307 +118 659.175 663.0525 1000 50 0.67923343 +119 663.0525 666.9300000000001 1000 50 1.0 +120 666.93 670.8075 1000 50 0.90445065 +121 670.8075 674.6850000000001 1000 50 0.99944884 +122 674.685 678.5625 1000 50 0.9999968 +123 678.5625 682.44 1000 50 0.9999994 +124 682.44 686.3175000000001 1000 50 0.9896271 +125 686.3175 690.195 1000 50 0.9189409 +126 690.195 694.0725000000001 1000 50 0.99999213 +127 694.0725 697.95 1000 50 0.9999465 +128 697.95 701.8275000000001 1000 50 0.9917035 +129 705.705 709.5825000000001 1000 50 0.94433445 +130 709.5825 713.46 1000 50 0.9999999 +131 713.46 717.3375000000001 1000 50 0.5088108 +132 717.3375 721.215 1000 50 0.9973683 +133 721.215 725.0925000000001 1000 50 0.99795663 +134 725.0925 728.97 1000 50 0.9862882 +135 728.97 732.8475000000001 1000 50 0.99999475 +136 736.725 740.6025000000001 1000 50 0.9997832 +137 740.6025 744.48 1000 50 0.91540325 +138 744.48 748.3575000000001 1000 50 0.9994956 +139 748.3575 752.235 1000 50 0.9999269 +140 752.235 756.1125000000001 1000 50 0.9993212 +141 756.1125 759.99 1000 50 0.9999981 +142 759.99 763.8675000000001 1000 50 0.99991965 +143 767.745 771.6225000000001 1000 50 0.9784774 +144 771.6225 775.5 1000 50 0.9975097 +145 775.5 779.3775 1000 50 0.9980161 +146 779.3775 783.2550000000001 1000 50 0.9998784 +147 783.255 787.1325 1000 50 0.99964917 +148 787.1325 791.0100000000001 1000 50 0.99997413 +149 794.8875 798.7650000000001 1000 50 0.99969566 +150 798.765 802.6425 1000 50 0.9991861 +151 802.6425 806.5200000000001 1000 50 0.99861073 +152 806.52 810.3975 1000 50 0.99986315 +153 810.3975 814.2750000000001 1000 50 0.98270345 +154 814.275 818.1525 1000 50 0.99999285 +155 818.1525 822.0300000000001 1000 50 0.98677593 +156 822.03 825.9075 1000 50 0.99984586 +157 825.9075 829.7850000000001 1000 50 0.99984324 +158 833.6625 837.5400000000001 1000 50 0.99992883 +159 837.54 841.4175 1000 50 0.99501604 +160 841.4175 845.2950000000001 1000 50 0.8930308 +161 845.295 849.1725 1000 50 0.9998603 +162 853.05 856.9275 1000 50 0.9995734 +163 856.9275 860.8050000000001 1000 50 0.9999962 +164 860.805 864.6825 1000 50 0.77514166 +165 864.6825 868.5600000000001 1000 50 0.9999095 +166 868.56 872.4375 1000 50 0.9991041 +167 872.4375 876.315 1000 50 0.9999435 +168 876.315 880.1925000000001 1000 50 0.96123284 +169 880.1925 884.07 1000 50 0.7735214 +170 884.07 887.9475000000001 1000 50 0.9997619 +171 887.9475 891.825 1000 50 0.99981827 +172 891.825 895.7025000000001 1000 50 0.98218703 +173 903.4575 907.335 1000 50 0.92191935 +174 907.335 911.2125000000001 1000 50 0.98921156 +175 911.2125 915.09 1000 50 0.9999 +176 915.09 918.9675000000001 1000 50 0.91145706 +177 918.9675 922.845 1000 50 0.9998394 +178 922.845 926.7225000000001 1000 50 0.9988576 +179 930.6 934.4775000000001 1000 50 0.89476025 +180 938.355 942.2325000000001 1000 50 0.6904709 +181 942.2325 946.11 1000 50 0.94508183 +182 946.11 949.9875000000001 1000 50 0.9422834 +183 953.865 957.7425000000001 1000 50 0.99985003 +184 957.7425 961.62 1000 50 0.6309813 +185 977.13 981.0075 1000 50 0.8426815 +186 981.0075 984.8850000000001 1000 50 0.9970004 +187 984.885 988.7625 1000 50 0.99264586 +188 992.64 996.5175 1000 50 0.5739215 +189 1019.7825 1023.6600000000001 1000 50 0.58624077 +190 1023.66 1027.5375 1000 50 0.73524225 +191 1027.5375 1031.415 1000 50 0.8180099 +192 1039.17 1043.0475000000001 1000 50 0.5012565 +193 1046.925 1050.8025 1000 50 0.5027544 +194 1050.8025 1054.68 1000 50 0.6263407 +195 1054.68 1058.5575000000001 1000 50 0.5350856 +196 1062.435 1066.3125 1000 50 0.89161235 +197 1066.3125 1070.19 1000 50 0.99797493 +198 1074.0675 1077.9450000000002 1000 50 0.59732836 +199 1089.5775 1093.4550000000002 1000 50 0.885428 +200 1093.455 1097.3325 1000 50 0.7022889 +201 1097.3325 1101.21 1000 50 0.5029107 +202 1105.0875 1108.9650000000001 1000 50 0.6227915 +203 1112.8425 1116.72 1000 50 0.5313867 +204 1124.475 1128.3525 1000 50 0.58779067 +205 1128.3525 1132.23 1000 50 0.6499501 +206 1132.23 1136.1075 1000 50 0.50624865 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_11-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_11-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5f427141d2c6f916d6b2b471b999b009903e2d3e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_11-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,62 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99483156 +2 7.755 11.6325 1000 50 0.6565173 +3 15.51 19.3875 1000 50 0.99877113 +4 23.265 27.142500000000002 1000 50 0.6221829 +5 27.1425 31.02 1000 50 0.9354538 +6 31.02 34.8975 1000 50 0.8936085 +7 38.775 42.652499999999996 1000 50 0.9994036 +8 42.6525 46.53 1000 50 0.9633271 +9 50.4075 54.285 1000 50 0.9999995 +10 54.285 58.162499999999994 1000 50 0.92572886 +11 58.1625 62.04 1000 50 0.99987006 +12 62.04 65.9175 1000 50 0.99943084 +13 65.9175 69.795 1000 50 0.68103915 +14 69.795 73.6725 1000 50 0.9758876 +15 73.6725 77.55 1000 50 0.9948678 +16 77.55 81.4275 1000 50 0.99974054 +17 85.305 89.1825 1000 50 0.9994609 +18 89.1825 93.06 1000 50 0.99992776 +19 96.9375 100.815 1000 50 0.9999981 +20 100.815 104.6925 1000 50 0.63389385 +21 104.6925 108.57 1000 50 0.99999964 +22 108.57 112.44749999999999 1000 50 0.88051707 +23 112.4475 116.325 1000 50 0.9999975 +24 116.325 120.2025 1000 50 0.9999999 +25 120.2025 124.08 1000 50 0.9835073 +26 127.9575 131.835 1000 50 0.99319 +27 131.835 135.7125 1000 50 0.99997544 +28 135.7125 139.59 1000 50 0.89507407 +29 139.59 143.4675 1000 50 0.99999917 +30 143.4675 147.345 1000 50 0.5343974 +31 151.2225 155.1 1000 50 0.9999995 +32 158.9775 162.855 1000 50 0.98479444 +33 166.7325 170.60999999999999 1000 50 0.7298781 +34 174.4875 178.365 1000 50 0.55435795 +35 178.365 182.2425 1000 50 0.9995938 +36 182.2425 186.12 1000 50 0.81937826 +37 186.12 189.9975 1000 50 0.99755496 +38 189.9975 193.875 1000 50 0.99743 +39 197.7525 201.63 1000 50 0.9881478 +40 205.5075 209.385 1000 50 0.9994547 +41 213.2625 217.14 1000 50 0.6703082 +42 217.14 221.01749999999998 1000 50 0.9999566 +43 221.0175 224.895 1000 50 0.7878476 +44 224.895 228.7725 1000 50 0.9984493 +45 248.16 252.0375 1000 50 0.6989518 +46 252.0375 255.915 1000 50 0.9376245 +47 255.915 259.7925 1000 50 0.8708936 +48 259.7925 263.67 1000 50 0.90400934 +49 263.67 267.5475 1000 50 0.71618026 +50 267.5475 271.425 1000 50 0.8666603 +51 279.18 283.0575 1000 50 0.735967 +52 290.8125 294.69 1000 50 0.60788035 +53 294.69 298.5675 1000 50 0.6329415 +54 310.2 314.0775 1000 50 0.9875808 +55 329.5875 333.465 1000 50 0.6192574 +56 337.3425 341.21999999999997 1000 50 0.72067034 +57 341.22 345.0975 1000 50 0.6601908 +58 356.73 360.6075 1000 50 0.5886662 +59 360.6075 364.485 1000 50 0.9159214 +60 364.485 368.3625 1000 50 0.6343404 +61 426.525 430.4025 1000 50 0.51256657 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_11-12-42_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_11-12-42_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0aea8461095555253617763443259b6460ee3b9a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_11-12-42_annot_2022-11-30_01.txt @@ -0,0 +1,123 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9550062 +2 3.8775 7.755 1000 50 0.9949668 +3 7.755 11.6325 1000 50 0.999348 +4 11.6325 15.51 1000 50 0.55597913 +5 15.51 19.3875 1000 50 0.9860058 +6 19.3875 23.265 1000 50 0.9993735 +7 23.265 27.142500000000002 1000 50 0.7670592 +8 27.1425 31.02 1000 50 0.867401 +9 31.02 34.8975 1000 50 0.62015605 +10 34.8975 38.775 1000 50 0.98721814 +11 38.775 42.652499999999996 1000 50 0.9997521 +12 42.6525 46.53 1000 50 0.9999194 +13 50.4075 54.285 1000 50 0.99983597 +14 58.1625 62.04 1000 50 0.99966633 +15 62.04 65.9175 1000 50 0.99997365 +16 65.9175 69.795 1000 50 0.9979103 +17 69.795 73.6725 1000 50 0.989842 +18 73.6725 77.55 1000 50 0.65925866 +19 77.55 81.4275 1000 50 0.99771774 +20 81.4275 85.30499999999999 1000 50 0.89312667 +21 85.305 89.1825 1000 50 0.934483 +22 89.1825 93.06 1000 50 0.9999274 +23 93.06 96.9375 1000 50 0.95705366 +24 96.9375 100.815 1000 50 0.99999917 +25 100.815 104.6925 1000 50 0.6644763 +26 104.6925 108.57 1000 50 0.9865128 +27 108.57 112.44749999999999 1000 50 1.0 +28 116.325 120.2025 1000 50 0.99999404 +29 120.2025 124.08 1000 50 0.99845064 +30 124.08 127.9575 1000 50 0.99996233 +31 127.9575 131.835 1000 50 0.96340686 +32 131.835 135.7125 1000 50 0.7167662 +33 135.7125 139.59 1000 50 1.0 +34 139.59 143.4675 1000 50 0.5242002 +35 143.4675 147.345 1000 50 0.9990625 +36 147.345 151.2225 1000 50 0.99999774 +37 155.1 158.9775 1000 50 0.9966066 +38 158.9775 162.855 1000 50 0.99101627 +39 166.7325 170.60999999999999 1000 50 0.7836197 +40 174.4875 178.365 1000 50 0.9921961 +41 178.365 182.2425 1000 50 0.95633465 +42 182.2425 186.12 1000 50 0.7001167 +43 189.9975 193.875 1000 50 0.9573971 +44 193.875 197.7525 1000 50 0.8853202 +45 197.7525 201.63 1000 50 0.8432773 +46 205.5075 209.385 1000 50 0.8706485 +47 209.385 213.2625 1000 50 0.91283 +48 213.2625 217.14 1000 50 0.5998475 +49 217.14 221.01749999999998 1000 50 0.9997414 +50 221.0175 224.895 1000 50 0.99807656 +51 224.895 228.7725 1000 50 0.97336257 +52 228.7725 232.65 1000 50 0.98552555 +53 232.65 236.5275 1000 50 0.9998666 +54 236.5275 240.405 1000 50 0.9947214 +55 240.405 244.2825 1000 50 0.9716905 +56 244.2825 248.16 1000 50 0.99959797 +57 248.16 252.0375 1000 50 0.9971207 +58 252.0375 255.915 1000 50 0.99931335 +59 255.915 259.7925 1000 50 0.954165 +60 259.7925 263.67 1000 50 0.9998919 +61 263.67 267.5475 1000 50 0.9999856 +62 267.5475 271.425 1000 50 0.9989104 +63 275.3025 279.18 1000 50 0.774158 +64 279.18 283.0575 1000 50 0.7044817 +65 283.0575 286.935 1000 50 0.53063744 +66 325.71 329.5875 1000 50 0.5918133 +67 345.0975 348.975 1000 50 0.58345705 +68 368.3625 372.24 1000 50 0.7755655 +69 403.26 407.1375 1000 50 0.54072696 +70 411.015 414.8925 1000 50 0.5947777 +71 434.28 438.15749999999997 1000 50 0.6797089 +72 449.79 453.6675 1000 50 0.97821176 +73 476.9325 480.81 1000 50 0.56626284 +74 484.6875 488.565 1000 50 0.93428886 +75 496.32 500.1975 1000 50 0.6105903 +76 504.075 507.9525 1000 50 0.6358146 +77 507.9525 511.83 1000 50 0.8030686 +78 511.83 515.7075 1000 50 0.9754895 +79 515.7075 519.585 1000 50 0.88619334 +80 523.4625 527.34 1000 50 0.5277483 +81 527.34 531.2175000000001 1000 50 0.9941355 +82 542.85 546.7275000000001 1000 50 0.7241351 +83 550.605 554.4825000000001 1000 50 0.9975418 +84 558.36 562.2375000000001 1000 50 0.9737465 +85 562.2375 566.115 1000 50 0.99624145 +86 566.115 569.9925000000001 1000 50 0.9999734 +87 569.9925 573.87 1000 50 0.99990296 +88 573.87 577.7475000000001 1000 50 0.76056343 +89 577.7475 581.625 1000 50 0.99544924 +90 581.625 585.5025 1000 50 0.7578438 +91 589.38 593.2575 1000 50 0.9417564 +92 593.2575 597.1350000000001 1000 50 0.5547868 +93 597.135 601.0125 1000 50 0.9074281 +94 604.89 608.7675 1000 50 0.9049808 +95 608.7675 612.6450000000001 1000 50 0.9992594 +96 612.645 616.5225 1000 50 0.9999788 +97 616.5225 620.4000000000001 1000 50 0.9153528 +98 624.2775 628.1550000000001 1000 50 0.99966204 +99 628.155 632.0325 1000 50 0.5674345 +100 632.0325 635.9100000000001 1000 50 0.9999918 +101 635.91 639.7875 1000 50 0.86245215 +102 639.7875 643.6650000000001 1000 50 0.999998 +103 643.665 647.5425 1000 50 0.999974 +104 647.5425 651.4200000000001 1000 50 0.99999154 +105 651.42 655.2975 1000 50 0.9982199 +106 659.175 663.0525 1000 50 1.0 +107 663.0525 666.9300000000001 1000 50 0.9615299 +108 666.93 670.8075 1000 50 0.999998 +109 670.8075 674.6850000000001 1000 50 0.9999999 +110 674.685 678.5625 1000 50 0.98987794 +111 678.5625 682.44 1000 50 0.99999905 +112 690.195 694.0725000000001 1000 50 0.5915469 +113 694.0725 697.95 1000 50 0.99514586 +114 697.95 701.8275000000001 1000 50 0.99999845 +115 701.8275 705.705 1000 50 0.9994203 +116 705.705 709.5825000000001 1000 50 0.9932556 +117 713.46 717.3375000000001 1000 50 0.9998696 +118 717.3375 721.215 1000 50 0.99841547 +119 721.215 725.0925000000001 1000 50 0.98183316 +120 725.0925 728.97 1000 50 0.99990034 +121 732.8475 736.725 1000 50 0.9998958 +122 736.725 740.6025000000001 1000 50 0.99971634 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_12-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_12-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e52e28806223d24a2b2ed4ccd4312cfced23a185 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_12-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,78 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99223036 +2 3.8775 7.755 1000 50 0.65585774 +3 7.755 11.6325 1000 50 0.70068395 +4 11.6325 15.51 1000 50 0.9850926 +5 15.51 19.3875 1000 50 0.6262558 +6 23.265 27.142500000000002 1000 50 0.99931335 +7 27.1425 31.02 1000 50 0.9995863 +8 31.02 34.8975 1000 50 0.9976768 +9 34.8975 38.775 1000 50 0.9897961 +10 38.775 42.652499999999996 1000 50 0.9921612 +11 42.6525 46.53 1000 50 0.97888637 +12 46.53 50.4075 1000 50 0.97167057 +13 50.4075 54.285 1000 50 0.6609946 +14 58.1625 62.04 1000 50 0.73056877 +15 69.795 73.6725 1000 50 0.600817 +16 108.57 112.44749999999999 1000 50 0.65370655 +17 120.2025 124.08 1000 50 0.74951005 +18 143.4675 147.345 1000 50 0.54291266 +19 151.2225 155.1 1000 50 0.69246644 +20 155.1 158.9775 1000 50 0.55965155 +21 213.2625 217.14 1000 50 0.98234785 +22 221.0175 224.895 1000 50 0.51325125 +23 236.5275 240.405 1000 50 0.9939674 +24 240.405 244.2825 1000 50 0.9522745 +25 244.2825 248.16 1000 50 0.9157498 +26 252.0375 255.915 1000 50 0.84939474 +27 271.425 275.3025 1000 50 0.96505505 +28 275.3025 279.18 1000 50 0.9861304 +29 290.8125 294.69 1000 50 0.8761209 +30 294.69 298.5675 1000 50 0.9095762 +31 298.5675 302.445 1000 50 0.9706706 +32 310.2 314.0775 1000 50 0.95037174 +33 321.8325 325.71 1000 50 0.992097 +34 329.5875 333.465 1000 50 0.99644643 +35 341.22 345.0975 1000 50 0.9897272 +36 345.0975 348.975 1000 50 0.57863486 +37 348.975 352.8525 1000 50 0.6602459 +38 352.8525 356.73 1000 50 0.8891232 +39 356.73 360.6075 1000 50 0.6763939 +40 364.485 368.3625 1000 50 0.90614516 +41 372.24 376.1175 1000 50 0.9884494 +42 376.1175 379.995 1000 50 0.9171239 +43 379.995 383.8725 1000 50 0.6889376 +44 383.8725 387.75 1000 50 0.9999546 +45 391.6275 395.505 1000 50 0.9999714 +46 395.505 399.3825 1000 50 0.9215507 +47 399.3825 403.26 1000 50 0.982272 +48 403.26 407.1375 1000 50 0.99128014 +49 407.1375 411.015 1000 50 0.9722129 +50 411.015 414.8925 1000 50 0.7438633 +51 422.6475 426.525 1000 50 0.9866724 +52 434.28 438.15749999999997 1000 50 0.9928597 +53 442.035 445.9125 1000 50 0.7432293 +54 461.4225 465.3 1000 50 0.60887074 +55 473.055 476.9325 1000 50 0.8698212 +56 476.9325 480.81 1000 50 0.9897189 +57 480.81 484.6875 1000 50 0.7910265 +58 484.6875 488.565 1000 50 0.96238846 +59 507.9525 511.83 1000 50 0.6843531 +60 546.7275 550.605 1000 50 0.50430596 +61 597.135 601.0125 1000 50 0.61883086 +62 632.0325 635.9100000000001 1000 50 0.93074673 +63 670.8075 674.6850000000001 1000 50 0.9866513 +64 705.705 709.5825000000001 1000 50 0.7265749 +65 725.0925 728.97 1000 50 0.55869544 +66 736.725 740.6025000000001 1000 50 0.57109326 +67 752.235 756.1125000000001 1000 50 0.85380214 +68 767.745 771.6225000000001 1000 50 0.89424086 +69 794.8875 798.7650000000001 1000 50 0.9308199 +70 798.765 802.6425 1000 50 0.7904226 +71 806.52 810.3975 1000 50 0.70692503 +72 818.1525 822.0300000000001 1000 50 0.53461736 +73 825.9075 829.7850000000001 1000 50 0.558526 +74 837.54 841.4175 1000 50 0.8927373 +75 841.4175 845.2950000000001 1000 50 0.99999464 +76 849.1725 853.0500000000001 1000 50 0.64930904 +77 853.05 856.9275 1000 50 0.99959666 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_12-17-57_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_12-17-57_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..4c5f937cc222a7b28b1fbb6a176292af50283d05 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_12-17-57_annot_2022-11-30_01.txt @@ -0,0 +1,51 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999318 +2 3.8775 7.755 1000 50 0.95635545 +3 7.755 11.6325 1000 50 0.9990225 +4 19.3875 23.265 1000 50 0.99999976 +5 23.265 27.142500000000002 1000 50 0.97282493 +6 27.1425 31.02 1000 50 0.9988186 +7 31.02 34.8975 1000 50 0.6152577 +8 38.775 42.652499999999996 1000 50 0.70243454 +9 42.6525 46.53 1000 50 0.6258069 +10 58.1625 62.04 1000 50 0.7709879 +11 62.04 65.9175 1000 50 0.987677 +12 69.795 73.6725 1000 50 0.68818754 +13 77.55 81.4275 1000 50 0.6406314 +14 89.1825 93.06 1000 50 0.9999714 +15 96.9375 100.815 1000 50 0.99997497 +16 100.815 104.6925 1000 50 0.7430721 +17 104.6925 108.57 1000 50 0.6403807 +18 108.57 112.44749999999999 1000 50 0.9711472 +19 112.4475 116.325 1000 50 0.93657804 +20 116.325 120.2025 1000 50 0.9999578 +21 120.2025 124.08 1000 50 0.87988234 +22 124.08 127.9575 1000 50 0.7883626 +23 127.9575 131.835 1000 50 0.99644667 +24 131.835 135.7125 1000 50 0.6911358 +25 135.7125 139.59 1000 50 0.9976943 +26 155.1 158.9775 1000 50 0.510851 +27 174.4875 178.365 1000 50 0.53308403 +28 259.7925 263.67 1000 50 0.5243809 +29 271.425 275.3025 1000 50 0.56715965 +30 283.0575 286.935 1000 50 0.71796393 +31 294.69 298.5675 1000 50 0.572827 +32 302.445 306.3225 1000 50 0.99892706 +33 306.3225 310.2 1000 50 0.9539681 +34 310.2 314.0775 1000 50 0.99877566 +35 314.0775 317.955 1000 50 0.5640976 +36 329.5875 333.465 1000 50 0.550667 +37 333.465 337.3425 1000 50 0.7074734 +38 360.6075 364.485 1000 50 0.66536665 +39 368.3625 372.24 1000 50 0.9301629 +40 372.24 376.1175 1000 50 0.57041323 +41 376.1175 379.995 1000 50 0.70645785 +42 379.995 383.8725 1000 50 0.9999628 +43 391.6275 395.505 1000 50 0.9695916 +44 403.26 407.1375 1000 50 0.5100795 +45 407.1375 411.015 1000 50 0.9939209 +46 411.015 414.8925 1000 50 0.6350721 +47 414.8925 418.77 1000 50 0.96421015 +48 418.77 422.6475 1000 50 0.9798361 +49 422.6475 426.525 1000 50 0.9498324 +50 426.525 430.4025 1000 50 0.573091 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_13-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_13-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..014d9ba819332d58163af9493d6435d64fece2ab --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_13-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,167 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.60759836 +2 3.8775 7.755 1000 50 0.9870208 +3 15.51 19.3875 1000 50 0.78513527 +4 27.1425 31.02 1000 50 0.9804889 +5 31.02 34.8975 1000 50 0.9915616 +6 34.8975 38.775 1000 50 0.9981134 +7 38.775 42.652499999999996 1000 50 0.8385809 +8 42.6525 46.53 1000 50 0.9366485 +9 46.53 50.4075 1000 50 0.99867487 +10 50.4075 54.285 1000 50 0.9981793 +11 54.285 58.162499999999994 1000 50 0.99938023 +12 58.1625 62.04 1000 50 0.5029467 +13 62.04 65.9175 1000 50 0.7923288 +14 65.9175 69.795 1000 50 0.99999344 +15 69.795 73.6725 1000 50 0.948824 +16 73.6725 77.55 1000 50 0.936605 +17 77.55 81.4275 1000 50 0.9992866 +18 85.305 89.1825 1000 50 0.9996086 +19 89.1825 93.06 1000 50 0.99998665 +20 93.06 96.9375 1000 50 0.8562249 +21 96.9375 100.815 1000 50 0.99988616 +22 100.815 104.6925 1000 50 0.8680659 +23 104.6925 108.57 1000 50 0.9999387 +24 108.57 112.44749999999999 1000 50 0.99870145 +25 112.4475 116.325 1000 50 0.99865985 +26 116.325 120.2025 1000 50 0.9997577 +27 120.2025 124.08 1000 50 0.9862657 +28 124.08 127.9575 1000 50 0.7335981 +29 127.9575 131.835 1000 50 0.9919092 +30 131.835 135.7125 1000 50 0.99998295 +31 135.7125 139.59 1000 50 0.92621714 +32 139.59 143.4675 1000 50 0.9935122 +33 143.4675 147.345 1000 50 1.0 +34 147.345 151.2225 1000 50 0.5581579 +35 151.2225 155.1 1000 50 0.99998856 +36 155.1 158.9775 1000 50 0.98953015 +37 162.855 166.7325 1000 50 0.999998 +38 166.7325 170.60999999999999 1000 50 0.8161795 +39 170.61 174.4875 1000 50 0.86179703 +40 174.4875 178.365 1000 50 0.9985714 +41 186.12 189.9975 1000 50 0.55401754 +42 189.9975 193.875 1000 50 0.99990344 +43 205.5075 209.385 1000 50 0.8856636 +44 209.385 213.2625 1000 50 0.5547493 +45 213.2625 217.14 1000 50 0.8702899 +46 217.14 221.01749999999998 1000 50 0.92683303 +47 221.0175 224.895 1000 50 0.9812231 +48 228.7725 232.65 1000 50 0.5457044 +49 232.65 236.5275 1000 50 0.99773175 +50 236.5275 240.405 1000 50 0.99624157 +51 240.405 244.2825 1000 50 0.9991585 +52 248.16 252.0375 1000 50 0.99860233 +53 252.0375 255.915 1000 50 0.9810085 +54 255.915 259.7925 1000 50 0.9997385 +55 259.7925 263.67 1000 50 0.946144 +56 263.67 267.5475 1000 50 0.999726 +57 267.5475 271.425 1000 50 0.9990584 +58 271.425 275.3025 1000 50 0.61107415 +59 275.3025 279.18 1000 50 0.9042129 +60 279.18 283.0575 1000 50 0.99229383 +61 283.0575 286.935 1000 50 0.99998856 +62 286.935 290.8125 1000 50 0.5409451 +63 290.8125 294.69 1000 50 0.9951416 +64 294.69 298.5675 1000 50 0.9998988 +65 298.5675 302.445 1000 50 0.9986291 +66 302.445 306.3225 1000 50 0.93513936 +67 306.3225 310.2 1000 50 0.9982722 +68 364.485 368.3625 1000 50 0.5319875 +69 376.1175 379.995 1000 50 0.69296116 +70 395.505 399.3825 1000 50 0.9623844 +71 414.8925 418.77 1000 50 0.6142016 +72 434.28 438.15749999999997 1000 50 0.613344 +73 453.6675 457.545 1000 50 0.87742347 +74 488.565 492.4425 1000 50 0.551014 +75 515.7075 519.585 1000 50 0.8900379 +76 523.4625 527.34 1000 50 0.6255478 +77 527.34 531.2175000000001 1000 50 0.95572275 +78 535.095 538.9725000000001 1000 50 0.773137 +79 550.605 554.4825000000001 1000 50 0.8707462 +80 558.36 562.2375000000001 1000 50 0.9220034 +81 577.7475 581.625 1000 50 0.9890426 +82 581.625 585.5025 1000 50 0.99262744 +83 597.135 601.0125 1000 50 0.8239484 +84 608.7675 612.6450000000001 1000 50 0.9998209 +85 612.645 616.5225 1000 50 0.92976195 +86 620.4 624.2775 1000 50 0.9859401 +87 624.2775 628.1550000000001 1000 50 0.9487981 +88 628.155 632.0325 1000 50 0.5430265 +89 632.0325 635.9100000000001 1000 50 0.99755484 +90 635.91 639.7875 1000 50 0.9871085 +91 651.42 655.2975 1000 50 0.67014307 +92 655.2975 659.1750000000001 1000 50 0.9935528 +93 663.0525 666.9300000000001 1000 50 0.81726736 +94 666.93 670.8075 1000 50 0.67192084 +95 670.8075 674.6850000000001 1000 50 0.9935097 +96 674.685 678.5625 1000 50 0.99966466 +97 686.3175 690.195 1000 50 0.9842174 +98 690.195 694.0725000000001 1000 50 0.9994986 +99 697.95 701.8275000000001 1000 50 0.8331667 +100 701.8275 705.705 1000 50 0.9954314 +101 705.705 709.5825000000001 1000 50 0.99113876 +102 713.46 717.3375000000001 1000 50 0.6112032 +103 717.3375 721.215 1000 50 0.9991985 +104 721.215 725.0925000000001 1000 50 0.84295595 +105 725.0925 728.97 1000 50 0.9805721 +106 728.97 732.8475000000001 1000 50 0.9627417 +107 732.8475 736.725 1000 50 0.9991523 +108 736.725 740.6025000000001 1000 50 0.6772805 +109 744.48 748.3575000000001 1000 50 1.0 +110 748.3575 752.235 1000 50 0.9959947 +111 752.235 756.1125000000001 1000 50 0.99705815 +112 756.1125 759.99 1000 50 0.99994946 +113 759.99 763.8675000000001 1000 50 0.58443886 +114 771.6225 775.5 1000 50 0.9999989 +115 775.5 779.3775 1000 50 0.5662212 +116 779.3775 783.2550000000001 1000 50 0.9999925 +117 783.255 787.1325 1000 50 0.6560084 +118 787.1325 791.0100000000001 1000 50 0.6433324 +119 791.01 794.8875 1000 50 0.9086963 +120 798.765 802.6425 1000 50 0.99999976 +121 806.52 810.3975 1000 50 0.99999785 +122 810.3975 814.2750000000001 1000 50 0.99715996 +123 818.1525 822.0300000000001 1000 50 0.99999666 +124 822.03 825.9075 1000 50 0.9999373 +125 825.9075 829.7850000000001 1000 50 0.94355047 +126 829.785 833.6625 1000 50 0.99999726 +127 833.6625 837.5400000000001 1000 50 0.6065158 +128 837.54 841.4175 1000 50 0.9999895 +129 841.4175 845.2950000000001 1000 50 0.76699543 +130 845.295 849.1725 1000 50 0.9920563 +131 849.1725 853.0500000000001 1000 50 0.9999875 +132 853.05 856.9275 1000 50 0.6106687 +133 856.9275 860.8050000000001 1000 50 0.9998485 +134 860.805 864.6825 1000 50 0.9966557 +135 868.56 872.4375 1000 50 0.99999475 +136 872.4375 876.315 1000 50 0.9514312 +137 876.315 880.1925000000001 1000 50 0.9999919 +138 880.1925 884.07 1000 50 0.99956506 +139 887.9475 891.825 1000 50 0.96423554 +140 895.7025 899.58 1000 50 0.9935614 +141 903.4575 907.335 1000 50 0.9854096 +142 911.2125 915.09 1000 50 0.8655873 +143 918.9675 922.845 1000 50 0.7523403 +144 922.845 926.7225000000001 1000 50 0.982982 +145 926.7225 930.6 1000 50 0.9406004 +146 930.6 934.4775000000001 1000 50 0.99592954 +147 942.2325 946.11 1000 50 0.6331085 +148 957.7425 961.62 1000 50 0.99998915 +149 961.62 965.4975000000001 1000 50 0.99568284 +150 965.4975 969.375 1000 50 0.98749536 +151 969.375 973.2525 1000 50 0.69929004 +152 973.2525 977.1300000000001 1000 50 0.99934775 +153 977.13 981.0075 1000 50 0.77066094 +154 981.0075 984.8850000000001 1000 50 0.9992587 +155 984.885 988.7625 1000 50 0.98096323 +156 988.7625 992.6400000000001 1000 50 0.5602261 +157 992.64 996.5175 1000 50 0.55878174 +158 996.5175 1000.3950000000001 1000 50 0.79808664 +159 1000.395 1004.2725 1000 50 0.99172825 +160 1004.2725 1008.1500000000001 1000 50 0.97889656 +161 1008.15 1012.0275 1000 50 0.6490351 +162 1012.0275 1015.9050000000001 1000 50 0.56030387 +163 1019.7825 1023.6600000000001 1000 50 0.9690263 +164 1058.5575 1062.435 1000 50 0.51310474 +165 1128.3525 1132.23 1000 50 0.5752021 +166 1143.8625 1147.74 1000 50 0.5357131 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_13-23-16_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_13-23-16_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..725d4da6e0f6ac0553f526201fd8de5c711ad443 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_13-23-16_annot_2022-11-30_01.txt @@ -0,0 +1,18 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.87050134 +2 19.3875 23.265 1000 50 0.9999976 +3 23.265 27.142500000000002 1000 50 0.9355812 +4 27.1425 31.02 1000 50 0.99737346 +5 31.02 34.8975 1000 50 0.9990914 +6 34.8975 38.775 1000 50 0.97792745 +7 38.775 42.652499999999996 1000 50 0.92961895 +8 42.6525 46.53 1000 50 0.54866666 +9 46.53 50.4075 1000 50 0.997124 +10 54.285 58.162499999999994 1000 50 0.99961746 +11 65.9175 69.795 1000 50 0.7423631 +12 69.795 73.6725 1000 50 0.7233286 +13 73.6725 77.55 1000 50 0.8792502 +14 77.55 81.4275 1000 50 0.82817197 +15 93.06 96.9375 1000 50 0.8979364 +16 96.9375 100.815 1000 50 0.9581747 +17 104.6925 108.57 1000 50 0.82932466 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_14-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_14-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..6661184df043f255e9a6aa506e0484c03aea39f6 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_14-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,201 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.5186408 +2 27.1425 31.02 1000 50 0.5937601 +3 31.02 34.8975 1000 50 0.56549126 +4 34.8975 38.775 1000 50 0.6512204 +5 38.775 42.652499999999996 1000 50 0.59270185 +6 58.1625 62.04 1000 50 0.95498776 +7 81.4275 85.30499999999999 1000 50 0.6605623 +8 104.6925 108.57 1000 50 0.78923047 +9 127.9575 131.835 1000 50 0.8700527 +10 147.345 151.2225 1000 50 0.97977567 +11 151.2225 155.1 1000 50 0.5996343 +12 155.1 158.9775 1000 50 0.99909997 +13 158.9775 162.855 1000 50 0.6200126 +14 162.855 166.7325 1000 50 0.9998067 +15 170.61 174.4875 1000 50 0.9960782 +16 174.4875 178.365 1000 50 0.9992126 +17 178.365 182.2425 1000 50 0.58532584 +18 182.2425 186.12 1000 50 0.9998939 +19 186.12 189.9975 1000 50 0.99679 +20 189.9975 193.875 1000 50 0.9999281 +21 193.875 197.7525 1000 50 0.6023084 +22 201.63 205.5075 1000 50 0.9997929 +23 209.385 213.2625 1000 50 0.99947387 +24 217.14 221.01749999999998 1000 50 0.9904357 +25 221.0175 224.895 1000 50 0.9999808 +26 224.895 228.7725 1000 50 0.82166 +27 228.7725 232.65 1000 50 0.99233913 +28 232.65 236.5275 1000 50 0.62197244 +29 240.405 244.2825 1000 50 0.6703607 +30 244.2825 248.16 1000 50 0.9907979 +31 248.16 252.0375 1000 50 0.517147 +32 252.0375 255.915 1000 50 0.99905974 +33 255.915 259.7925 1000 50 0.99710304 +34 263.67 267.5475 1000 50 0.9832895 +35 267.5475 271.425 1000 50 0.9985997 +36 271.425 275.3025 1000 50 0.5793693 +37 283.0575 286.935 1000 50 0.7514886 +38 286.935 290.8125 1000 50 0.8311158 +39 290.8125 294.69 1000 50 0.5072264 +40 294.69 298.5675 1000 50 0.9977945 +41 298.5675 302.445 1000 50 0.9962335 +42 306.3225 310.2 1000 50 0.5080885 +43 310.2 314.0775 1000 50 0.7737163 +44 314.0775 317.955 1000 50 0.9920848 +45 317.955 321.8325 1000 50 0.6160415 +46 325.71 329.5875 1000 50 0.8153972 +47 329.5875 333.465 1000 50 0.7119801 +48 333.465 337.3425 1000 50 0.80659574 +49 337.3425 341.21999999999997 1000 50 0.92991996 +50 341.22 345.0975 1000 50 0.7916717 +51 345.0975 348.975 1000 50 0.57079345 +52 348.975 352.8525 1000 50 0.9940234 +53 352.8525 356.73 1000 50 0.9426734 +54 356.73 360.6075 1000 50 0.85416776 +55 368.3625 372.24 1000 50 0.58871895 +56 372.24 376.1175 1000 50 0.88028514 +57 376.1175 379.995 1000 50 0.9999925 +58 379.995 383.8725 1000 50 0.7770051 +59 383.8725 387.75 1000 50 0.9946956 +60 387.75 391.6275 1000 50 0.99941444 +61 391.6275 395.505 1000 50 0.7602865 +62 395.505 399.3825 1000 50 0.9999962 +63 403.26 407.1375 1000 50 0.99737716 +64 414.8925 418.77 1000 50 0.99994445 +65 418.77 422.6475 1000 50 0.99998915 +66 422.6475 426.525 1000 50 0.9999933 +67 426.525 430.4025 1000 50 0.9995067 +68 434.28 438.15749999999997 1000 50 0.9999846 +69 442.035 445.9125 1000 50 0.60911876 +70 445.9125 449.79 1000 50 0.51098025 +71 449.79 453.6675 1000 50 0.97328216 +72 453.6675 457.545 1000 50 0.99562585 +73 457.545 461.4225 1000 50 0.54471743 +74 461.4225 465.3 1000 50 0.9973252 +75 465.3 469.1775 1000 50 0.98103106 +76 469.1775 473.055 1000 50 0.8759437 +77 473.055 476.9325 1000 50 0.99147743 +78 476.9325 480.81 1000 50 0.9344692 +79 480.81 484.6875 1000 50 0.99991965 +80 484.6875 488.565 1000 50 0.8807735 +81 492.4425 496.32 1000 50 0.8716619 +82 500.1975 504.075 1000 50 0.69320804 +83 504.075 507.9525 1000 50 0.9850122 +84 507.9525 511.83 1000 50 0.98154485 +85 511.83 515.7075 1000 50 0.9998965 +86 515.7075 519.585 1000 50 0.7319001 +87 519.585 523.4625000000001 1000 50 0.999982 +88 523.4625 527.34 1000 50 0.97200465 +89 527.34 531.2175000000001 1000 50 0.85663545 +90 535.095 538.9725000000001 1000 50 0.9998752 +91 538.9725 542.85 1000 50 0.7665077 +92 542.85 546.7275000000001 1000 50 0.9616714 +93 546.7275 550.605 1000 50 0.9998716 +94 550.605 554.4825000000001 1000 50 0.6475286 +95 554.4825 558.36 1000 50 0.99884146 +96 558.36 562.2375000000001 1000 50 0.9882883 +97 562.2375 566.115 1000 50 0.99995697 +98 566.115 569.9925000000001 1000 50 0.97670025 +99 569.9925 573.87 1000 50 0.99996734 +100 573.87 577.7475000000001 1000 50 0.9993855 +101 577.7475 581.625 1000 50 0.99767643 +102 581.625 585.5025 1000 50 0.96872455 +103 604.89 608.7675 1000 50 0.7430724 +104 628.155 632.0325 1000 50 0.5636591 +105 647.5425 651.4200000000001 1000 50 0.9451017 +106 655.2975 659.1750000000001 1000 50 0.88494426 +107 663.0525 666.9300000000001 1000 50 0.67453665 +108 682.44 686.3175000000001 1000 50 0.96704245 +109 705.705 709.5825000000001 1000 50 0.5579478 +110 717.3375 721.215 1000 50 0.5896858 +111 740.6025 744.48 1000 50 0.552994 +112 748.3575 752.235 1000 50 0.9999738 +113 752.235 756.1125000000001 1000 50 0.74360967 +114 763.8675 767.745 1000 50 0.9038051 +115 767.745 771.6225000000001 1000 50 0.8102528 +116 771.6225 775.5 1000 50 0.6287831 +117 775.5 779.3775 1000 50 0.73968095 +118 779.3775 783.2550000000001 1000 50 0.99976915 +119 783.255 787.1325 1000 50 0.72384113 +120 787.1325 791.0100000000001 1000 50 0.9984226 +121 791.01 794.8875 1000 50 0.7977683 +122 794.8875 798.7650000000001 1000 50 0.91456294 +123 802.6425 806.5200000000001 1000 50 0.9887683 +124 814.275 818.1525 1000 50 0.9999988 +125 822.03 825.9075 1000 50 0.99292153 +126 825.9075 829.7850000000001 1000 50 0.9429124 +127 833.6625 837.5400000000001 1000 50 0.9854835 +128 837.54 841.4175 1000 50 0.97701824 +129 845.295 849.1725 1000 50 0.5093283 +130 853.05 856.9275 1000 50 0.6320221 +131 864.6825 868.5600000000001 1000 50 0.8328049 +132 868.56 872.4375 1000 50 0.9999788 +133 872.4375 876.315 1000 50 0.8642227 +134 876.315 880.1925000000001 1000 50 0.99863666 +135 891.825 895.7025000000001 1000 50 0.9966774 +136 895.7025 899.58 1000 50 0.985552 +137 899.58 903.4575000000001 1000 50 0.8727592 +138 903.4575 907.335 1000 50 0.9572232 +139 911.2125 915.09 1000 50 0.9934875 +140 915.09 918.9675000000001 1000 50 0.74169505 +141 926.7225 930.6 1000 50 0.612005 +142 930.6 934.4775000000001 1000 50 0.943999 +143 934.4775 938.355 1000 50 0.9934562 +144 942.2325 946.11 1000 50 0.9703528 +145 946.11 949.9875000000001 1000 50 0.82564265 +146 949.9875 953.865 1000 50 0.99470454 +147 953.865 957.7425000000001 1000 50 0.97066206 +148 961.62 965.4975000000001 1000 50 0.99993336 +149 965.4975 969.375 1000 50 0.8755346 +150 988.7625 992.6400000000001 1000 50 0.9861639 +151 992.64 996.5175 1000 50 0.99017733 +152 996.5175 1000.3950000000001 1000 50 0.6721803 +153 1000.395 1004.2725 1000 50 0.99549097 +154 1004.2725 1008.1500000000001 1000 50 0.9791373 +155 1008.15 1012.0275 1000 50 0.980205 +156 1012.0275 1015.9050000000001 1000 50 0.8523146 +157 1015.905 1019.7825 1000 50 0.9984723 +158 1019.7825 1023.6600000000001 1000 50 0.81835 +159 1023.66 1027.5375 1000 50 0.99402124 +160 1027.5375 1031.415 1000 50 0.50822985 +161 1031.415 1035.2925 1000 50 0.9998043 +162 1035.2925 1039.17 1000 50 0.9864976 +163 1039.17 1043.0475000000001 1000 50 0.94308096 +164 1043.0475 1046.925 1000 50 0.999992 +165 1046.925 1050.8025 1000 50 0.9484782 +166 1050.8025 1054.68 1000 50 0.9961159 +167 1054.68 1058.5575000000001 1000 50 0.9985727 +168 1074.0675 1077.9450000000002 1000 50 0.8017336 +169 1093.455 1097.3325 1000 50 0.82138115 +170 1159.3725 1163.25 1000 50 0.83390534 +171 1233.045 1236.9225000000001 1000 50 0.5691651 +172 1283.4525 1287.3300000000002 1000 50 0.9755765 +173 1302.84 1306.7175 1000 50 0.70103395 +174 1306.7175 1310.595 1000 50 0.9943078 +175 1310.595 1314.4725 1000 50 0.69375175 +176 1314.4725 1318.3500000000001 1000 50 0.8793854 +177 1322.2275 1326.105 1000 50 0.5319093 +178 1333.86 1337.7375 1000 50 0.99070007 +179 1357.125 1361.0025 1000 50 0.76028675 +180 1364.88 1368.7575000000002 1000 50 0.9289213 +181 1368.7575 1372.635 1000 50 0.8865261 +182 1372.635 1376.5125 1000 50 0.72421086 +183 1392.0225 1395.9 1000 50 0.5380125 +184 1407.5325 1411.41 1000 50 0.650133 +185 1411.41 1415.2875000000001 1000 50 0.9236846 +186 1423.0425 1426.92 1000 50 0.98998064 +187 1426.92 1430.7975000000001 1000 50 0.87298936 +188 1430.7975 1434.675 1000 50 0.99987864 +189 1442.43 1446.3075000000001 1000 50 0.9912185 +190 1446.3075 1450.185 1000 50 0.9747123 +191 1454.0625 1457.94 1000 50 0.96240854 +192 1457.94 1461.8175 1000 50 0.7211428 +193 1461.8175 1465.6950000000002 1000 50 0.9999454 +194 1465.695 1469.5725 1000 50 0.9910486 +195 1469.5725 1473.45 1000 50 0.67046064 +196 1473.45 1477.3275 1000 50 0.96120083 +197 1477.3275 1481.2050000000002 1000 50 0.99999857 +198 1481.205 1485.0825 1000 50 0.9919629 +199 1488.96 1492.8375 1000 50 0.8872471 +200 1492.8375 1496.7150000000001 1000 50 0.9999324 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_15-01-53_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_15-01-53_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..64ebb59a44d2b00b332f19721000758fe1a54840 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_15-01-53_annot_2022-11-30_01.txt @@ -0,0 +1,158 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 23.265 27.142500000000002 1000 50 0.75286317 +2 58.1625 62.04 1000 50 0.7714281 +3 65.9175 69.795 1000 50 0.57894653 +4 96.9375 100.815 1000 50 0.7465625 +5 131.835 135.7125 1000 50 0.9398985 +6 143.4675 147.345 1000 50 0.69214505 +7 147.345 151.2225 1000 50 0.9408237 +8 182.2425 186.12 1000 50 0.79793566 +9 189.9975 193.875 1000 50 0.98001796 +10 193.875 197.7525 1000 50 0.96325576 +11 197.7525 201.63 1000 50 0.9980709 +12 213.2625 217.14 1000 50 0.5424149 +13 221.0175 224.895 1000 50 0.8344551 +14 244.2825 248.16 1000 50 0.5535691 +15 252.0375 255.915 1000 50 0.94676954 +16 263.67 267.5475 1000 50 0.55216897 +17 279.18 283.0575 1000 50 0.9993298 +18 286.935 290.8125 1000 50 0.91333425 +19 290.8125 294.69 1000 50 0.6866055 +20 302.445 306.3225 1000 50 0.9711856 +21 306.3225 310.2 1000 50 0.9512922 +22 317.955 321.8325 1000 50 0.9968022 +23 333.465 337.3425 1000 50 0.9996822 +24 337.3425 341.21999999999997 1000 50 0.7966816 +25 345.0975 348.975 1000 50 0.9991117 +26 352.8525 356.73 1000 50 0.9825571 +27 356.73 360.6075 1000 50 0.995538 +28 360.6075 364.485 1000 50 0.9497372 +29 364.485 368.3625 1000 50 0.9999832 +30 368.3625 372.24 1000 50 0.9994338 +31 376.1175 379.995 1000 50 0.99869835 +32 379.995 383.8725 1000 50 0.9946077 +33 383.8725 387.75 1000 50 0.6628173 +34 387.75 391.6275 1000 50 0.93114936 +35 395.505 399.3825 1000 50 0.99050444 +36 399.3825 403.26 1000 50 0.9841165 +37 403.26 407.1375 1000 50 0.9997352 +38 407.1375 411.015 1000 50 0.92565167 +39 411.015 414.8925 1000 50 0.8513331 +40 414.8925 418.77 1000 50 0.9999995 +41 418.77 422.6475 1000 50 0.54414886 +42 422.6475 426.525 1000 50 0.9766856 +43 426.525 430.4025 1000 50 0.85735667 +44 430.4025 434.28 1000 50 0.6663574 +45 434.28 438.15749999999997 1000 50 0.9983967 +46 438.1575 442.035 1000 50 0.88949364 +47 445.9125 449.79 1000 50 0.9999999 +48 449.79 453.6675 1000 50 0.9860561 +49 453.6675 457.545 1000 50 0.99999964 +50 457.545 461.4225 1000 50 0.98173255 +51 461.4225 465.3 1000 50 0.9487335 +52 465.3 469.1775 1000 50 0.9611269 +53 473.055 476.9325 1000 50 0.99899226 +54 476.9325 480.81 1000 50 0.8270132 +55 484.6875 488.565 1000 50 0.9999999 +56 488.565 492.4425 1000 50 0.83726156 +57 492.4425 496.32 1000 50 0.9999714 +58 504.075 507.9525 1000 50 0.99997807 +59 507.9525 511.83 1000 50 0.8638731 +60 523.4625 527.34 1000 50 0.8124434 +61 527.34 531.2175000000001 1000 50 0.5857821 +62 535.095 538.9725000000001 1000 50 0.60374814 +63 538.9725 542.85 1000 50 0.9455101 +64 546.7275 550.605 1000 50 0.9744771 +65 573.87 577.7475000000001 1000 50 0.6921858 +66 585.5025 589.3800000000001 1000 50 0.7557051 +67 597.135 601.0125 1000 50 0.579378 +68 601.0125 604.8900000000001 1000 50 0.5710101 +69 647.5425 651.4200000000001 1000 50 0.5209233 +70 659.175 663.0525 1000 50 0.5349282 +71 666.93 670.8075 1000 50 0.96470314 +72 682.44 686.3175000000001 1000 50 0.97521484 +73 694.0725 697.95 1000 50 0.6610927 +74 697.95 701.8275000000001 1000 50 0.58527285 +75 798.765 802.6425 1000 50 0.9966182 +76 802.6425 806.5200000000001 1000 50 0.9966786 +77 806.52 810.3975 1000 50 0.9983217 +78 810.3975 814.2750000000001 1000 50 0.5540969 +79 814.275 818.1525 1000 50 0.9959785 +80 825.9075 829.7850000000001 1000 50 0.9872168 +81 829.785 833.6625 1000 50 0.9403215 +82 841.4175 845.2950000000001 1000 50 0.9983163 +83 849.1725 853.0500000000001 1000 50 0.9673163 +84 860.805 864.6825 1000 50 0.5771384 +85 868.56 872.4375 1000 50 0.99991274 +86 872.4375 876.315 1000 50 0.7237076 +87 876.315 880.1925000000001 1000 50 0.9693262 +88 880.1925 884.07 1000 50 0.992295 +89 884.07 887.9475000000001 1000 50 0.5744583 +90 887.9475 891.825 1000 50 0.99956614 +91 891.825 895.7025000000001 1000 50 0.9999585 +92 899.58 903.4575000000001 1000 50 0.9996247 +93 903.4575 907.335 1000 50 0.99950624 +94 911.2125 915.09 1000 50 0.99190885 +95 915.09 918.9675000000001 1000 50 0.99268687 +96 934.4775 938.355 1000 50 0.99835443 +97 942.2325 946.11 1000 50 0.6344097 +98 946.11 949.9875000000001 1000 50 0.96243715 +99 949.9875 953.865 1000 50 0.99995244 +100 953.865 957.7425000000001 1000 50 0.88454115 +101 957.7425 961.62 1000 50 0.5242552 +102 961.62 965.4975000000001 1000 50 0.920006 +103 965.4975 969.375 1000 50 0.9855053 +104 969.375 973.2525 1000 50 0.91998446 +105 973.2525 977.1300000000001 1000 50 0.96203464 +106 981.0075 984.8850000000001 1000 50 0.9984592 +107 984.885 988.7625 1000 50 0.9995677 +108 992.64 996.5175 1000 50 0.99999106 +109 996.5175 1000.3950000000001 1000 50 0.99904746 +110 1000.395 1004.2725 1000 50 0.9999186 +111 1004.2725 1008.1500000000001 1000 50 0.99696654 +112 1012.0275 1015.9050000000001 1000 50 1.0 +113 1015.905 1019.7825 1000 50 0.9978276 +114 1019.7825 1023.6600000000001 1000 50 0.99950063 +115 1023.66 1027.5375 1000 50 0.9886156 +116 1027.5375 1031.415 1000 50 0.97268504 +117 1031.415 1035.2925 1000 50 0.9970884 +118 1035.2925 1039.17 1000 50 0.9962226 +119 1039.17 1043.0475000000001 1000 50 0.9999994 +120 1043.0475 1046.925 1000 50 0.9051541 +121 1046.925 1050.8025 1000 50 0.99385285 +122 1050.8025 1054.68 1000 50 0.5214506 +123 1054.68 1058.5575000000001 1000 50 0.9924932 +124 1058.5575 1062.435 1000 50 0.99999225 +125 1062.435 1066.3125 1000 50 0.9999988 +126 1070.19 1074.0675 1000 50 0.9999999 +127 1074.0675 1077.9450000000002 1000 50 0.9851362 +128 1081.8225 1085.7 1000 50 0.9723155 +129 1085.7 1089.5775 1000 50 0.6237264 +130 1093.455 1097.3325 1000 50 0.621484 +131 1097.3325 1101.21 1000 50 0.9939593 +132 1101.21 1105.0875 1000 50 0.9964019 +133 1108.965 1112.8425 1000 50 0.999889 +134 1116.72 1120.5975 1000 50 0.9794319 +135 1120.5975 1124.4750000000001 1000 50 0.63321185 +136 1128.3525 1132.23 1000 50 0.998629 +137 1132.23 1136.1075 1000 50 0.99933845 +138 1139.985 1143.8625 1000 50 0.99926704 +139 1147.74 1151.6175 1000 50 0.9989893 +140 1151.6175 1155.4950000000001 1000 50 0.9972777 +141 1155.495 1159.3725 1000 50 0.9987556 +142 1159.3725 1163.25 1000 50 0.9996847 +143 1163.25 1167.1275 1000 50 0.96143985 +144 1167.1275 1171.005 1000 50 0.97479725 +145 1171.005 1174.8825000000002 1000 50 0.9812197 +146 1174.8825 1178.76 1000 50 0.9992125 +147 1178.76 1182.6375 1000 50 0.94481087 +148 1182.6375 1186.515 1000 50 0.9950364 +149 1186.515 1190.3925000000002 1000 50 0.99998057 +150 1190.3925 1194.27 1000 50 0.9983462 +151 1236.9225 1240.8 1000 50 0.68789506 +152 1248.555 1252.4325000000001 1000 50 0.6343517 +153 1264.065 1267.9425 1000 50 0.54759645 +154 1291.2075 1295.085 1000 50 0.5534639 +155 1298.9625 1302.8400000000001 1000 50 0.6361886 +156 1302.84 1306.7175 1000 50 0.6327431 +157 1380.39 1384.2675000000002 1000 50 0.629197 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_16-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_16-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5833719e52e8aa4999e6b9949c76a7df092e247f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_16-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,4 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 58.1625 62.04 1000 50 0.60315627 +2 108.57 112.44749999999999 1000 50 0.76751274 +3 205.5075 209.385 1000 50 0.55581695 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_16-07-11_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_16-07-11_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..320e996ea42b9a2a2deea47774c1a3e52c671b68 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_16-07-11_annot_2022-11-30_01.txt @@ -0,0 +1,15 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 306.3225 310.2 1000 50 0.5010175 +2 352.8525 356.73 1000 50 0.58638185 +3 407.1375 411.015 1000 50 0.96695775 +4 492.4425 496.32 1000 50 0.9164945 +5 511.83 515.7075 1000 50 0.78211176 +6 601.0125 604.8900000000001 1000 50 0.57069373 +7 608.7675 612.6450000000001 1000 50 0.5465761 +8 635.91 639.7875 1000 50 0.67188513 +9 721.215 725.0925000000001 1000 50 0.5072038 +10 767.745 771.6225000000001 1000 50 0.6840382 +11 771.6225 775.5 1000 50 0.6164295 +12 876.315 880.1925000000001 1000 50 0.74933517 +13 992.64 996.5175 1000 50 0.67698467 +14 1046.925 1050.8025 1000 50 0.65413606 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_17-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_17-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1605e1f32a061c3ac5856f6b140c0ebbb7828553 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_17-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,13 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 178.365 182.2425 1000 50 0.68284005 +2 213.2625 217.14 1000 50 0.5556153 +3 217.14 221.01749999999998 1000 50 0.9862846 +4 252.0375 255.915 1000 50 0.9978575 +5 267.5475 271.425 1000 50 0.960832 +6 279.18 283.0575 1000 50 0.9955869 +7 314.0775 317.955 1000 50 0.5111145 +8 333.465 337.3425 1000 50 0.90509266 +9 341.22 345.0975 1000 50 0.5800644 +10 383.8725 387.75 1000 50 0.5741539 +11 488.565 492.4425 1000 50 0.98614883 +12 496.32 500.1975 1000 50 0.615009 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_17-12-30_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_17-12-30_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b06a0f2b18e7ba4e3d6d2dfae03a151e69f77ae1 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_17-12-30_annot_2022-11-30_01.txt @@ -0,0 +1,31 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.8021723 +2 27.1425 31.02 1000 50 0.5578308 +3 93.06 96.9375 1000 50 0.7400148 +4 135.7125 139.59 1000 50 0.96143645 +5 147.345 151.2225 1000 50 0.90719706 +6 155.1 158.9775 1000 50 0.9936147 +7 158.9775 162.855 1000 50 0.88968194 +8 166.7325 170.60999999999999 1000 50 0.9998202 +9 170.61 174.4875 1000 50 0.9614335 +10 178.365 182.2425 1000 50 0.9991303 +11 186.12 189.9975 1000 50 0.9983133 +12 197.7525 201.63 1000 50 0.9980142 +13 205.5075 209.385 1000 50 0.99961567 +14 217.14 221.01749999999998 1000 50 0.95528525 +15 221.0175 224.895 1000 50 0.55524933 +16 224.895 228.7725 1000 50 0.99989915 +17 306.3225 310.2 1000 50 0.8155356 +18 310.2 314.0775 1000 50 0.5881896 +19 314.0775 317.955 1000 50 0.86149794 +20 321.8325 325.71 1000 50 0.7124691 +21 325.71 329.5875 1000 50 0.74740136 +22 333.465 337.3425 1000 50 0.8372388 +23 337.3425 341.21999999999997 1000 50 0.79562104 +24 348.975 352.8525 1000 50 0.6948617 +25 356.73 360.6075 1000 50 0.50417346 +26 368.3625 372.24 1000 50 0.7253972 +27 383.8725 387.75 1000 50 0.92158383 +28 434.28 438.15749999999997 1000 50 0.5412628 +29 585.5025 589.3800000000001 1000 50 0.8392761 +30 651.42 655.2975 1000 50 0.5300237 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_18-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_18-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..037cec546e0e450ac7599d5bc1920fb6b8c22f13 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_18-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,25 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.60996807 +2 31.02 34.8975 1000 50 0.7400518 +3 65.9175 69.795 1000 50 0.9904039 +4 81.4275 85.30499999999999 1000 50 0.50563824 +5 108.57 112.44749999999999 1000 50 0.93993574 +6 170.61 174.4875 1000 50 0.7506114 +7 178.365 182.2425 1000 50 0.9891276 +8 182.2425 186.12 1000 50 0.63050014 +9 209.385 213.2625 1000 50 0.55379987 +10 228.7725 232.65 1000 50 0.6035022 +11 314.0775 317.955 1000 50 0.74284655 +12 465.3 469.1775 1000 50 0.75052744 +13 581.625 585.5025 1000 50 0.66781914 +14 604.89 608.7675 1000 50 0.5332116 +15 624.2775 628.1550000000001 1000 50 0.6879674 +16 628.155 632.0325 1000 50 0.9981805 +17 632.0325 635.9100000000001 1000 50 0.52987486 +18 666.93 670.8075 1000 50 0.96235824 +19 682.44 686.3175000000001 1000 50 0.7976731 +20 705.705 709.5825000000001 1000 50 0.54801667 +21 713.46 717.3375000000001 1000 50 0.70451874 +22 728.97 732.8475000000001 1000 50 0.8077541 +23 759.99 763.8675000000001 1000 50 0.8800894 +24 829.785 833.6625 1000 50 0.6419419 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_18-17-49_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_18-17-49_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..53744f2d707fd4896e8d8821bcbb60abd1980716 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_18-17-49_annot_2022-11-30_01.txt @@ -0,0 +1,16 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 77.55 81.4275 1000 50 0.8977597 +2 104.6925 108.57 1000 50 0.5613495 +3 139.59 143.4675 1000 50 0.9532999 +4 158.9775 162.855 1000 50 0.89247215 +5 178.365 182.2425 1000 50 0.7597602 +6 221.0175 224.895 1000 50 0.7446023 +7 228.7725 232.65 1000 50 0.5391353 +8 232.65 236.5275 1000 50 0.79712373 +9 244.2825 248.16 1000 50 0.6684904 +10 248.16 252.0375 1000 50 0.5031491 +11 255.915 259.7925 1000 50 0.6168593 +12 259.7925 263.67 1000 50 0.6072872 +13 263.67 267.5475 1000 50 0.9215999 +14 267.5475 271.425 1000 50 0.84037715 +15 279.18 283.0575 1000 50 0.6254961 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_19-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_19-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..154e4f942f81bf7ecbc7d7e2e1080dd853467d56 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_19-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,37 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.66862726 +2 46.53 50.4075 1000 50 0.5147268 +3 58.1625 62.04 1000 50 0.53498524 +4 81.4275 85.30499999999999 1000 50 0.63758147 +5 104.6925 108.57 1000 50 0.5367372 +6 112.4475 116.325 1000 50 0.6270775 +7 147.345 151.2225 1000 50 0.5874522 +8 162.855 166.7325 1000 50 0.5983453 +9 174.4875 178.365 1000 50 0.9581218 +10 178.365 182.2425 1000 50 0.6079508 +11 263.67 267.5475 1000 50 0.57846606 +12 279.18 283.0575 1000 50 0.52518654 +13 341.22 345.0975 1000 50 0.61898726 +14 348.975 352.8525 1000 50 0.61046803 +15 368.3625 372.24 1000 50 0.62482715 +16 383.8725 387.75 1000 50 0.62357676 +17 422.6475 426.525 1000 50 0.51413894 +18 430.4025 434.28 1000 50 0.6600505 +19 511.83 515.7075 1000 50 0.72061706 +20 515.7075 519.585 1000 50 0.98766613 +21 542.85 546.7275000000001 1000 50 0.78620696 +22 554.4825 558.36 1000 50 0.5040004 +23 612.645 616.5225 1000 50 0.51417017 +24 678.5625 682.44 1000 50 0.5949113 +25 713.46 717.3375000000001 1000 50 0.5302513 +26 728.97 732.8475000000001 1000 50 0.567087 +27 752.235 756.1125000000001 1000 50 0.54323584 +28 763.8675 767.745 1000 50 0.63301355 +29 771.6225 775.5 1000 50 0.9555756 +30 860.805 864.6825 1000 50 0.54380965 +31 899.58 903.4575000000001 1000 50 0.5311479 +32 903.4575 907.335 1000 50 0.9459147 +33 907.335 911.2125000000001 1000 50 0.5492356 +34 934.4775 938.355 1000 50 0.5062043 +35 949.9875 953.865 1000 50 0.81153125 +36 957.7425 961.62 1000 50 0.61051315 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_19-23-07_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_19-23-07_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..090ee45733d55227d4a7a9ae67bf030df3a80ba3 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_19-23-07_annot_2022-11-30_01.txt @@ -0,0 +1,3 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 81.4275 85.30499999999999 1000 50 0.7035195 +2 96.9375 100.815 1000 50 0.5142879 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_20-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_20-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..44bc83e6baebbd2a4edb12a5e274c8b54f5f8a97 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_20-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,56 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 15.51 19.3875 1000 50 0.51415133 +2 23.265 27.142500000000002 1000 50 0.5687641 +3 42.6525 46.53 1000 50 0.75933367 +4 54.285 58.162499999999994 1000 50 0.7424769 +5 85.305 89.1825 1000 50 0.87941843 +6 100.815 104.6925 1000 50 0.5035152 +7 143.4675 147.345 1000 50 0.5284647 +8 147.345 151.2225 1000 50 0.6909666 +9 170.61 174.4875 1000 50 0.67081845 +10 193.875 197.7525 1000 50 0.9824394 +11 197.7525 201.63 1000 50 0.9015653 +12 205.5075 209.385 1000 50 0.7479204 +13 228.7725 232.65 1000 50 0.6248666 +14 263.67 267.5475 1000 50 0.84046364 +15 275.3025 279.18 1000 50 0.5964976 +16 286.935 290.8125 1000 50 0.5887586 +17 294.69 298.5675 1000 50 0.67820084 +18 348.975 352.8525 1000 50 0.6331593 +19 383.8725 387.75 1000 50 0.68381983 +20 391.6275 395.505 1000 50 0.7159481 +21 581.625 585.5025 1000 50 0.5305671 +22 670.8075 674.6850000000001 1000 50 0.8586328 +23 694.0725 697.95 1000 50 0.9514681 +24 705.705 709.5825000000001 1000 50 0.5541422 +25 717.3375 721.215 1000 50 0.9125276 +26 721.215 725.0925000000001 1000 50 0.615531 +27 725.0925 728.97 1000 50 0.7026973 +28 732.8475 736.725 1000 50 0.94447416 +29 748.3575 752.235 1000 50 0.94682026 +30 756.1125 759.99 1000 50 0.52170944 +31 810.3975 814.2750000000001 1000 50 0.56883436 +32 814.275 818.1525 1000 50 0.50294226 +33 833.6625 837.5400000000001 1000 50 0.6097757 +34 837.54 841.4175 1000 50 0.69277376 +35 872.4375 876.315 1000 50 0.5498484 +36 911.2125 915.09 1000 50 0.76252335 +37 934.4775 938.355 1000 50 0.9786612 +38 965.4975 969.375 1000 50 0.63437027 +39 984.885 988.7625 1000 50 0.9036477 +40 1004.2725 1008.1500000000001 1000 50 0.7177116 +41 1058.5575 1062.435 1000 50 0.8701634 +42 1136.1075 1139.9850000000001 1000 50 0.7377017 +43 1171.005 1174.8825000000002 1000 50 0.99099195 +44 1190.3925 1194.27 1000 50 0.5747414 +45 1213.6575 1217.535 1000 50 0.5170755 +46 1252.4325 1256.31 1000 50 0.9836436 +47 1256.31 1260.1875 1000 50 0.5398244 +48 1264.065 1267.9425 1000 50 0.97729754 +49 1333.86 1337.7375 1000 50 0.6758938 +50 1349.37 1353.2475 1000 50 0.6049301 +51 1376.5125 1380.39 1000 50 0.5709252 +52 1415.2875 1419.165 1000 50 0.63460404 +53 1434.675 1438.5525 1000 50 0.5120147 +54 1461.8175 1465.6950000000002 1000 50 0.7776697 +55 1481.205 1485.0825 1000 50 0.6440515 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_21-01-54_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_21-01-54_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a521a8d69c88eeb8537fc950351d5240609cb67c --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_21-01-54_annot_2022-11-30_01.txt @@ -0,0 +1,87 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.55124944 +2 19.3875 23.265 1000 50 0.58274895 +3 23.265 27.142500000000002 1000 50 0.8533178 +4 31.02 34.8975 1000 50 0.66160464 +5 34.8975 38.775 1000 50 0.53904945 +6 58.1625 62.04 1000 50 0.6565541 +7 139.59 143.4675 1000 50 0.7143708 +8 147.345 151.2225 1000 50 0.71763504 +9 151.2225 155.1 1000 50 0.8230842 +10 155.1 158.9775 1000 50 0.50138927 +11 162.855 166.7325 1000 50 0.54013497 +12 189.9975 193.875 1000 50 0.90190506 +13 217.14 221.01749999999998 1000 50 0.59253365 +14 224.895 228.7725 1000 50 0.51981884 +15 232.65 236.5275 1000 50 0.7027997 +16 244.2825 248.16 1000 50 0.84630823 +17 267.5475 271.425 1000 50 0.63995045 +18 325.71 329.5875 1000 50 0.61886764 +19 337.3425 341.21999999999997 1000 50 0.65041065 +20 345.0975 348.975 1000 50 0.962533 +21 356.73 360.6075 1000 50 0.54108983 +22 364.485 368.3625 1000 50 0.5069053 +23 368.3625 372.24 1000 50 0.7186413 +24 379.995 383.8725 1000 50 0.9979639 +25 391.6275 395.505 1000 50 0.88020086 +26 395.505 399.3825 1000 50 0.9986236 +27 399.3825 403.26 1000 50 0.79078865 +28 403.26 407.1375 1000 50 0.9750455 +29 414.8925 418.77 1000 50 0.97910905 +30 430.4025 434.28 1000 50 0.5571828 +31 434.28 438.15749999999997 1000 50 0.6160821 +32 445.9125 449.79 1000 50 0.64830977 +33 449.79 453.6675 1000 50 0.93225455 +34 453.6675 457.545 1000 50 0.58201724 +35 457.545 461.4225 1000 50 0.9149054 +36 465.3 469.1775 1000 50 0.9956857 +37 476.9325 480.81 1000 50 0.9894633 +38 488.565 492.4425 1000 50 0.60866797 +39 492.4425 496.32 1000 50 0.6745488 +40 504.075 507.9525 1000 50 0.64970386 +41 519.585 523.4625000000001 1000 50 0.7189822 +42 535.095 538.9725000000001 1000 50 0.7493364 +43 558.36 562.2375000000001 1000 50 0.79885 +44 566.115 569.9925000000001 1000 50 0.78630924 +45 647.5425 651.4200000000001 1000 50 0.5906394 +46 666.93 670.8075 1000 50 0.56665397 +47 682.44 686.3175000000001 1000 50 0.81639725 +48 713.46 717.3375000000001 1000 50 0.54561764 +49 740.6025 744.48 1000 50 0.6219648 +50 756.1125 759.99 1000 50 0.6283354 +51 763.8675 767.745 1000 50 0.6090603 +52 798.765 802.6425 1000 50 0.6929623 +53 822.03 825.9075 1000 50 0.6551315 +54 841.4175 845.2950000000001 1000 50 0.67379916 +55 899.58 903.4575000000001 1000 50 0.61524963 +56 911.2125 915.09 1000 50 0.5384091 +57 934.4775 938.355 1000 50 0.5199986 +58 949.9875 953.865 1000 50 0.6879306 +59 953.865 957.7425000000001 1000 50 0.8853355 +60 961.62 965.4975000000001 1000 50 0.7818872 +61 1023.66 1027.5375 1000 50 0.84303534 +62 1027.5375 1031.415 1000 50 0.6344163 +63 1031.415 1035.2925 1000 50 0.5982528 +64 1050.8025 1054.68 1000 50 0.8413711 +65 1066.3125 1070.19 1000 50 0.88298434 +66 1074.0675 1077.9450000000002 1000 50 0.9262887 +67 1089.5775 1093.4550000000002 1000 50 0.55125326 +68 1101.21 1105.0875 1000 50 0.8884803 +69 1116.72 1120.5975 1000 50 0.681168 +70 1136.1075 1139.9850000000001 1000 50 0.50914526 +71 1151.6175 1155.4950000000001 1000 50 0.5878065 +72 1155.495 1159.3725 1000 50 0.990871 +73 1167.1275 1171.005 1000 50 0.94507384 +74 1198.1475 1202.025 1000 50 0.67080575 +75 1225.29 1229.1675 1000 50 0.6556567 +76 1233.045 1236.9225000000001 1000 50 0.9552444 +77 1240.8 1244.6775 1000 50 0.51930696 +78 1252.4325 1256.31 1000 50 0.7853899 +79 1267.9425 1271.8200000000002 1000 50 0.9986168 +80 1275.6975 1279.575 1000 50 0.538066 +81 1287.33 1291.2075 1000 50 0.6891379 +82 1314.4725 1318.3500000000001 1000 50 0.5470973 +83 1322.2275 1326.105 1000 50 0.8219778 +84 1326.105 1329.9825 1000 50 0.7355376 +85 1368.7575 1372.635 1000 50 0.6358486 +86 1372.635 1376.5125 1000 50 0.54473144 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_22-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_22-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1aeceaf3c047418ccb69fc2926e8f4be7bdf9be4 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_22-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,14 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.52011526 +2 27.1425 31.02 1000 50 0.5002462 +3 31.02 34.8975 1000 50 0.6327416 +4 34.8975 38.775 1000 50 0.6269619 +5 46.53 50.4075 1000 50 0.66663814 +6 69.795 73.6725 1000 50 0.9302457 +7 96.9375 100.815 1000 50 0.7631551 +8 100.815 104.6925 1000 50 0.6355285 +9 131.835 135.7125 1000 50 0.8545961 +10 147.345 151.2225 1000 50 0.7371721 +11 158.9775 162.855 1000 50 0.59899265 +12 162.855 166.7325 1000 50 0.51722157 +13 209.385 213.2625 1000 50 0.5182387 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_22-07-12_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_22-07-12_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ed28e6e48314e9f3174011e4fa9a51cb056d466a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_22-07-12_annot_2022-11-30_01.txt @@ -0,0 +1,54 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 46.53 50.4075 1000 50 0.6504838 +2 58.1625 62.04 1000 50 0.52550817 +3 65.9175 69.795 1000 50 0.6101563 +4 73.6725 77.55 1000 50 0.9936464 +5 81.4275 85.30499999999999 1000 50 0.7310754 +6 100.815 104.6925 1000 50 0.7033566 +7 116.325 120.2025 1000 50 0.5056175 +8 127.9575 131.835 1000 50 0.60076994 +9 182.2425 186.12 1000 50 0.64513 +10 201.63 205.5075 1000 50 0.7433984 +11 209.385 213.2625 1000 50 0.5344836 +12 259.7925 263.67 1000 50 0.61100507 +13 286.935 290.8125 1000 50 0.6077822 +14 302.445 306.3225 1000 50 0.5382239 +15 310.2 314.0775 1000 50 0.5529091 +16 314.0775 317.955 1000 50 0.6174733 +17 383.8725 387.75 1000 50 0.5194428 +18 391.6275 395.505 1000 50 0.96725386 +19 422.6475 426.525 1000 50 0.54560226 +20 488.565 492.4425 1000 50 0.9335992 +21 496.32 500.1975 1000 50 0.59873545 +22 538.9725 542.85 1000 50 0.6181578 +23 566.115 569.9925000000001 1000 50 0.9952733 +24 585.5025 589.3800000000001 1000 50 0.58824366 +25 589.38 593.2575 1000 50 0.51179415 +26 597.135 601.0125 1000 50 0.53046715 +27 612.645 616.5225 1000 50 0.5634944 +28 624.2775 628.1550000000001 1000 50 0.58645725 +29 655.2975 659.1750000000001 1000 50 0.7367443 +30 663.0525 666.9300000000001 1000 50 0.9864558 +31 674.685 678.5625 1000 50 0.84833586 +32 682.44 686.3175000000001 1000 50 0.58357567 +33 701.8275 705.705 1000 50 0.57078296 +34 721.215 725.0925000000001 1000 50 0.63869774 +35 732.8475 736.725 1000 50 0.84694165 +36 748.3575 752.235 1000 50 0.75712204 +37 756.1125 759.99 1000 50 0.6766306 +38 783.255 787.1325 1000 50 0.8848469 +39 791.01 794.8875 1000 50 0.54544604 +40 814.275 818.1525 1000 50 0.78862286 +41 837.54 841.4175 1000 50 0.68834305 +42 868.56 872.4375 1000 50 0.534591 +43 876.315 880.1925000000001 1000 50 0.51414037 +44 895.7025 899.58 1000 50 0.9625044 +45 907.335 911.2125000000001 1000 50 0.64924735 +46 918.9675 922.845 1000 50 0.57359684 +47 922.845 926.7225000000001 1000 50 0.52817214 +48 934.4775 938.355 1000 50 0.65481097 +49 957.7425 961.62 1000 50 0.5567201 +50 965.4975 969.375 1000 50 0.51217526 +51 973.2525 977.1300000000001 1000 50 0.77192926 +52 1035.2925 1039.17 1000 50 0.5062695 +53 1054.68 1058.5575000000001 1000 50 0.6825219 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_23-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_23-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..4d16307228a7074a211c0260d3e1585f88183544 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_23-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,51 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.9992046 +2 27.1425 31.02 1000 50 0.9493505 +3 58.1625 62.04 1000 50 0.9726951 +4 65.9175 69.795 1000 50 0.53492916 +5 69.795 73.6725 1000 50 0.99974114 +6 73.6725 77.55 1000 50 0.62402123 +7 81.4275 85.30499999999999 1000 50 0.80101293 +8 96.9375 100.815 1000 50 0.56140894 +9 120.2025 124.08 1000 50 0.6239889 +10 124.08 127.9575 1000 50 0.86519814 +11 127.9575 131.835 1000 50 0.56394196 +12 135.7125 139.59 1000 50 0.64486367 +13 139.59 143.4675 1000 50 0.67937034 +14 147.345 151.2225 1000 50 0.9915081 +15 151.2225 155.1 1000 50 0.7557855 +16 155.1 158.9775 1000 50 0.89347035 +17 162.855 166.7325 1000 50 0.99931645 +18 170.61 174.4875 1000 50 0.99944335 +19 174.4875 178.365 1000 50 0.9994326 +20 182.2425 186.12 1000 50 0.88545763 +21 186.12 189.9975 1000 50 0.56876737 +22 193.875 197.7525 1000 50 0.69695044 +23 197.7525 201.63 1000 50 0.6381158 +24 205.5075 209.385 1000 50 0.98686045 +25 213.2625 217.14 1000 50 0.6480525 +26 228.7725 232.65 1000 50 0.9602962 +27 236.5275 240.405 1000 50 0.9940597 +28 240.405 244.2825 1000 50 0.9538702 +29 248.16 252.0375 1000 50 0.5518507 +30 255.915 259.7925 1000 50 0.6829969 +31 263.67 267.5475 1000 50 0.90072995 +32 271.425 275.3025 1000 50 0.69965625 +33 275.3025 279.18 1000 50 0.96966875 +34 283.0575 286.935 1000 50 0.99717134 +35 286.935 290.8125 1000 50 0.97589034 +36 290.8125 294.69 1000 50 0.624294 +37 294.69 298.5675 1000 50 0.9991092 +38 310.2 314.0775 1000 50 0.7832272 +39 317.955 321.8325 1000 50 0.591415 +40 321.8325 325.71 1000 50 0.66072637 +41 345.0975 348.975 1000 50 0.62939 +42 360.6075 364.485 1000 50 0.83352864 +43 364.485 368.3625 1000 50 0.61117566 +44 387.75 391.6275 1000 50 0.6851752 +45 395.505 399.3825 1000 50 0.7765055 +46 418.77 422.6475 1000 50 0.61242425 +47 438.1575 442.035 1000 50 0.5974905 +48 461.4225 465.3 1000 50 0.87443984 +49 476.9325 480.81 1000 50 0.5175445 +50 488.565 492.4425 1000 50 0.6525926 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_23-12-31_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_23-12-31_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d7c0740a7b656657fb5d4402f050051b8fe506da --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-11_2kHz/channelA_2021-03-11_23-12-31_annot_2022-11-30_01.txt @@ -0,0 +1,54 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.619206 +2 31.02 34.8975 1000 50 0.6501207 +3 54.285 58.162499999999994 1000 50 0.59516805 +4 58.1625 62.04 1000 50 0.6560639 +5 62.04 65.9175 1000 50 0.8381469 +6 65.9175 69.795 1000 50 0.99461114 +7 89.1825 93.06 1000 50 0.7490765 +8 124.08 127.9575 1000 50 0.50069964 +9 127.9575 131.835 1000 50 0.6615155 +10 131.835 135.7125 1000 50 0.81901693 +11 135.7125 139.59 1000 50 0.6045473 +12 143.4675 147.345 1000 50 0.732348 +13 155.1 158.9775 1000 50 0.91088426 +14 174.4875 178.365 1000 50 0.6156505 +15 193.875 197.7525 1000 50 0.6959022 +16 201.63 205.5075 1000 50 0.5976813 +17 228.7725 232.65 1000 50 0.515541 +18 236.5275 240.405 1000 50 0.5802011 +19 244.2825 248.16 1000 50 0.63967085 +20 255.915 259.7925 1000 50 0.62598467 +21 263.67 267.5475 1000 50 0.5400168 +22 283.0575 286.935 1000 50 0.8187922 +23 294.69 298.5675 1000 50 0.5236106 +24 302.445 306.3225 1000 50 0.57190657 +25 317.955 321.8325 1000 50 0.8552736 +26 337.3425 341.21999999999997 1000 50 0.96871823 +27 345.0975 348.975 1000 50 0.54177237 +28 348.975 352.8525 1000 50 0.6271212 +29 368.3625 372.24 1000 50 0.6337983 +30 399.3825 403.26 1000 50 0.6678462 +31 445.9125 449.79 1000 50 0.51040906 +32 453.6675 457.545 1000 50 0.51232415 +33 457.545 461.4225 1000 50 0.53205717 +34 461.4225 465.3 1000 50 0.624667 +35 511.83 515.7075 1000 50 0.8700807 +36 519.585 523.4625000000001 1000 50 0.97175837 +37 531.2175 535.095 1000 50 0.89455336 +38 546.7275 550.605 1000 50 0.56514245 +39 550.605 554.4825000000001 1000 50 0.6521817 +40 558.36 562.2375000000001 1000 50 0.71055937 +41 562.2375 566.115 1000 50 0.54561615 +42 573.87 577.7475000000001 1000 50 0.51062894 +43 585.5025 589.3800000000001 1000 50 0.7459863 +44 589.38 593.2575 1000 50 0.7673966 +45 604.89 608.7675 1000 50 0.51496816 +46 608.7675 612.6450000000001 1000 50 0.6454256 +47 639.7875 643.6650000000001 1000 50 0.9243786 +48 674.685 678.5625 1000 50 0.62376225 +49 690.195 694.0725000000001 1000 50 0.558273 +50 697.95 701.8275000000001 1000 50 0.54000294 +51 728.97 732.8475000000001 1000 50 0.6398501 +52 740.6025 744.48 1000 50 0.80671555 +53 744.48 748.3575000000001 1000 50 0.62994707 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_00-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_00-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b2f7c88ddef8b5440f4ac6f44aad1361174b9b6f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_00-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,40 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.6204733 +2 15.51 19.3875 1000 50 0.76412493 +3 34.8975 38.775 1000 50 0.6264697 +4 69.795 73.6725 1000 50 0.56921124 +5 73.6725 77.55 1000 50 0.5069489 +6 96.9375 100.815 1000 50 0.76736385 +7 112.4475 116.325 1000 50 0.73530805 +8 174.4875 178.365 1000 50 0.71815366 +9 193.875 197.7525 1000 50 0.6700431 +10 263.67 267.5475 1000 50 0.86298937 +11 411.015 414.8925 1000 50 0.5074458 +12 426.525 430.4025 1000 50 0.50973576 +13 434.28 438.15749999999997 1000 50 0.51732093 +14 457.545 461.4225 1000 50 0.85666645 +15 527.34 531.2175000000001 1000 50 0.6625595 +16 538.9725 542.85 1000 50 0.9902474 +17 542.85 546.7275000000001 1000 50 0.67975473 +18 546.7275 550.605 1000 50 0.91152066 +19 624.2775 628.1550000000001 1000 50 0.79517204 +20 651.42 655.2975 1000 50 0.6333158 +21 659.175 663.0525 1000 50 0.55104667 +22 663.0525 666.9300000000001 1000 50 0.6051213 +23 670.8075 674.6850000000001 1000 50 0.5984861 +24 682.44 686.3175000000001 1000 50 0.64707875 +25 686.3175 690.195 1000 50 0.61963236 +26 694.0725 697.95 1000 50 0.8792342 +27 697.95 701.8275000000001 1000 50 0.7231417 +28 701.8275 705.705 1000 50 0.5073174 +29 713.46 717.3375000000001 1000 50 0.6032785 +30 763.8675 767.745 1000 50 0.57104313 +31 767.745 771.6225000000001 1000 50 0.5241216 +32 771.6225 775.5 1000 50 0.96379703 +33 779.3775 783.2550000000001 1000 50 0.67956954 +34 787.1325 791.0100000000001 1000 50 0.7258415 +35 794.8875 798.7650000000001 1000 50 0.8797123 +36 810.3975 814.2750000000001 1000 50 0.7896696 +37 814.275 818.1525 1000 50 0.82294655 +38 818.1525 822.0300000000001 1000 50 0.66897285 +39 825.9075 829.7850000000001 1000 50 0.7293555 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_00-17-47_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_00-17-47_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..43ee8429ba4d6dd7ac1cd081dae873fbe112c83a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_00-17-47_annot_2022-11-30_01.txt @@ -0,0 +1,24 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.6230637 +2 31.02 34.8975 1000 50 0.98779416 +3 42.6525 46.53 1000 50 0.6588368 +4 54.285 58.162499999999994 1000 50 0.59838724 +5 69.795 73.6725 1000 50 0.6452007 +6 139.59 143.4675 1000 50 0.55128103 +7 151.2225 155.1 1000 50 0.59186244 +8 158.9775 162.855 1000 50 0.69079655 +9 182.2425 186.12 1000 50 0.7081535 +10 217.14 221.01749999999998 1000 50 0.5002483 +11 248.16 252.0375 1000 50 0.5633713 +12 263.67 267.5475 1000 50 0.50716674 +13 314.0775 317.955 1000 50 0.9725869 +14 317.955 321.8325 1000 50 0.8372531 +15 321.8325 325.71 1000 50 0.7489352 +16 325.71 329.5875 1000 50 0.921484 +17 356.73 360.6075 1000 50 0.53090394 +18 368.3625 372.24 1000 50 0.90152353 +19 372.24 376.1175 1000 50 0.90674776 +20 379.995 383.8725 1000 50 0.82577646 +21 411.015 414.8925 1000 50 0.703223 +22 414.8925 418.77 1000 50 0.9149718 +23 418.77 422.6475 1000 50 0.86242247 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_01-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_01-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..690d49a955f0a517521b0a5f264aaaa6251493a3 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_01-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,91 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.9923109 +2 42.6525 46.53 1000 50 0.57787764 +3 50.4075 54.285 1000 50 0.6612481 +4 54.285 58.162499999999994 1000 50 0.9938676 +5 73.6725 77.55 1000 50 0.57853085 +6 85.305 89.1825 1000 50 0.7523891 +7 89.1825 93.06 1000 50 0.8948419 +8 108.57 112.44749999999999 1000 50 0.9311432 +9 112.4475 116.325 1000 50 0.9938905 +10 139.59 143.4675 1000 50 0.9766391 +11 174.4875 178.365 1000 50 0.56385475 +12 186.12 189.9975 1000 50 0.6506216 +13 205.5075 209.385 1000 50 0.74969214 +14 209.385 213.2625 1000 50 0.5316678 +15 217.14 221.01749999999998 1000 50 0.95239353 +16 221.0175 224.895 1000 50 0.96918184 +17 236.5275 240.405 1000 50 0.51628065 +18 244.2825 248.16 1000 50 0.98679554 +19 267.5475 271.425 1000 50 0.738163 +20 271.425 275.3025 1000 50 0.89943314 +21 275.3025 279.18 1000 50 0.7867894 +22 290.8125 294.69 1000 50 0.51066124 +23 310.2 314.0775 1000 50 0.541273 +24 321.8325 325.71 1000 50 0.81931543 +25 329.5875 333.465 1000 50 0.6921956 +26 337.3425 341.21999999999997 1000 50 0.7418822 +27 399.3825 403.26 1000 50 0.8760383 +28 407.1375 411.015 1000 50 0.5896614 +29 414.8925 418.77 1000 50 0.77554077 +30 430.4025 434.28 1000 50 0.89750946 +31 457.545 461.4225 1000 50 0.95543647 +32 500.1975 504.075 1000 50 0.92975205 +33 546.7275 550.605 1000 50 0.62810165 +34 550.605 554.4825000000001 1000 50 0.507029 +35 558.36 562.2375000000001 1000 50 0.92887264 +36 581.625 585.5025 1000 50 0.96729016 +37 589.38 593.2575 1000 50 0.50059366 +38 666.93 670.8075 1000 50 0.7452069 +39 686.3175 690.195 1000 50 0.69292945 +40 697.95 701.8275000000001 1000 50 0.53898925 +41 752.235 756.1125000000001 1000 50 0.58848494 +42 763.8675 767.745 1000 50 0.99037766 +43 767.745 771.6225000000001 1000 50 0.9054983 +44 775.5 779.3775 1000 50 0.90544486 +45 779.3775 783.2550000000001 1000 50 0.6286336 +46 783.255 787.1325 1000 50 0.7606726 +47 791.01 794.8875 1000 50 0.7625108 +48 806.52 810.3975 1000 50 0.7056724 +49 810.3975 814.2750000000001 1000 50 0.63701046 +50 822.03 825.9075 1000 50 0.8484935 +51 825.9075 829.7850000000001 1000 50 0.57679194 +52 829.785 833.6625 1000 50 0.9033838 +53 837.54 841.4175 1000 50 0.6312243 +54 853.05 856.9275 1000 50 0.8893286 +55 856.9275 860.8050000000001 1000 50 0.9996815 +56 876.315 880.1925000000001 1000 50 0.9143408 +57 887.9475 891.825 1000 50 0.6957727 +58 891.825 895.7025000000001 1000 50 0.71559733 +59 899.58 903.4575000000001 1000 50 0.9796325 +60 903.4575 907.335 1000 50 0.98489285 +61 907.335 911.2125000000001 1000 50 0.6227 +62 911.2125 915.09 1000 50 0.560945 +63 938.355 942.2325000000001 1000 50 0.8248895 +64 984.885 988.7625 1000 50 0.7352251 +65 988.7625 992.6400000000001 1000 50 0.6272462 +66 992.64 996.5175 1000 50 0.5860963 +67 996.5175 1000.3950000000001 1000 50 0.60810053 +68 1012.0275 1015.9050000000001 1000 50 0.5069925 +69 1015.905 1019.7825 1000 50 0.5959633 +70 1019.7825 1023.6600000000001 1000 50 0.6423898 +71 1023.66 1027.5375 1000 50 0.8873631 +72 1031.415 1035.2925 1000 50 0.617324 +73 1039.17 1043.0475000000001 1000 50 0.6167931 +74 1043.0475 1046.925 1000 50 0.9486356 +75 1058.5575 1062.435 1000 50 0.6017339 +76 1062.435 1066.3125 1000 50 0.7475368 +77 1070.19 1074.0675 1000 50 0.9999058 +78 1074.0675 1077.9450000000002 1000 50 0.92138726 +79 1093.455 1097.3325 1000 50 0.7999152 +80 1097.3325 1101.21 1000 50 0.8679056 +81 1105.0875 1108.9650000000001 1000 50 0.5913024 +82 1108.965 1112.8425 1000 50 0.9999894 +83 1116.72 1120.5975 1000 50 0.95958185 +84 1120.5975 1124.4750000000001 1000 50 0.6575164 +85 1124.475 1128.3525 1000 50 0.9284101 +86 1136.1075 1139.9850000000001 1000 50 0.8622264 +87 1143.8625 1147.74 1000 50 0.88689166 +88 1147.74 1151.6175 1000 50 0.7164043 +89 1155.495 1159.3725 1000 50 0.9214086 +90 1163.25 1167.1275 1000 50 0.8009376 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_01-23-06_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_01-23-06_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..fdf8534faa55499f6165cb1f1ac6bba45a52a6df --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_01-23-06_annot_2022-11-30_01.txt @@ -0,0 +1,13 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9925281 +2 3.8775 7.755 1000 50 0.72517025 +3 23.265 27.142500000000002 1000 50 0.98794633 +4 31.02 34.8975 1000 50 0.7352408 +5 34.8975 38.775 1000 50 0.6597681 +6 54.285 58.162499999999994 1000 50 0.5807551 +7 69.795 73.6725 1000 50 0.6629089 +8 81.4275 85.30499999999999 1000 50 0.7494352 +9 89.1825 93.06 1000 50 0.54971695 +10 93.06 96.9375 1000 50 0.7452764 +11 100.815 104.6925 1000 50 0.7414661 +12 108.57 112.44749999999999 1000 50 0.9966274 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_02-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_02-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..9ce42d8c8ff20bb9ca55f93aecfc0bdda3e0ab34 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_02-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,121 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.6985975 +2 11.6325 15.51 1000 50 0.724063 +3 73.6725 77.55 1000 50 0.99627763 +4 77.55 81.4275 1000 50 0.763609 +5 85.305 89.1825 1000 50 0.88343906 +6 93.06 96.9375 1000 50 0.99503446 +7 104.6925 108.57 1000 50 0.9998882 +8 112.4475 116.325 1000 50 0.9749486 +9 124.08 127.9575 1000 50 0.91058624 +10 127.9575 131.835 1000 50 0.5066557 +11 135.7125 139.59 1000 50 0.55906343 +12 139.59 143.4675 1000 50 0.70657027 +13 143.4675 147.345 1000 50 0.5376064 +14 182.2425 186.12 1000 50 0.58137614 +15 201.63 205.5075 1000 50 0.6758618 +16 213.2625 217.14 1000 50 0.685458 +17 217.14 221.01749999999998 1000 50 0.5486443 +18 263.67 267.5475 1000 50 0.77239895 +19 333.465 337.3425 1000 50 0.7694023 +20 337.3425 341.21999999999997 1000 50 0.63732016 +21 352.8525 356.73 1000 50 0.7129389 +22 360.6075 364.485 1000 50 0.98570305 +23 368.3625 372.24 1000 50 0.5910197 +24 387.75 391.6275 1000 50 0.74821234 +25 407.1375 411.015 1000 50 0.5787507 +26 430.4025 434.28 1000 50 0.9140994 +27 504.075 507.9525 1000 50 0.5616619 +28 535.095 538.9725000000001 1000 50 0.58005416 +29 538.9725 542.85 1000 50 0.5804689 +30 546.7275 550.605 1000 50 0.63133967 +31 550.605 554.4825000000001 1000 50 0.999967 +32 554.4825 558.36 1000 50 0.9605193 +33 562.2375 566.115 1000 50 0.8833688 +34 569.9925 573.87 1000 50 0.998184 +35 577.7475 581.625 1000 50 0.7358977 +36 581.625 585.5025 1000 50 0.89850104 +37 585.5025 589.3800000000001 1000 50 0.50022835 +38 589.38 593.2575 1000 50 0.9832645 +39 597.135 601.0125 1000 50 0.9968047 +40 601.0125 604.8900000000001 1000 50 0.8960919 +41 604.89 608.7675 1000 50 0.9979893 +42 616.5225 620.4000000000001 1000 50 0.83453906 +43 620.4 624.2775 1000 50 0.5502121 +44 635.91 639.7875 1000 50 0.9894076 +45 651.42 655.2975 1000 50 0.96117187 +46 655.2975 659.1750000000001 1000 50 0.7266517 +47 663.0525 666.9300000000001 1000 50 0.9992993 +48 670.8075 674.6850000000001 1000 50 0.9974075 +49 678.5625 682.44 1000 50 0.7344966 +50 682.44 686.3175000000001 1000 50 0.9994473 +51 686.3175 690.195 1000 50 0.8912016 +52 690.195 694.0725000000001 1000 50 0.5791825 +53 694.0725 697.95 1000 50 0.8937 +54 705.705 709.5825000000001 1000 50 0.6045813 +55 709.5825 713.46 1000 50 0.98612255 +56 713.46 717.3375000000001 1000 50 0.7435738 +57 728.97 732.8475000000001 1000 50 0.93303156 +58 732.8475 736.725 1000 50 0.9976921 +59 736.725 740.6025000000001 1000 50 0.71516466 +60 748.3575 752.235 1000 50 0.9123038 +61 763.8675 767.745 1000 50 0.92932653 +62 771.6225 775.5 1000 50 0.9578149 +63 775.5 779.3775 1000 50 0.6992542 +64 779.3775 783.2550000000001 1000 50 0.64460033 +65 787.1325 791.0100000000001 1000 50 0.73153216 +66 829.785 833.6625 1000 50 0.5000012 +67 833.6625 837.5400000000001 1000 50 0.5271885 +68 837.54 841.4175 1000 50 0.5529813 +69 849.1725 853.0500000000001 1000 50 0.99942136 +70 853.05 856.9275 1000 50 0.99999404 +71 856.9275 860.8050000000001 1000 50 0.9315762 +72 860.805 864.6825 1000 50 0.9999256 +73 872.4375 876.315 1000 50 0.9997181 +74 884.07 887.9475000000001 1000 50 0.8229022 +75 887.9475 891.825 1000 50 0.52366394 +76 891.825 895.7025000000001 1000 50 0.52853084 +77 895.7025 899.58 1000 50 0.56063366 +78 911.2125 915.09 1000 50 0.90756196 +79 926.7225 930.6 1000 50 0.5388428 +80 942.2325 946.11 1000 50 0.8598982 +81 946.11 949.9875000000001 1000 50 0.51142806 +82 957.7425 961.62 1000 50 0.67436576 +83 961.62 965.4975000000001 1000 50 0.5526407 +84 1000.395 1004.2725 1000 50 0.5398615 +85 1008.15 1012.0275 1000 50 0.989603 +86 1012.0275 1015.9050000000001 1000 50 0.569311 +87 1019.7825 1023.6600000000001 1000 50 0.7747007 +88 1031.415 1035.2925 1000 50 0.9742911 +89 1043.0475 1046.925 1000 50 0.5867641 +90 1050.8025 1054.68 1000 50 0.56330824 +91 1062.435 1066.3125 1000 50 0.78718656 +92 1085.7 1089.5775 1000 50 0.5535394 +93 1093.455 1097.3325 1000 50 0.65605336 +94 1116.72 1120.5975 1000 50 0.57149017 +95 1124.475 1128.3525 1000 50 0.6439312 +96 1132.23 1136.1075 1000 50 0.8956216 +97 1136.1075 1139.9850000000001 1000 50 0.5900071 +98 1147.74 1151.6175 1000 50 0.52385944 +99 1209.78 1213.6575 1000 50 0.65704584 +100 1229.1675 1233.045 1000 50 0.59869456 +101 1267.9425 1271.8200000000002 1000 50 0.5725622 +102 1279.575 1283.4525 1000 50 0.63083464 +103 1283.4525 1287.3300000000002 1000 50 0.5079057 +104 1287.33 1291.2075 1000 50 0.6025183 +105 1298.9625 1302.8400000000001 1000 50 0.7621151 +106 1314.4725 1318.3500000000001 1000 50 0.854126 +107 1333.86 1337.7375 1000 50 0.5137547 +108 1341.615 1345.4925 1000 50 0.5321457 +109 1353.2475 1357.125 1000 50 0.56429976 +110 1380.39 1384.2675000000002 1000 50 0.61664057 +111 1384.2675 1388.145 1000 50 0.99772936 +112 1388.145 1392.0225 1000 50 0.6459598 +113 1395.9 1399.7775000000001 1000 50 0.95290655 +114 1407.5325 1411.41 1000 50 0.95575225 +115 1415.2875 1419.165 1000 50 0.98699456 +116 1419.165 1423.0425 1000 50 0.5512849 +117 1426.92 1430.7975000000001 1000 50 0.6367481 +118 1446.3075 1450.185 1000 50 0.76362914 +119 1457.94 1461.8175 1000 50 0.9853813 +120 1473.45 1477.3275 1000 50 0.709785 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_03-01-53_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_03-01-53_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..313f759731c1cc5c578fc597cdda21046439a9d2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_03-01-53_annot_2022-11-30_01.txt @@ -0,0 +1,71 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 27.1425 31.02 1000 50 0.61596555 +2 62.04 65.9175 1000 50 0.63209945 +3 65.9175 69.795 1000 50 0.5157396 +4 73.6725 77.55 1000 50 0.9991328 +5 85.305 89.1825 1000 50 0.99898666 +6 100.815 104.6925 1000 50 0.5414592 +7 104.6925 108.57 1000 50 0.8995787 +8 131.835 135.7125 1000 50 0.73014903 +9 139.59 143.4675 1000 50 0.98920256 +10 147.345 151.2225 1000 50 0.79892284 +11 155.1 158.9775 1000 50 0.51048887 +12 174.4875 178.365 1000 50 0.94445735 +13 186.12 189.9975 1000 50 0.56581074 +14 189.9975 193.875 1000 50 0.59347445 +15 193.875 197.7525 1000 50 0.64926535 +16 217.14 221.01749999999998 1000 50 0.9358819 +17 232.65 236.5275 1000 50 0.9999969 +18 252.0375 255.915 1000 50 0.9998721 +19 271.425 275.3025 1000 50 0.56567645 +20 283.0575 286.935 1000 50 0.9121742 +21 317.955 321.8325 1000 50 0.7967205 +22 329.5875 333.465 1000 50 0.95727646 +23 341.22 345.0975 1000 50 0.6769335 +24 345.0975 348.975 1000 50 0.63586545 +25 356.73 360.6075 1000 50 0.55701476 +26 372.24 376.1175 1000 50 0.78328997 +27 395.505 399.3825 1000 50 0.8790982 +28 434.28 438.15749999999997 1000 50 0.8692843 +29 453.6675 457.545 1000 50 0.51282233 +30 465.3 469.1775 1000 50 0.61027217 +31 496.32 500.1975 1000 50 0.5451183 +32 500.1975 504.075 1000 50 0.55803424 +33 581.625 585.5025 1000 50 0.7539707 +34 585.5025 589.3800000000001 1000 50 0.94864094 +35 593.2575 597.1350000000001 1000 50 0.9994931 +36 601.0125 604.8900000000001 1000 50 0.99291354 +37 604.89 608.7675 1000 50 0.999798 +38 612.645 616.5225 1000 50 0.68465096 +39 624.2775 628.1550000000001 1000 50 0.74014777 +40 628.155 632.0325 1000 50 0.991542 +41 643.665 647.5425 1000 50 0.9958182 +42 651.42 655.2975 1000 50 0.69535476 +43 655.2975 659.1750000000001 1000 50 0.8170823 +44 666.93 670.8075 1000 50 0.92236733 +45 670.8075 674.6850000000001 1000 50 0.9200099 +46 674.685 678.5625 1000 50 0.998654 +47 697.95 701.8275000000001 1000 50 0.598238 +48 771.6225 775.5 1000 50 0.9258146 +49 775.5 779.3775 1000 50 0.7566091 +50 787.1325 791.0100000000001 1000 50 0.51805943 +51 810.3975 814.2750000000001 1000 50 0.50992817 +52 837.54 841.4175 1000 50 0.92421305 +53 868.56 872.4375 1000 50 0.5049836 +54 899.58 903.4575000000001 1000 50 0.99312615 +55 918.9675 922.845 1000 50 0.9601763 +56 926.7225 930.6 1000 50 0.6888576 +57 946.11 949.9875000000001 1000 50 0.69008625 +58 949.9875 953.865 1000 50 0.8438863 +59 1000.395 1004.2725 1000 50 0.88408136 +60 1004.2725 1008.1500000000001 1000 50 0.9958087 +61 1012.0275 1015.9050000000001 1000 50 0.8012427 +62 1043.0475 1046.925 1000 50 0.5119088 +63 1155.495 1159.3725 1000 50 0.5769158 +64 1190.3925 1194.27 1000 50 0.8665766 +65 1298.9625 1302.8400000000001 1000 50 0.73690885 +66 1337.7375 1341.615 1000 50 0.8944839 +67 1357.125 1361.0025 1000 50 0.6126782 +68 1364.88 1368.7575000000002 1000 50 0.7436432 +69 1376.5125 1380.39 1000 50 0.9564979 +70 1384.2675 1388.145 1000 50 0.5196168 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_04-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_04-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..876da2b709f53ce356d241bd13f19635b720505f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_04-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,15 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.57666534 +2 15.51 19.3875 1000 50 0.96928304 +3 19.3875 23.265 1000 50 0.99821484 +4 31.02 34.8975 1000 50 0.97780925 +5 34.8975 38.775 1000 50 0.51584023 +6 38.775 42.652499999999996 1000 50 0.8881365 +7 46.53 50.4075 1000 50 0.6241344 +8 54.285 58.162499999999994 1000 50 0.8261761 +9 58.1625 62.04 1000 50 0.55472904 +10 127.9575 131.835 1000 50 0.6486377 +11 139.59 143.4675 1000 50 0.91812855 +12 158.9775 162.855 1000 50 0.6334651 +13 174.4875 178.365 1000 50 0.997053 +14 197.7525 201.63 1000 50 0.6983736 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_04-07-11_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_04-07-11_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a8222efd6d2aedcf37ab071080d4795bd28c8f76 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_04-07-11_annot_2022-11-30_01.txt @@ -0,0 +1,79 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.6309421 +2 11.6325 15.51 1000 50 0.99955696 +3 19.3875 23.265 1000 50 0.987135 +4 27.1425 31.02 1000 50 0.9570661 +5 31.02 34.8975 1000 50 0.5996999 +6 34.8975 38.775 1000 50 0.99203306 +7 46.53 50.4075 1000 50 0.9096533 +8 50.4075 54.285 1000 50 0.9936434 +9 58.1625 62.04 1000 50 0.84007776 +10 62.04 65.9175 1000 50 0.97988474 +11 69.795 73.6725 1000 50 0.9270582 +12 73.6725 77.55 1000 50 0.6444267 +13 89.1825 93.06 1000 50 0.99791235 +14 104.6925 108.57 1000 50 0.8896706 +15 158.9775 162.855 1000 50 0.929008 +16 170.61 174.4875 1000 50 0.99474853 +17 174.4875 178.365 1000 50 0.65856844 +18 193.875 197.7525 1000 50 0.95265734 +19 244.2825 248.16 1000 50 0.74495876 +20 279.18 283.0575 1000 50 0.74414265 +21 341.22 345.0975 1000 50 0.98282456 +22 348.975 352.8525 1000 50 0.987045 +23 352.8525 356.73 1000 50 0.83560437 +24 364.485 368.3625 1000 50 0.98528254 +25 368.3625 372.24 1000 50 0.9684105 +26 395.505 399.3825 1000 50 0.98228985 +27 414.8925 418.77 1000 50 0.5121082 +28 418.77 422.6475 1000 50 0.6772924 +29 457.545 461.4225 1000 50 0.65276486 +30 465.3 469.1775 1000 50 0.99259514 +31 476.9325 480.81 1000 50 0.60418075 +32 484.6875 488.565 1000 50 0.9998072 +33 511.83 515.7075 1000 50 0.90819365 +34 523.4625 527.34 1000 50 0.99903154 +35 535.095 538.9725000000001 1000 50 0.97140986 +36 546.7275 550.605 1000 50 0.89388347 +37 558.36 562.2375000000001 1000 50 0.9985476 +38 562.2375 566.115 1000 50 0.8922277 +39 581.625 585.5025 1000 50 0.99857795 +40 593.2575 597.1350000000001 1000 50 0.8712124 +41 620.4 624.2775 1000 50 0.6325387 +42 632.0325 635.9100000000001 1000 50 0.9811523 +43 635.91 639.7875 1000 50 0.7909554 +44 639.7875 643.6650000000001 1000 50 0.750876 +45 651.42 655.2975 1000 50 0.9856623 +46 674.685 678.5625 1000 50 0.9989435 +47 690.195 694.0725000000001 1000 50 0.78570485 +48 694.0725 697.95 1000 50 0.8475277 +49 705.705 709.5825000000001 1000 50 0.8754213 +50 717.3375 721.215 1000 50 0.92862135 +51 721.215 725.0925000000001 1000 50 0.7565694 +52 725.0925 728.97 1000 50 0.9964678 +53 736.725 740.6025000000001 1000 50 0.9911781 +54 748.3575 752.235 1000 50 0.9942007 +55 752.235 756.1125000000001 1000 50 0.9794708 +56 756.1125 759.99 1000 50 0.99987614 +57 759.99 763.8675000000001 1000 50 0.552065 +58 763.8675 767.745 1000 50 0.9989648 +59 771.6225 775.5 1000 50 0.92679787 +60 794.8875 798.7650000000001 1000 50 0.73186904 +61 798.765 802.6425 1000 50 0.56039226 +62 825.9075 829.7850000000001 1000 50 0.57096964 +63 833.6625 837.5400000000001 1000 50 0.642813 +64 845.295 849.1725 1000 50 0.98205227 +65 849.1725 853.0500000000001 1000 50 0.86441344 +66 856.9275 860.8050000000001 1000 50 0.9941553 +67 864.6825 868.5600000000001 1000 50 0.99258316 +68 872.4375 876.315 1000 50 0.9986779 +69 876.315 880.1925000000001 1000 50 0.7646011 +70 887.9475 891.825 1000 50 0.8279754 +71 895.7025 899.58 1000 50 0.56856686 +72 911.2125 915.09 1000 50 0.6808493 +73 918.9675 922.845 1000 50 0.69289476 +74 949.9875 953.865 1000 50 0.8449824 +75 973.2525 977.1300000000001 1000 50 0.8862796 +76 1004.2725 1008.1500000000001 1000 50 0.8339893 +77 1019.7825 1023.6600000000001 1000 50 0.9960542 +78 1027.5375 1031.415 1000 50 0.8803379 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_05-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_05-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..3ef81d80045ea3cb77a6924a74a0c9bfa18f63fd --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_05-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,45 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 38.775 42.652499999999996 1000 50 0.50250757 +2 46.53 50.4075 1000 50 0.62392676 +3 73.6725 77.55 1000 50 0.54191625 +4 93.06 96.9375 1000 50 0.8169464 +5 104.6925 108.57 1000 50 0.683879 +6 108.57 112.44749999999999 1000 50 0.53756416 +7 124.08 127.9575 1000 50 0.77321714 +8 139.59 143.4675 1000 50 0.74685174 +9 155.1 158.9775 1000 50 0.99994695 +10 162.855 166.7325 1000 50 0.93282086 +11 174.4875 178.365 1000 50 0.997652 +12 193.875 197.7525 1000 50 0.9928139 +13 197.7525 201.63 1000 50 0.6549183 +14 201.63 205.5075 1000 50 0.99999857 +15 205.5075 209.385 1000 50 0.99975985 +16 209.385 213.2625 1000 50 0.96433836 +17 217.14 221.01749999999998 1000 50 0.6623602 +18 221.0175 224.895 1000 50 0.9998573 +19 228.7725 232.65 1000 50 0.96046233 +20 240.405 244.2825 1000 50 0.9982804 +21 244.2825 248.16 1000 50 0.52521753 +22 248.16 252.0375 1000 50 0.9347509 +23 255.915 259.7925 1000 50 0.77843785 +24 263.67 267.5475 1000 50 0.9619276 +25 271.425 275.3025 1000 50 0.9122078 +26 283.0575 286.935 1000 50 0.9985794 +27 290.8125 294.69 1000 50 0.62064993 +28 294.69 298.5675 1000 50 0.99999523 +29 306.3225 310.2 1000 50 0.86263233 +30 310.2 314.0775 1000 50 0.9996929 +31 314.0775 317.955 1000 50 0.99993265 +32 325.71 329.5875 1000 50 0.9878549 +33 329.5875 333.465 1000 50 0.9991295 +34 345.0975 348.975 1000 50 0.51025 +35 399.3825 403.26 1000 50 0.607849 +36 407.1375 411.015 1000 50 0.68428034 +37 411.015 414.8925 1000 50 0.6013859 +38 414.8925 418.77 1000 50 0.82054543 +39 418.77 422.6475 1000 50 0.79403293 +40 426.525 430.4025 1000 50 0.82161564 +41 457.545 461.4225 1000 50 0.555209 +42 469.1775 473.055 1000 50 0.68613064 +43 473.055 476.9325 1000 50 0.5213566 +44 476.9325 480.81 1000 50 0.82946277 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_05-12-29_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_05-12-29_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..63eadabd8bab7f1ea6ccbc7f0d0e6d3a0b02be10 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_05-12-29_annot_2022-11-30_01.txt @@ -0,0 +1,91 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.5845077 +2 3.8775 7.755 1000 50 0.9996406 +3 7.755 11.6325 1000 50 0.9980063 +4 15.51 19.3875 1000 50 0.64946043 +5 19.3875 23.265 1000 50 0.9995944 +6 27.1425 31.02 1000 50 0.9955895 +7 31.02 34.8975 1000 50 0.86442137 +8 38.775 42.652499999999996 1000 50 0.9993857 +9 42.6525 46.53 1000 50 0.99999976 +10 50.4075 54.285 1000 50 0.9999068 +11 54.285 58.162499999999994 1000 50 0.9926104 +12 62.04 65.9175 1000 50 0.99988747 +13 73.6725 77.55 1000 50 0.98842 +14 85.305 89.1825 1000 50 1.0 +15 104.6925 108.57 1000 50 0.99873024 +16 108.57 112.44749999999999 1000 50 0.9985688 +17 116.325 120.2025 1000 50 0.9993962 +18 120.2025 124.08 1000 50 0.99644166 +19 124.08 127.9575 1000 50 0.95539623 +20 127.9575 131.835 1000 50 0.9912344 +21 131.835 135.7125 1000 50 0.985656 +22 135.7125 139.59 1000 50 0.549459 +23 139.59 143.4675 1000 50 0.978 +24 143.4675 147.345 1000 50 0.9984257 +25 147.345 151.2225 1000 50 0.5118723 +26 155.1 158.9775 1000 50 0.9872115 +27 174.4875 178.365 1000 50 0.9531443 +28 182.2425 186.12 1000 50 0.9612862 +29 189.9975 193.875 1000 50 0.6905527 +30 197.7525 201.63 1000 50 0.50073004 +31 205.5075 209.385 1000 50 0.8850963 +32 213.2625 217.14 1000 50 0.970251 +33 224.895 228.7725 1000 50 0.63720095 +34 232.65 236.5275 1000 50 0.6709909 +35 240.405 244.2825 1000 50 0.92191684 +36 244.2825 248.16 1000 50 0.91070545 +37 259.7925 263.67 1000 50 0.51201123 +38 290.8125 294.69 1000 50 0.58320904 +39 317.955 321.8325 1000 50 0.6467942 +40 329.5875 333.465 1000 50 0.61419773 +41 348.975 352.8525 1000 50 0.6949841 +42 352.8525 356.73 1000 50 0.54433537 +43 360.6075 364.485 1000 50 0.7000645 +44 368.3625 372.24 1000 50 0.7568779 +45 391.6275 395.505 1000 50 0.54546285 +46 399.3825 403.26 1000 50 0.75422275 +47 414.8925 418.77 1000 50 0.828211 +48 453.6675 457.545 1000 50 0.8900765 +49 457.545 461.4225 1000 50 0.85868037 +50 461.4225 465.3 1000 50 0.99474216 +51 465.3 469.1775 1000 50 0.9167921 +52 473.055 476.9325 1000 50 0.996912 +53 476.9325 480.81 1000 50 0.7931013 +54 480.81 484.6875 1000 50 0.9775358 +55 484.6875 488.565 1000 50 0.5231656 +56 488.565 492.4425 1000 50 0.55773705 +57 492.4425 496.32 1000 50 0.8385731 +58 500.1975 504.075 1000 50 0.8930959 +59 507.9525 511.83 1000 50 0.80951375 +60 511.83 515.7075 1000 50 0.9999962 +61 519.585 523.4625000000001 1000 50 0.9557193 +62 523.4625 527.34 1000 50 0.99868256 +63 531.2175 535.095 1000 50 0.9999119 +64 535.095 538.9725000000001 1000 50 0.8662277 +65 538.9725 542.85 1000 50 0.7709586 +66 542.85 546.7275000000001 1000 50 0.99986374 +67 550.605 554.4825000000001 1000 50 0.5331647 +68 554.4825 558.36 1000 50 0.98416775 +69 569.9925 573.87 1000 50 0.6388749 +70 573.87 577.7475000000001 1000 50 0.8026619 +71 577.7475 581.625 1000 50 0.55712175 +72 585.5025 589.3800000000001 1000 50 0.68896484 +73 589.38 593.2575 1000 50 0.61239505 +74 597.135 601.0125 1000 50 0.85412216 +75 601.0125 604.8900000000001 1000 50 0.8001395 +76 604.89 608.7675 1000 50 0.61248046 +77 608.7675 612.6450000000001 1000 50 0.50830376 +78 620.4 624.2775 1000 50 0.52244705 +79 628.155 632.0325 1000 50 0.5335129 +80 632.0325 635.9100000000001 1000 50 0.9094108 +81 639.7875 643.6650000000001 1000 50 0.8547443 +82 651.42 655.2975 1000 50 0.8136464 +83 655.2975 659.1750000000001 1000 50 0.94117665 +84 663.0525 666.9300000000001 1000 50 0.5278949 +85 666.93 670.8075 1000 50 0.99740005 +86 670.8075 674.6850000000001 1000 50 0.89577514 +87 674.685 678.5625 1000 50 0.9943869 +88 686.3175 690.195 1000 50 0.9350544 +89 740.6025 744.48 1000 50 0.5482842 +90 748.3575 752.235 1000 50 0.7656635 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_06-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_06-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..80e1f9b18471d5dbe90b6f6266ba87c4e863881d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_06-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,84 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 38.775 42.652499999999996 1000 50 0.54359037 +2 54.285 58.162499999999994 1000 50 0.66797507 +3 127.9575 131.835 1000 50 0.62481374 +4 182.2425 186.12 1000 50 0.93484634 +5 189.9975 193.875 1000 50 0.7872067 +6 205.5075 209.385 1000 50 0.7810668 +7 213.2625 217.14 1000 50 0.6325817 +8 217.14 221.01749999999998 1000 50 0.78814036 +9 228.7725 232.65 1000 50 0.5827211 +10 248.16 252.0375 1000 50 0.80068415 +11 255.915 259.7925 1000 50 0.7156835 +12 271.425 275.3025 1000 50 0.98929274 +13 275.3025 279.18 1000 50 0.90819544 +14 279.18 283.0575 1000 50 0.6922084 +15 283.0575 286.935 1000 50 0.6177402 +16 286.935 290.8125 1000 50 0.9491785 +17 294.69 298.5675 1000 50 0.88338435 +18 302.445 306.3225 1000 50 0.71094024 +19 306.3225 310.2 1000 50 0.977777 +20 317.955 321.8325 1000 50 0.51607585 +21 329.5875 333.465 1000 50 0.5077078 +22 333.465 337.3425 1000 50 0.9304629 +23 352.8525 356.73 1000 50 0.6091882 +24 364.485 368.3625 1000 50 0.64533526 +25 368.3625 372.24 1000 50 0.79626334 +26 372.24 376.1175 1000 50 0.99912614 +27 383.8725 387.75 1000 50 0.5161233 +28 387.75 391.6275 1000 50 0.7744151 +29 407.1375 411.015 1000 50 0.7543968 +30 414.8925 418.77 1000 50 0.559698 +31 422.6475 426.525 1000 50 0.570335 +32 426.525 430.4025 1000 50 0.99311453 +33 434.28 438.15749999999997 1000 50 0.66056347 +34 442.035 445.9125 1000 50 0.98831743 +35 445.9125 449.79 1000 50 0.8754115 +36 449.79 453.6675 1000 50 0.99987197 +37 453.6675 457.545 1000 50 0.9997496 +38 469.1775 473.055 1000 50 0.9558297 +39 473.055 476.9325 1000 50 0.96135503 +40 480.81 484.6875 1000 50 0.6207146 +41 484.6875 488.565 1000 50 0.5885235 +42 488.565 492.4425 1000 50 0.8170942 +43 492.4425 496.32 1000 50 0.9999703 +44 500.1975 504.075 1000 50 0.52740264 +45 504.075 507.9525 1000 50 0.99705493 +46 515.7075 519.585 1000 50 0.99999094 +47 523.4625 527.34 1000 50 0.9978682 +48 531.2175 535.095 1000 50 0.73385257 +49 538.9725 542.85 1000 50 0.5528854 +50 542.85 546.7275000000001 1000 50 0.565567 +51 546.7275 550.605 1000 50 0.80449456 +52 562.2375 566.115 1000 50 0.5374747 +53 566.115 569.9925000000001 1000 50 0.99641585 +54 573.87 577.7475000000001 1000 50 0.6666459 +55 577.7475 581.625 1000 50 0.9497374 +56 581.625 585.5025 1000 50 0.5722022 +57 593.2575 597.1350000000001 1000 50 0.9860832 +58 597.135 601.0125 1000 50 0.77712864 +59 601.0125 604.8900000000001 1000 50 0.93085456 +60 604.89 608.7675 1000 50 0.5935975 +61 608.7675 612.6450000000001 1000 50 0.8867773 +62 612.645 616.5225 1000 50 0.7169663 +63 616.5225 620.4000000000001 1000 50 0.9653526 +64 620.4 624.2775 1000 50 0.7891329 +65 624.2775 628.1550000000001 1000 50 0.9958086 +66 632.0325 635.9100000000001 1000 50 0.9189643 +67 635.91 639.7875 1000 50 0.9093988 +68 639.7875 643.6650000000001 1000 50 0.9943281 +69 643.665 647.5425 1000 50 0.99425477 +70 647.5425 651.4200000000001 1000 50 0.6014841 +71 655.2975 659.1750000000001 1000 50 0.6223966 +72 659.175 663.0525 1000 50 0.6437167 +73 666.93 670.8075 1000 50 0.8219535 +74 690.195 694.0725000000001 1000 50 0.60123926 +75 709.5825 713.46 1000 50 0.61679626 +76 721.215 725.0925000000001 1000 50 0.5778558 +77 728.97 732.8475000000001 1000 50 0.76336116 +78 740.6025 744.48 1000 50 0.53193665 +79 752.235 756.1125000000001 1000 50 0.58253306 +80 806.52 810.3975 1000 50 0.7185806 +81 833.6625 837.5400000000001 1000 50 0.8197404 +82 837.54 841.4175 1000 50 0.60979575 +83 845.295 849.1725 1000 50 0.60333526 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_06-17-47_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_06-17-47_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..7772757026eb4dfd74a9cb619d8c4f7e37c1d6de --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_06-17-47_annot_2022-11-30_01.txt @@ -0,0 +1,38 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.7166864 +2 15.51 19.3875 1000 50 0.9656184 +3 34.8975 38.775 1000 50 0.92247283 +4 50.4075 54.285 1000 50 0.7029983 +5 62.04 65.9175 1000 50 0.91615254 +6 65.9175 69.795 1000 50 0.9175271 +7 73.6725 77.55 1000 50 0.7087962 +8 77.55 81.4275 1000 50 0.9831275 +9 81.4275 85.30499999999999 1000 50 0.7305405 +10 89.1825 93.06 1000 50 0.7118094 +11 112.4475 116.325 1000 50 0.5638622 +12 116.325 120.2025 1000 50 0.54863393 +13 139.59 143.4675 1000 50 0.7402549 +14 143.4675 147.345 1000 50 0.63510686 +15 162.855 166.7325 1000 50 0.55440766 +16 189.9975 193.875 1000 50 0.5659461 +17 228.7725 232.65 1000 50 0.716018 +18 298.5675 302.445 1000 50 0.95322526 +19 306.3225 310.2 1000 50 0.9962458 +20 314.0775 317.955 1000 50 0.74907625 +21 321.8325 325.71 1000 50 0.99630886 +22 329.5875 333.465 1000 50 0.9999652 +23 337.3425 341.21999999999997 1000 50 0.99999976 +24 341.22 345.0975 1000 50 0.55399835 +25 348.975 352.8525 1000 50 0.87487113 +26 356.73 360.6075 1000 50 0.9978787 +27 368.3625 372.24 1000 50 0.52465487 +28 372.24 376.1175 1000 50 0.5080395 +29 376.1175 379.995 1000 50 0.95459634 +30 387.75 391.6275 1000 50 0.96117306 +31 391.6275 395.505 1000 50 0.99876934 +32 399.3825 403.26 1000 50 0.9973273 +33 403.26 407.1375 1000 50 0.99735105 +34 407.1375 411.015 1000 50 0.9307297 +35 414.8925 418.77 1000 50 0.6064384 +36 418.77 422.6475 1000 50 0.9770851 +37 434.28 438.15749999999997 1000 50 0.97315323 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_07-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_07-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..88b4e29f038f80dd6c62e5e0312dd98a4c3e5cf5 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_07-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,110 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 34.8975 38.775 1000 50 0.99135125 +2 62.04 65.9175 1000 50 0.8092994 +3 65.9175 69.795 1000 50 0.50167114 +4 69.795 73.6725 1000 50 0.9999796 +5 81.4275 85.30499999999999 1000 50 0.99974793 +6 85.305 89.1825 1000 50 0.99309456 +7 89.1825 93.06 1000 50 0.9995196 +8 96.9375 100.815 1000 50 0.7491586 +9 120.2025 124.08 1000 50 0.8033166 +10 127.9575 131.835 1000 50 0.82848674 +11 131.835 135.7125 1000 50 0.74382377 +12 155.1 158.9775 1000 50 0.84682715 +13 162.855 166.7325 1000 50 0.732197 +14 166.7325 170.60999999999999 1000 50 0.9274058 +15 170.61 174.4875 1000 50 0.74016994 +16 174.4875 178.365 1000 50 0.8432287 +17 182.2425 186.12 1000 50 0.8623407 +18 189.9975 193.875 1000 50 0.92725265 +19 213.2625 217.14 1000 50 0.6559594 +20 244.2825 248.16 1000 50 0.58817166 +21 252.0375 255.915 1000 50 0.9851773 +22 267.5475 271.425 1000 50 0.5627182 +23 298.5675 302.445 1000 50 0.7733928 +24 306.3225 310.2 1000 50 0.69197273 +25 317.955 321.8325 1000 50 0.8966469 +26 321.8325 325.71 1000 50 0.83456457 +27 356.73 360.6075 1000 50 0.9790404 +28 368.3625 372.24 1000 50 0.94843125 +29 379.995 383.8725 1000 50 0.5066766 +30 407.1375 411.015 1000 50 0.7943007 +31 411.015 414.8925 1000 50 0.61625284 +32 422.6475 426.525 1000 50 0.85630685 +33 434.28 438.15749999999997 1000 50 0.5301403 +34 438.1575 442.035 1000 50 0.9164952 +35 453.6675 457.545 1000 50 0.8406981 +36 465.3 469.1775 1000 50 0.9180065 +37 480.81 484.6875 1000 50 0.5946606 +38 484.6875 488.565 1000 50 0.89471805 +39 492.4425 496.32 1000 50 0.9804186 +40 496.32 500.1975 1000 50 0.99895954 +41 519.585 523.4625000000001 1000 50 0.846373 +42 527.34 531.2175000000001 1000 50 0.9959466 +43 535.095 538.9725000000001 1000 50 0.9999316 +44 546.7275 550.605 1000 50 0.6087377 +45 550.605 554.4825000000001 1000 50 0.9078712 +46 558.36 562.2375000000001 1000 50 0.94187856 +47 566.115 569.9925000000001 1000 50 0.9998492 +48 569.9925 573.87 1000 50 0.9642759 +49 581.625 585.5025 1000 50 0.9365129 +50 589.38 593.2575 1000 50 0.5025768 +51 608.7675 612.6450000000001 1000 50 0.97191226 +52 620.4 624.2775 1000 50 0.8660294 +53 624.2775 628.1550000000001 1000 50 0.644408 +54 632.0325 635.9100000000001 1000 50 0.69088596 +55 635.91 639.7875 1000 50 0.9540588 +56 651.42 655.2975 1000 50 0.7308169 +57 666.93 670.8075 1000 50 0.9830268 +58 674.685 678.5625 1000 50 0.7430511 +59 678.5625 682.44 1000 50 0.71350557 +60 682.44 686.3175000000001 1000 50 0.9994198 +61 697.95 701.8275000000001 1000 50 0.75169015 +62 721.215 725.0925000000001 1000 50 0.7175696 +63 728.97 732.8475000000001 1000 50 0.5144804 +64 736.725 740.6025000000001 1000 50 0.9736908 +65 775.5 779.3775 1000 50 0.69635594 +66 787.1325 791.0100000000001 1000 50 0.544566 +67 794.8875 798.7650000000001 1000 50 0.6839014 +68 798.765 802.6425 1000 50 0.61097866 +69 806.52 810.3975 1000 50 0.73171026 +70 814.275 818.1525 1000 50 0.90376115 +71 829.785 833.6625 1000 50 0.51080996 +72 899.58 903.4575000000001 1000 50 0.6601333 +73 903.4575 907.335 1000 50 0.717506 +74 922.845 926.7225000000001 1000 50 0.54534477 +75 957.7425 961.62 1000 50 0.7293122 +76 981.0075 984.8850000000001 1000 50 0.65172905 +77 984.885 988.7625 1000 50 0.948337 +78 1000.395 1004.2725 1000 50 0.9994287 +79 1004.2725 1008.1500000000001 1000 50 0.5748511 +80 1019.7825 1023.6600000000001 1000 50 0.9580007 +81 1054.68 1058.5575000000001 1000 50 0.8133668 +82 1058.5575 1062.435 1000 50 0.92863756 +83 1062.435 1066.3125 1000 50 0.5135882 +84 1066.3125 1070.19 1000 50 0.99872273 +85 1070.19 1074.0675 1000 50 0.9996505 +86 1074.0675 1077.9450000000002 1000 50 0.9999182 +87 1077.945 1081.8225 1000 50 0.99380255 +88 1081.8225 1085.7 1000 50 0.9998473 +89 1085.7 1089.5775 1000 50 0.95283294 +90 1089.5775 1093.4550000000002 1000 50 0.9980465 +91 1093.455 1097.3325 1000 50 0.99814343 +92 1097.3325 1101.21 1000 50 0.9603601 +93 1105.0875 1108.9650000000001 1000 50 0.9791486 +94 1108.965 1112.8425 1000 50 0.9999882 +95 1112.8425 1116.72 1000 50 0.9999963 +96 1116.72 1120.5975 1000 50 0.9993224 +97 1120.5975 1124.4750000000001 1000 50 0.99992406 +98 1124.475 1128.3525 1000 50 0.9436688 +99 1128.3525 1132.23 1000 50 0.997431 +100 1132.23 1136.1075 1000 50 0.99999964 +101 1136.1075 1139.9850000000001 1000 50 0.99763334 +102 1139.985 1143.8625 1000 50 1.0 +103 1143.8625 1147.74 1000 50 0.90622985 +104 1147.74 1151.6175 1000 50 0.99998605 +105 1151.6175 1155.4950000000001 1000 50 0.9998822 +106 1155.495 1159.3725 1000 50 0.9830405 +107 1159.3725 1163.25 1000 50 0.99999857 +108 1163.25 1167.1275 1000 50 0.9999999 +109 1167.1275 1171.005 1000 50 0.5283648 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_07-24-55_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_07-24-55_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..34b2a09b8451a1e5cb8e02dc766354cfc216ddd4 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_07-24-55_annot_2022-11-30_01.txt @@ -0,0 +1 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_08-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_08-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..006c753fa17040c036812ef5788bcc6e5592c56b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_08-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,311 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9534467 +2 3.8775 7.755 1000 50 0.9999877 +3 7.755 11.6325 1000 50 0.9857804 +4 11.6325 15.51 1000 50 0.999495 +5 15.51 19.3875 1000 50 0.9998036 +6 19.3875 23.265 1000 50 0.9610824 +7 23.265 27.142500000000002 1000 50 0.999132 +8 27.1425 31.02 1000 50 0.998173 +9 31.02 34.8975 1000 50 1.0 +10 34.8975 38.775 1000 50 0.9996811 +11 38.775 42.652499999999996 1000 50 0.9953826 +12 42.6525 46.53 1000 50 0.9376354 +13 46.53 50.4075 1000 50 0.9999999 +14 50.4075 54.285 1000 50 0.9999459 +15 54.285 58.162499999999994 1000 50 0.76441866 +16 58.1625 62.04 1000 50 0.9999703 +17 62.04 65.9175 1000 50 1.0 +18 65.9175 69.795 1000 50 0.9965419 +19 69.795 73.6725 1000 50 0.9998603 +20 73.6725 77.55 1000 50 0.99963284 +21 77.55 81.4275 1000 50 0.99944586 +22 81.4275 85.30499999999999 1000 50 0.96000314 +23 85.305 89.1825 1000 50 0.9953335 +24 89.1825 93.06 1000 50 0.99935526 +25 93.06 96.9375 1000 50 0.99999964 +26 100.815 104.6925 1000 50 0.99505603 +27 104.6925 108.57 1000 50 0.996241 +28 108.57 112.44749999999999 1000 50 0.9814734 +29 112.4475 116.325 1000 50 0.9999927 +30 116.325 120.2025 1000 50 0.99910307 +31 120.2025 124.08 1000 50 0.9727682 +32 124.08 127.9575 1000 50 0.9986785 +33 127.9575 131.835 1000 50 0.9999579 +34 131.835 135.7125 1000 50 0.9999858 +35 135.7125 139.59 1000 50 0.99999523 +36 139.59 143.4675 1000 50 0.99973935 +37 143.4675 147.345 1000 50 0.99999976 +38 147.345 151.2225 1000 50 0.9999759 +39 151.2225 155.1 1000 50 0.99373734 +40 155.1 158.9775 1000 50 1.0 +41 158.9775 162.855 1000 50 0.9999938 +42 162.855 166.7325 1000 50 0.99967647 +43 166.7325 170.60999999999999 1000 50 0.9999956 +44 170.61 174.4875 1000 50 0.9956975 +45 174.4875 178.365 1000 50 0.9999988 +46 178.365 182.2425 1000 50 0.9999838 +47 182.2425 186.12 1000 50 0.99758863 +48 186.12 189.9975 1000 50 1.0 +49 189.9975 193.875 1000 50 0.9999999 +50 193.875 197.7525 1000 50 0.9999403 +51 197.7525 201.63 1000 50 0.9999999 +52 201.63 205.5075 1000 50 0.99997294 +53 205.5075 209.385 1000 50 0.99999976 +54 209.385 213.2625 1000 50 0.9999993 +55 213.2625 217.14 1000 50 0.99999547 +56 217.14 221.01749999999998 1000 50 0.6286217 +57 221.0175 224.895 1000 50 0.9999995 +58 224.895 228.7725 1000 50 0.9999989 +59 228.7725 232.65 1000 50 0.99999905 +60 232.65 236.5275 1000 50 0.9995301 +61 236.5275 240.405 1000 50 0.99999785 +62 240.405 244.2825 1000 50 0.9999999 +63 244.2825 248.16 1000 50 0.9999771 +64 248.16 252.0375 1000 50 0.9999449 +65 252.0375 255.915 1000 50 0.9999988 +66 255.915 259.7925 1000 50 0.9999988 +67 259.7925 263.67 1000 50 0.9999958 +68 263.67 267.5475 1000 50 0.99995446 +69 267.5475 271.425 1000 50 0.9974686 +70 271.425 275.3025 1000 50 0.99894506 +71 275.3025 279.18 1000 50 0.99999917 +72 279.18 283.0575 1000 50 0.99960166 +73 283.0575 286.935 1000 50 0.99999845 +74 286.935 290.8125 1000 50 0.9981048 +75 290.8125 294.69 1000 50 0.9995838 +76 298.5675 302.445 1000 50 0.9992797 +77 302.445 306.3225 1000 50 1.0 +78 306.3225 310.2 1000 50 0.999946 +79 310.2 314.0775 1000 50 0.9999 +80 314.0775 317.955 1000 50 0.96893334 +81 317.955 321.8325 1000 50 0.99988544 +82 321.8325 325.71 1000 50 0.99391633 +83 325.71 329.5875 1000 50 0.987151 +84 329.5875 333.465 1000 50 0.7082489 +85 333.465 337.3425 1000 50 0.99976534 +86 337.3425 341.21999999999997 1000 50 0.99816257 +87 341.22 345.0975 1000 50 0.9996536 +88 345.0975 348.975 1000 50 0.99850154 +89 348.975 352.8525 1000 50 0.9999337 +90 352.8525 356.73 1000 50 0.9980373 +91 356.73 360.6075 1000 50 0.9999392 +92 360.6075 364.485 1000 50 0.99974674 +93 364.485 368.3625 1000 50 0.99999845 +94 368.3625 372.24 1000 50 0.9960045 +95 372.24 376.1175 1000 50 0.999998 +96 376.1175 379.995 1000 50 0.99580234 +97 379.995 383.8725 1000 50 0.9973205 +98 383.8725 387.75 1000 50 0.85535574 +99 391.6275 395.505 1000 50 0.94538873 +100 442.035 445.9125 1000 50 0.58837265 +101 457.545 461.4225 1000 50 0.56084067 +102 473.055 476.9325 1000 50 0.8148987 +103 480.81 484.6875 1000 50 0.65311044 +104 488.565 492.4425 1000 50 0.672381 +105 500.1975 504.075 1000 50 0.7424326 +106 515.7075 519.585 1000 50 0.56067264 +107 523.4625 527.34 1000 50 0.64215606 +108 531.2175 535.095 1000 50 0.9974904 +109 535.095 538.9725000000001 1000 50 0.56646425 +110 538.9725 542.85 1000 50 0.99244237 +111 542.85 546.7275000000001 1000 50 0.9792777 +112 546.7275 550.605 1000 50 0.9182589 +113 550.605 554.4825000000001 1000 50 0.99816966 +114 554.4825 558.36 1000 50 0.9998658 +115 558.36 562.2375000000001 1000 50 0.9481729 +116 562.2375 566.115 1000 50 0.9370762 +117 566.115 569.9925000000001 1000 50 0.6912995 +118 569.9925 573.87 1000 50 0.9998807 +119 573.87 577.7475000000001 1000 50 0.9999887 +120 577.7475 581.625 1000 50 0.99870646 +121 581.625 585.5025 1000 50 0.9991841 +122 585.5025 589.3800000000001 1000 50 0.9999908 +123 593.2575 597.1350000000001 1000 50 0.9999931 +124 597.135 601.0125 1000 50 0.9980229 +125 601.0125 604.8900000000001 1000 50 0.50345415 +126 604.89 608.7675 1000 50 0.9999696 +127 608.7675 612.6450000000001 1000 50 0.9912698 +128 612.645 616.5225 1000 50 0.9999274 +129 616.5225 620.4000000000001 1000 50 0.991803 +130 620.4 624.2775 1000 50 0.9822205 +131 624.2775 628.1550000000001 1000 50 1.0 +132 628.155 632.0325 1000 50 0.98371786 +133 632.0325 635.9100000000001 1000 50 0.953311 +134 635.91 639.7875 1000 50 0.9999989 +135 639.7875 643.6650000000001 1000 50 0.99671954 +136 643.665 647.5425 1000 50 0.8278308 +137 647.5425 651.4200000000001 1000 50 0.998765 +138 651.42 655.2975 1000 50 0.9999999 +139 655.2975 659.1750000000001 1000 50 0.9938896 +140 659.175 663.0525 1000 50 0.9788067 +141 663.0525 666.9300000000001 1000 50 0.9999869 +142 666.93 670.8075 1000 50 0.999995 +143 670.8075 674.6850000000001 1000 50 0.99995315 +144 674.685 678.5625 1000 50 1.0 +145 678.5625 682.44 1000 50 0.70938957 +146 686.3175 690.195 1000 50 0.75397336 +147 690.195 694.0725000000001 1000 50 1.0 +148 694.0725 697.95 1000 50 1.0 +149 697.95 701.8275000000001 1000 50 0.9999994 +150 701.8275 705.705 1000 50 1.0 +151 705.705 709.5825000000001 1000 50 0.9999999 +152 709.5825 713.46 1000 50 0.99895203 +153 713.46 717.3375000000001 1000 50 1.0 +154 717.3375 721.215 1000 50 0.9990594 +155 721.215 725.0925000000001 1000 50 0.9999994 +156 725.0925 728.97 1000 50 0.99756706 +157 728.97 732.8475000000001 1000 50 0.9999753 +158 732.8475 736.725 1000 50 1.0 +159 736.725 740.6025000000001 1000 50 0.99956435 +160 740.6025 744.48 1000 50 0.9987174 +161 744.48 748.3575000000001 1000 50 1.0 +162 748.3575 752.235 1000 50 0.9999603 +163 752.235 756.1125000000001 1000 50 1.0 +164 756.1125 759.99 1000 50 0.9999908 +165 759.99 763.8675000000001 1000 50 0.99705756 +166 763.8675 767.745 1000 50 1.0 +167 771.6225 775.5 1000 50 0.8858316 +168 775.5 779.3775 1000 50 0.99999213 +169 779.3775 783.2550000000001 1000 50 0.9980205 +170 783.255 787.1325 1000 50 0.9999999 +171 787.1325 791.0100000000001 1000 50 0.929207 +172 791.01 794.8875 1000 50 0.9999515 +173 794.8875 798.7650000000001 1000 50 0.99774784 +174 798.765 802.6425 1000 50 0.96129286 +175 802.6425 806.5200000000001 1000 50 0.9999219 +176 806.52 810.3975 1000 50 1.0 +177 810.3975 814.2750000000001 1000 50 0.9726168 +178 814.275 818.1525 1000 50 1.0 +179 818.1525 822.0300000000001 1000 50 0.9999224 +180 822.03 825.9075 1000 50 0.9999912 +181 825.9075 829.7850000000001 1000 50 0.99999976 +182 829.785 833.6625 1000 50 0.9999654 +183 833.6625 837.5400000000001 1000 50 0.9999988 +184 837.54 841.4175 1000 50 0.97175735 +185 841.4175 845.2950000000001 1000 50 0.999966 +186 845.295 849.1725 1000 50 0.98681146 +187 849.1725 853.0500000000001 1000 50 1.0 +188 853.05 856.9275 1000 50 0.99428236 +189 860.805 864.6825 1000 50 0.99998176 +190 864.6825 868.5600000000001 1000 50 0.55682486 +191 868.56 872.4375 1000 50 0.87385595 +192 872.4375 876.315 1000 50 0.9992861 +193 876.315 880.1925000000001 1000 50 0.9749244 +194 930.6 934.4775000000001 1000 50 0.53419054 +195 938.355 942.2325000000001 1000 50 0.8737752 +196 946.11 949.9875000000001 1000 50 0.9301741 +197 965.4975 969.375 1000 50 0.6540188 +198 969.375 973.2525 1000 50 0.803512 +199 992.64 996.5175 1000 50 0.50328857 +200 996.5175 1000.3950000000001 1000 50 0.59971166 +201 1012.0275 1015.9050000000001 1000 50 0.9954986 +202 1019.7825 1023.6600000000001 1000 50 0.9984218 +203 1023.66 1027.5375 1000 50 0.73749 +204 1027.5375 1031.415 1000 50 0.8968945 +205 1031.415 1035.2925 1000 50 0.82690877 +206 1035.2925 1039.17 1000 50 0.9929007 +207 1039.17 1043.0475000000001 1000 50 0.9998405 +208 1043.0475 1046.925 1000 50 0.999998 +209 1046.925 1050.8025 1000 50 0.98937994 +210 1050.8025 1054.68 1000 50 0.99999964 +211 1054.68 1058.5575000000001 1000 50 0.99999964 +212 1058.5575 1062.435 1000 50 0.9999962 +213 1062.435 1066.3125 1000 50 0.9972531 +214 1066.3125 1070.19 1000 50 0.9995727 +215 1074.0675 1077.9450000000002 1000 50 0.9999912 +216 1081.8225 1085.7 1000 50 0.9728712 +217 1085.7 1089.5775 1000 50 0.9999933 +218 1089.5775 1093.4550000000002 1000 50 0.99928963 +219 1093.455 1097.3325 1000 50 0.9999776 +220 1097.3325 1101.21 1000 50 0.6651395 +221 1101.21 1105.0875 1000 50 0.9724086 +222 1105.0875 1108.9650000000001 1000 50 0.998069 +223 1108.965 1112.8425 1000 50 0.78283036 +224 1112.8425 1116.72 1000 50 0.9984748 +225 1116.72 1120.5975 1000 50 0.99953115 +226 1124.475 1128.3525 1000 50 1.0 +227 1128.3525 1132.23 1000 50 0.99998033 +228 1132.23 1136.1075 1000 50 0.9811156 +229 1136.1075 1139.9850000000001 1000 50 0.9929181 +230 1139.985 1143.8625 1000 50 0.9994079 +231 1143.8625 1147.74 1000 50 0.9861464 +232 1147.74 1151.6175 1000 50 0.9643949 +233 1155.495 1159.3725 1000 50 0.999476 +234 1159.3725 1163.25 1000 50 0.9999999 +235 1163.25 1167.1275 1000 50 0.9999914 +236 1167.1275 1171.005 1000 50 1.0 +237 1171.005 1174.8825000000002 1000 50 0.9989801 +238 1174.8825 1178.76 1000 50 0.9991259 +239 1178.76 1182.6375 1000 50 0.9997942 +240 1182.6375 1186.515 1000 50 0.999571 +241 1186.515 1190.3925000000002 1000 50 0.99999547 +242 1190.3925 1194.27 1000 50 0.9999304 +243 1194.27 1198.1475 1000 50 0.9999201 +244 1198.1475 1202.025 1000 50 0.9999982 +245 1202.025 1205.9025000000001 1000 50 0.9999993 +246 1205.9025 1209.78 1000 50 1.0 +247 1213.6575 1217.535 1000 50 0.9999999 +248 1217.535 1221.4125000000001 1000 50 0.99999607 +249 1221.4125 1225.29 1000 50 0.99999774 +250 1225.29 1229.1675 1000 50 0.99275804 +251 1229.1675 1233.045 1000 50 0.9992662 +252 1233.045 1236.9225000000001 1000 50 0.9999888 +253 1236.9225 1240.8 1000 50 0.9881715 +254 1240.8 1244.6775 1000 50 0.9999844 +255 1244.6775 1248.555 1000 50 0.9999584 +256 1248.555 1252.4325000000001 1000 50 0.99736184 +257 1252.4325 1256.31 1000 50 0.9999999 +258 1256.31 1260.1875 1000 50 0.9999268 +259 1260.1875 1264.065 1000 50 0.99979025 +260 1264.065 1267.9425 1000 50 0.99918455 +261 1267.9425 1271.8200000000002 1000 50 0.99808276 +262 1271.82 1275.6975 1000 50 0.9999999 +263 1275.6975 1279.575 1000 50 0.99921894 +264 1279.575 1283.4525 1000 50 0.99599755 +265 1283.4525 1287.3300000000002 1000 50 0.9999249 +266 1287.33 1291.2075 1000 50 1.0 +267 1291.2075 1295.085 1000 50 0.9999943 +268 1295.085 1298.9625 1000 50 0.99800783 +269 1298.9625 1302.8400000000001 1000 50 0.9893884 +270 1302.84 1306.7175 1000 50 1.0 +271 1306.7175 1310.595 1000 50 0.99934083 +272 1310.595 1314.4725 1000 50 0.99999964 +273 1314.4725 1318.3500000000001 1000 50 0.97735924 +274 1318.35 1322.2275 1000 50 1.0 +275 1322.2275 1326.105 1000 50 0.99445 +276 1326.105 1329.9825 1000 50 0.99975663 +277 1329.9825 1333.8600000000001 1000 50 0.9999981 +278 1333.86 1337.7375 1000 50 0.9999926 +279 1337.7375 1341.615 1000 50 0.9997898 +280 1341.615 1345.4925 1000 50 0.99999166 +281 1345.4925 1349.3700000000001 1000 50 1.0 +282 1349.37 1353.2475 1000 50 0.9999373 +283 1353.2475 1357.125 1000 50 0.8940227 +284 1357.125 1361.0025 1000 50 0.9931925 +285 1361.0025 1364.88 1000 50 0.9999825 +286 1364.88 1368.7575000000002 1000 50 0.99916303 +287 1368.7575 1372.635 1000 50 0.99999917 +288 1372.635 1376.5125 1000 50 0.9905986 +289 1376.5125 1380.39 1000 50 0.9392749 +290 1380.39 1384.2675000000002 1000 50 0.99995613 +291 1384.2675 1388.145 1000 50 0.9981425 +292 1388.145 1392.0225 1000 50 0.9993851 +293 1392.0225 1395.9 1000 50 0.99999964 +294 1395.9 1399.7775000000001 1000 50 0.9999716 +295 1399.7775 1403.655 1000 50 0.99983454 +296 1403.655 1407.5325 1000 50 0.99920875 +297 1407.5325 1411.41 1000 50 0.999998 +298 1411.41 1415.2875000000001 1000 50 0.9982566 +299 1415.2875 1419.165 1000 50 0.9999989 +300 1419.165 1423.0425 1000 50 0.998971 +301 1423.0425 1426.92 1000 50 0.99999857 +302 1426.92 1430.7975000000001 1000 50 0.9999999 +303 1430.7975 1434.675 1000 50 1.0 +304 1434.675 1438.5525 1000 50 0.9997781 +305 1438.5525 1442.43 1000 50 0.9998074 +306 1446.3075 1450.185 1000 50 0.74561375 +307 1465.695 1469.5725 1000 50 0.61492085 +308 1469.5725 1473.45 1000 50 0.51614636 +309 1477.3275 1481.2050000000002 1000 50 0.6798818 +310 1485.0825 1488.96 1000 50 0.51672137 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_09-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_09-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..eed541f8d981b96daf96955eed4500a620bb138c --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_09-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,16 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 1.0 +2 3.8775 7.755 1000 50 0.99997795 +3 7.755 11.6325 1000 50 0.9998599 +4 11.6325 15.51 1000 50 0.9999925 +5 15.51 19.3875 1000 50 0.9999882 +6 19.3875 23.265 1000 50 0.9998932 +7 23.265 27.142500000000002 1000 50 0.99895406 +8 27.1425 31.02 1000 50 0.9998166 +9 31.02 34.8975 1000 50 0.9990791 +10 34.8975 38.775 1000 50 0.9999474 +11 38.775 42.652499999999996 1000 50 1.0 +12 42.6525 46.53 1000 50 0.9999968 +13 46.53 50.4075 1000 50 0.99966395 +14 50.4075 54.285 1000 50 0.9999962 +15 54.285 58.162499999999994 1000 50 0.9985044 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_09-04-34_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_09-04-34_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..99ae199d84b9971110d5dae907116993acf9522e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_09-04-34_annot_2022-11-30_01.txt @@ -0,0 +1,242 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999614 +2 3.8775 7.755 1000 50 0.9895639 +3 7.755 11.6325 1000 50 0.99999785 +4 11.6325 15.51 1000 50 0.9999988 +5 15.51 19.3875 1000 50 0.9997838 +6 19.3875 23.265 1000 50 0.99989283 +7 23.265 27.142500000000002 1000 50 0.9999901 +8 27.1425 31.02 1000 50 1.0 +9 31.02 34.8975 1000 50 0.84060884 +10 34.8975 38.775 1000 50 0.9583987 +11 42.6525 46.53 1000 50 0.6487054 +12 77.55 81.4275 1000 50 0.81630117 +13 93.06 96.9375 1000 50 0.5617449 +14 96.9375 100.815 1000 50 0.8152192 +15 104.6925 108.57 1000 50 0.76932627 +16 108.57 112.44749999999999 1000 50 0.7285019 +17 124.08 127.9575 1000 50 0.5016402 +18 131.835 135.7125 1000 50 0.54486907 +19 135.7125 139.59 1000 50 0.56262475 +20 139.59 143.4675 1000 50 0.7522712 +21 182.2425 186.12 1000 50 0.68742645 +22 189.9975 193.875 1000 50 0.67816967 +23 193.875 197.7525 1000 50 0.99386203 +24 205.5075 209.385 1000 50 0.99996984 +25 213.2625 217.14 1000 50 0.74207574 +26 217.14 221.01749999999998 1000 50 0.9995596 +27 224.895 228.7725 1000 50 0.9999349 +28 236.5275 240.405 1000 50 0.999481 +29 240.405 244.2825 1000 50 0.9999994 +30 244.2825 248.16 1000 50 1.0 +31 248.16 252.0375 1000 50 0.99996984 +32 252.0375 255.915 1000 50 0.99996984 +33 255.915 259.7925 1000 50 0.9999995 +34 259.7925 263.67 1000 50 0.99991214 +35 263.67 267.5475 1000 50 0.9999999 +36 267.5475 271.425 1000 50 0.9999999 +37 271.425 275.3025 1000 50 1.0 +38 275.3025 279.18 1000 50 0.9847125 +39 279.18 283.0575 1000 50 1.0 +40 283.0575 286.935 1000 50 0.9962863 +41 286.935 290.8125 1000 50 0.92591906 +42 290.8125 294.69 1000 50 1.0 +43 294.69 298.5675 1000 50 0.9999789 +44 298.5675 302.445 1000 50 0.9912998 +45 302.445 306.3225 1000 50 0.94512135 +46 306.3225 310.2 1000 50 0.9999409 +47 310.2 314.0775 1000 50 0.9999999 +48 314.0775 317.955 1000 50 0.9998754 +49 317.955 321.8325 1000 50 0.9999765 +50 321.8325 325.71 1000 50 1.0 +51 325.71 329.5875 1000 50 0.99999976 +52 329.5875 333.465 1000 50 0.9999939 +53 333.465 337.3425 1000 50 0.9999995 +54 337.3425 341.21999999999997 1000 50 1.0 +55 341.22 345.0975 1000 50 0.7240751 +56 345.0975 348.975 1000 50 0.9999968 +57 348.975 352.8525 1000 50 0.99680835 +58 352.8525 356.73 1000 50 0.6783742 +59 356.73 360.6075 1000 50 0.9999999 +60 360.6075 364.485 1000 50 0.9999981 +61 364.485 368.3625 1000 50 0.9999994 +62 368.3625 372.24 1000 50 0.9999958 +63 372.24 376.1175 1000 50 0.9999242 +64 376.1175 379.995 1000 50 0.9999999 +65 379.995 383.8725 1000 50 0.9999857 +66 383.8725 387.75 1000 50 0.9999937 +67 387.75 391.6275 1000 50 0.9867295 +68 391.6275 395.505 1000 50 0.9999963 +69 395.505 399.3825 1000 50 0.8992945 +70 399.3825 403.26 1000 50 0.9986035 +71 403.26 407.1375 1000 50 0.9999995 +72 407.1375 411.015 1000 50 1.0 +73 411.015 414.8925 1000 50 0.9999993 +74 414.8925 418.77 1000 50 0.9997584 +75 418.77 422.6475 1000 50 0.99998534 +76 422.6475 426.525 1000 50 1.0 +77 426.525 430.4025 1000 50 1.0 +78 430.4025 434.28 1000 50 0.9995592 +79 434.28 438.15749999999997 1000 50 1.0 +80 438.1575 442.035 1000 50 0.99999535 +81 442.035 445.9125 1000 50 0.9989826 +82 445.9125 449.79 1000 50 0.9999018 +83 449.79 453.6675 1000 50 0.998637 +84 453.6675 457.545 1000 50 1.0 +85 457.545 461.4225 1000 50 1.0 +86 461.4225 465.3 1000 50 0.99949265 +87 465.3 469.1775 1000 50 0.9999989 +88 469.1775 473.055 1000 50 0.9999999 +89 473.055 476.9325 1000 50 0.99997497 +90 476.9325 480.81 1000 50 0.9999114 +91 480.81 484.6875 1000 50 1.0 +92 484.6875 488.565 1000 50 0.9999974 +93 488.565 492.4425 1000 50 1.0 +94 492.4425 496.32 1000 50 0.9963586 +95 496.32 500.1975 1000 50 0.9999999 +96 500.1975 504.075 1000 50 0.99999976 +97 504.075 507.9525 1000 50 0.9999813 +98 507.9525 511.83 1000 50 0.99994457 +99 511.83 515.7075 1000 50 1.0 +100 515.7075 519.585 1000 50 0.9999999 +101 519.585 523.4625000000001 1000 50 0.99997294 +102 523.4625 527.34 1000 50 0.9999925 +103 527.34 531.2175000000001 1000 50 0.99999905 +104 531.2175 535.095 1000 50 0.99996054 +105 535.095 538.9725000000001 1000 50 0.9999598 +106 538.9725 542.85 1000 50 0.999959 +107 542.85 546.7275000000001 1000 50 0.99977463 +108 546.7275 550.605 1000 50 0.9999944 +109 550.605 554.4825000000001 1000 50 0.99934393 +110 554.4825 558.36 1000 50 0.9999999 +111 558.36 562.2375000000001 1000 50 0.99979275 +112 562.2375 566.115 1000 50 0.99999154 +113 566.115 569.9925000000001 1000 50 0.9999999 +114 569.9925 573.87 1000 50 0.99995613 +115 573.87 577.7475000000001 1000 50 0.9999989 +116 577.7475 581.625 1000 50 0.99999905 +117 581.625 585.5025 1000 50 0.9969631 +118 585.5025 589.3800000000001 1000 50 0.9999033 +119 589.38 593.2575 1000 50 0.9999994 +120 593.2575 597.1350000000001 1000 50 0.99999607 +121 597.135 601.0125 1000 50 0.9997762 +122 601.0125 604.8900000000001 1000 50 0.9999999 +123 604.89 608.7675 1000 50 0.9416565 +124 608.7675 612.6450000000001 1000 50 0.9999882 +125 612.645 616.5225 1000 50 0.9999987 +126 616.5225 620.4000000000001 1000 50 0.9998852 +127 620.4 624.2775 1000 50 0.9998235 +128 624.2775 628.1550000000001 1000 50 0.9999145 +129 628.155 632.0325 1000 50 0.9987795 +130 632.0325 635.9100000000001 1000 50 0.9999783 +131 635.91 639.7875 1000 50 0.9905592 +132 639.7875 643.6650000000001 1000 50 0.9993765 +133 643.665 647.5425 1000 50 0.9980835 +134 647.5425 651.4200000000001 1000 50 0.9992483 +135 651.42 655.2975 1000 50 0.9952608 +136 655.2975 659.1750000000001 1000 50 0.9991277 +137 659.175 663.0525 1000 50 0.99999905 +138 663.0525 666.9300000000001 1000 50 0.96891046 +139 666.93 670.8075 1000 50 0.9999994 +140 670.8075 674.6850000000001 1000 50 0.9997962 +141 674.685 678.5625 1000 50 1.0 +142 678.5625 682.44 1000 50 0.9999654 +143 682.44 686.3175000000001 1000 50 0.99769247 +144 686.3175 690.195 1000 50 0.77080095 +145 740.6025 744.48 1000 50 0.53510666 +146 783.255 787.1325 1000 50 0.885157 +147 791.01 794.8875 1000 50 0.93948144 +148 810.3975 814.2750000000001 1000 50 0.807207 +149 814.275 818.1525 1000 50 0.5661324 +150 841.4175 845.2950000000001 1000 50 0.5284284 +151 845.295 849.1725 1000 50 0.9450251 +152 860.805 864.6825 1000 50 0.8409859 +153 876.315 880.1925000000001 1000 50 0.5197947 +154 884.07 887.9475000000001 1000 50 0.99598783 +155 887.9475 891.825 1000 50 0.9999542 +156 891.825 895.7025000000001 1000 50 0.9998969 +157 895.7025 899.58 1000 50 0.99906963 +158 899.58 903.4575000000001 1000 50 0.9999969 +159 903.4575 907.335 1000 50 0.9999995 +160 907.335 911.2125000000001 1000 50 0.99999654 +161 911.2125 915.09 1000 50 1.0 +162 915.09 918.9675000000001 1000 50 0.99997354 +163 918.9675 922.845 1000 50 0.9999999 +164 922.845 926.7225000000001 1000 50 0.99998033 +165 926.7225 930.6 1000 50 0.9995654 +166 930.6 934.4775000000001 1000 50 0.71862924 +167 934.4775 938.355 1000 50 0.996951 +168 938.355 942.2325000000001 1000 50 0.9926796 +169 942.2325 946.11 1000 50 0.99946254 +170 946.11 949.9875000000001 1000 50 0.9981773 +171 949.9875 953.865 1000 50 0.5446611 +172 953.865 957.7425000000001 1000 50 0.9999987 +173 957.7425 961.62 1000 50 0.99999714 +174 965.4975 969.375 1000 50 1.0 +175 969.375 973.2525 1000 50 0.9999664 +176 973.2525 977.1300000000001 1000 50 0.99998856 +177 977.13 981.0075 1000 50 0.9988148 +178 981.0075 984.8850000000001 1000 50 0.9987081 +179 984.885 988.7625 1000 50 0.9999987 +180 988.7625 992.6400000000001 1000 50 0.9999999 +181 992.64 996.5175 1000 50 0.9999285 +182 996.5175 1000.3950000000001 1000 50 0.99141496 +183 1000.395 1004.2725 1000 50 0.99999976 +184 1004.2725 1008.1500000000001 1000 50 0.8699411 +185 1008.15 1012.0275 1000 50 0.9999912 +186 1012.0275 1015.9050000000001 1000 50 0.99996483 +187 1015.905 1019.7825 1000 50 0.90255725 +188 1019.7825 1023.6600000000001 1000 50 1.0 +189 1023.66 1027.5375 1000 50 0.9999882 +190 1027.5375 1031.415 1000 50 0.9943137 +191 1031.415 1035.2925 1000 50 0.9997485 +192 1035.2925 1039.17 1000 50 0.99999964 +193 1039.17 1043.0475000000001 1000 50 0.9999883 +194 1043.0475 1046.925 1000 50 0.9999802 +195 1046.925 1050.8025 1000 50 0.9998919 +196 1050.8025 1054.68 1000 50 0.99999917 +197 1054.68 1058.5575000000001 1000 50 0.9999999 +198 1058.5575 1062.435 1000 50 0.9043745 +199 1062.435 1066.3125 1000 50 0.9999999 +200 1066.3125 1070.19 1000 50 0.99973756 +201 1070.19 1074.0675 1000 50 0.99988246 +202 1074.0675 1077.9450000000002 1000 50 0.9995017 +203 1077.945 1081.8225 1000 50 0.9953284 +204 1081.8225 1085.7 1000 50 0.9999447 +205 1085.7 1089.5775 1000 50 0.99933714 +206 1093.455 1097.3325 1000 50 0.99970824 +207 1097.3325 1101.21 1000 50 0.99788433 +208 1101.21 1105.0875 1000 50 0.99984896 +209 1105.0875 1108.9650000000001 1000 50 0.9999999 +210 1108.965 1112.8425 1000 50 0.9756398 +211 1112.8425 1116.72 1000 50 0.8556507 +212 1116.72 1120.5975 1000 50 1.0 +213 1120.5975 1124.4750000000001 1000 50 0.99999726 +214 1124.475 1128.3525 1000 50 0.99818915 +215 1128.3525 1132.23 1000 50 0.99799734 +216 1132.23 1136.1075 1000 50 0.9999993 +217 1136.1075 1139.9850000000001 1000 50 1.0 +218 1139.985 1143.8625 1000 50 0.9999962 +219 1143.8625 1147.74 1000 50 0.9999386 +220 1147.74 1151.6175 1000 50 0.99999964 +221 1151.6175 1155.4950000000001 1000 50 0.9999907 +222 1155.495 1159.3725 1000 50 0.9999987 +223 1159.3725 1163.25 1000 50 0.9990101 +224 1163.25 1167.1275 1000 50 0.8432112 +225 1167.1275 1171.005 1000 50 0.999997 +226 1171.005 1174.8825000000002 1000 50 0.9999187 +227 1174.8825 1178.76 1000 50 0.747796 +228 1178.76 1182.6375 1000 50 1.0 +229 1182.6375 1186.515 1000 50 0.99997103 +230 1186.515 1190.3925000000002 1000 50 0.99995446 +231 1190.3925 1194.27 1000 50 1.0 +232 1194.27 1198.1475 1000 50 0.9999112 +233 1198.1475 1202.025 1000 50 1.0 +234 1202.025 1205.9025000000001 1000 50 0.9999927 +235 1205.9025 1209.78 1000 50 0.9999993 +236 1209.78 1213.6575 1000 50 0.9999944 +237 1213.6575 1217.535 1000 50 0.9999832 +238 1217.535 1221.4125000000001 1000 50 0.9999999 +239 1221.4125 1225.29 1000 50 1.0 +240 1225.29 1229.1675 1000 50 0.9994947 +241 1229.1675 1233.045 1000 50 0.9999968 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_10-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_10-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..7429c50fba5333c8b88f65e00592d1c158c92d5d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_10-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,80 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999101 +2 3.8775 7.755 1000 50 1.0 +3 7.755 11.6325 1000 50 0.99999166 +4 11.6325 15.51 1000 50 1.0 +5 15.51 19.3875 1000 50 1.0 +6 19.3875 23.265 1000 50 0.99905926 +7 23.265 27.142500000000002 1000 50 0.99992204 +8 27.1425 31.02 1000 50 0.99970263 +9 31.02 34.8975 1000 50 0.9999999 +10 34.8975 38.775 1000 50 1.0 +11 38.775 42.652499999999996 1000 50 0.9994758 +12 42.6525 46.53 1000 50 0.9998356 +13 46.53 50.4075 1000 50 0.9998896 +14 50.4075 54.285 1000 50 0.9999157 +15 54.285 58.162499999999994 1000 50 1.0 +16 58.1625 62.04 1000 50 0.99901855 +17 62.04 65.9175 1000 50 1.0 +18 65.9175 69.795 1000 50 0.99998856 +19 69.795 73.6725 1000 50 0.99999785 +20 73.6725 77.55 1000 50 0.99789846 +21 77.55 81.4275 1000 50 0.9996524 +22 81.4275 85.30499999999999 1000 50 0.9999999 +23 85.305 89.1825 1000 50 0.9991721 +24 89.1825 93.06 1000 50 0.9999696 +25 93.06 96.9375 1000 50 0.999997 +26 96.9375 100.815 1000 50 1.0 +27 100.815 104.6925 1000 50 0.99999416 +28 104.6925 108.57 1000 50 0.99999905 +29 108.57 112.44749999999999 1000 50 0.9998165 +30 112.4475 116.325 1000 50 0.99999356 +31 116.325 120.2025 1000 50 0.99972445 +32 120.2025 124.08 1000 50 0.98820704 +33 124.08 127.9575 1000 50 0.9999999 +34 127.9575 131.835 1000 50 0.9941614 +35 131.835 135.7125 1000 50 0.9999995 +36 135.7125 139.59 1000 50 0.9999995 +37 139.59 143.4675 1000 50 0.9988732 +38 143.4675 147.345 1000 50 0.99999 +39 147.345 151.2225 1000 50 0.99996626 +40 151.2225 155.1 1000 50 0.99999416 +41 155.1 158.9775 1000 50 1.0 +42 158.9775 162.855 1000 50 0.9999529 +43 162.855 166.7325 1000 50 1.0 +44 166.7325 170.60999999999999 1000 50 0.99990463 +45 170.61 174.4875 1000 50 1.0 +46 174.4875 178.365 1000 50 0.99917275 +47 178.365 182.2425 1000 50 0.99987733 +48 182.2425 186.12 1000 50 1.0 +49 186.12 189.9975 1000 50 0.9999392 +50 189.9975 193.875 1000 50 0.99967575 +51 193.875 197.7525 1000 50 1.0 +52 197.7525 201.63 1000 50 0.9950304 +53 201.63 205.5075 1000 50 1.0 +54 205.5075 209.385 1000 50 1.0 +55 209.385 213.2625 1000 50 0.9999999 +56 213.2625 217.14 1000 50 0.9999999 +57 217.14 221.01749999999998 1000 50 0.99995244 +58 221.0175 224.895 1000 50 0.99999845 +59 224.895 228.7725 1000 50 0.99997854 +60 228.7725 232.65 1000 50 1.0 +61 232.65 236.5275 1000 50 0.9996099 +62 236.5275 240.405 1000 50 0.9999999 +63 240.405 244.2825 1000 50 0.9996214 +64 244.2825 248.16 1000 50 0.99999034 +65 248.16 252.0375 1000 50 0.99999666 +66 252.0375 255.915 1000 50 0.99977225 +67 255.915 259.7925 1000 50 0.9999206 +68 259.7925 263.67 1000 50 0.9999974 +69 263.67 267.5475 1000 50 0.999972 +70 267.5475 271.425 1000 50 0.9971716 +71 271.425 275.3025 1000 50 0.87674594 +72 275.3025 279.18 1000 50 0.99999845 +73 279.18 283.0575 1000 50 0.99969125 +74 294.69 298.5675 1000 50 0.5779243 +75 302.445 306.3225 1000 50 0.70113266 +76 310.2 314.0775 1000 50 0.5324845 +77 317.955 321.8325 1000 50 0.63585454 +78 321.8325 325.71 1000 50 0.5226725 +79 329.5875 333.465 1000 50 0.6947397 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_10-09-25_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_10-09-25_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e5b715ce375f3ed2cf4665cb18bddf739a6d8d65 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_10-09-25_annot_2022-11-30_01.txt @@ -0,0 +1,208 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99968815 +2 3.8775 7.755 1000 50 1.0 +3 7.755 11.6325 1000 50 0.9992716 +4 11.6325 15.51 1000 50 0.99887997 +5 15.51 19.3875 1000 50 1.0 +6 19.3875 23.265 1000 50 0.9999999 +7 23.265 27.142500000000002 1000 50 0.9999999 +8 27.1425 31.02 1000 50 0.99922156 +9 31.02 34.8975 1000 50 0.9999994 +10 34.8975 38.775 1000 50 0.99998474 +11 38.775 42.652499999999996 1000 50 0.99950254 +12 42.6525 46.53 1000 50 0.99995065 +13 46.53 50.4075 1000 50 0.999453 +14 50.4075 54.285 1000 50 0.9996222 +15 54.285 58.162499999999994 1000 50 0.9767743 +16 58.1625 62.04 1000 50 1.0 +17 62.04 65.9175 1000 50 0.999998 +18 65.9175 69.795 1000 50 1.0 +19 69.795 73.6725 1000 50 0.9999968 +20 73.6725 77.55 1000 50 0.9999888 +21 77.55 81.4275 1000 50 0.9999989 +22 81.4275 85.30499999999999 1000 50 1.0 +23 85.305 89.1825 1000 50 0.9999999 +24 89.1825 93.06 1000 50 1.0 +25 93.06 96.9375 1000 50 0.9999963 +26 96.9375 100.815 1000 50 0.9999893 +27 100.815 104.6925 1000 50 0.9999906 +28 104.6925 108.57 1000 50 0.99999917 +29 108.57 112.44749999999999 1000 50 1.0 +30 112.4475 116.325 1000 50 0.9999416 +31 116.325 120.2025 1000 50 0.9999994 +32 120.2025 124.08 1000 50 0.99999976 +33 124.08 127.9575 1000 50 0.98897845 +34 127.9575 131.835 1000 50 0.999979 +35 131.835 135.7125 1000 50 0.9863164 +36 135.7125 139.59 1000 50 0.99999857 +37 139.59 143.4675 1000 50 0.99995756 +38 147.345 151.2225 1000 50 0.9999831 +39 151.2225 155.1 1000 50 1.0 +40 155.1 158.9775 1000 50 0.99999964 +41 158.9775 162.855 1000 50 1.0 +42 162.855 166.7325 1000 50 0.9999999 +43 166.7325 170.60999999999999 1000 50 1.0 +44 170.61 174.4875 1000 50 0.99999905 +45 174.4875 178.365 1000 50 0.9999894 +46 178.365 182.2425 1000 50 1.0 +47 182.2425 186.12 1000 50 0.99997365 +48 186.12 189.9975 1000 50 0.9999999 +49 189.9975 193.875 1000 50 0.9999999 +50 193.875 197.7525 1000 50 1.0 +51 197.7525 201.63 1000 50 0.99723923 +52 201.63 205.5075 1000 50 0.9999995 +53 205.5075 209.385 1000 50 0.99996376 +54 209.385 213.2625 1000 50 0.9987649 +55 213.2625 217.14 1000 50 0.99999976 +56 217.14 221.01749999999998 1000 50 0.99983275 +57 221.0175 224.895 1000 50 0.99999595 +58 224.895 228.7725 1000 50 0.99990463 +59 228.7725 232.65 1000 50 0.9994537 +60 232.65 236.5275 1000 50 0.99960905 +61 236.5275 240.405 1000 50 0.9793068 +62 240.405 244.2825 1000 50 0.99701333 +63 244.2825 248.16 1000 50 0.9890998 +64 248.16 252.0375 1000 50 0.99997175 +65 252.0375 255.915 1000 50 0.99998546 +66 255.915 259.7925 1000 50 0.9999926 +67 259.7925 263.67 1000 50 1.0 +68 263.67 267.5475 1000 50 0.999876 +69 267.5475 271.425 1000 50 0.9999722 +70 271.425 275.3025 1000 50 0.9999894 +71 275.3025 279.18 1000 50 0.9420024 +72 279.18 283.0575 1000 50 0.98348975 +73 283.0575 286.935 1000 50 0.99998 +74 286.935 290.8125 1000 50 0.9999999 +75 290.8125 294.69 1000 50 0.9871049 +76 294.69 298.5675 1000 50 1.0 +77 298.5675 302.445 1000 50 0.99770015 +78 302.445 306.3225 1000 50 0.99999833 +79 306.3225 310.2 1000 50 0.99925536 +80 310.2 314.0775 1000 50 0.99998426 +81 314.0775 317.955 1000 50 0.997969 +82 321.8325 325.71 1000 50 0.7585335 +83 325.71 329.5875 1000 50 0.9111641 +84 329.5875 333.465 1000 50 0.79252017 +85 333.465 337.3425 1000 50 0.69624096 +86 341.22 345.0975 1000 50 0.5843048 +87 345.0975 348.975 1000 50 0.63642055 +88 356.73 360.6075 1000 50 0.56320405 +89 376.1175 379.995 1000 50 0.67210674 +90 379.995 383.8725 1000 50 0.69884855 +91 399.3825 403.26 1000 50 0.90515107 +92 403.26 407.1375 1000 50 0.50730133 +93 411.015 414.8925 1000 50 0.7522116 +94 426.525 430.4025 1000 50 0.7743659 +95 457.545 461.4225 1000 50 0.7084682 +96 484.6875 488.565 1000 50 0.696424 +97 500.1975 504.075 1000 50 0.51211333 +98 504.075 507.9525 1000 50 0.62997115 +99 515.7075 519.585 1000 50 0.98751175 +100 519.585 523.4625000000001 1000 50 0.99993587 +101 523.4625 527.34 1000 50 0.60233295 +102 527.34 531.2175000000001 1000 50 0.99855334 +103 531.2175 535.095 1000 50 0.9996363 +104 538.9725 542.85 1000 50 0.9676482 +105 542.85 546.7275000000001 1000 50 0.99990356 +106 546.7275 550.605 1000 50 0.81158143 +107 550.605 554.4825000000001 1000 50 1.0 +108 554.4825 558.36 1000 50 0.9898112 +109 558.36 562.2375000000001 1000 50 0.9998989 +110 562.2375 566.115 1000 50 0.9982627 +111 566.115 569.9925000000001 1000 50 0.99989593 +112 569.9925 573.87 1000 50 1.0 +113 573.87 577.7475000000001 1000 50 0.9978759 +114 577.7475 581.625 1000 50 0.97585154 +115 581.625 585.5025 1000 50 0.99999917 +116 585.5025 589.3800000000001 1000 50 0.9986261 +117 589.38 593.2575 1000 50 0.99992096 +118 593.2575 597.1350000000001 1000 50 0.9999999 +119 597.135 601.0125 1000 50 0.99992454 +120 601.0125 604.8900000000001 1000 50 0.9789348 +121 604.89 608.7675 1000 50 1.0 +122 608.7675 612.6450000000001 1000 50 0.9998437 +123 612.645 616.5225 1000 50 0.97037864 +124 616.5225 620.4000000000001 1000 50 0.9999999 +125 620.4 624.2775 1000 50 0.99998784 +126 624.2775 628.1550000000001 1000 50 1.0 +127 628.155 632.0325 1000 50 0.99999857 +128 632.0325 635.9100000000001 1000 50 0.9999993 +129 635.91 639.7875 1000 50 1.0 +130 639.7875 643.6650000000001 1000 50 0.99993277 +131 643.665 647.5425 1000 50 0.99952304 +132 647.5425 651.4200000000001 1000 50 0.9999982 +133 651.42 655.2975 1000 50 0.9998902 +134 655.2975 659.1750000000001 1000 50 0.9996191 +135 659.175 663.0525 1000 50 0.99999964 +136 663.0525 666.9300000000001 1000 50 0.9999844 +137 666.93 670.8075 1000 50 0.9993204 +138 670.8075 674.6850000000001 1000 50 1.0 +139 674.685 678.5625 1000 50 0.999446 +140 678.5625 682.44 1000 50 1.0 +141 682.44 686.3175000000001 1000 50 0.99998856 +142 686.3175 690.195 1000 50 0.9999329 +143 690.195 694.0725000000001 1000 50 1.0 +144 694.0725 697.95 1000 50 0.9995515 +145 697.95 701.8275000000001 1000 50 0.9996302 +146 701.8275 705.705 1000 50 0.99998605 +147 705.705 709.5825000000001 1000 50 0.9999044 +148 709.5825 713.46 1000 50 0.9999949 +149 713.46 717.3375000000001 1000 50 1.0 +150 717.3375 721.215 1000 50 0.99998534 +151 721.215 725.0925000000001 1000 50 0.99998426 +152 725.0925 728.97 1000 50 0.9999826 +153 728.97 732.8475000000001 1000 50 0.99999344 +154 732.8475 736.725 1000 50 0.9999999 +155 736.725 740.6025000000001 1000 50 0.8725836 +156 740.6025 744.48 1000 50 0.9999776 +157 744.48 748.3575000000001 1000 50 0.9999999 +158 748.3575 752.235 1000 50 0.99999857 +159 752.235 756.1125000000001 1000 50 0.9999994 +160 756.1125 759.99 1000 50 0.99978215 +161 759.99 763.8675000000001 1000 50 1.0 +162 763.8675 767.745 1000 50 0.99999976 +163 767.745 771.6225000000001 1000 50 0.99996305 +164 771.6225 775.5 1000 50 0.9999094 +165 775.5 779.3775 1000 50 0.99967706 +166 779.3775 783.2550000000001 1000 50 0.99999285 +167 783.255 787.1325 1000 50 0.9999484 +168 787.1325 791.0100000000001 1000 50 0.9995497 +169 791.01 794.8875 1000 50 0.9998615 +170 794.8875 798.7650000000001 1000 50 0.99983 +171 798.765 802.6425 1000 50 0.99999964 +172 802.6425 806.5200000000001 1000 50 0.9999739 +173 806.52 810.3975 1000 50 0.9999999 +174 810.3975 814.2750000000001 1000 50 1.0 +175 814.275 818.1525 1000 50 0.99822074 +176 818.1525 822.0300000000001 1000 50 0.99999475 +177 822.03 825.9075 1000 50 0.9998704 +178 825.9075 829.7850000000001 1000 50 0.99978405 +179 829.785 833.6625 1000 50 1.0 +180 833.6625 837.5400000000001 1000 50 1.0 +181 837.54 841.4175 1000 50 0.99999714 +182 841.4175 845.2950000000001 1000 50 0.99999976 +183 845.295 849.1725 1000 50 0.9990038 +184 849.1725 853.0500000000001 1000 50 1.0 +185 853.05 856.9275 1000 50 1.0 +186 856.9275 860.8050000000001 1000 50 0.9996207 +187 860.805 864.6825 1000 50 0.9999771 +188 864.6825 868.5600000000001 1000 50 0.9999995 +189 868.56 872.4375 1000 50 0.99999976 +190 872.4375 876.315 1000 50 1.0 +191 876.315 880.1925000000001 1000 50 0.9999999 +192 880.1925 884.07 1000 50 0.9999987 +193 884.07 887.9475000000001 1000 50 0.9999999 +194 887.9475 891.825 1000 50 0.9992005 +195 891.825 895.7025000000001 1000 50 0.99999106 +196 895.7025 899.58 1000 50 0.9999771 +197 899.58 903.4575000000001 1000 50 0.9998103 +198 903.4575 907.335 1000 50 1.0 +199 907.335 911.2125000000001 1000 50 1.0 +200 911.2125 915.09 1000 50 0.9997986 +201 915.09 918.9675000000001 1000 50 1.0 +202 918.9675 922.845 1000 50 0.99998903 +203 922.845 926.7225000000001 1000 50 0.999982 +204 926.7225 930.6 1000 50 1.0 +205 930.6 934.4775000000001 1000 50 0.99951196 +206 934.4775 938.355 1000 50 1.0 +207 938.355 942.2325000000001 1000 50 0.99983084 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_11-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_11-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..adbbaf035d5c177f6da6e5fc26dfbf296705a14c --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_11-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,134 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9921897 +2 3.8775 7.755 1000 50 0.999998 +3 7.755 11.6325 1000 50 0.99474853 +4 11.6325 15.51 1000 50 0.9999645 +5 15.51 19.3875 1000 50 1.0 +6 19.3875 23.265 1000 50 0.9840061 +7 23.265 27.142500000000002 1000 50 0.99999976 +8 27.1425 31.02 1000 50 0.9995322 +9 31.02 34.8975 1000 50 1.0 +10 34.8975 38.775 1000 50 0.999699 +11 38.775 42.652499999999996 1000 50 1.0 +12 42.6525 46.53 1000 50 0.99970967 +13 46.53 50.4075 1000 50 0.99998236 +14 50.4075 54.285 1000 50 0.58699286 +15 54.285 58.162499999999994 1000 50 0.71080786 +16 58.1625 62.04 1000 50 0.7651589 +17 69.795 73.6725 1000 50 0.5246324 +18 73.6725 77.55 1000 50 0.7163362 +19 89.1825 93.06 1000 50 0.5799376 +20 93.06 96.9375 1000 50 0.5286967 +21 100.815 104.6925 1000 50 0.5277896 +22 108.57 112.44749999999999 1000 50 0.5428342 +23 120.2025 124.08 1000 50 0.5123382 +24 124.08 127.9575 1000 50 0.84660846 +25 127.9575 131.835 1000 50 0.52453065 +26 131.835 135.7125 1000 50 0.9336767 +27 135.7125 139.59 1000 50 0.73244387 +28 151.2225 155.1 1000 50 0.7994678 +29 158.9775 162.855 1000 50 0.5713038 +30 166.7325 170.60999999999999 1000 50 0.778667 +31 170.61 174.4875 1000 50 0.8061041 +32 174.4875 178.365 1000 50 0.775689 +33 178.365 182.2425 1000 50 0.57683307 +34 186.12 189.9975 1000 50 0.5309119 +35 189.9975 193.875 1000 50 0.8526906 +36 217.14 221.01749999999998 1000 50 0.57842547 +37 232.65 236.5275 1000 50 0.71957666 +38 248.16 252.0375 1000 50 0.56611174 +39 259.7925 263.67 1000 50 0.99984837 +40 263.67 267.5475 1000 50 0.7223812 +41 267.5475 271.425 1000 50 0.6562076 +42 271.425 275.3025 1000 50 0.99975985 +43 275.3025 279.18 1000 50 0.74705297 +44 279.18 283.0575 1000 50 0.6173646 +45 283.0575 286.935 1000 50 0.9970341 +46 290.8125 294.69 1000 50 0.99998415 +47 294.69 298.5675 1000 50 0.99978334 +48 302.445 306.3225 1000 50 1.0 +49 306.3225 310.2 1000 50 0.9978509 +50 310.2 314.0775 1000 50 0.99999607 +51 314.0775 317.955 1000 50 1.0 +52 317.955 321.8325 1000 50 0.9999927 +53 321.8325 325.71 1000 50 0.99983203 +54 325.71 329.5875 1000 50 0.99999547 +55 329.5875 333.465 1000 50 0.9999982 +56 333.465 337.3425 1000 50 0.99999857 +57 337.3425 341.21999999999997 1000 50 0.99998426 +58 341.22 345.0975 1000 50 0.99999905 +59 345.0975 348.975 1000 50 0.9999945 +60 348.975 352.8525 1000 50 0.99320215 +61 352.8525 356.73 1000 50 0.99999964 +62 356.73 360.6075 1000 50 0.9999989 +63 360.6075 364.485 1000 50 1.0 +64 364.485 368.3625 1000 50 0.9999615 +65 368.3625 372.24 1000 50 0.99999595 +66 372.24 376.1175 1000 50 0.9979596 +67 376.1175 379.995 1000 50 0.893481 +68 379.995 383.8725 1000 50 0.9999995 +69 383.8725 387.75 1000 50 0.9998307 +70 387.75 391.6275 1000 50 0.99988914 +71 391.6275 395.505 1000 50 0.99998903 +72 395.505 399.3825 1000 50 0.9999987 +73 399.3825 403.26 1000 50 0.9999945 +74 407.1375 411.015 1000 50 1.0 +75 411.015 414.8925 1000 50 0.99999785 +76 414.8925 418.77 1000 50 1.0 +77 418.77 422.6475 1000 50 0.9999999 +78 422.6475 426.525 1000 50 0.9999895 +79 426.525 430.4025 1000 50 1.0 +80 430.4025 434.28 1000 50 0.9999682 +81 434.28 438.15749999999997 1000 50 0.9999995 +82 438.1575 442.035 1000 50 0.99999905 +83 442.035 445.9125 1000 50 0.9999423 +84 445.9125 449.79 1000 50 0.9999784 +85 449.79 453.6675 1000 50 0.9994223 +86 453.6675 457.545 1000 50 0.9995939 +87 457.545 461.4225 1000 50 0.9977939 +88 461.4225 465.3 1000 50 1.0 +89 465.3 469.1775 1000 50 0.99996305 +90 469.1775 473.055 1000 50 1.0 +91 476.9325 480.81 1000 50 0.99999344 +92 480.81 484.6875 1000 50 0.9999975 +93 484.6875 488.565 1000 50 0.99983716 +94 488.565 492.4425 1000 50 0.99996376 +95 492.4425 496.32 1000 50 0.999961 +96 496.32 500.1975 1000 50 0.9999999 +97 500.1975 504.075 1000 50 1.0 +98 504.075 507.9525 1000 50 0.99993503 +99 507.9525 511.83 1000 50 0.9999255 +100 511.83 515.7075 1000 50 1.0 +101 515.7075 519.585 1000 50 0.99994886 +102 519.585 523.4625000000001 1000 50 0.9999232 +103 523.4625 527.34 1000 50 0.9999999 +104 527.34 531.2175000000001 1000 50 0.9999716 +105 531.2175 535.095 1000 50 0.9999995 +106 535.095 538.9725000000001 1000 50 0.99999726 +107 538.9725 542.85 1000 50 0.9999825 +108 542.85 546.7275000000001 1000 50 1.0 +109 546.7275 550.605 1000 50 0.9955649 +110 550.605 554.4825000000001 1000 50 1.0 +111 554.4825 558.36 1000 50 0.9999833 +112 558.36 562.2375000000001 1000 50 0.9998354 +113 562.2375 566.115 1000 50 1.0 +114 566.115 569.9925000000001 1000 50 0.99999726 +115 569.9925 573.87 1000 50 1.0 +116 573.87 577.7475000000001 1000 50 0.9999654 +117 577.7475 581.625 1000 50 0.99999714 +118 581.625 585.5025 1000 50 0.99999964 +119 585.5025 589.3800000000001 1000 50 0.9998037 +120 589.38 593.2575 1000 50 0.99999535 +121 593.2575 597.1350000000001 1000 50 0.99940586 +122 597.135 601.0125 1000 50 0.99991107 +123 601.0125 604.8900000000001 1000 50 0.9999764 +124 604.89 608.7675 1000 50 0.9024983 +125 608.7675 612.6450000000001 1000 50 0.9999969 +126 612.645 616.5225 1000 50 0.999956 +127 616.5225 620.4000000000001 1000 50 0.9803049 +128 620.4 624.2775 1000 50 0.99999785 +129 624.2775 628.1550000000001 1000 50 0.99996233 +130 628.155 632.0325 1000 50 0.9998641 +131 632.0325 635.9100000000001 1000 50 0.9997571 +132 635.91 639.7875 1000 50 0.9999732 +133 639.7875 643.6650000000001 1000 50 0.92595255 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_11-14-22_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_11-14-22_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..477f2b7d8b4d69bbe4818cd034336885b7bc1998 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_11-14-22_annot_2022-11-30_01.txt @@ -0,0 +1,136 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 1.0 +2 3.8775 7.755 1000 50 0.88711566 +3 7.755 11.6325 1000 50 0.99999166 +4 11.6325 15.51 1000 50 0.9998672 +5 15.51 19.3875 1000 50 0.5985854 +6 23.265 27.142500000000002 1000 50 0.93725526 +7 27.1425 31.02 1000 50 0.99999976 +8 31.02 34.8975 1000 50 0.99998903 +9 34.8975 38.775 1000 50 0.99997735 +10 38.775 42.652499999999996 1000 50 0.9999894 +11 42.6525 46.53 1000 50 0.9987746 +12 46.53 50.4075 1000 50 0.9999654 +13 50.4075 54.285 1000 50 0.9999627 +14 54.285 58.162499999999994 1000 50 0.51357466 +15 58.1625 62.04 1000 50 0.9999913 +16 62.04 65.9175 1000 50 0.9999964 +17 65.9175 69.795 1000 50 0.9387144 +18 69.795 73.6725 1000 50 0.999923 +19 73.6725 77.55 1000 50 0.9999999 +20 81.4275 85.30499999999999 1000 50 1.0 +21 85.305 89.1825 1000 50 0.94227636 +22 89.1825 93.06 1000 50 0.99999905 +23 93.06 96.9375 1000 50 1.0 +24 96.9375 100.815 1000 50 0.9238537 +25 100.815 104.6925 1000 50 1.0 +26 104.6925 108.57 1000 50 0.99999464 +27 108.57 112.44749999999999 1000 50 0.9999298 +28 112.4475 116.325 1000 50 1.0 +29 116.325 120.2025 1000 50 0.9999218 +30 120.2025 124.08 1000 50 0.9966859 +31 124.08 127.9575 1000 50 1.0 +32 127.9575 131.835 1000 50 0.99986243 +33 131.835 135.7125 1000 50 0.9995987 +34 135.7125 139.59 1000 50 1.0 +35 139.59 143.4675 1000 50 0.9923701 +36 143.4675 147.345 1000 50 1.0 +37 147.345 151.2225 1000 50 0.9997433 +38 151.2225 155.1 1000 50 0.8513641 +39 155.1 158.9775 1000 50 0.99999917 +40 158.9775 162.855 1000 50 0.99996674 +41 162.855 166.7325 1000 50 0.99997437 +42 166.7325 170.60999999999999 1000 50 0.9999999 +43 170.61 174.4875 1000 50 0.99969375 +44 178.365 182.2425 1000 50 1.0 +45 182.2425 186.12 1000 50 0.99999845 +46 186.12 189.9975 1000 50 1.0 +47 189.9975 193.875 1000 50 0.9998833 +48 193.875 197.7525 1000 50 0.99998724 +49 197.7525 201.63 1000 50 1.0 +50 201.63 205.5075 1000 50 0.99999976 +51 205.5075 209.385 1000 50 0.99997306 +52 209.385 213.2625 1000 50 0.9999956 +53 213.2625 217.14 1000 50 0.99999964 +54 217.14 221.01749999999998 1000 50 0.99996865 +55 221.0175 224.895 1000 50 0.99999416 +56 224.895 228.7725 1000 50 0.9999865 +57 228.7725 232.65 1000 50 0.99997425 +58 232.65 236.5275 1000 50 1.0 +59 236.5275 240.405 1000 50 0.9999759 +60 240.405 244.2825 1000 50 1.0 +61 244.2825 248.16 1000 50 0.99999964 +62 248.16 252.0375 1000 50 0.9999932 +63 252.0375 255.915 1000 50 1.0 +64 255.915 259.7925 1000 50 1.0 +65 259.7925 263.67 1000 50 0.99999774 +66 263.67 267.5475 1000 50 0.9998274 +67 267.5475 271.425 1000 50 0.9999863 +68 271.425 275.3025 1000 50 0.9999598 +69 275.3025 279.18 1000 50 1.0 +70 279.18 283.0575 1000 50 0.9993647 +71 283.0575 286.935 1000 50 0.99995625 +72 286.935 290.8125 1000 50 0.8797494 +73 290.8125 294.69 1000 50 0.9999944 +74 294.69 298.5675 1000 50 1.0 +75 298.5675 302.445 1000 50 0.99999356 +76 302.445 306.3225 1000 50 1.0 +77 306.3225 310.2 1000 50 0.9999924 +78 310.2 314.0775 1000 50 0.9999999 +79 314.0775 317.955 1000 50 0.99999976 +80 317.955 321.8325 1000 50 1.0 +81 321.8325 325.71 1000 50 1.0 +82 325.71 329.5875 1000 50 1.0 +83 329.5875 333.465 1000 50 1.0 +84 333.465 337.3425 1000 50 0.9938498 +85 337.3425 341.21999999999997 1000 50 0.9999896 +86 341.22 345.0975 1000 50 1.0 +87 345.0975 348.975 1000 50 0.9996487 +88 348.975 352.8525 1000 50 0.99998856 +89 352.8525 356.73 1000 50 0.99915016 +90 356.73 360.6075 1000 50 0.99999225 +91 360.6075 364.485 1000 50 0.9999995 +92 364.485 368.3625 1000 50 0.98796624 +93 368.3625 372.24 1000 50 0.9999987 +94 372.24 376.1175 1000 50 0.999524 +95 376.1175 379.995 1000 50 0.9922873 +96 379.995 383.8725 1000 50 0.9999949 +97 383.8725 387.75 1000 50 0.99996984 +98 387.75 391.6275 1000 50 0.999979 +99 391.6275 395.505 1000 50 0.9999206 +100 395.505 399.3825 1000 50 1.0 +101 399.3825 403.26 1000 50 0.9169498 +102 403.26 407.1375 1000 50 0.9994223 +103 407.1375 411.015 1000 50 0.997156 +104 411.015 414.8925 1000 50 0.9999981 +105 414.8925 418.77 1000 50 0.99688244 +106 418.77 422.6475 1000 50 0.9992435 +107 422.6475 426.525 1000 50 0.9999385 +108 426.525 430.4025 1000 50 0.99946374 +109 430.4025 434.28 1000 50 0.9998313 +110 434.28 438.15749999999997 1000 50 0.99999976 +111 438.1575 442.035 1000 50 0.9998566 +112 442.035 445.9125 1000 50 0.99999976 +113 445.9125 449.79 1000 50 0.99723417 +114 449.79 453.6675 1000 50 0.9998796 +115 453.6675 457.545 1000 50 0.9999807 +116 457.545 461.4225 1000 50 0.9999778 +117 461.4225 465.3 1000 50 0.99950457 +118 465.3 469.1775 1000 50 0.9999896 +119 469.1775 473.055 1000 50 0.99995697 +120 473.055 476.9325 1000 50 0.99999976 +121 476.9325 480.81 1000 50 0.9996668 +122 480.81 484.6875 1000 50 1.0 +123 484.6875 488.565 1000 50 0.99998915 +124 492.4425 496.32 1000 50 0.9634933 +125 500.1975 504.075 1000 50 0.5777895 +126 504.075 507.9525 1000 50 0.61295396 +127 515.7075 519.585 1000 50 0.60452235 +128 519.585 523.4625000000001 1000 50 0.59058595 +129 535.095 538.9725000000001 1000 50 0.60182685 +130 550.605 554.4825000000001 1000 50 0.88740927 +131 558.36 562.2375000000001 1000 50 0.9079562 +132 589.38 593.2575 1000 50 0.5442 +133 601.0125 604.8900000000001 1000 50 0.59559983 +134 604.89 608.7675 1000 50 0.9444987 +135 624.2775 628.1550000000001 1000 50 0.5131954 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_12-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_12-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..282bb3547a2bd9b2131ebc8c9fe452f18188a3f2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_12-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,198 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.51974267 +2 23.265 27.142500000000002 1000 50 0.6146562 +3 34.8975 38.775 1000 50 0.5471937 +4 46.53 50.4075 1000 50 0.60785913 +5 50.4075 54.285 1000 50 0.5333955 +6 58.1625 62.04 1000 50 0.6751109 +7 65.9175 69.795 1000 50 0.99997544 +8 69.795 73.6725 1000 50 0.99916136 +9 73.6725 77.55 1000 50 0.9999759 +10 77.55 81.4275 1000 50 0.99999404 +11 81.4275 85.30499999999999 1000 50 0.99999845 +12 85.305 89.1825 1000 50 0.9981468 +13 89.1825 93.06 1000 50 0.9999949 +14 93.06 96.9375 1000 50 0.99917275 +15 96.9375 100.815 1000 50 0.9893105 +16 100.815 104.6925 1000 50 0.8682737 +17 104.6925 108.57 1000 50 0.9998235 +18 108.57 112.44749999999999 1000 50 0.5464945 +19 112.4475 116.325 1000 50 0.9999081 +20 116.325 120.2025 1000 50 0.99999726 +21 120.2025 124.08 1000 50 0.923386 +22 124.08 127.9575 1000 50 0.99995196 +23 127.9575 131.835 1000 50 0.99999976 +24 131.835 135.7125 1000 50 0.65971565 +25 135.7125 139.59 1000 50 0.99111474 +26 139.59 143.4675 1000 50 0.9995492 +27 143.4675 147.345 1000 50 0.98973 +28 147.345 151.2225 1000 50 0.99993 +29 151.2225 155.1 1000 50 0.9999963 +30 155.1 158.9775 1000 50 0.99960667 +31 158.9775 162.855 1000 50 1.0 +32 162.855 166.7325 1000 50 0.9999865 +33 166.7325 170.60999999999999 1000 50 0.99999225 +34 170.61 174.4875 1000 50 1.0 +35 174.4875 178.365 1000 50 1.0 +36 178.365 182.2425 1000 50 0.5924366 +37 182.2425 186.12 1000 50 0.99999976 +38 186.12 189.9975 1000 50 0.99998283 +39 189.9975 193.875 1000 50 0.99108666 +40 193.875 197.7525 1000 50 1.0 +41 197.7525 201.63 1000 50 0.9999999 +42 201.63 205.5075 1000 50 0.9999999 +43 205.5075 209.385 1000 50 0.9998273 +44 209.385 213.2625 1000 50 0.9999994 +45 213.2625 217.14 1000 50 0.9979631 +46 217.14 221.01749999999998 1000 50 0.9999982 +47 221.0175 224.895 1000 50 0.99525934 +48 224.895 228.7725 1000 50 0.99673045 +49 228.7725 232.65 1000 50 0.99981683 +50 232.65 236.5275 1000 50 0.9999999 +51 236.5275 240.405 1000 50 0.9999944 +52 240.405 244.2825 1000 50 0.99999976 +53 244.2825 248.16 1000 50 0.99987984 +54 248.16 252.0375 1000 50 0.98006654 +55 252.0375 255.915 1000 50 0.9999926 +56 255.915 259.7925 1000 50 0.99999845 +57 259.7925 263.67 1000 50 0.99999976 +58 263.67 267.5475 1000 50 0.9999999 +59 267.5475 271.425 1000 50 0.99999964 +60 271.425 275.3025 1000 50 0.99999845 +61 275.3025 279.18 1000 50 1.0 +62 279.18 283.0575 1000 50 1.0 +63 283.0575 286.935 1000 50 0.99999976 +64 286.935 290.8125 1000 50 1.0 +65 290.8125 294.69 1000 50 0.9999896 +66 294.69 298.5675 1000 50 1.0 +67 298.5675 302.445 1000 50 0.99999654 +68 302.445 306.3225 1000 50 0.9999994 +69 306.3225 310.2 1000 50 0.9890808 +70 310.2 314.0775 1000 50 0.99999404 +71 314.0775 317.955 1000 50 0.99999964 +72 317.955 321.8325 1000 50 0.9999994 +73 321.8325 325.71 1000 50 0.9344965 +74 325.71 329.5875 1000 50 0.94784194 +75 329.5875 333.465 1000 50 0.99986506 +76 333.465 337.3425 1000 50 0.9999999 +77 337.3425 341.21999999999997 1000 50 0.99898833 +78 341.22 345.0975 1000 50 0.9999733 +79 345.0975 348.975 1000 50 0.998725 +80 348.975 352.8525 1000 50 0.99989915 +81 352.8525 356.73 1000 50 0.99999714 +82 356.73 360.6075 1000 50 0.99836797 +83 360.6075 364.485 1000 50 0.9997366 +84 364.485 368.3625 1000 50 0.99996483 +85 368.3625 372.24 1000 50 0.9561197 +86 372.24 376.1175 1000 50 0.999742 +87 376.1175 379.995 1000 50 0.9999089 +88 379.995 383.8725 1000 50 0.9999999 +89 383.8725 387.75 1000 50 0.99999917 +90 387.75 391.6275 1000 50 0.9999994 +91 391.6275 395.505 1000 50 0.99997675 +92 395.505 399.3825 1000 50 0.9900501 +93 399.3825 403.26 1000 50 0.9999964 +94 403.26 407.1375 1000 50 0.99921286 +95 407.1375 411.015 1000 50 0.99998665 +96 411.015 414.8925 1000 50 0.999734 +97 414.8925 418.77 1000 50 0.99999964 +98 418.77 422.6475 1000 50 0.99997103 +99 422.6475 426.525 1000 50 1.0 +100 426.525 430.4025 1000 50 0.99991596 +101 430.4025 434.28 1000 50 0.9999542 +102 434.28 438.15749999999997 1000 50 0.9352135 +103 438.1575 442.035 1000 50 0.9989573 +104 442.035 445.9125 1000 50 0.99998295 +105 445.9125 449.79 1000 50 0.9950016 +106 449.79 453.6675 1000 50 0.99972373 +107 453.6675 457.545 1000 50 0.99646723 +108 457.545 461.4225 1000 50 0.9999168 +109 461.4225 465.3 1000 50 0.99726343 +110 465.3 469.1775 1000 50 0.99999774 +111 469.1775 473.055 1000 50 0.9925609 +112 473.055 476.9325 1000 50 0.9207002 +113 488.565 492.4425 1000 50 0.7173401 +114 504.075 507.9525 1000 50 0.679421 +115 523.4625 527.34 1000 50 0.7002735 +116 531.2175 535.095 1000 50 0.7640772 +117 538.9725 542.85 1000 50 0.68474984 +118 554.4825 558.36 1000 50 0.9081167 +119 566.115 569.9925000000001 1000 50 0.66198355 +120 593.2575 597.1350000000001 1000 50 0.80363655 +121 597.135 601.0125 1000 50 0.6859453 +122 608.7675 612.6450000000001 1000 50 0.6315616 +123 624.2775 628.1550000000001 1000 50 0.6070126 +124 628.155 632.0325 1000 50 0.50296 +125 643.665 647.5425 1000 50 0.99712473 +126 651.42 655.2975 1000 50 0.79015994 +127 659.175 663.0525 1000 50 0.9873089 +128 666.93 670.8075 1000 50 0.7851771 +129 670.8075 674.6850000000001 1000 50 0.6553162 +130 674.685 678.5625 1000 50 0.9999807 +131 682.44 686.3175000000001 1000 50 0.98736364 +132 686.3175 690.195 1000 50 0.9907952 +133 690.195 694.0725000000001 1000 50 0.57778394 +134 694.0725 697.95 1000 50 0.99999845 +135 697.95 701.8275000000001 1000 50 0.999974 +136 701.8275 705.705 1000 50 0.6093377 +137 705.705 709.5825000000001 1000 50 0.99992526 +138 709.5825 713.46 1000 50 0.9999969 +139 713.46 717.3375000000001 1000 50 0.56323487 +140 717.3375 721.215 1000 50 0.9999951 +141 721.215 725.0925000000001 1000 50 0.9991591 +142 725.0925 728.97 1000 50 0.99999976 +143 728.97 732.8475000000001 1000 50 0.99302155 +144 732.8475 736.725 1000 50 0.99987376 +145 736.725 740.6025000000001 1000 50 0.99969125 +146 740.6025 744.48 1000 50 0.9999796 +147 744.48 748.3575000000001 1000 50 0.99994063 +148 748.3575 752.235 1000 50 0.99999547 +149 752.235 756.1125000000001 1000 50 0.99997663 +150 756.1125 759.99 1000 50 0.9999989 +151 759.99 763.8675000000001 1000 50 1.0 +152 763.8675 767.745 1000 50 0.99987614 +153 767.745 771.6225000000001 1000 50 0.9999999 +154 771.6225 775.5 1000 50 0.99999225 +155 775.5 779.3775 1000 50 0.9999993 +156 779.3775 783.2550000000001 1000 50 1.0 +157 783.255 787.1325 1000 50 0.9999995 +158 787.1325 791.0100000000001 1000 50 0.99999785 +159 791.01 794.8875 1000 50 1.0 +160 794.8875 798.7650000000001 1000 50 0.9999944 +161 798.765 802.6425 1000 50 0.9999994 +162 802.6425 806.5200000000001 1000 50 0.99959 +163 806.52 810.3975 1000 50 0.99935716 +164 810.3975 814.2750000000001 1000 50 0.9999999 +165 814.275 818.1525 1000 50 1.0 +166 818.1525 822.0300000000001 1000 50 0.9999132 +167 822.03 825.9075 1000 50 0.9999988 +168 825.9075 829.7850000000001 1000 50 0.99974996 +169 829.785 833.6625 1000 50 0.99995315 +170 833.6625 837.5400000000001 1000 50 0.9999999 +171 837.54 841.4175 1000 50 0.99999845 +172 841.4175 845.2950000000001 1000 50 0.999948 +173 845.295 849.1725 1000 50 1.0 +174 849.1725 853.0500000000001 1000 50 0.9999995 +175 856.9275 860.8050000000001 1000 50 1.0 +176 860.805 864.6825 1000 50 0.9996474 +177 864.6825 868.5600000000001 1000 50 0.99999905 +178 868.56 872.4375 1000 50 0.9999974 +179 872.4375 876.315 1000 50 0.99993336 +180 876.315 880.1925000000001 1000 50 1.0 +181 880.1925 884.07 1000 50 0.99999905 +182 884.07 887.9475000000001 1000 50 0.9999999 +183 887.9475 891.825 1000 50 0.9999988 +184 891.825 895.7025000000001 1000 50 0.9999826 +185 895.7025 899.58 1000 50 0.99945074 +186 899.58 903.4575000000001 1000 50 0.9999999 +187 903.4575 907.335 1000 50 0.99999833 +188 907.335 911.2125000000001 1000 50 0.9964443 +189 911.2125 915.09 1000 50 1.0 +190 915.09 918.9675000000001 1000 50 0.99960333 +191 918.9675 922.845 1000 50 0.9999982 +192 922.845 926.7225000000001 1000 50 1.0 +193 926.7225 930.6 1000 50 0.9999527 +194 930.6 934.4775000000001 1000 50 0.9999988 +195 934.4775 938.355 1000 50 0.999985 +196 938.355 942.2325000000001 1000 50 0.99999917 +197 942.2325 946.11 1000 50 1.0 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_12-19-25_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_12-19-25_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d886676c815ec245a4b8c11179af58999d37ebf2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_12-19-25_annot_2022-11-30_01.txt @@ -0,0 +1,65 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.81394076 +2 15.51 19.3875 1000 50 0.64761406 +3 38.775 42.652499999999996 1000 50 0.67789 +4 42.6525 46.53 1000 50 0.9645109 +5 46.53 50.4075 1000 50 0.8523067 +6 50.4075 54.285 1000 50 0.71556515 +7 73.6725 77.55 1000 50 0.5007563 +8 81.4275 85.30499999999999 1000 50 0.5021295 +9 89.1825 93.06 1000 50 0.8029469 +10 93.06 96.9375 1000 50 0.7513812 +11 108.57 112.44749999999999 1000 50 0.71934307 +12 112.4475 116.325 1000 50 0.53159606 +13 124.08 127.9575 1000 50 0.5517228 +14 127.9575 131.835 1000 50 0.9066665 +15 131.835 135.7125 1000 50 0.9999969 +16 135.7125 139.59 1000 50 0.999775 +17 139.59 143.4675 1000 50 0.99999034 +18 143.4675 147.345 1000 50 0.9996494 +19 147.345 151.2225 1000 50 0.9999858 +20 151.2225 155.1 1000 50 0.99939775 +21 155.1 158.9775 1000 50 0.99999976 +22 158.9775 162.855 1000 50 0.99996936 +23 162.855 166.7325 1000 50 1.0 +24 166.7325 170.60999999999999 1000 50 0.9999958 +25 170.61 174.4875 1000 50 0.9999999 +26 174.4875 178.365 1000 50 0.99999475 +27 178.365 182.2425 1000 50 0.99997556 +28 186.12 189.9975 1000 50 0.53142273 +29 193.875 197.7525 1000 50 0.9999852 +30 197.7525 201.63 1000 50 0.9775892 +31 205.5075 209.385 1000 50 0.9999957 +32 209.385 213.2625 1000 50 0.9914494 +33 217.14 221.01749999999998 1000 50 0.9986507 +34 221.0175 224.895 1000 50 0.9986584 +35 224.895 228.7725 1000 50 0.9974831 +36 228.7725 232.65 1000 50 0.9999429 +37 232.65 236.5275 1000 50 1.0 +38 236.5275 240.405 1000 50 0.9999994 +39 240.405 244.2825 1000 50 0.9999927 +40 244.2825 248.16 1000 50 0.99999905 +41 248.16 252.0375 1000 50 0.99999404 +42 252.0375 255.915 1000 50 1.0 +43 255.915 259.7925 1000 50 0.99999774 +44 259.7925 263.67 1000 50 1.0 +45 263.67 267.5475 1000 50 0.9999144 +46 267.5475 271.425 1000 50 0.99995697 +47 271.425 275.3025 1000 50 0.99999976 +48 275.3025 279.18 1000 50 0.9999734 +49 279.18 283.0575 1000 50 1.0 +50 283.0575 286.935 1000 50 0.9998592 +51 286.935 290.8125 1000 50 0.9999832 +52 290.8125 294.69 1000 50 0.9999999 +53 294.69 298.5675 1000 50 1.0 +54 298.5675 302.445 1000 50 0.999995 +55 302.445 306.3225 1000 50 0.99999976 +56 306.3225 310.2 1000 50 0.9998078 +57 310.2 314.0775 1000 50 0.9864802 +58 314.0775 317.955 1000 50 1.0 +59 317.955 321.8325 1000 50 0.99999976 +60 321.8325 325.71 1000 50 1.0 +61 325.71 329.5875 1000 50 0.9999988 +62 329.5875 333.465 1000 50 0.9999671 +63 333.465 337.3425 1000 50 0.999566 +64 337.3425 341.21999999999997 1000 50 0.9999982 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_13-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_13-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..2420b0001f5c2623978a8dd1cfac805367e1ca96 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_13-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,277 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 1.0 +2 3.8775 7.755 1000 50 0.95683783 +3 7.755 11.6325 1000 50 1.0 +4 11.6325 15.51 1000 50 0.9993228 +5 15.51 19.3875 1000 50 1.0 +6 19.3875 23.265 1000 50 0.9999999 +7 23.265 27.142500000000002 1000 50 0.99962354 +8 27.1425 31.02 1000 50 1.0 +9 31.02 34.8975 1000 50 0.999887 +10 34.8975 38.775 1000 50 1.0 +11 38.775 42.652499999999996 1000 50 1.0 +12 42.6525 46.53 1000 50 0.9856808 +13 46.53 50.4075 1000 50 1.0 +14 50.4075 54.285 1000 50 0.9990397 +15 54.285 58.162499999999994 1000 50 1.0 +16 58.1625 62.04 1000 50 1.0 +17 62.04 65.9175 1000 50 0.99986243 +18 65.9175 69.795 1000 50 1.0 +19 69.795 73.6725 1000 50 1.0 +20 73.6725 77.55 1000 50 0.9993923 +21 77.55 81.4275 1000 50 0.9999467 +22 81.4275 85.30499999999999 1000 50 0.99998903 +23 89.1825 93.06 1000 50 0.99998426 +24 93.06 96.9375 1000 50 0.99996054 +25 96.9375 100.815 1000 50 0.99566746 +26 100.815 104.6925 1000 50 0.99999607 +27 104.6925 108.57 1000 50 0.9985172 +28 108.57 112.44749999999999 1000 50 0.9999993 +29 112.4475 116.325 1000 50 1.0 +30 116.325 120.2025 1000 50 0.9999654 +31 120.2025 124.08 1000 50 1.0 +32 124.08 127.9575 1000 50 0.99999976 +33 127.9575 131.835 1000 50 0.9990429 +34 131.835 135.7125 1000 50 1.0 +35 135.7125 139.59 1000 50 0.99915075 +36 139.59 143.4675 1000 50 0.98439723 +37 143.4675 147.345 1000 50 0.99994934 +38 147.345 151.2225 1000 50 0.99999845 +39 151.2225 155.1 1000 50 0.99995553 +40 155.1 158.9775 1000 50 1.0 +41 158.9775 162.855 1000 50 0.99970466 +42 162.855 166.7325 1000 50 0.99999976 +43 166.7325 170.60999999999999 1000 50 0.9999999 +44 170.61 174.4875 1000 50 0.9999366 +45 174.4875 178.365 1000 50 1.0 +46 178.365 182.2425 1000 50 0.9981554 +47 182.2425 186.12 1000 50 0.99993575 +48 186.12 189.9975 1000 50 0.99999785 +49 189.9975 193.875 1000 50 0.99999917 +50 193.875 197.7525 1000 50 0.9999573 +51 197.7525 201.63 1000 50 1.0 +52 201.63 205.5075 1000 50 0.9998099 +53 205.5075 209.385 1000 50 0.9998944 +54 209.385 213.2625 1000 50 0.9999999 +55 213.2625 217.14 1000 50 0.9999988 +56 217.14 221.01749999999998 1000 50 0.99999106 +57 221.0175 224.895 1000 50 0.999877 +58 224.895 228.7725 1000 50 0.9999999 +59 228.7725 232.65 1000 50 1.0 +60 232.65 236.5275 1000 50 0.9998851 +61 236.5275 240.405 1000 50 1.0 +62 240.405 244.2825 1000 50 0.9999802 +63 244.2825 248.16 1000 50 0.99995327 +64 248.16 252.0375 1000 50 0.999998 +65 252.0375 255.915 1000 50 0.9999738 +66 255.915 259.7925 1000 50 1.0 +67 259.7925 263.67 1000 50 0.98962337 +68 263.67 267.5475 1000 50 0.998458 +69 267.5475 271.425 1000 50 0.9999378 +70 271.425 275.3025 1000 50 0.9949797 +71 275.3025 279.18 1000 50 0.9999937 +72 279.18 283.0575 1000 50 0.9999441 +73 283.0575 286.935 1000 50 0.99884355 +74 286.935 290.8125 1000 50 0.99994576 +75 290.8125 294.69 1000 50 0.9999982 +76 294.69 298.5675 1000 50 0.9997236 +77 298.5675 302.445 1000 50 1.0 +78 302.445 306.3225 1000 50 0.9999901 +79 306.3225 310.2 1000 50 0.9999851 +80 310.2 314.0775 1000 50 0.99992275 +81 314.0775 317.955 1000 50 0.9999027 +82 317.955 321.8325 1000 50 0.9789989 +83 321.8325 325.71 1000 50 0.999835 +84 325.71 329.5875 1000 50 0.776791 +85 333.465 337.3425 1000 50 0.72177476 +86 348.975 352.8525 1000 50 0.6268748 +87 356.73 360.6075 1000 50 0.6835963 +88 364.485 368.3625 1000 50 0.56960946 +89 368.3625 372.24 1000 50 0.63695896 +90 372.24 376.1175 1000 50 0.87760925 +91 383.8725 387.75 1000 50 0.57426476 +92 391.6275 395.505 1000 50 0.7568489 +93 407.1375 411.015 1000 50 0.8062324 +94 411.015 414.8925 1000 50 0.7357179 +95 422.6475 426.525 1000 50 0.581741 +96 426.525 430.4025 1000 50 0.54306453 +97 430.4025 434.28 1000 50 0.88596725 +98 438.1575 442.035 1000 50 0.5843086 +99 442.035 445.9125 1000 50 0.5226074 +100 453.6675 457.545 1000 50 0.8273721 +101 457.545 461.4225 1000 50 0.99968886 +102 465.3 469.1775 1000 50 0.9999999 +103 469.1775 473.055 1000 50 0.8862276 +104 473.055 476.9325 1000 50 0.999918 +105 492.4425 496.32 1000 50 0.99998736 +106 496.32 500.1975 1000 50 0.9999893 +107 500.1975 504.075 1000 50 0.9999912 +108 504.075 507.9525 1000 50 0.99996257 +109 507.9525 511.83 1000 50 0.99998987 +110 511.83 515.7075 1000 50 0.999998 +111 515.7075 519.585 1000 50 0.9999684 +112 519.585 523.4625000000001 1000 50 0.9999999 +113 523.4625 527.34 1000 50 0.9999229 +114 527.34 531.2175000000001 1000 50 0.86502457 +115 531.2175 535.095 1000 50 0.99634165 +116 538.9725 542.85 1000 50 0.9999722 +117 542.85 546.7275000000001 1000 50 0.99812704 +118 546.7275 550.605 1000 50 0.99999106 +119 550.605 554.4825000000001 1000 50 0.8050447 +120 554.4825 558.36 1000 50 0.9993297 +121 558.36 562.2375000000001 1000 50 1.0 +122 562.2375 566.115 1000 50 0.9999505 +123 566.115 569.9925000000001 1000 50 0.95667887 +124 569.9925 573.87 1000 50 0.9996736 +125 573.87 577.7475000000001 1000 50 0.9999578 +126 581.625 585.5025 1000 50 0.9999999 +127 585.5025 589.3800000000001 1000 50 0.99949896 +128 589.38 593.2575 1000 50 0.72132397 +129 593.2575 597.1350000000001 1000 50 1.0 +130 597.135 601.0125 1000 50 0.99962616 +131 601.0125 604.8900000000001 1000 50 0.9997147 +132 604.89 608.7675 1000 50 0.99980134 +133 608.7675 612.6450000000001 1000 50 1.0 +134 612.645 616.5225 1000 50 0.9999999 +135 616.5225 620.4000000000001 1000 50 0.99999666 +136 620.4 624.2775 1000 50 0.9998037 +137 624.2775 628.1550000000001 1000 50 1.0 +138 628.155 632.0325 1000 50 0.9988607 +139 635.91 639.7875 1000 50 0.9999999 +140 639.7875 643.6650000000001 1000 50 0.99999917 +141 643.665 647.5425 1000 50 0.999949 +142 647.5425 651.4200000000001 1000 50 0.99997485 +143 651.42 655.2975 1000 50 0.99999464 +144 655.2975 659.1750000000001 1000 50 1.0 +145 659.175 663.0525 1000 50 0.99999774 +146 663.0525 666.9300000000001 1000 50 0.9999995 +147 666.93 670.8075 1000 50 1.0 +148 670.8075 674.6850000000001 1000 50 0.99999607 +149 674.685 678.5625 1000 50 0.99996114 +150 678.5625 682.44 1000 50 0.99999285 +151 682.44 686.3175000000001 1000 50 0.99988925 +152 686.3175 690.195 1000 50 0.9297379 +153 690.195 694.0725000000001 1000 50 0.99937195 +154 694.0725 697.95 1000 50 0.9999962 +155 697.95 701.8275000000001 1000 50 0.9999999 +156 701.8275 705.705 1000 50 0.99998593 +157 705.705 709.5825000000001 1000 50 0.99999976 +158 709.5825 713.46 1000 50 0.9999993 +159 713.46 717.3375000000001 1000 50 0.9945311 +160 717.3375 721.215 1000 50 1.0 +161 721.215 725.0925000000001 1000 50 0.9999491 +162 725.0925 728.97 1000 50 1.0 +163 728.97 732.8475000000001 1000 50 0.9999999 +164 732.8475 736.725 1000 50 0.99998724 +165 736.725 740.6025000000001 1000 50 0.999995 +166 740.6025 744.48 1000 50 0.9999827 +167 744.48 748.3575000000001 1000 50 1.0 +168 748.3575 752.235 1000 50 1.0 +169 752.235 756.1125000000001 1000 50 0.99999416 +170 756.1125 759.99 1000 50 0.9997112 +171 759.99 763.8675000000001 1000 50 0.99995697 +172 763.8675 767.745 1000 50 0.9999994 +173 767.745 771.6225000000001 1000 50 0.9999808 +174 771.6225 775.5 1000 50 1.0 +175 775.5 779.3775 1000 50 0.99997807 +176 779.3775 783.2550000000001 1000 50 0.9998914 +177 783.255 787.1325 1000 50 0.9999994 +178 787.1325 791.0100000000001 1000 50 0.9999465 +179 791.01 794.8875 1000 50 0.9999982 +180 794.8875 798.7650000000001 1000 50 0.99993205 +181 798.765 802.6425 1000 50 0.99994993 +182 802.6425 806.5200000000001 1000 50 0.9998417 +183 806.52 810.3975 1000 50 0.96636283 +184 810.3975 814.2750000000001 1000 50 0.9998361 +185 814.275 818.1525 1000 50 0.99985266 +186 818.1525 822.0300000000001 1000 50 0.99985945 +187 822.03 825.9075 1000 50 0.9990415 +188 825.9075 829.7850000000001 1000 50 0.99969006 +189 833.6625 837.5400000000001 1000 50 0.99999976 +190 837.54 841.4175 1000 50 0.99999964 +191 841.4175 845.2950000000001 1000 50 0.9999937 +192 845.295 849.1725 1000 50 0.9999989 +193 849.1725 853.0500000000001 1000 50 0.93627226 +194 853.05 856.9275 1000 50 0.9999982 +195 856.9275 860.8050000000001 1000 50 0.9999262 +196 860.805 864.6825 1000 50 0.9981627 +197 864.6825 868.5600000000001 1000 50 0.9999931 +198 868.56 872.4375 1000 50 0.9959532 +199 872.4375 876.315 1000 50 0.9999999 +200 876.315 880.1925000000001 1000 50 0.9999931 +201 880.1925 884.07 1000 50 0.99940157 +202 884.07 887.9475000000001 1000 50 0.99888104 +203 887.9475 891.825 1000 50 0.99998415 +204 891.825 895.7025000000001 1000 50 0.99921215 +205 895.7025 899.58 1000 50 0.99985015 +206 903.4575 907.335 1000 50 0.8343347 +207 907.335 911.2125000000001 1000 50 0.7806422 +208 911.2125 915.09 1000 50 0.51983005 +209 922.845 926.7225000000001 1000 50 0.94232464 +210 926.7225 930.6 1000 50 0.58973396 +211 942.2325 946.11 1000 50 0.5037415 +212 957.7425 961.62 1000 50 0.8085587 +213 961.62 965.4975000000001 1000 50 0.7013137 +214 969.375 973.2525 1000 50 0.6598663 +215 973.2525 977.1300000000001 1000 50 0.8593244 +216 981.0075 984.8850000000001 1000 50 0.9987288 +217 984.885 988.7625 1000 50 0.7628319 +218 988.7625 992.6400000000001 1000 50 0.96981996 +219 992.64 996.5175 1000 50 0.99385107 +220 1000.395 1004.2725 1000 50 0.854578 +221 1008.15 1012.0275 1000 50 0.62647307 +222 1012.0275 1015.9050000000001 1000 50 0.60685194 +223 1027.5375 1031.415 1000 50 0.76931614 +224 1039.17 1043.0475000000001 1000 50 0.50091326 +225 1046.925 1050.8025 1000 50 0.99970007 +226 1050.8025 1054.68 1000 50 0.54690146 +227 1054.68 1058.5575000000001 1000 50 0.84615517 +228 1058.5575 1062.435 1000 50 0.99980706 +229 1066.3125 1070.19 1000 50 0.99999094 +230 1070.19 1074.0675 1000 50 0.99999714 +231 1077.945 1081.8225 1000 50 0.9999999 +232 1081.8225 1085.7 1000 50 0.9998529 +233 1085.7 1089.5775 1000 50 0.61735505 +234 1089.5775 1093.4550000000002 1000 50 1.0 +235 1093.455 1097.3325 1000 50 0.99999964 +236 1097.3325 1101.21 1000 50 0.95983964 +237 1101.21 1105.0875 1000 50 1.0 +238 1105.0875 1108.9650000000001 1000 50 0.99999976 +239 1108.965 1112.8425 1000 50 0.9999703 +240 1112.8425 1116.72 1000 50 0.99994004 +241 1116.72 1120.5975 1000 50 0.99919003 +242 1120.5975 1124.4750000000001 1000 50 0.9999471 +243 1124.475 1128.3525 1000 50 0.9999999 +244 1128.3525 1132.23 1000 50 0.9999919 +245 1132.23 1136.1075 1000 50 1.0 +246 1136.1075 1139.9850000000001 1000 50 0.9999949 +247 1139.985 1143.8625 1000 50 0.9991837 +248 1143.8625 1147.74 1000 50 1.0 +249 1147.74 1151.6175 1000 50 0.99996567 +250 1151.6175 1155.4950000000001 1000 50 0.9982065 +251 1155.495 1159.3725 1000 50 1.0 +252 1159.3725 1163.25 1000 50 0.9999336 +253 1163.25 1167.1275 1000 50 0.9999105 +254 1167.1275 1171.005 1000 50 0.9999999 +255 1171.005 1174.8825000000002 1000 50 0.99982196 +256 1174.8825 1178.76 1000 50 1.0 +257 1178.76 1182.6375 1000 50 0.9999999 +258 1182.6375 1186.515 1000 50 0.9692384 +259 1186.515 1190.3925000000002 1000 50 1.0 +260 1190.3925 1194.27 1000 50 0.9999994 +261 1194.27 1198.1475 1000 50 0.999998 +262 1198.1475 1202.025 1000 50 1.0 +263 1202.025 1205.9025000000001 1000 50 0.99999213 +264 1205.9025 1209.78 1000 50 0.9999999 +265 1209.78 1213.6575 1000 50 0.99999964 +266 1213.6575 1217.535 1000 50 0.9999999 +267 1217.535 1221.4125000000001 1000 50 0.99999976 +268 1221.4125 1225.29 1000 50 0.99977297 +269 1225.29 1229.1675 1000 50 0.9999447 +270 1229.1675 1233.045 1000 50 1.0 +271 1233.045 1236.9225000000001 1000 50 0.99999857 +272 1236.9225 1240.8 1000 50 0.9999945 +273 1240.8 1244.6775 1000 50 1.0 +274 1244.6775 1248.555 1000 50 0.99961996 +275 1248.555 1252.4325000000001 1000 50 1.0 +276 1252.4325 1256.31 1000 50 0.99999964 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_13-24-35_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_13-24-35_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0f5d3d5576cd76431d9cee39b0bc2e520936dd45 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_13-24-35_annot_2022-11-30_01.txt @@ -0,0 +1,9 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 1.0 +2 3.8775 7.755 1000 50 0.99999976 +3 7.755 11.6325 1000 50 1.0 +4 11.6325 15.51 1000 50 1.0 +5 15.51 19.3875 1000 50 0.99999917 +6 19.3875 23.265 1000 50 0.99999976 +7 23.265 27.142500000000002 1000 50 0.9996427 +8 27.1425 31.02 1000 50 1.0 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_14-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_14-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b07799f03b77f03b86167f47a37dfab11b77edc2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_14-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,315 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.83926743 +2 3.8775 7.755 1000 50 0.8335308 +3 7.755 11.6325 1000 50 0.65634143 +4 11.6325 15.51 1000 50 0.854515 +5 19.3875 23.265 1000 50 0.97626936 +6 23.265 27.142500000000002 1000 50 0.50071555 +7 69.795 73.6725 1000 50 0.5456541 +8 77.55 81.4275 1000 50 0.72018385 +9 100.815 104.6925 1000 50 0.97212344 +10 124.08 127.9575 1000 50 0.65279216 +11 127.9575 131.835 1000 50 0.55441034 +12 143.4675 147.345 1000 50 0.52833563 +13 147.345 151.2225 1000 50 0.991954 +14 151.2225 155.1 1000 50 0.60438806 +15 166.7325 170.60999999999999 1000 50 0.62724584 +16 174.4875 178.365 1000 50 0.5442647 +17 178.365 182.2425 1000 50 0.9991605 +18 182.2425 186.12 1000 50 0.54810005 +19 186.12 189.9975 1000 50 0.99106497 +20 189.9975 193.875 1000 50 0.9999871 +21 193.875 197.7525 1000 50 0.91861975 +22 197.7525 201.63 1000 50 0.99999905 +23 201.63 205.5075 1000 50 0.9961515 +24 205.5075 209.385 1000 50 0.85441536 +25 209.385 213.2625 1000 50 0.9999759 +26 213.2625 217.14 1000 50 0.9483161 +27 217.14 221.01749999999998 1000 50 0.9997259 +28 221.0175 224.895 1000 50 0.9999329 +29 224.895 228.7725 1000 50 0.9999833 +30 228.7725 232.65 1000 50 0.9999832 +31 232.65 236.5275 1000 50 0.99990463 +32 236.5275 240.405 1000 50 0.9999989 +33 240.405 244.2825 1000 50 0.9999852 +34 244.2825 248.16 1000 50 0.9985207 +35 248.16 252.0375 1000 50 1.0 +36 252.0375 255.915 1000 50 0.99999714 +37 255.915 259.7925 1000 50 0.9999994 +38 259.7925 263.67 1000 50 0.9999409 +39 263.67 267.5475 1000 50 0.9999999 +40 267.5475 271.425 1000 50 0.99997365 +41 271.425 275.3025 1000 50 0.99994326 +42 275.3025 279.18 1000 50 1.0 +43 279.18 283.0575 1000 50 0.99999964 +44 283.0575 286.935 1000 50 0.9999957 +45 286.935 290.8125 1000 50 0.9972372 +46 290.8125 294.69 1000 50 0.9999634 +47 294.69 298.5675 1000 50 0.99999905 +48 298.5675 302.445 1000 50 0.9998729 +49 302.445 306.3225 1000 50 0.9999045 +50 306.3225 310.2 1000 50 0.9999999 +51 310.2 314.0775 1000 50 0.9999846 +52 314.0775 317.955 1000 50 0.99979514 +53 317.955 321.8325 1000 50 1.0 +54 321.8325 325.71 1000 50 0.99999845 +55 325.71 329.5875 1000 50 0.6721914 +56 329.5875 333.465 1000 50 1.0 +57 333.465 337.3425 1000 50 0.99999917 +58 337.3425 341.21999999999997 1000 50 0.9999999 +59 341.22 345.0975 1000 50 0.9999937 +60 345.0975 348.975 1000 50 0.9999944 +61 348.975 352.8525 1000 50 0.9999993 +62 352.8525 356.73 1000 50 0.9999981 +63 356.73 360.6075 1000 50 0.9999975 +64 360.6075 364.485 1000 50 1.0 +65 364.485 368.3625 1000 50 0.99997413 +66 368.3625 372.24 1000 50 0.99993134 +67 372.24 376.1175 1000 50 0.9999653 +68 376.1175 379.995 1000 50 0.9998956 +69 379.995 383.8725 1000 50 1.0 +70 383.8725 387.75 1000 50 0.9798982 +71 387.75 391.6275 1000 50 1.0 +72 391.6275 395.505 1000 50 1.0 +73 395.505 399.3825 1000 50 0.99820936 +74 399.3825 403.26 1000 50 1.0 +75 403.26 407.1375 1000 50 0.99954623 +76 407.1375 411.015 1000 50 0.99999964 +77 411.015 414.8925 1000 50 1.0 +78 414.8925 418.77 1000 50 1.0 +79 418.77 422.6475 1000 50 1.0 +80 422.6475 426.525 1000 50 0.9999994 +81 426.525 430.4025 1000 50 0.99989235 +82 430.4025 434.28 1000 50 0.99999297 +83 434.28 438.15749999999997 1000 50 0.9999989 +84 438.1575 442.035 1000 50 0.999998 +85 442.035 445.9125 1000 50 0.9987696 +86 445.9125 449.79 1000 50 1.0 +87 449.79 453.6675 1000 50 0.9999999 +88 453.6675 457.545 1000 50 0.99972576 +89 457.545 461.4225 1000 50 1.0 +90 461.4225 465.3 1000 50 0.9997732 +91 465.3 469.1775 1000 50 0.99999964 +92 469.1775 473.055 1000 50 0.99999964 +93 473.055 476.9325 1000 50 0.9999392 +94 476.9325 480.81 1000 50 0.98392856 +95 480.81 484.6875 1000 50 0.9992386 +96 484.6875 488.565 1000 50 1.0 +97 488.565 492.4425 1000 50 1.0 +98 492.4425 496.32 1000 50 0.99977416 +99 496.32 500.1975 1000 50 1.0 +100 500.1975 504.075 1000 50 0.9999629 +101 504.075 507.9525 1000 50 0.9232493 +102 507.9525 511.83 1000 50 1.0 +103 511.83 515.7075 1000 50 1.0 +104 515.7075 519.585 1000 50 0.99999917 +105 519.585 523.4625000000001 1000 50 0.9999994 +106 523.4625 527.34 1000 50 0.99999714 +107 527.34 531.2175000000001 1000 50 1.0 +108 531.2175 535.095 1000 50 0.99990666 +109 535.095 538.9725000000001 1000 50 0.9999126 +110 538.9725 542.85 1000 50 1.0 +111 542.85 546.7275000000001 1000 50 1.0 +112 546.7275 550.605 1000 50 0.99871886 +113 550.605 554.4825000000001 1000 50 0.9999951 +114 554.4825 558.36 1000 50 0.9999994 +115 558.36 562.2375000000001 1000 50 0.99999976 +116 562.2375 566.115 1000 50 1.0 +117 566.115 569.9925000000001 1000 50 0.9993568 +118 569.9925 573.87 1000 50 0.99999976 +119 573.87 577.7475000000001 1000 50 0.9999887 +120 577.7475 581.625 1000 50 0.99999905 +121 581.625 585.5025 1000 50 1.0 +122 585.5025 589.3800000000001 1000 50 1.0 +123 589.38 593.2575 1000 50 0.99999666 +124 593.2575 597.1350000000001 1000 50 1.0 +125 597.135 601.0125 1000 50 0.9998043 +126 601.0125 604.8900000000001 1000 50 1.0 +127 604.89 608.7675 1000 50 0.99999976 +128 608.7675 612.6450000000001 1000 50 0.9999862 +129 612.645 616.5225 1000 50 0.9999993 +130 616.5225 620.4000000000001 1000 50 0.99998415 +131 620.4 624.2775 1000 50 0.9999902 +132 624.2775 628.1550000000001 1000 50 1.0 +133 628.155 632.0325 1000 50 0.9999149 +134 632.0325 635.9100000000001 1000 50 0.9999734 +135 635.91 639.7875 1000 50 0.9731161 +136 639.7875 643.6650000000001 1000 50 0.9999958 +137 643.665 647.5425 1000 50 0.9999738 +138 647.5425 651.4200000000001 1000 50 0.9999995 +139 651.42 655.2975 1000 50 0.98638654 +140 655.2975 659.1750000000001 1000 50 1.0 +141 659.175 663.0525 1000 50 0.9973936 +142 663.0525 666.9300000000001 1000 50 1.0 +143 666.93 670.8075 1000 50 0.99914074 +144 670.8075 674.6850000000001 1000 50 0.9999988 +145 674.685 678.5625 1000 50 0.998278 +146 678.5625 682.44 1000 50 0.99999833 +147 682.44 686.3175000000001 1000 50 0.9999732 +148 686.3175 690.195 1000 50 0.99770314 +149 690.195 694.0725000000001 1000 50 0.6671741 +150 697.95 701.8275000000001 1000 50 0.7771466 +151 701.8275 705.705 1000 50 0.9375414 +152 705.705 709.5825000000001 1000 50 0.9428737 +153 721.215 725.0925000000001 1000 50 0.9395015 +154 736.725 740.6025000000001 1000 50 0.7482384 +155 752.235 756.1125000000001 1000 50 0.66577023 +156 756.1125 759.99 1000 50 0.53320724 +157 763.8675 767.745 1000 50 0.6950534 +158 791.01 794.8875 1000 50 0.7884918 +159 802.6425 806.5200000000001 1000 50 0.57673085 +160 806.52 810.3975 1000 50 0.67557913 +161 810.3975 814.2750000000001 1000 50 0.9449167 +162 818.1525 822.0300000000001 1000 50 0.59747916 +163 822.03 825.9075 1000 50 0.747229 +164 829.785 833.6625 1000 50 0.58081704 +165 833.6625 837.5400000000001 1000 50 0.51534754 +166 837.54 841.4175 1000 50 0.9825215 +167 841.4175 845.2950000000001 1000 50 0.9997534 +168 845.295 849.1725 1000 50 0.9999559 +169 849.1725 853.0500000000001 1000 50 0.99999666 +170 853.05 856.9275 1000 50 0.9999455 +171 856.9275 860.8050000000001 1000 50 0.99999726 +172 860.805 864.6825 1000 50 0.99981815 +173 864.6825 868.5600000000001 1000 50 0.9999938 +174 868.56 872.4375 1000 50 0.8757436 +175 872.4375 876.315 1000 50 0.9999932 +176 876.315 880.1925000000001 1000 50 0.98878527 +177 880.1925 884.07 1000 50 0.9999745 +178 884.07 887.9475000000001 1000 50 0.65985113 +179 887.9475 891.825 1000 50 0.99988985 +180 895.7025 899.58 1000 50 0.99983287 +181 899.58 903.4575000000001 1000 50 0.9999889 +182 903.4575 907.335 1000 50 0.7107167 +183 907.335 911.2125000000001 1000 50 0.99907255 +184 911.2125 915.09 1000 50 1.0 +185 915.09 918.9675000000001 1000 50 0.83465946 +186 918.9675 922.845 1000 50 0.9916876 +187 922.845 926.7225000000001 1000 50 0.99999857 +188 926.7225 930.6 1000 50 0.5047636 +189 930.6 934.4775000000001 1000 50 0.9999994 +190 934.4775 938.355 1000 50 1.0 +191 938.355 942.2325000000001 1000 50 0.99998546 +192 942.2325 946.11 1000 50 0.9999436 +193 946.11 949.9875000000001 1000 50 0.99999464 +194 949.9875 953.865 1000 50 0.9752892 +195 953.865 957.7425000000001 1000 50 1.0 +196 957.7425 961.62 1000 50 0.9999945 +197 961.62 965.4975000000001 1000 50 0.999401 +198 965.4975 969.375 1000 50 0.9999813 +199 969.375 973.2525 1000 50 0.9571798 +200 973.2525 977.1300000000001 1000 50 0.99999845 +201 977.13 981.0075 1000 50 0.9998801 +202 981.0075 984.8850000000001 1000 50 0.9999964 +203 984.885 988.7625 1000 50 1.0 +204 988.7625 992.6400000000001 1000 50 0.99982697 +205 992.64 996.5175 1000 50 0.99979657 +206 996.5175 1000.3950000000001 1000 50 1.0 +207 1000.395 1004.2725 1000 50 0.99999905 +208 1004.2725 1008.1500000000001 1000 50 0.99960726 +209 1008.15 1012.0275 1000 50 0.9999995 +210 1012.0275 1015.9050000000001 1000 50 0.99999666 +211 1015.905 1019.7825 1000 50 0.9871278 +212 1019.7825 1023.6600000000001 1000 50 1.0 +213 1023.66 1027.5375 1000 50 0.99971455 +214 1027.5375 1031.415 1000 50 0.99284583 +215 1031.415 1035.2925 1000 50 0.9999355 +216 1035.2925 1039.17 1000 50 0.9999999 +217 1039.17 1043.0475000000001 1000 50 1.0 +218 1043.0475 1046.925 1000 50 0.9999994 +219 1046.925 1050.8025 1000 50 0.9999875 +220 1050.8025 1054.68 1000 50 0.9999933 +221 1054.68 1058.5575000000001 1000 50 0.99974424 +222 1058.5575 1062.435 1000 50 0.9990965 +223 1062.435 1066.3125 1000 50 0.9988343 +224 1066.3125 1070.19 1000 50 0.99942243 +225 1070.19 1074.0675 1000 50 0.9999398 +226 1074.0675 1077.9450000000002 1000 50 0.9994079 +227 1077.945 1081.8225 1000 50 0.9999912 +228 1081.8225 1085.7 1000 50 0.99999154 +229 1085.7 1089.5775 1000 50 0.9695063 +230 1089.5775 1093.4550000000002 1000 50 1.0 +231 1093.455 1097.3325 1000 50 0.9999306 +232 1097.3325 1101.21 1000 50 1.0 +233 1101.21 1105.0875 1000 50 0.9996171 +234 1105.0875 1108.9650000000001 1000 50 0.99999833 +235 1108.965 1112.8425 1000 50 1.0 +236 1112.8425 1116.72 1000 50 0.998828 +237 1116.72 1120.5975 1000 50 1.0 +238 1120.5975 1124.4750000000001 1000 50 0.98777384 +239 1124.475 1128.3525 1000 50 0.99999535 +240 1128.3525 1132.23 1000 50 0.9999982 +241 1132.23 1136.1075 1000 50 0.9942267 +242 1136.1075 1139.9850000000001 1000 50 0.9999933 +243 1139.985 1143.8625 1000 50 0.99999917 +244 1143.8625 1147.74 1000 50 0.9975473 +245 1147.74 1151.6175 1000 50 1.0 +246 1151.6175 1155.4950000000001 1000 50 0.9999504 +247 1155.495 1159.3725 1000 50 0.9999964 +248 1159.3725 1163.25 1000 50 0.9999784 +249 1163.25 1167.1275 1000 50 0.9997018 +250 1167.1275 1171.005 1000 50 0.99996674 +251 1171.005 1174.8825000000002 1000 50 0.9999211 +252 1174.8825 1178.76 1000 50 0.99942064 +253 1178.76 1182.6375 1000 50 0.999635 +254 1182.6375 1186.515 1000 50 0.99978787 +255 1186.515 1190.3925000000002 1000 50 0.9999484 +256 1190.3925 1194.27 1000 50 0.9986842 +257 1194.27 1198.1475 1000 50 0.9999962 +258 1198.1475 1202.025 1000 50 0.99948126 +259 1202.025 1205.9025000000001 1000 50 0.99848676 +260 1205.9025 1209.78 1000 50 0.99843305 +261 1209.78 1213.6575 1000 50 0.9996722 +262 1213.6575 1217.535 1000 50 0.9999962 +263 1217.535 1221.4125000000001 1000 50 1.0 +264 1221.4125 1225.29 1000 50 0.99555224 +265 1225.29 1229.1675 1000 50 0.99999607 +266 1229.1675 1233.045 1000 50 0.99998343 +267 1233.045 1236.9225000000001 1000 50 0.9520214 +268 1236.9225 1240.8 1000 50 0.9999944 +269 1240.8 1244.6775 1000 50 0.9999385 +270 1244.6775 1248.555 1000 50 0.9999999 +271 1248.555 1252.4325000000001 1000 50 0.99657345 +272 1252.4325 1256.31 1000 50 0.9995851 +273 1256.31 1260.1875 1000 50 0.9999305 +274 1260.1875 1264.065 1000 50 0.9927538 +275 1264.065 1267.9425 1000 50 0.9924049 +276 1271.82 1275.6975 1000 50 0.94295967 +277 1275.6975 1279.575 1000 50 0.5028287 +278 1279.575 1283.4525 1000 50 0.733504 +279 1287.33 1291.2075 1000 50 0.6036584 +280 1291.2075 1295.085 1000 50 0.6112368 +281 1295.085 1298.9625 1000 50 0.6156659 +282 1298.9625 1302.8400000000001 1000 50 0.6084197 +283 1302.84 1306.7175 1000 50 0.7249932 +284 1310.595 1314.4725 1000 50 0.5953758 +285 1318.35 1322.2275 1000 50 0.7921934 +286 1326.105 1329.9825 1000 50 0.6742016 +287 1353.2475 1357.125 1000 50 0.65415037 +288 1357.125 1361.0025 1000 50 0.64296925 +289 1361.0025 1364.88 1000 50 0.5893853 +290 1372.635 1376.5125 1000 50 0.7982679 +291 1380.39 1384.2675000000002 1000 50 0.6813817 +292 1395.9 1399.7775000000001 1000 50 0.79739285 +293 1403.655 1407.5325 1000 50 0.5183625 +294 1407.5325 1411.41 1000 50 0.7387062 +295 1415.2875 1419.165 1000 50 0.9999485 +296 1419.165 1423.0425 1000 50 0.9630043 +297 1423.0425 1426.92 1000 50 0.9957938 +298 1430.7975 1434.675 1000 50 0.99999845 +299 1434.675 1438.5525 1000 50 0.99999046 +300 1442.43 1446.3075000000001 1000 50 0.99416226 +301 1446.3075 1450.185 1000 50 0.99999297 +302 1450.185 1454.0625 1000 50 0.9765976 +303 1454.0625 1457.94 1000 50 0.92656773 +304 1457.94 1461.8175 1000 50 0.9999753 +305 1461.8175 1465.6950000000002 1000 50 0.9603504 +306 1465.695 1469.5725 1000 50 0.9999944 +307 1469.5725 1473.45 1000 50 0.9999584 +308 1473.45 1477.3275 1000 50 0.9807134 +309 1477.3275 1481.2050000000002 1000 50 1.0 +310 1481.205 1485.0825 1000 50 0.9999912 +311 1485.0825 1488.96 1000 50 0.9316722 +312 1488.96 1492.8375 1000 50 0.9999999 +313 1492.8375 1496.7150000000001 1000 50 0.99989426 +314 1496.715 1500.5925 1000 50 0.99972624 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_15-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_15-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..35f5579a0b7642183990edcdbfb7a8c4b324ca69 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_15-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,20 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99788684 +2 3.8775 7.755 1000 50 0.999943 +3 7.755 11.6325 1000 50 0.99986887 +4 11.6325 15.51 1000 50 0.99878603 +5 15.51 19.3875 1000 50 0.999617 +6 19.3875 23.265 1000 50 0.9999932 +7 23.265 27.142500000000002 1000 50 1.0 +8 27.1425 31.02 1000 50 0.99999857 +9 31.02 34.8975 1000 50 0.9998685 +10 34.8975 38.775 1000 50 0.9999995 +11 38.775 42.652499999999996 1000 50 0.99698156 +12 42.6525 46.53 1000 50 0.9999999 +13 46.53 50.4075 1000 50 1.0 +14 50.4075 54.285 1000 50 0.99999964 +15 54.285 58.162499999999994 1000 50 0.9999393 +16 58.1625 62.04 1000 50 0.9999031 +17 62.04 65.9175 1000 50 0.9999999 +18 65.9175 69.795 1000 50 0.9999964 +19 69.795 73.6725 1000 50 0.99985933 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_15-04-52_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_15-04-52_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d4dff886d6ec8bda0e955ee1edcb0cefad9dad03 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_15-04-52_annot_2022-11-30_01.txt @@ -0,0 +1,273 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.5017132 +2 11.6325 15.51 1000 50 0.7506475 +3 15.51 19.3875 1000 50 0.6877615 +4 27.1425 31.02 1000 50 0.6363226 +5 34.8975 38.775 1000 50 0.5056168 +6 42.6525 46.53 1000 50 0.84926 +7 46.53 50.4075 1000 50 0.9716001 +8 73.6725 77.55 1000 50 0.8216346 +9 77.55 81.4275 1000 50 0.6151378 +10 81.4275 85.30499999999999 1000 50 0.680598 +11 85.305 89.1825 1000 50 0.9998456 +12 89.1825 93.06 1000 50 0.9880667 +13 96.9375 100.815 1000 50 0.99999917 +14 100.815 104.6925 1000 50 0.7508211 +15 104.6925 108.57 1000 50 0.99994147 +16 108.57 112.44749999999999 1000 50 0.9999783 +17 116.325 120.2025 1000 50 0.9989743 +18 120.2025 124.08 1000 50 0.9999529 +19 124.08 127.9575 1000 50 0.8449554 +20 127.9575 131.835 1000 50 1.0 +21 131.835 135.7125 1000 50 0.9999914 +22 135.7125 139.59 1000 50 0.59171206 +23 139.59 143.4675 1000 50 1.0 +24 143.4675 147.345 1000 50 0.99672866 +25 147.345 151.2225 1000 50 0.95477027 +26 151.2225 155.1 1000 50 0.9990332 +27 155.1 158.9775 1000 50 0.99999964 +28 158.9775 162.855 1000 50 0.9999752 +29 162.855 166.7325 1000 50 0.99999774 +30 166.7325 170.60999999999999 1000 50 0.9999969 +31 170.61 174.4875 1000 50 0.99999917 +32 174.4875 178.365 1000 50 0.99980086 +33 178.365 182.2425 1000 50 0.9999988 +34 182.2425 186.12 1000 50 0.9999498 +35 186.12 189.9975 1000 50 0.99999976 +36 189.9975 193.875 1000 50 0.9916822 +37 193.875 197.7525 1000 50 1.0 +38 197.7525 201.63 1000 50 0.99997246 +39 201.63 205.5075 1000 50 0.9985688 +40 205.5075 209.385 1000 50 1.0 +41 209.385 213.2625 1000 50 0.99999213 +42 213.2625 217.14 1000 50 0.9968009 +43 217.14 221.01749999999998 1000 50 0.9999784 +44 221.0175 224.895 1000 50 0.9999995 +45 224.895 228.7725 1000 50 1.0 +46 228.7725 232.65 1000 50 0.9999676 +47 232.65 236.5275 1000 50 0.99999905 +48 236.5275 240.405 1000 50 0.99997246 +49 240.405 244.2825 1000 50 0.98816687 +50 244.2825 248.16 1000 50 0.9998839 +51 248.16 252.0375 1000 50 0.99995935 +52 252.0375 255.915 1000 50 0.99987614 +53 259.7925 263.67 1000 50 0.9999925 +54 263.67 267.5475 1000 50 0.9980659 +55 267.5475 271.425 1000 50 0.99999154 +56 271.425 275.3025 1000 50 0.9994017 +57 275.3025 279.18 1000 50 0.99993074 +58 279.18 283.0575 1000 50 1.0 +59 283.0575 286.935 1000 50 0.9999517 +60 286.935 290.8125 1000 50 1.0 +61 290.8125 294.69 1000 50 0.99998105 +62 294.69 298.5675 1000 50 0.99999964 +63 298.5675 302.445 1000 50 0.9999994 +64 302.445 306.3225 1000 50 0.99999845 +65 306.3225 310.2 1000 50 1.0 +66 310.2 314.0775 1000 50 0.99989676 +67 314.0775 317.955 1000 50 1.0 +68 317.955 321.8325 1000 50 0.99997556 +69 321.8325 325.71 1000 50 1.0 +70 325.71 329.5875 1000 50 1.0 +71 329.5875 333.465 1000 50 0.99999666 +72 333.465 337.3425 1000 50 1.0 +73 337.3425 341.21999999999997 1000 50 0.99999523 +74 341.22 345.0975 1000 50 0.99999964 +75 345.0975 348.975 1000 50 0.87433404 +76 348.975 352.8525 1000 50 0.99998486 +77 352.8525 356.73 1000 50 0.9999943 +78 356.73 360.6075 1000 50 0.99998975 +79 360.6075 364.485 1000 50 1.0 +80 364.485 368.3625 1000 50 0.99989045 +81 368.3625 372.24 1000 50 1.0 +82 372.24 376.1175 1000 50 0.98998904 +83 376.1175 379.995 1000 50 1.0 +84 379.995 383.8725 1000 50 0.9999865 +85 383.8725 387.75 1000 50 0.9975719 +86 387.75 391.6275 1000 50 0.9999535 +87 391.6275 395.505 1000 50 0.9999988 +88 395.505 399.3825 1000 50 0.9999999 +89 399.3825 403.26 1000 50 0.9999814 +90 403.26 407.1375 1000 50 0.9999676 +91 407.1375 411.015 1000 50 0.999982 +92 411.015 414.8925 1000 50 1.0 +93 414.8925 418.77 1000 50 0.9987073 +94 418.77 422.6475 1000 50 1.0 +95 422.6475 426.525 1000 50 0.99999356 +96 426.525 430.4025 1000 50 0.99996173 +97 430.4025 434.28 1000 50 0.9999976 +98 434.28 438.15749999999997 1000 50 0.9999999 +99 438.1575 442.035 1000 50 0.99999285 +100 442.035 445.9125 1000 50 0.9999902 +101 445.9125 449.79 1000 50 0.9797468 +102 449.79 453.6675 1000 50 0.9999993 +103 453.6675 457.545 1000 50 1.0 +104 457.545 461.4225 1000 50 0.9999616 +105 461.4225 465.3 1000 50 0.9999999 +106 465.3 469.1775 1000 50 0.9999453 +107 469.1775 473.055 1000 50 0.9999114 +108 473.055 476.9325 1000 50 0.99999917 +109 476.9325 480.81 1000 50 0.9999925 +110 480.81 484.6875 1000 50 0.99998987 +111 484.6875 488.565 1000 50 0.9999893 +112 488.565 492.4425 1000 50 0.83920217 +113 492.4425 496.32 1000 50 0.9999994 +114 496.32 500.1975 1000 50 1.0 +115 500.1975 504.075 1000 50 0.99999416 +116 504.075 507.9525 1000 50 1.0 +117 507.9525 511.83 1000 50 0.99999547 +118 511.83 515.7075 1000 50 0.9999629 +119 515.7075 519.585 1000 50 0.9999999 +120 519.585 523.4625000000001 1000 50 1.0 +121 523.4625 527.34 1000 50 0.99998045 +122 527.34 531.2175000000001 1000 50 1.0 +123 531.2175 535.095 1000 50 0.99517447 +124 535.095 538.9725000000001 1000 50 0.99973255 +125 538.9725 542.85 1000 50 1.0 +126 542.85 546.7275000000001 1000 50 0.99998033 +127 546.7275 550.605 1000 50 0.9999999 +128 550.605 554.4825000000001 1000 50 0.9997446 +129 554.4825 558.36 1000 50 0.9999951 +130 558.36 562.2375000000001 1000 50 0.9999198 +131 562.2375 566.115 1000 50 0.9986008 +132 566.115 569.9925000000001 1000 50 0.9998685 +133 569.9925 573.87 1000 50 0.99987817 +134 573.87 577.7475000000001 1000 50 0.9999999 +135 577.7475 581.625 1000 50 0.9999448 +136 581.625 585.5025 1000 50 0.9999889 +137 585.5025 589.3800000000001 1000 50 0.9999875 +138 589.38 593.2575 1000 50 0.9999999 +139 593.2575 597.1350000000001 1000 50 0.71119994 +140 597.135 601.0125 1000 50 0.9999975 +141 601.0125 604.8900000000001 1000 50 0.99984884 +142 604.89 608.7675 1000 50 0.9998673 +143 608.7675 612.6450000000001 1000 50 0.9941759 +144 612.645 616.5225 1000 50 0.9703837 +145 616.5225 620.4000000000001 1000 50 0.9999808 +146 620.4 624.2775 1000 50 0.9997739 +147 624.2775 628.1550000000001 1000 50 0.9986848 +148 628.155 632.0325 1000 50 0.9999651 +149 632.0325 635.9100000000001 1000 50 0.9999933 +150 635.91 639.7875 1000 50 0.98354715 +151 639.7875 643.6650000000001 1000 50 0.9999275 +152 643.665 647.5425 1000 50 0.9999547 +153 647.5425 651.4200000000001 1000 50 0.99639577 +154 651.42 655.2975 1000 50 0.99946433 +155 655.2975 659.1750000000001 1000 50 0.99732625 +156 659.175 663.0525 1000 50 0.9990815 +157 663.0525 666.9300000000001 1000 50 0.99934644 +158 666.93 670.8075 1000 50 0.99999344 +159 670.8075 674.6850000000001 1000 50 0.9999025 +160 674.685 678.5625 1000 50 0.9999862 +161 678.5625 682.44 1000 50 0.9999007 +162 682.44 686.3175000000001 1000 50 0.99995446 +163 686.3175 690.195 1000 50 0.99963033 +164 690.195 694.0725000000001 1000 50 0.8063183 +165 694.0725 697.95 1000 50 0.97467697 +166 705.705 709.5825000000001 1000 50 0.63783 +167 725.0925 728.97 1000 50 0.744907 +168 728.97 732.8475000000001 1000 50 0.53286535 +169 732.8475 736.725 1000 50 0.5032787 +170 736.725 740.6025000000001 1000 50 0.6123724 +171 759.99 763.8675000000001 1000 50 0.50743425 +172 763.8675 767.745 1000 50 0.6444267 +173 771.6225 775.5 1000 50 0.6839166 +174 775.5 779.3775 1000 50 0.50459325 +175 779.3775 783.2550000000001 1000 50 0.6808222 +176 783.255 787.1325 1000 50 0.74211746 +177 798.765 802.6425 1000 50 0.91719824 +178 802.6425 806.5200000000001 1000 50 0.50199383 +179 814.275 818.1525 1000 50 0.51941156 +180 841.4175 845.2950000000001 1000 50 0.9901321 +181 845.295 849.1725 1000 50 0.6399783 +182 849.1725 853.0500000000001 1000 50 0.88318634 +183 856.9275 860.8050000000001 1000 50 0.9465143 +184 864.6825 868.5600000000001 1000 50 0.9992188 +185 868.56 872.4375 1000 50 0.86797494 +186 872.4375 876.315 1000 50 0.69368654 +187 876.315 880.1925000000001 1000 50 0.9970253 +188 880.1925 884.07 1000 50 0.6606575 +189 884.07 887.9475000000001 1000 50 0.951 +190 887.9475 891.825 1000 50 0.6696072 +191 891.825 895.7025000000001 1000 50 0.99055463 +192 895.7025 899.58 1000 50 0.950643 +193 899.58 903.4575000000001 1000 50 0.996077 +194 903.4575 907.335 1000 50 0.9999715 +195 907.335 911.2125000000001 1000 50 0.9999889 +196 911.2125 915.09 1000 50 1.0 +197 915.09 918.9675000000001 1000 50 0.9996244 +198 918.9675 922.845 1000 50 0.9988562 +199 922.845 926.7225000000001 1000 50 0.97808814 +200 926.7225 930.6 1000 50 0.6184365 +201 930.6 934.4775000000001 1000 50 0.9953122 +202 934.4775 938.355 1000 50 0.99922013 +203 942.2325 946.11 1000 50 0.99999845 +204 946.11 949.9875000000001 1000 50 1.0 +205 949.9875 953.865 1000 50 0.99837446 +206 953.865 957.7425000000001 1000 50 0.99999964 +207 957.7425 961.62 1000 50 0.9999865 +208 961.62 965.4975000000001 1000 50 0.8457823 +209 965.4975 969.375 1000 50 0.99968874 +210 969.375 973.2525 1000 50 1.0 +211 973.2525 977.1300000000001 1000 50 0.99992526 +212 977.13 981.0075 1000 50 0.8623372 +213 981.0075 984.8850000000001 1000 50 0.99953425 +214 984.885 988.7625 1000 50 1.0 +215 988.7625 992.6400000000001 1000 50 0.9999999 +216 992.64 996.5175 1000 50 0.9999857 +217 996.5175 1000.3950000000001 1000 50 0.9868645 +218 1000.395 1004.2725 1000 50 1.0 +219 1004.2725 1008.1500000000001 1000 50 0.99999666 +220 1008.15 1012.0275 1000 50 0.9999522 +221 1012.0275 1015.9050000000001 1000 50 1.0 +222 1015.905 1019.7825 1000 50 0.99992204 +223 1019.7825 1023.6600000000001 1000 50 0.99999 +224 1023.66 1027.5375 1000 50 0.9997671 +225 1027.5375 1031.415 1000 50 0.99999964 +226 1031.415 1035.2925 1000 50 0.9999864 +227 1035.2925 1039.17 1000 50 0.9920175 +228 1039.17 1043.0475000000001 1000 50 0.99999976 +229 1043.0475 1046.925 1000 50 0.99999917 +230 1046.925 1050.8025 1000 50 0.99999547 +231 1050.8025 1054.68 1000 50 0.8576607 +232 1054.68 1058.5575000000001 1000 50 0.9982869 +233 1058.5575 1062.435 1000 50 0.9999963 +234 1062.435 1066.3125 1000 50 0.9999696 +235 1066.3125 1070.19 1000 50 1.0 +236 1070.19 1074.0675 1000 50 0.99833137 +237 1074.0675 1077.9450000000002 1000 50 0.9863718 +238 1077.945 1081.8225 1000 50 0.9999808 +239 1081.8225 1085.7 1000 50 0.99999976 +240 1085.7 1089.5775 1000 50 0.99949014 +241 1089.5775 1093.4550000000002 1000 50 0.99998665 +242 1093.455 1097.3325 1000 50 0.99999404 +243 1097.3325 1101.21 1000 50 1.0 +244 1101.21 1105.0875 1000 50 0.9806522 +245 1105.0875 1108.9650000000001 1000 50 0.9998461 +246 1108.965 1112.8425 1000 50 0.99999964 +247 1112.8425 1116.72 1000 50 0.99994695 +248 1116.72 1120.5975 1000 50 0.9999994 +249 1120.5975 1124.4750000000001 1000 50 0.9999136 +250 1124.475 1128.3525 1000 50 1.0 +251 1128.3525 1132.23 1000 50 1.0 +252 1132.23 1136.1075 1000 50 0.9999058 +253 1136.1075 1139.9850000000001 1000 50 0.9999583 +254 1139.985 1143.8625 1000 50 0.9609709 +255 1143.8625 1147.74 1000 50 1.0 +256 1147.74 1151.6175 1000 50 0.9999988 +257 1151.6175 1155.4950000000001 1000 50 0.98452234 +258 1155.495 1159.3725 1000 50 1.0 +259 1159.3725 1163.25 1000 50 0.9999995 +260 1163.25 1167.1275 1000 50 0.99997926 +261 1167.1275 1171.005 1000 50 0.8016479 +262 1171.005 1174.8825000000002 1000 50 0.9999832 +263 1174.8825 1178.76 1000 50 1.0 +264 1178.76 1182.6375 1000 50 0.99995506 +265 1182.6375 1186.515 1000 50 0.9999044 +266 1186.515 1190.3925000000002 1000 50 1.0 +267 1190.3925 1194.27 1000 50 0.9999105 +268 1194.27 1198.1475 1000 50 1.0 +269 1198.1475 1202.025 1000 50 0.99986374 +270 1202.025 1205.9025000000001 1000 50 0.9999994 +271 1205.9025 1209.78 1000 50 0.9999989 +272 1209.78 1213.6575 1000 50 0.9999081 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_16-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_16-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..934b79b90505085bb655ff6627d33427045a4ed3 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_16-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,90 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.73219734 +2 11.6325 15.51 1000 50 0.50424117 +3 23.265 27.142500000000002 1000 50 0.5072701 +4 31.02 34.8975 1000 50 0.77688265 +5 38.775 42.652499999999996 1000 50 0.56520563 +6 42.6525 46.53 1000 50 0.9998091 +7 46.53 50.4075 1000 50 0.9999281 +8 54.285 58.162499999999994 1000 50 0.99995744 +9 58.1625 62.04 1000 50 0.6908234 +10 62.04 65.9175 1000 50 0.9518413 +11 65.9175 69.795 1000 50 0.9985056 +12 73.6725 77.55 1000 50 0.99979335 +13 77.55 81.4275 1000 50 0.98951083 +14 81.4275 85.30499999999999 1000 50 0.71761036 +15 85.305 89.1825 1000 50 0.9780117 +16 93.06 96.9375 1000 50 0.74003726 +17 96.9375 100.815 1000 50 0.99994993 +18 100.815 104.6925 1000 50 0.99999905 +19 104.6925 108.57 1000 50 0.9999722 +20 108.57 112.44749999999999 1000 50 0.99999905 +21 112.4475 116.325 1000 50 0.9999969 +22 116.325 120.2025 1000 50 0.8204572 +23 120.2025 124.08 1000 50 0.99989665 +24 124.08 127.9575 1000 50 0.9519381 +25 127.9575 131.835 1000 50 0.9856505 +26 131.835 135.7125 1000 50 0.99999714 +27 135.7125 139.59 1000 50 0.9999666 +28 139.59 143.4675 1000 50 0.9999815 +29 143.4675 147.345 1000 50 0.99993086 +30 147.345 151.2225 1000 50 0.99999774 +31 151.2225 155.1 1000 50 0.8081366 +32 158.9775 162.855 1000 50 1.0 +33 162.855 166.7325 1000 50 0.6418892 +34 166.7325 170.60999999999999 1000 50 0.7724044 +35 170.61 174.4875 1000 50 1.0 +36 174.4875 178.365 1000 50 0.99896085 +37 178.365 182.2425 1000 50 0.974275 +38 182.2425 186.12 1000 50 0.999998 +39 186.12 189.9975 1000 50 0.9999994 +40 189.9975 193.875 1000 50 0.7687347 +41 193.875 197.7525 1000 50 0.9985574 +42 197.7525 201.63 1000 50 0.9999995 +43 201.63 205.5075 1000 50 0.9999888 +44 205.5075 209.385 1000 50 0.9953081 +45 209.385 213.2625 1000 50 0.99993837 +46 213.2625 217.14 1000 50 1.0 +47 217.14 221.01749999999998 1000 50 0.99869365 +48 221.0175 224.895 1000 50 0.9999224 +49 224.895 228.7725 1000 50 0.99999213 +50 228.7725 232.65 1000 50 0.9405355 +51 232.65 236.5275 1000 50 0.9999802 +52 236.5275 240.405 1000 50 0.9999896 +53 240.405 244.2825 1000 50 0.9999963 +54 244.2825 248.16 1000 50 0.99994373 +55 248.16 252.0375 1000 50 0.99999905 +56 252.0375 255.915 1000 50 0.9999449 +57 255.915 259.7925 1000 50 0.999987 +58 259.7925 263.67 1000 50 0.9999994 +59 263.67 267.5475 1000 50 0.9999995 +60 267.5475 271.425 1000 50 0.99999785 +61 271.425 275.3025 1000 50 0.94963056 +62 275.3025 279.18 1000 50 0.99999964 +63 279.18 283.0575 1000 50 0.9999975 +64 283.0575 286.935 1000 50 0.99999654 +65 286.935 290.8125 1000 50 0.9999726 +66 290.8125 294.69 1000 50 0.9999988 +67 294.69 298.5675 1000 50 0.9994867 +68 298.5675 302.445 1000 50 0.99999917 +69 302.445 306.3225 1000 50 0.9997533 +70 306.3225 310.2 1000 50 0.9503058 +71 310.2 314.0775 1000 50 1.0 +72 314.0775 317.955 1000 50 0.99999774 +73 317.955 321.8325 1000 50 0.9978162 +74 321.8325 325.71 1000 50 0.99999917 +75 325.71 329.5875 1000 50 0.8524664 +76 329.5875 333.465 1000 50 1.0 +77 333.465 337.3425 1000 50 0.99992526 +78 337.3425 341.21999999999997 1000 50 0.9999778 +79 341.22 345.0975 1000 50 0.99635005 +80 345.0975 348.975 1000 50 0.99909866 +81 348.975 352.8525 1000 50 0.99998236 +82 352.8525 356.73 1000 50 0.9985776 +83 356.73 360.6075 1000 50 0.99950564 +84 360.6075 364.485 1000 50 0.98951894 +85 364.485 368.3625 1000 50 1.0 +86 368.3625 372.24 1000 50 0.99999046 +87 372.24 376.1175 1000 50 0.999723 +88 376.1175 379.995 1000 50 0.9995326 +89 379.995 383.8725 1000 50 0.9999865 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_16-10-02_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_16-10-02_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..228622a0481db44017623abb0cda15dc5502fdd6 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_16-10-02_annot_2022-11-30_01.txt @@ -0,0 +1,212 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.77809376 +2 15.51 19.3875 1000 50 0.7140884 +3 23.265 27.142500000000002 1000 50 0.98072374 +4 27.1425 31.02 1000 50 0.6810558 +5 31.02 34.8975 1000 50 0.9999002 +6 38.775 42.652499999999996 1000 50 0.9990231 +7 42.6525 46.53 1000 50 0.68707925 +8 46.53 50.4075 1000 50 0.7641987 +9 50.4075 54.285 1000 50 0.6018907 +10 54.285 58.162499999999994 1000 50 0.99752825 +11 58.1625 62.04 1000 50 0.9761836 +12 62.04 65.9175 1000 50 0.99523383 +13 65.9175 69.795 1000 50 0.73939157 +14 69.795 73.6725 1000 50 0.9535802 +15 73.6725 77.55 1000 50 0.9999962 +16 81.4275 85.30499999999999 1000 50 0.96820694 +17 85.305 89.1825 1000 50 0.99997187 +18 93.06 96.9375 1000 50 0.9994968 +19 96.9375 100.815 1000 50 0.9999373 +20 100.815 104.6925 1000 50 0.73505545 +21 104.6925 108.57 1000 50 0.99994195 +22 108.57 112.44749999999999 1000 50 0.9999999 +23 112.4475 116.325 1000 50 0.8232214 +24 116.325 120.2025 1000 50 0.99998534 +25 120.2025 124.08 1000 50 0.9999696 +26 124.08 127.9575 1000 50 0.9999902 +27 127.9575 131.835 1000 50 0.99996054 +28 131.835 135.7125 1000 50 0.9999683 +29 135.7125 139.59 1000 50 0.99952805 +30 139.59 143.4675 1000 50 0.9999958 +31 143.4675 147.345 1000 50 0.9999442 +32 147.345 151.2225 1000 50 0.5286139 +33 151.2225 155.1 1000 50 1.0 +34 155.1 158.9775 1000 50 0.9999995 +35 158.9775 162.855 1000 50 0.9991875 +36 162.855 166.7325 1000 50 0.97028035 +37 170.61 174.4875 1000 50 0.99999774 +38 174.4875 178.365 1000 50 0.9996958 +39 178.365 182.2425 1000 50 0.99999976 +40 182.2425 186.12 1000 50 0.92801523 +41 186.12 189.9975 1000 50 0.9989323 +42 189.9975 193.875 1000 50 0.9743172 +43 193.875 197.7525 1000 50 0.9999995 +44 197.7525 201.63 1000 50 0.99993706 +45 201.63 205.5075 1000 50 0.95586467 +46 205.5075 209.385 1000 50 1.0 +47 209.385 213.2625 1000 50 0.8806053 +48 217.14 221.01749999999998 1000 50 0.9999975 +49 221.0175 224.895 1000 50 0.99998796 +50 224.895 228.7725 1000 50 0.99995553 +51 228.7725 232.65 1000 50 0.99447423 +52 232.65 236.5275 1000 50 0.9998729 +53 236.5275 240.405 1000 50 0.9950073 +54 240.405 244.2825 1000 50 0.9940661 +55 244.2825 248.16 1000 50 0.99897313 +56 248.16 252.0375 1000 50 0.9999132 +57 252.0375 255.915 1000 50 0.9990583 +58 255.915 259.7925 1000 50 0.9999918 +59 259.7925 263.67 1000 50 0.99994075 +60 263.67 267.5475 1000 50 0.999767 +61 267.5475 271.425 1000 50 0.99872893 +62 271.425 275.3025 1000 50 0.989305 +63 275.3025 279.18 1000 50 0.99999213 +64 279.18 283.0575 1000 50 0.9999999 +65 283.0575 286.935 1000 50 0.99529725 +66 286.935 290.8125 1000 50 1.0 +67 290.8125 294.69 1000 50 0.9499422 +68 294.69 298.5675 1000 50 0.9998791 +69 298.5675 302.445 1000 50 1.0 +70 302.445 306.3225 1000 50 0.99941766 +71 306.3225 310.2 1000 50 0.9999999 +72 310.2 314.0775 1000 50 0.9999995 +73 314.0775 317.955 1000 50 0.9998852 +74 317.955 321.8325 1000 50 1.0 +75 321.8325 325.71 1000 50 0.99995565 +76 325.71 329.5875 1000 50 0.9999689 +77 329.5875 333.465 1000 50 1.0 +78 333.465 337.3425 1000 50 0.9948598 +79 337.3425 341.21999999999997 1000 50 0.99999833 +80 341.22 345.0975 1000 50 1.0 +81 345.0975 348.975 1000 50 0.99696964 +82 348.975 352.8525 1000 50 0.9999975 +83 352.8525 356.73 1000 50 1.0 +84 356.73 360.6075 1000 50 0.79183227 +85 360.6075 364.485 1000 50 0.9999999 +86 364.485 368.3625 1000 50 0.99999726 +87 368.3625 372.24 1000 50 0.999987 +88 372.24 376.1175 1000 50 1.0 +89 376.1175 379.995 1000 50 0.99942005 +90 379.995 383.8725 1000 50 1.0 +91 383.8725 387.75 1000 50 0.98671967 +92 387.75 391.6275 1000 50 0.99983764 +93 391.6275 395.505 1000 50 0.9997515 +94 395.505 399.3825 1000 50 0.9999579 +95 399.3825 403.26 1000 50 0.9958039 +96 403.26 407.1375 1000 50 0.9974367 +97 407.1375 411.015 1000 50 0.9999962 +98 411.015 414.8925 1000 50 0.85729724 +99 414.8925 418.77 1000 50 1.0 +100 418.77 422.6475 1000 50 0.99987924 +101 422.6475 426.525 1000 50 1.0 +102 426.525 430.4025 1000 50 0.9999721 +103 430.4025 434.28 1000 50 0.9992118 +104 434.28 438.15749999999997 1000 50 0.9983183 +105 438.1575 442.035 1000 50 0.99999654 +106 442.035 445.9125 1000 50 0.9999819 +107 445.9125 449.79 1000 50 0.99998343 +108 449.79 453.6675 1000 50 0.9999995 +109 453.6675 457.545 1000 50 0.99992216 +110 457.545 461.4225 1000 50 0.99938095 +111 461.4225 465.3 1000 50 0.6858881 +112 465.3 469.1775 1000 50 0.94108385 +113 469.1775 473.055 1000 50 0.85856634 +114 473.055 476.9325 1000 50 0.88635284 +115 476.9325 480.81 1000 50 0.85083693 +116 480.81 484.6875 1000 50 0.73668057 +117 488.565 492.4425 1000 50 0.5230933 +118 492.4425 496.32 1000 50 0.5521482 +119 496.32 500.1975 1000 50 0.6383226 +120 500.1975 504.075 1000 50 0.6315429 +121 507.9525 511.83 1000 50 0.7609392 +122 511.83 515.7075 1000 50 0.72118074 +123 515.7075 519.585 1000 50 0.6231259 +124 527.34 531.2175000000001 1000 50 0.5414193 +125 531.2175 535.095 1000 50 0.86360425 +126 538.9725 542.85 1000 50 0.7792108 +127 542.85 546.7275000000001 1000 50 0.8189523 +128 546.7275 550.605 1000 50 0.69934267 +129 554.4825 558.36 1000 50 0.7690219 +130 558.36 562.2375000000001 1000 50 0.6027483 +131 566.115 569.9925000000001 1000 50 0.9923557 +132 573.87 577.7475000000001 1000 50 0.517262 +133 577.7475 581.625 1000 50 0.85033005 +134 585.5025 589.3800000000001 1000 50 0.9411824 +135 593.2575 597.1350000000001 1000 50 0.65945894 +136 604.89 608.7675 1000 50 0.7122821 +137 608.7675 612.6450000000001 1000 50 0.5614471 +138 612.645 616.5225 1000 50 0.59782165 +139 616.5225 620.4000000000001 1000 50 0.6859533 +140 624.2775 628.1550000000001 1000 50 0.9918544 +141 628.155 632.0325 1000 50 0.8741526 +142 632.0325 635.9100000000001 1000 50 0.9948395 +143 635.91 639.7875 1000 50 0.99930537 +144 639.7875 643.6650000000001 1000 50 0.9999474 +145 643.665 647.5425 1000 50 0.99985135 +146 647.5425 651.4200000000001 1000 50 0.99998474 +147 651.42 655.2975 1000 50 0.8558502 +148 655.2975 659.1750000000001 1000 50 0.9766163 +149 659.175 663.0525 1000 50 0.99999404 +150 663.0525 666.9300000000001 1000 50 0.5648873 +151 666.93 670.8075 1000 50 0.99998367 +152 670.8075 674.6850000000001 1000 50 0.9600489 +153 674.685 678.5625 1000 50 0.9994949 +154 678.5625 682.44 1000 50 0.99017555 +155 682.44 686.3175000000001 1000 50 0.836311 +156 686.3175 690.195 1000 50 0.9999999 +157 690.195 694.0725000000001 1000 50 0.99986625 +158 694.0725 697.95 1000 50 0.5070058 +159 697.95 701.8275000000001 1000 50 0.99996173 +160 701.8275 705.705 1000 50 0.9999962 +161 705.705 709.5825000000001 1000 50 0.92559475 +162 709.5825 713.46 1000 50 0.9999974 +163 713.46 717.3375000000001 1000 50 0.9999989 +164 717.3375 721.215 1000 50 0.9982749 +165 721.215 725.0925000000001 1000 50 1.0 +166 725.0925 728.97 1000 50 0.9997919 +167 728.97 732.8475000000001 1000 50 0.99796414 +168 732.8475 736.725 1000 50 0.99934906 +169 736.725 740.6025000000001 1000 50 0.9999478 +170 740.6025 744.48 1000 50 0.9995117 +171 744.48 748.3575000000001 1000 50 0.9999454 +172 748.3575 752.235 1000 50 0.99999976 +173 752.235 756.1125000000001 1000 50 0.9998229 +174 756.1125 759.99 1000 50 0.9988722 +175 759.99 763.8675000000001 1000 50 0.9999982 +176 763.8675 767.745 1000 50 0.99999905 +177 767.745 771.6225000000001 1000 50 0.5398161 +178 771.6225 775.5 1000 50 0.94861424 +179 775.5 779.3775 1000 50 0.99966574 +180 779.3775 783.2550000000001 1000 50 0.999925 +181 783.255 787.1325 1000 50 0.9999982 +182 787.1325 791.0100000000001 1000 50 0.99944824 +183 791.01 794.8875 1000 50 0.9989575 +184 794.8875 798.7650000000001 1000 50 1.0 +185 798.765 802.6425 1000 50 0.99874145 +186 802.6425 806.5200000000001 1000 50 0.99466985 +187 806.52 810.3975 1000 50 1.0 +188 810.3975 814.2750000000001 1000 50 0.9969465 +189 814.275 818.1525 1000 50 1.0 +190 818.1525 822.0300000000001 1000 50 0.9999968 +191 822.03 825.9075 1000 50 0.9947674 +192 825.9075 829.7850000000001 1000 50 0.99984646 +193 829.785 833.6625 1000 50 0.99844956 +194 833.6625 837.5400000000001 1000 50 0.9998324 +195 837.54 841.4175 1000 50 0.99999285 +196 841.4175 845.2950000000001 1000 50 0.99998665 +197 845.295 849.1725 1000 50 1.0 +198 849.1725 853.0500000000001 1000 50 0.99999917 +199 853.05 856.9275 1000 50 0.99999225 +200 856.9275 860.8050000000001 1000 50 0.99997985 +201 860.805 864.6825 1000 50 0.9999999 +202 864.6825 868.5600000000001 1000 50 0.99994123 +203 868.56 872.4375 1000 50 0.99999964 +204 872.4375 876.315 1000 50 0.99999166 +205 876.315 880.1925000000001 1000 50 0.99999607 +206 880.1925 884.07 1000 50 1.0 +207 884.07 887.9475000000001 1000 50 0.99999917 +208 887.9475 891.825 1000 50 0.99998355 +209 891.825 895.7025000000001 1000 50 0.9740448 +210 895.7025 899.58 1000 50 0.9998704 +211 899.58 903.4575000000001 1000 50 0.99640673 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_17-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_17-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b8ecf29537381c4dcefff6afb4fe2294635f642f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_17-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,150 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999989 +2 3.8775 7.755 1000 50 0.9726935 +3 7.755 11.6325 1000 50 0.9987514 +4 11.6325 15.51 1000 50 0.99970347 +5 15.51 19.3875 1000 50 0.9999999 +6 19.3875 23.265 1000 50 0.9981628 +7 23.265 27.142500000000002 1000 50 0.99995506 +8 27.1425 31.02 1000 50 0.9999963 +9 31.02 34.8975 1000 50 0.9999999 +10 34.8975 38.775 1000 50 0.9999927 +11 38.775 42.652499999999996 1000 50 0.9999907 +12 42.6525 46.53 1000 50 0.9999944 +13 46.53 50.4075 1000 50 0.9999628 +14 50.4075 54.285 1000 50 0.9321569 +15 54.285 58.162499999999994 1000 50 0.8340036 +16 58.1625 62.04 1000 50 0.92035943 +17 65.9175 69.795 1000 50 0.99469405 +18 69.795 73.6725 1000 50 0.9994137 +19 73.6725 77.55 1000 50 0.84663206 +20 85.305 89.1825 1000 50 0.69961655 +21 89.1825 93.06 1000 50 0.6501702 +22 108.57 112.44749999999999 1000 50 0.66294307 +23 116.325 120.2025 1000 50 0.9068699 +24 120.2025 124.08 1000 50 0.6886967 +25 124.08 127.9575 1000 50 0.54926854 +26 135.7125 139.59 1000 50 0.5701799 +27 158.9775 162.855 1000 50 0.6650138 +28 162.855 166.7325 1000 50 0.68875915 +29 174.4875 178.365 1000 50 0.9368991 +30 182.2425 186.12 1000 50 0.80726695 +31 186.12 189.9975 1000 50 0.5522051 +32 189.9975 193.875 1000 50 0.9174196 +33 201.63 205.5075 1000 50 0.5689952 +34 209.385 213.2625 1000 50 0.9716186 +35 213.2625 217.14 1000 50 0.99992776 +36 217.14 221.01749999999998 1000 50 0.999992 +37 221.0175 224.895 1000 50 0.9999989 +38 224.895 228.7725 1000 50 0.9999168 +39 228.7725 232.65 1000 50 0.9999999 +40 232.65 236.5275 1000 50 0.99999774 +41 236.5275 240.405 1000 50 1.0 +42 240.405 244.2825 1000 50 0.9989152 +43 244.2825 248.16 1000 50 0.9672514 +44 248.16 252.0375 1000 50 0.99994826 +45 252.0375 255.915 1000 50 0.9195591 +46 255.915 259.7925 1000 50 0.99994266 +47 259.7925 263.67 1000 50 0.98728675 +48 263.67 267.5475 1000 50 0.99998736 +49 267.5475 271.425 1000 50 0.98971164 +50 275.3025 279.18 1000 50 1.0 +51 279.18 283.0575 1000 50 0.9999999 +52 283.0575 286.935 1000 50 0.8347543 +53 286.935 290.8125 1000 50 0.9999957 +54 290.8125 294.69 1000 50 0.99998534 +55 294.69 298.5675 1000 50 0.94795954 +56 298.5675 302.445 1000 50 0.7281842 +57 302.445 306.3225 1000 50 0.99989593 +58 306.3225 310.2 1000 50 0.99998915 +59 310.2 314.0775 1000 50 0.99999964 +60 314.0775 317.955 1000 50 0.9999981 +61 317.955 321.8325 1000 50 1.0 +62 321.8325 325.71 1000 50 0.99999726 +63 325.71 329.5875 1000 50 0.9984456 +64 329.5875 333.465 1000 50 0.99997365 +65 333.465 337.3425 1000 50 0.9989384 +66 337.3425 341.21999999999997 1000 50 0.98297125 +67 341.22 345.0975 1000 50 0.99999726 +68 345.0975 348.975 1000 50 1.0 +69 348.975 352.8525 1000 50 0.9847238 +70 352.8525 356.73 1000 50 1.0 +71 356.73 360.6075 1000 50 0.99999726 +72 360.6075 364.485 1000 50 0.9991812 +73 364.485 368.3625 1000 50 1.0 +74 368.3625 372.24 1000 50 0.9992914 +75 372.24 376.1175 1000 50 0.9990614 +76 376.1175 379.995 1000 50 0.9999993 +77 379.995 383.8725 1000 50 0.99999905 +78 383.8725 387.75 1000 50 0.99999726 +79 387.75 391.6275 1000 50 0.9999864 +80 391.6275 395.505 1000 50 0.9999993 +81 395.505 399.3825 1000 50 0.9999938 +82 399.3825 403.26 1000 50 0.9999416 +83 403.26 407.1375 1000 50 0.9994066 +84 407.1375 411.015 1000 50 0.9999999 +85 411.015 414.8925 1000 50 0.99845827 +86 414.8925 418.77 1000 50 0.9999993 +87 418.77 422.6475 1000 50 0.9999747 +88 422.6475 426.525 1000 50 0.99976224 +89 426.525 430.4025 1000 50 1.0 +90 430.4025 434.28 1000 50 0.99999404 +91 434.28 438.15749999999997 1000 50 0.9999862 +92 438.1575 442.035 1000 50 0.9998715 +93 442.035 445.9125 1000 50 0.9963159 +94 445.9125 449.79 1000 50 0.9999964 +95 449.79 453.6675 1000 50 1.0 +96 453.6675 457.545 1000 50 0.99577624 +97 457.545 461.4225 1000 50 1.0 +98 461.4225 465.3 1000 50 0.99999964 +99 465.3 469.1775 1000 50 0.99751735 +100 469.1775 473.055 1000 50 0.9999995 +101 473.055 476.9325 1000 50 0.9999999 +102 476.9325 480.81 1000 50 0.99999356 +103 480.81 484.6875 1000 50 0.9999993 +104 484.6875 488.565 1000 50 0.99881005 +105 488.565 492.4425 1000 50 0.99999535 +106 492.4425 496.32 1000 50 0.99999654 +107 496.32 500.1975 1000 50 0.99917537 +108 500.1975 504.075 1000 50 0.9999672 +109 504.075 507.9525 1000 50 0.99999774 +110 507.9525 511.83 1000 50 0.99934155 +111 511.83 515.7075 1000 50 0.9999877 +112 515.7075 519.585 1000 50 0.9959972 +113 519.585 523.4625000000001 1000 50 0.9986193 +114 523.4625 527.34 1000 50 0.9994399 +115 527.34 531.2175000000001 1000 50 0.99994516 +116 531.2175 535.095 1000 50 0.99999666 +117 535.095 538.9725000000001 1000 50 0.99987304 +118 538.9725 542.85 1000 50 0.99999917 +119 542.85 546.7275000000001 1000 50 0.9964456 +120 546.7275 550.605 1000 50 0.9979978 +121 550.605 554.4825000000001 1000 50 0.99060553 +122 554.4825 558.36 1000 50 0.9999993 +123 558.36 562.2375000000001 1000 50 0.9959163 +124 562.2375 566.115 1000 50 0.97881114 +125 566.115 569.9925000000001 1000 50 0.99999785 +126 569.9925 573.87 1000 50 0.99971634 +127 573.87 577.7475000000001 1000 50 0.99998915 +128 577.7475 581.625 1000 50 0.99999166 +129 581.625 585.5025 1000 50 0.9998 +130 585.5025 589.3800000000001 1000 50 0.99665916 +131 589.38 593.2575 1000 50 0.99980646 +132 593.2575 597.1350000000001 1000 50 0.9999809 +133 597.135 601.0125 1000 50 0.9999976 +134 601.0125 604.8900000000001 1000 50 0.9999572 +135 604.89 608.7675 1000 50 0.99995875 +136 608.7675 612.6450000000001 1000 50 0.99958855 +137 612.645 616.5225 1000 50 0.9998573 +138 616.5225 620.4000000000001 1000 50 0.9998696 +139 620.4 624.2775 1000 50 0.99998426 +140 624.2775 628.1550000000001 1000 50 0.99991965 +141 628.155 632.0325 1000 50 0.9999999 +142 632.0325 635.9100000000001 1000 50 0.99938047 +143 635.91 639.7875 1000 50 0.9408013 +144 639.7875 643.6650000000001 1000 50 0.9503381 +145 643.665 647.5425 1000 50 0.7693138 +146 647.5425 651.4200000000001 1000 50 0.8809654 +147 651.42 655.2975 1000 50 0.7087245 +148 655.2975 659.1750000000001 1000 50 0.94698584 +149 670.8075 674.6850000000001 1000 50 0.7227165 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_17-15-06_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_17-15-06_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..c06d73b51428a4c6c03d0b649494f8af8c9712eb --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_17-15-06_annot_2022-11-30_01.txt @@ -0,0 +1,145 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.999997 +2 3.8775 7.755 1000 50 0.9999311 +3 7.755 11.6325 1000 50 0.99999917 +4 11.6325 15.51 1000 50 0.9999994 +5 15.51 19.3875 1000 50 0.9999981 +6 19.3875 23.265 1000 50 0.99796057 +7 23.265 27.142500000000002 1000 50 0.99999964 +8 27.1425 31.02 1000 50 0.9999212 +9 31.02 34.8975 1000 50 0.9999994 +10 34.8975 38.775 1000 50 0.9999962 +11 38.775 42.652499999999996 1000 50 0.986429 +12 42.6525 46.53 1000 50 1.0 +13 46.53 50.4075 1000 50 0.9999521 +14 50.4075 54.285 1000 50 0.999972 +15 54.285 58.162499999999994 1000 50 1.0 +16 58.1625 62.04 1000 50 0.99997973 +17 62.04 65.9175 1000 50 0.98504436 +18 65.9175 69.795 1000 50 1.0 +19 69.795 73.6725 1000 50 0.9999988 +20 73.6725 77.55 1000 50 0.9936295 +21 77.55 81.4275 1000 50 0.9999877 +22 81.4275 85.30499999999999 1000 50 0.9999999 +23 85.305 89.1825 1000 50 1.0 +24 89.1825 93.06 1000 50 0.9994917 +25 96.9375 100.815 1000 50 0.99999535 +26 100.815 104.6925 1000 50 0.999995 +27 104.6925 108.57 1000 50 0.8824491 +28 108.57 112.44749999999999 1000 50 1.0 +29 112.4475 116.325 1000 50 0.91149294 +30 116.325 120.2025 1000 50 0.99999535 +31 120.2025 124.08 1000 50 0.99999714 +32 124.08 127.9575 1000 50 0.97657293 +33 127.9575 131.835 1000 50 1.0 +34 131.835 135.7125 1000 50 0.9999994 +35 135.7125 139.59 1000 50 0.9142069 +36 139.59 143.4675 1000 50 0.9999964 +37 143.4675 147.345 1000 50 0.99999666 +38 147.345 151.2225 1000 50 0.9968168 +39 151.2225 155.1 1000 50 0.9999995 +40 155.1 158.9775 1000 50 0.9990687 +41 158.9775 162.855 1000 50 0.9694512 +42 162.855 166.7325 1000 50 1.0 +43 166.7325 170.60999999999999 1000 50 0.99955934 +44 170.61 174.4875 1000 50 0.99598074 +45 174.4875 178.365 1000 50 0.9999654 +46 178.365 182.2425 1000 50 0.9995192 +47 182.2425 186.12 1000 50 0.9998808 +48 186.12 189.9975 1000 50 0.999997 +49 189.9975 193.875 1000 50 1.0 +50 193.875 197.7525 1000 50 0.99997485 +51 197.7525 201.63 1000 50 0.999948 +52 201.63 205.5075 1000 50 0.9999964 +53 205.5075 209.385 1000 50 1.0 +54 209.385 213.2625 1000 50 0.9996779 +55 213.2625 217.14 1000 50 0.9745612 +56 217.14 221.01749999999998 1000 50 1.0 +57 221.0175 224.895 1000 50 0.9999802 +58 224.895 228.7725 1000 50 1.0 +59 228.7725 232.65 1000 50 0.9996997 +60 232.65 236.5275 1000 50 1.0 +61 236.5275 240.405 1000 50 1.0 +62 240.405 244.2825 1000 50 0.9978296 +63 244.2825 248.16 1000 50 0.9999999 +64 248.16 252.0375 1000 50 0.98742235 +65 252.0375 255.915 1000 50 1.0 +66 255.915 259.7925 1000 50 0.9999999 +67 259.7925 263.67 1000 50 0.9999995 +68 263.67 267.5475 1000 50 0.99995196 +69 267.5475 271.425 1000 50 0.99997294 +70 271.425 275.3025 1000 50 0.9999999 +71 275.3025 279.18 1000 50 0.99992704 +72 279.18 283.0575 1000 50 1.0 +73 283.0575 286.935 1000 50 0.9987941 +74 286.935 290.8125 1000 50 0.99999976 +75 290.8125 294.69 1000 50 1.0 +76 294.69 298.5675 1000 50 0.99921644 +77 298.5675 302.445 1000 50 1.0 +78 302.445 306.3225 1000 50 0.9957378 +79 306.3225 310.2 1000 50 1.0 +80 310.2 314.0775 1000 50 1.0 +81 314.0775 317.955 1000 50 0.9715584 +82 317.955 321.8325 1000 50 1.0 +83 321.8325 325.71 1000 50 0.998334 +84 325.71 329.5875 1000 50 0.99997365 +85 329.5875 333.465 1000 50 0.9998598 +86 333.465 337.3425 1000 50 1.0 +87 337.3425 341.21999999999997 1000 50 0.99999976 +88 341.22 345.0975 1000 50 1.0 +89 345.0975 348.975 1000 50 0.9996966 +90 348.975 352.8525 1000 50 1.0 +91 352.8525 356.73 1000 50 0.9999862 +92 356.73 360.6075 1000 50 0.9999974 +93 360.6075 364.485 1000 50 1.0 +94 364.485 368.3625 1000 50 0.9999993 +95 368.3625 372.24 1000 50 0.99999905 +96 372.24 376.1175 1000 50 0.9999999 +97 376.1175 379.995 1000 50 1.0 +98 379.995 383.8725 1000 50 0.99999774 +99 383.8725 387.75 1000 50 1.0 +100 387.75 391.6275 1000 50 0.9999912 +101 391.6275 395.505 1000 50 1.0 +102 395.505 399.3825 1000 50 0.99996996 +103 399.3825 403.26 1000 50 0.99999547 +104 403.26 407.1375 1000 50 0.9999995 +105 407.1375 411.015 1000 50 0.99999976 +106 411.015 414.8925 1000 50 0.99999857 +107 414.8925 418.77 1000 50 1.0 +108 418.77 422.6475 1000 50 0.999998 +109 422.6475 426.525 1000 50 0.99988806 +110 426.525 430.4025 1000 50 0.9999857 +111 430.4025 434.28 1000 50 1.0 +112 434.28 438.15749999999997 1000 50 0.9999988 +113 438.1575 442.035 1000 50 0.9999876 +114 442.035 445.9125 1000 50 0.99606436 +115 445.9125 449.79 1000 50 0.99999714 +116 449.79 453.6675 1000 50 0.9999987 +117 453.6675 457.545 1000 50 0.999931 +118 457.545 461.4225 1000 50 1.0 +119 461.4225 465.3 1000 50 0.99997103 +120 465.3 469.1775 1000 50 0.9996008 +121 469.1775 473.055 1000 50 0.9999409 +122 473.055 476.9325 1000 50 0.99997056 +123 476.9325 480.81 1000 50 0.98452014 +124 480.81 484.6875 1000 50 0.99949026 +125 484.6875 488.565 1000 50 0.9839258 +126 488.565 492.4425 1000 50 0.99928904 +127 492.4425 496.32 1000 50 0.9999908 +128 496.32 500.1975 1000 50 0.99515545 +129 500.1975 504.075 1000 50 0.7987396 +130 504.075 507.9525 1000 50 0.8131094 +131 507.9525 511.83 1000 50 0.94206876 +132 511.83 515.7075 1000 50 0.73279226 +133 519.585 523.4625000000001 1000 50 0.554322 +134 523.4625 527.34 1000 50 0.83176124 +135 531.2175 535.095 1000 50 0.5289381 +136 535.095 538.9725000000001 1000 50 0.9646604 +137 538.9725 542.85 1000 50 0.6838984 +138 546.7275 550.605 1000 50 0.9995191 +139 554.4825 558.36 1000 50 0.82805747 +140 562.2375 566.115 1000 50 0.6786352 +141 573.87 577.7475000000001 1000 50 0.9997582 +142 577.7475 581.625 1000 50 0.685818 +143 589.38 593.2575 1000 50 0.6102276 +144 593.2575 597.1350000000001 1000 50 0.62978 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_18-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_18-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..21e76556856b72d3eac9bc64d62c411cb5fc4296 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_18-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,171 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.986925 +2 3.8775 7.755 1000 50 0.99999976 +3 7.755 11.6325 1000 50 0.99989307 +4 11.6325 15.51 1000 50 0.9999989 +5 15.51 19.3875 1000 50 0.9996532 +6 19.3875 23.265 1000 50 1.0 +7 23.265 27.142500000000002 1000 50 0.9885184 +8 27.1425 31.02 1000 50 0.999742 +9 31.02 34.8975 1000 50 0.9991079 +10 34.8975 38.775 1000 50 0.99995685 +11 38.775 42.652499999999996 1000 50 0.99956745 +12 42.6525 46.53 1000 50 1.0 +13 46.53 50.4075 1000 50 0.99991846 +14 50.4075 54.285 1000 50 0.99989235 +15 54.285 58.162499999999994 1000 50 0.99629694 +16 58.1625 62.04 1000 50 0.99999857 +17 62.04 65.9175 1000 50 0.9994848 +18 65.9175 69.795 1000 50 0.9827976 +19 69.795 73.6725 1000 50 0.9999982 +20 73.6725 77.55 1000 50 0.9889361 +21 77.55 81.4275 1000 50 0.6205923 +22 81.4275 85.30499999999999 1000 50 0.86415 +23 85.305 89.1825 1000 50 0.64120233 +24 89.1825 93.06 1000 50 0.8454952 +25 93.06 96.9375 1000 50 0.60147196 +26 104.6925 108.57 1000 50 0.8095696 +27 108.57 112.44749999999999 1000 50 0.6488838 +28 120.2025 124.08 1000 50 0.6009117 +29 131.835 135.7125 1000 50 0.52177554 +30 139.59 143.4675 1000 50 0.5963333 +31 158.9775 162.855 1000 50 0.6337715 +32 162.855 166.7325 1000 50 0.984938 +33 166.7325 170.60999999999999 1000 50 0.5493013 +34 170.61 174.4875 1000 50 0.99832577 +35 178.365 182.2425 1000 50 0.9139867 +36 182.2425 186.12 1000 50 0.67962855 +37 189.9975 193.875 1000 50 0.9714035 +38 197.7525 201.63 1000 50 0.93473125 +39 205.5075 209.385 1000 50 0.9963201 +40 209.385 213.2625 1000 50 0.64490867 +41 213.2625 217.14 1000 50 0.742151 +42 217.14 221.01749999999998 1000 50 0.8808122 +43 224.895 228.7725 1000 50 0.6336365 +44 228.7725 232.65 1000 50 0.983845 +45 236.5275 240.405 1000 50 0.7917665 +46 240.405 244.2825 1000 50 0.9960091 +47 244.2825 248.16 1000 50 0.99999833 +48 248.16 252.0375 1000 50 0.8055685 +49 252.0375 255.915 1000 50 0.99999356 +50 255.915 259.7925 1000 50 0.999951 +51 259.7925 263.67 1000 50 0.99997854 +52 263.67 267.5475 1000 50 0.9316497 +53 267.5475 271.425 1000 50 0.9999019 +54 271.425 275.3025 1000 50 0.89797467 +55 275.3025 279.18 1000 50 0.96732 +56 279.18 283.0575 1000 50 0.616521 +57 283.0575 286.935 1000 50 0.99895823 +58 286.935 290.8125 1000 50 0.9996586 +59 290.8125 294.69 1000 50 0.503562 +60 294.69 298.5675 1000 50 0.9999918 +61 298.5675 302.445 1000 50 0.9999994 +62 302.445 306.3225 1000 50 0.58984035 +63 306.3225 310.2 1000 50 0.9884674 +64 310.2 314.0775 1000 50 1.0 +65 314.0775 317.955 1000 50 0.9982071 +66 317.955 321.8325 1000 50 0.9999815 +67 321.8325 325.71 1000 50 0.99984837 +68 325.71 329.5875 1000 50 0.9999995 +69 329.5875 333.465 1000 50 0.9999999 +70 333.465 337.3425 1000 50 0.999035 +71 337.3425 341.21999999999997 1000 50 0.99999905 +72 341.22 345.0975 1000 50 0.99999976 +73 345.0975 348.975 1000 50 0.9999069 +74 348.975 352.8525 1000 50 0.99987054 +75 352.8525 356.73 1000 50 0.9999999 +76 356.73 360.6075 1000 50 0.99999833 +77 360.6075 364.485 1000 50 0.99999714 +78 364.485 368.3625 1000 50 0.9998841 +79 368.3625 372.24 1000 50 0.9999392 +80 372.24 376.1175 1000 50 1.0 +81 376.1175 379.995 1000 50 0.9998895 +82 379.995 383.8725 1000 50 0.99999964 +83 383.8725 387.75 1000 50 0.9999968 +84 387.75 391.6275 1000 50 0.99996674 +85 391.6275 395.505 1000 50 0.99969923 +86 395.505 399.3825 1000 50 0.999995 +87 399.3825 403.26 1000 50 0.99999595 +88 403.26 407.1375 1000 50 0.9999809 +89 407.1375 411.015 1000 50 1.0 +90 411.015 414.8925 1000 50 0.99998057 +91 414.8925 418.77 1000 50 0.99998605 +92 418.77 422.6475 1000 50 1.0 +93 422.6475 426.525 1000 50 1.0 +94 426.525 430.4025 1000 50 1.0 +95 430.4025 434.28 1000 50 0.9999987 +96 434.28 438.15749999999997 1000 50 1.0 +97 438.1575 442.035 1000 50 0.9999968 +98 442.035 445.9125 1000 50 0.99997663 +99 445.9125 449.79 1000 50 0.99999917 +100 449.79 453.6675 1000 50 0.99999666 +101 453.6675 457.545 1000 50 0.9999846 +102 457.545 461.4225 1000 50 0.9997757 +103 461.4225 465.3 1000 50 1.0 +104 465.3 469.1775 1000 50 0.9985247 +105 469.1775 473.055 1000 50 0.9993099 +106 473.055 476.9325 1000 50 1.0 +107 476.9325 480.81 1000 50 0.9999925 +108 480.81 484.6875 1000 50 0.9996087 +109 484.6875 488.565 1000 50 0.9999976 +110 488.565 492.4425 1000 50 1.0 +111 492.4425 496.32 1000 50 0.9999994 +112 496.32 500.1975 1000 50 0.9999974 +113 500.1975 504.075 1000 50 0.99999833 +114 504.075 507.9525 1000 50 0.9999999 +115 507.9525 511.83 1000 50 1.0 +116 515.7075 519.585 1000 50 0.9999989 +117 519.585 523.4625000000001 1000 50 0.56213343 +118 531.2175 535.095 1000 50 0.70949024 +119 535.095 538.9725000000001 1000 50 0.6071782 +120 562.2375 566.115 1000 50 0.6887627 +121 573.87 577.7475000000001 1000 50 0.79075074 +122 585.5025 589.3800000000001 1000 50 0.8796392 +123 597.135 601.0125 1000 50 0.57828254 +124 604.89 608.7675 1000 50 0.67152256 +125 608.7675 612.6450000000001 1000 50 0.7522238 +126 628.155 632.0325 1000 50 0.6431924 +127 639.7875 643.6650000000001 1000 50 0.5350911 +128 647.5425 651.4200000000001 1000 50 0.7108947 +129 659.175 663.0525 1000 50 0.6965808 +130 666.93 670.8075 1000 50 0.9919993 +131 670.8075 674.6850000000001 1000 50 0.8381723 +132 682.44 686.3175000000001 1000 50 0.90871024 +133 694.0725 697.95 1000 50 0.5004449 +134 705.705 709.5825000000001 1000 50 0.72910094 +135 709.5825 713.46 1000 50 0.6692479 +136 713.46 717.3375000000001 1000 50 0.9631058 +137 717.3375 721.215 1000 50 0.7295325 +138 740.6025 744.48 1000 50 0.7310424 +139 752.235 756.1125000000001 1000 50 0.58360535 +140 759.99 763.8675000000001 1000 50 0.5261796 +141 767.745 771.6225000000001 1000 50 0.9924988 +142 783.255 787.1325 1000 50 0.6297132 +143 791.01 794.8875 1000 50 0.69128454 +144 794.8875 798.7650000000001 1000 50 0.8444387 +145 798.765 802.6425 1000 50 0.90351343 +146 802.6425 806.5200000000001 1000 50 0.78176 +147 806.52 810.3975 1000 50 0.6263658 +148 814.275 818.1525 1000 50 0.9999858 +149 818.1525 822.0300000000001 1000 50 0.54325753 +150 822.03 825.9075 1000 50 0.9866077 +151 825.9075 829.7850000000001 1000 50 0.7999374 +152 837.54 841.4175 1000 50 0.697627 +153 841.4175 845.2950000000001 1000 50 0.6416991 +154 853.05 856.9275 1000 50 0.6069313 +155 860.805 864.6825 1000 50 0.79414743 +156 864.6825 868.5600000000001 1000 50 0.6437381 +157 872.4375 876.315 1000 50 0.797351 +158 880.1925 884.07 1000 50 0.59947085 +159 884.07 887.9475000000001 1000 50 0.59194976 +160 887.9475 891.825 1000 50 0.8410725 +161 891.825 895.7025000000001 1000 50 0.9310158 +162 895.7025 899.58 1000 50 0.99653083 +163 899.58 903.4575000000001 1000 50 0.9910657 +164 907.335 911.2125000000001 1000 50 0.8082824 +165 911.2125 915.09 1000 50 0.99546367 +166 926.7225 930.6 1000 50 0.6942243 +167 934.4775 938.355 1000 50 0.7860868 +168 938.355 942.2325000000001 1000 50 0.71168786 +169 942.2325 946.11 1000 50 0.64537114 +170 949.9875 953.865 1000 50 0.62053424 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_18-19-36_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_18-19-36_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e4c6e630d185884ffb24be1031a9fbba94e98d80 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_18-19-36_annot_2022-11-30_01.txt @@ -0,0 +1,32 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.58766526 +2 15.51 19.3875 1000 50 0.56291384 +3 23.265 27.142500000000002 1000 50 0.64338005 +4 31.02 34.8975 1000 50 0.57957447 +5 34.8975 38.775 1000 50 0.51325524 +6 50.4075 54.285 1000 50 0.51581323 +7 54.285 58.162499999999994 1000 50 0.79242134 +8 73.6725 77.55 1000 50 0.5734063 +9 77.55 81.4275 1000 50 0.58862764 +10 85.305 89.1825 1000 50 0.56926745 +11 100.815 104.6925 1000 50 0.7631085 +12 104.6925 108.57 1000 50 0.50223607 +13 108.57 112.44749999999999 1000 50 0.6333084 +14 112.4475 116.325 1000 50 0.7055511 +15 116.325 120.2025 1000 50 0.985338 +16 124.08 127.9575 1000 50 0.6851167 +17 131.835 135.7125 1000 50 0.51870257 +18 135.7125 139.59 1000 50 0.683056 +19 143.4675 147.345 1000 50 0.74936825 +20 151.2225 155.1 1000 50 0.62216496 +21 178.365 182.2425 1000 50 0.88735044 +22 182.2425 186.12 1000 50 0.7257657 +23 186.12 189.9975 1000 50 0.6791756 +24 189.9975 193.875 1000 50 0.7817326 +25 224.895 228.7725 1000 50 0.62291163 +26 248.16 252.0375 1000 50 0.7693924 +27 267.5475 271.425 1000 50 0.5704007 +28 279.18 283.0575 1000 50 0.6540224 +29 283.0575 286.935 1000 50 0.84045583 +30 310.2 314.0775 1000 50 0.64559376 +31 317.955 321.8325 1000 50 0.8804304 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_19-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_19-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..7e16a1b428b14f250768b5970354a4e500f68f8a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_19-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,119 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.83164394 +2 7.755 11.6325 1000 50 0.7272841 +3 11.6325 15.51 1000 50 0.64422905 +4 19.3875 23.265 1000 50 0.83696556 +5 23.265 27.142500000000002 1000 50 0.9723936 +6 27.1425 31.02 1000 50 0.7495048 +7 42.6525 46.53 1000 50 0.7167918 +8 69.795 73.6725 1000 50 0.5058883 +9 73.6725 77.55 1000 50 0.73981816 +10 81.4275 85.30499999999999 1000 50 0.5994282 +11 89.1825 93.06 1000 50 0.8214721 +12 100.815 104.6925 1000 50 0.76297134 +13 104.6925 108.57 1000 50 0.71673703 +14 131.835 135.7125 1000 50 0.5929892 +15 135.7125 139.59 1000 50 0.99807125 +16 147.345 151.2225 1000 50 0.97784424 +17 151.2225 155.1 1000 50 0.5913458 +18 155.1 158.9775 1000 50 0.9787178 +19 162.855 166.7325 1000 50 0.7059653 +20 174.4875 178.365 1000 50 0.72680306 +21 182.2425 186.12 1000 50 0.9987362 +22 189.9975 193.875 1000 50 0.67492217 +23 193.875 197.7525 1000 50 0.8607295 +24 197.7525 201.63 1000 50 0.56749725 +25 213.2625 217.14 1000 50 0.6846537 +26 217.14 221.01749999999998 1000 50 0.7877448 +27 224.895 228.7725 1000 50 0.9900209 +28 228.7725 232.65 1000 50 0.8670853 +29 236.5275 240.405 1000 50 0.67164385 +30 240.405 244.2825 1000 50 0.9786962 +31 252.0375 255.915 1000 50 0.71709925 +32 259.7925 263.67 1000 50 0.78103614 +33 267.5475 271.425 1000 50 0.79748213 +34 279.18 283.0575 1000 50 0.6744497 +35 294.69 298.5675 1000 50 0.5247541 +36 306.3225 310.2 1000 50 0.59357184 +37 317.955 321.8325 1000 50 0.6125333 +38 337.3425 341.21999999999997 1000 50 0.7166048 +39 352.8525 356.73 1000 50 0.81132686 +40 356.73 360.6075 1000 50 0.6046273 +41 360.6075 364.485 1000 50 0.83587414 +42 368.3625 372.24 1000 50 0.5064422 +43 372.24 376.1175 1000 50 0.98341364 +44 376.1175 379.995 1000 50 0.68920165 +45 387.75 391.6275 1000 50 0.574902 +46 403.26 407.1375 1000 50 0.8757919 +47 407.1375 411.015 1000 50 0.6957431 +48 422.6475 426.525 1000 50 0.53345805 +49 430.4025 434.28 1000 50 0.62892944 +50 434.28 438.15749999999997 1000 50 0.5768644 +51 442.035 445.9125 1000 50 0.5997444 +52 445.9125 449.79 1000 50 0.99775046 +53 449.79 453.6675 1000 50 0.5761814 +54 453.6675 457.545 1000 50 0.6504001 +55 457.545 461.4225 1000 50 0.99938476 +56 554.4825 558.36 1000 50 0.55687284 +57 562.2375 566.115 1000 50 0.85882056 +58 581.625 585.5025 1000 50 0.7324031 +59 589.38 593.2575 1000 50 0.9998653 +60 593.2575 597.1350000000001 1000 50 0.50916916 +61 604.89 608.7675 1000 50 0.74669474 +62 624.2775 628.1550000000001 1000 50 0.6107436 +63 635.91 639.7875 1000 50 0.7656556 +64 659.175 663.0525 1000 50 0.92113036 +65 666.93 670.8075 1000 50 0.77303296 +66 674.685 678.5625 1000 50 0.66995996 +67 697.95 701.8275000000001 1000 50 0.81740755 +68 709.5825 713.46 1000 50 0.5231227 +69 713.46 717.3375000000001 1000 50 0.9743576 +70 748.3575 752.235 1000 50 0.5605125 +71 759.99 763.8675000000001 1000 50 0.6410869 +72 783.255 787.1325 1000 50 0.6207081 +73 791.01 794.8875 1000 50 0.7494356 +74 802.6425 806.5200000000001 1000 50 0.6514983 +75 818.1525 822.0300000000001 1000 50 0.8787861 +76 825.9075 829.7850000000001 1000 50 0.9803006 +77 829.785 833.6625 1000 50 0.55874676 +78 849.1725 853.0500000000001 1000 50 0.5628515 +79 856.9275 860.8050000000001 1000 50 0.9953431 +80 864.6825 868.5600000000001 1000 50 0.9847193 +81 884.07 887.9475000000001 1000 50 0.5485546 +82 895.7025 899.58 1000 50 0.97881216 +83 918.9675 922.845 1000 50 0.99417347 +84 938.355 942.2325000000001 1000 50 0.9248963 +85 942.2325 946.11 1000 50 0.93568337 +86 949.9875 953.865 1000 50 0.8783847 +87 953.865 957.7425000000001 1000 50 0.6509419 +88 957.7425 961.62 1000 50 0.98346037 +89 965.4975 969.375 1000 50 0.5994342 +90 977.13 981.0075 1000 50 0.57349813 +91 988.7625 992.6400000000001 1000 50 0.9561272 +92 992.64 996.5175 1000 50 0.99147344 +93 1000.395 1004.2725 1000 50 0.6399761 +94 1008.15 1012.0275 1000 50 0.996983 +95 1019.7825 1023.6600000000001 1000 50 0.5254901 +96 1031.415 1035.2925 1000 50 0.5185099 +97 1043.0475 1046.925 1000 50 0.58149594 +98 1054.68 1058.5575000000001 1000 50 0.50322396 +99 1058.5575 1062.435 1000 50 0.9994407 +100 1070.19 1074.0675 1000 50 0.89537203 +101 1077.945 1081.8225 1000 50 0.83952117 +102 1085.7 1089.5775 1000 50 0.57861364 +103 1093.455 1097.3325 1000 50 0.8506774 +104 1112.8425 1116.72 1000 50 0.71657777 +105 1124.475 1128.3525 1000 50 0.9852384 +106 1132.23 1136.1075 1000 50 0.61543256 +107 1136.1075 1139.9850000000001 1000 50 0.7895365 +108 1147.74 1151.6175 1000 50 0.991907 +109 1167.1275 1171.005 1000 50 0.97634524 +110 1174.8825 1178.76 1000 50 0.60747397 +111 1186.515 1190.3925000000002 1000 50 0.63408965 +112 1190.3925 1194.27 1000 50 0.9924914 +113 1194.27 1198.1475 1000 50 0.7725728 +114 1202.025 1205.9025000000001 1000 50 0.74369717 +115 1209.78 1213.6575 1000 50 0.9518482 +116 1225.29 1229.1675 1000 50 0.7081488 +117 1240.8 1244.6775 1000 50 0.54280066 +118 1244.6775 1248.555 1000 50 0.50833285 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_19-24-27_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_19-24-27_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..c69683eaf64f44789897ee724cb0302f0603cf3e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_19-24-27_annot_2022-11-30_01.txt @@ -0,0 +1,2 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 19.3875 23.265 1000 50 0.86481494 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_20-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_20-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..749547d67bea7e1ca84b0483de0fe8f34e411db2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_20-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,299 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99999416 +2 3.8775 7.755 1000 50 0.9938094 +3 7.755 11.6325 1000 50 1.0 +4 11.6325 15.51 1000 50 1.0 +5 15.51 19.3875 1000 50 0.9948737 +6 19.3875 23.265 1000 50 0.9999982 +7 23.265 27.142500000000002 1000 50 0.9999186 +8 27.1425 31.02 1000 50 0.9999989 +9 31.02 34.8975 1000 50 1.0 +10 38.775 42.652499999999996 1000 50 0.99999726 +11 42.6525 46.53 1000 50 0.99631643 +12 46.53 50.4075 1000 50 0.999987 +13 50.4075 54.285 1000 50 0.9974094 +14 54.285 58.162499999999994 1000 50 0.8665588 +15 58.1625 62.04 1000 50 1.0 +16 62.04 65.9175 1000 50 0.998917 +17 65.9175 69.795 1000 50 0.9820517 +18 69.795 73.6725 1000 50 1.0 +19 73.6725 77.55 1000 50 0.9999987 +20 77.55 81.4275 1000 50 0.9995689 +21 81.4275 85.30499999999999 1000 50 0.99999964 +22 85.305 89.1825 1000 50 0.7882147 +23 89.1825 93.06 1000 50 0.99993646 +24 93.06 96.9375 1000 50 0.9996673 +25 96.9375 100.815 1000 50 0.99804604 +26 100.815 104.6925 1000 50 1.0 +27 104.6925 108.57 1000 50 0.99931574 +28 112.4475 116.325 1000 50 0.9956096 +29 116.325 120.2025 1000 50 0.9988023 +30 120.2025 124.08 1000 50 0.99950314 +31 124.08 127.9575 1000 50 0.99992824 +32 127.9575 131.835 1000 50 0.999747 +33 131.835 135.7125 1000 50 0.96365565 +34 135.7125 139.59 1000 50 0.55109197 +35 143.4675 147.345 1000 50 0.9985227 +36 147.345 151.2225 1000 50 0.9409117 +37 151.2225 155.1 1000 50 1.0 +38 155.1 158.9775 1000 50 0.99993455 +39 158.9775 162.855 1000 50 0.9999467 +40 162.855 166.7325 1000 50 0.9937769 +41 170.61 174.4875 1000 50 0.8325883 +42 174.4875 178.365 1000 50 0.56588346 +43 197.7525 201.63 1000 50 0.97771925 +44 201.63 205.5075 1000 50 0.5269335 +45 221.0175 224.895 1000 50 0.9955511 +46 236.5275 240.405 1000 50 0.9745515 +47 240.405 244.2825 1000 50 0.87952584 +48 248.16 252.0375 1000 50 0.99999833 +49 267.5475 271.425 1000 50 0.99685633 +50 279.18 283.0575 1000 50 0.99998355 +51 283.0575 286.935 1000 50 0.9886274 +52 286.935 290.8125 1000 50 0.8998043 +53 314.0775 317.955 1000 50 0.55561894 +54 317.955 321.8325 1000 50 0.7714513 +55 325.71 329.5875 1000 50 0.9987979 +56 329.5875 333.465 1000 50 0.96385074 +57 333.465 337.3425 1000 50 0.99819934 +58 337.3425 341.21999999999997 1000 50 0.93811053 +59 341.22 345.0975 1000 50 0.9999541 +60 352.8525 356.73 1000 50 0.99999547 +61 356.73 360.6075 1000 50 0.63266706 +62 360.6075 364.485 1000 50 0.9291804 +63 364.485 368.3625 1000 50 0.9635151 +64 368.3625 372.24 1000 50 0.93319434 +65 372.24 376.1175 1000 50 0.9999639 +66 379.995 383.8725 1000 50 1.0 +67 383.8725 387.75 1000 50 0.9999912 +68 391.6275 395.505 1000 50 1.0 +69 395.505 399.3825 1000 50 0.9977441 +70 399.3825 403.26 1000 50 0.56297404 +71 403.26 407.1375 1000 50 0.98847044 +72 407.1375 411.015 1000 50 0.99666697 +73 411.015 414.8925 1000 50 0.9999987 +74 414.8925 418.77 1000 50 0.9999627 +75 418.77 422.6475 1000 50 0.9990451 +76 422.6475 426.525 1000 50 0.9999676 +77 426.525 430.4025 1000 50 0.99960095 +78 430.4025 434.28 1000 50 0.9923545 +79 434.28 438.15749999999997 1000 50 0.9999982 +80 438.1575 442.035 1000 50 0.99999833 +81 442.035 445.9125 1000 50 0.94008046 +82 445.9125 449.79 1000 50 0.9999529 +83 449.79 453.6675 1000 50 0.99719787 +84 453.6675 457.545 1000 50 0.99527586 +85 457.545 461.4225 1000 50 0.99999964 +86 461.4225 465.3 1000 50 0.8106088 +87 465.3 469.1775 1000 50 0.79998976 +88 469.1775 473.055 1000 50 0.6663122 +89 473.055 476.9325 1000 50 0.9975515 +90 476.9325 480.81 1000 50 0.93096364 +91 480.81 484.6875 1000 50 0.8391336 +92 484.6875 488.565 1000 50 0.99999976 +93 488.565 492.4425 1000 50 0.9998072 +94 492.4425 496.32 1000 50 0.9999995 +95 496.32 500.1975 1000 50 0.77411366 +96 500.1975 504.075 1000 50 0.99999976 +97 504.075 507.9525 1000 50 0.9893366 +98 507.9525 511.83 1000 50 0.9853535 +99 511.83 515.7075 1000 50 0.99549496 +100 515.7075 519.585 1000 50 0.9925599 +101 519.585 523.4625000000001 1000 50 0.99700695 +102 523.4625 527.34 1000 50 0.64132476 +103 531.2175 535.095 1000 50 0.9993082 +104 535.095 538.9725000000001 1000 50 0.99993265 +105 538.9725 542.85 1000 50 0.9998646 +106 542.85 546.7275000000001 1000 50 0.77258664 +107 546.7275 550.605 1000 50 0.9984193 +108 550.605 554.4825000000001 1000 50 0.99981946 +109 554.4825 558.36 1000 50 0.59696615 +110 558.36 562.2375000000001 1000 50 0.997031 +111 562.2375 566.115 1000 50 0.99994373 +112 566.115 569.9925000000001 1000 50 0.99756086 +113 569.9925 573.87 1000 50 0.90197545 +114 573.87 577.7475000000001 1000 50 0.9999136 +115 577.7475 581.625 1000 50 0.99968183 +116 581.625 585.5025 1000 50 0.97773176 +117 589.38 593.2575 1000 50 0.9934562 +118 593.2575 597.1350000000001 1000 50 0.9979578 +119 597.135 601.0125 1000 50 0.9923165 +120 604.89 608.7675 1000 50 0.9967278 +121 608.7675 612.6450000000001 1000 50 0.99999976 +122 616.5225 620.4000000000001 1000 50 0.9999988 +123 620.4 624.2775 1000 50 0.6428629 +124 624.2775 628.1550000000001 1000 50 1.0 +125 628.155 632.0325 1000 50 0.99999833 +126 632.0325 635.9100000000001 1000 50 0.99882597 +127 639.7875 643.6650000000001 1000 50 0.9170992 +128 651.42 655.2975 1000 50 0.76975363 +129 663.0525 666.9300000000001 1000 50 0.8484693 +130 666.93 670.8075 1000 50 0.9884266 +131 674.685 678.5625 1000 50 0.98131275 +132 678.5625 682.44 1000 50 0.7070568 +133 686.3175 690.195 1000 50 0.97109467 +134 690.195 694.0725000000001 1000 50 0.8883756 +135 697.95 701.8275000000001 1000 50 0.83013034 +136 701.8275 705.705 1000 50 0.56197333 +137 705.705 709.5825000000001 1000 50 0.66595155 +138 713.46 717.3375000000001 1000 50 0.9464643 +139 717.3375 721.215 1000 50 0.9988213 +140 721.215 725.0925000000001 1000 50 0.9921948 +141 725.0925 728.97 1000 50 0.73431426 +142 732.8475 736.725 1000 50 0.99999976 +143 736.725 740.6025000000001 1000 50 0.87261367 +144 740.6025 744.48 1000 50 0.9988746 +145 744.48 748.3575000000001 1000 50 0.97855157 +146 748.3575 752.235 1000 50 0.9996451 +147 752.235 756.1125000000001 1000 50 0.999681 +148 756.1125 759.99 1000 50 0.9994593 +149 759.99 763.8675000000001 1000 50 0.99997914 +150 763.8675 767.745 1000 50 0.9999999 +151 767.745 771.6225000000001 1000 50 0.99724615 +152 775.5 779.3775 1000 50 0.99999976 +153 779.3775 783.2550000000001 1000 50 0.9908268 +154 787.1325 791.0100000000001 1000 50 0.9999981 +155 791.01 794.8875 1000 50 0.9570693 +156 798.765 802.6425 1000 50 1.0 +157 802.6425 806.5200000000001 1000 50 0.9999882 +158 806.52 810.3975 1000 50 0.9968645 +159 810.3975 814.2750000000001 1000 50 0.9946196 +160 814.275 818.1525 1000 50 0.9999881 +161 818.1525 822.0300000000001 1000 50 0.99999607 +162 822.03 825.9075 1000 50 0.94341654 +163 825.9075 829.7850000000001 1000 50 0.99999094 +164 829.785 833.6625 1000 50 0.99997115 +165 833.6625 837.5400000000001 1000 50 0.99966574 +166 837.54 841.4175 1000 50 0.9983571 +167 841.4175 845.2950000000001 1000 50 0.99989355 +168 845.295 849.1725 1000 50 0.9999845 +169 849.1725 853.0500000000001 1000 50 0.9999988 +170 853.05 856.9275 1000 50 0.99475974 +171 856.9275 860.8050000000001 1000 50 0.9571195 +172 860.805 864.6825 1000 50 0.9999994 +173 864.6825 868.5600000000001 1000 50 0.99996376 +174 868.56 872.4375 1000 50 0.9992285 +175 872.4375 876.315 1000 50 0.9999839 +176 876.315 880.1925000000001 1000 50 0.9954495 +177 880.1925 884.07 1000 50 0.9999745 +178 884.07 887.9475000000001 1000 50 1.0 +179 887.9475 891.825 1000 50 0.94682896 +180 891.825 895.7025000000001 1000 50 1.0 +181 895.7025 899.58 1000 50 1.0 +182 899.58 903.4575000000001 1000 50 0.99772996 +183 903.4575 907.335 1000 50 1.0 +184 907.335 911.2125000000001 1000 50 0.5563465 +185 911.2125 915.09 1000 50 1.0 +186 915.09 918.9675000000001 1000 50 0.98559016 +187 918.9675 922.845 1000 50 0.98984575 +188 922.845 926.7225000000001 1000 50 0.99999857 +189 926.7225 930.6 1000 50 0.9941614 +190 930.6 934.4775000000001 1000 50 0.99995625 +191 934.4775 938.355 1000 50 1.0 +192 938.355 942.2325000000001 1000 50 0.8646723 +193 942.2325 946.11 1000 50 0.9999999 +194 946.11 949.9875000000001 1000 50 0.99989414 +195 953.865 957.7425000000001 1000 50 1.0 +196 957.7425 961.62 1000 50 0.9999999 +197 961.62 965.4975000000001 1000 50 0.99999833 +198 965.4975 969.375 1000 50 0.99999535 +199 973.2525 977.1300000000001 1000 50 0.9999931 +200 977.13 981.0075 1000 50 0.92382866 +201 981.0075 984.8850000000001 1000 50 0.99349046 +202 984.885 988.7625 1000 50 0.9810594 +203 988.7625 992.6400000000001 1000 50 0.9939911 +204 992.64 996.5175 1000 50 0.9944054 +205 996.5175 1000.3950000000001 1000 50 0.99999857 +206 1000.395 1004.2725 1000 50 0.9994777 +207 1004.2725 1008.1500000000001 1000 50 0.9998079 +208 1008.15 1012.0275 1000 50 0.9987993 +209 1012.0275 1015.9050000000001 1000 50 0.9999913 +210 1015.905 1019.7825 1000 50 0.99999213 +211 1019.7825 1023.6600000000001 1000 50 0.99999976 +212 1023.66 1027.5375 1000 50 0.9996282 +213 1031.415 1035.2925 1000 50 0.99778783 +214 1035.2925 1039.17 1000 50 0.7970868 +215 1043.0475 1046.925 1000 50 0.50551265 +216 1054.68 1058.5575000000001 1000 50 0.9791018 +217 1062.435 1066.3125 1000 50 0.601096 +218 1070.19 1074.0675 1000 50 0.82585025 +219 1081.8225 1085.7 1000 50 0.8593969 +220 1136.1075 1139.9850000000001 1000 50 0.6240158 +221 1151.6175 1155.4950000000001 1000 50 0.6567473 +222 1159.3725 1163.25 1000 50 0.56093794 +223 1167.1275 1171.005 1000 50 0.63521457 +224 1182.6375 1186.515 1000 50 0.55236036 +225 1186.515 1190.3925000000002 1000 50 0.7801681 +226 1202.025 1205.9025000000001 1000 50 0.9983724 +227 1205.9025 1209.78 1000 50 0.9998572 +228 1209.78 1213.6575 1000 50 0.99998605 +229 1217.535 1221.4125000000001 1000 50 0.9997763 +230 1221.4125 1225.29 1000 50 0.99991655 +231 1225.29 1229.1675 1000 50 0.9513055 +232 1229.1675 1233.045 1000 50 0.99998736 +233 1233.045 1236.9225000000001 1000 50 0.97162014 +234 1236.9225 1240.8 1000 50 0.995631 +235 1240.8 1244.6775 1000 50 0.9999852 +236 1244.6775 1248.555 1000 50 0.9499338 +237 1248.555 1252.4325000000001 1000 50 0.99968004 +238 1252.4325 1256.31 1000 50 0.99998546 +239 1256.31 1260.1875 1000 50 0.9999827 +240 1260.1875 1264.065 1000 50 0.999985 +241 1264.065 1267.9425 1000 50 0.95204246 +242 1267.9425 1271.8200000000002 1000 50 0.9999839 +243 1271.82 1275.6975 1000 50 0.9963785 +244 1275.6975 1279.575 1000 50 0.9999993 +245 1279.575 1283.4525 1000 50 0.98096746 +246 1283.4525 1287.3300000000002 1000 50 1.0 +247 1287.33 1291.2075 1000 50 0.99919444 +248 1295.085 1298.9625 1000 50 0.99999964 +249 1298.9625 1302.8400000000001 1000 50 0.9936826 +250 1302.84 1306.7175 1000 50 0.99996555 +251 1306.7175 1310.595 1000 50 0.9995784 +252 1310.595 1314.4725 1000 50 0.99998844 +253 1314.4725 1318.3500000000001 1000 50 0.9542688 +254 1318.35 1322.2275 1000 50 0.9999087 +255 1322.2275 1326.105 1000 50 0.99881494 +256 1326.105 1329.9825 1000 50 0.99970835 +257 1329.9825 1333.8600000000001 1000 50 0.9827167 +258 1333.86 1337.7375 1000 50 0.99995804 +259 1337.7375 1341.615 1000 50 0.9998037 +260 1345.4925 1349.3700000000001 1000 50 0.9999999 +261 1349.37 1353.2475 1000 50 0.9999219 +262 1353.2475 1357.125 1000 50 0.51603633 +263 1357.125 1361.0025 1000 50 1.0 +264 1361.0025 1364.88 1000 50 0.9915929 +265 1364.88 1368.7575000000002 1000 50 0.9096975 +266 1368.7575 1372.635 1000 50 0.9913293 +267 1372.635 1376.5125 1000 50 0.92521673 +268 1376.5125 1380.39 1000 50 0.99998975 +269 1380.39 1384.2675000000002 1000 50 0.9999174 +270 1384.2675 1388.145 1000 50 0.99994576 +271 1388.145 1392.0225 1000 50 0.7486762 +272 1392.0225 1395.9 1000 50 0.9981927 +273 1395.9 1399.7775000000001 1000 50 0.98961484 +274 1399.7775 1403.655 1000 50 0.9997385 +275 1403.655 1407.5325 1000 50 0.999931 +276 1407.5325 1411.41 1000 50 0.801566 +277 1411.41 1415.2875000000001 1000 50 0.9995289 +278 1415.2875 1419.165 1000 50 0.99997103 +279 1419.165 1423.0425 1000 50 0.9996221 +280 1426.92 1430.7975000000001 1000 50 0.9998056 +281 1430.7975 1434.675 1000 50 0.99998474 +282 1434.675 1438.5525 1000 50 0.98181146 +283 1438.5525 1442.43 1000 50 1.0 +284 1442.43 1446.3075000000001 1000 50 0.99999976 +285 1446.3075 1450.185 1000 50 0.998539 +286 1450.185 1454.0625 1000 50 1.0 +287 1454.0625 1457.94 1000 50 0.9999684 +288 1457.94 1461.8175 1000 50 1.0 +289 1461.8175 1465.6950000000002 1000 50 0.99999976 +290 1465.695 1469.5725 1000 50 0.739491 +291 1469.5725 1473.45 1000 50 1.0 +292 1473.45 1477.3275 1000 50 0.9999757 +293 1477.3275 1481.2050000000002 1000 50 0.99999464 +294 1481.205 1485.0825 1000 50 0.9999964 +295 1485.0825 1488.96 1000 50 0.99906474 +296 1488.96 1492.8375 1000 50 1.0 +297 1492.8375 1496.7150000000001 1000 50 0.9995938 +298 1496.715 1500.5925 1000 50 0.993383 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_21-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_21-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0aebfe45623a794538a5037ecf376e11789f7afc --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_21-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,9 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9995677 +2 3.8775 7.755 1000 50 0.9988576 +3 7.755 11.6325 1000 50 0.61173004 +4 11.6325 15.51 1000 50 1.0 +5 15.51 19.3875 1000 50 0.99929416 +6 19.3875 23.265 1000 50 0.9980149 +7 23.265 27.142500000000002 1000 50 0.99996686 +8 27.1425 31.02 1000 50 0.98013294 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_21-04-12_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_21-04-12_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f8cdaeb77b11239ca9bc2c3f010e2bdd4543248b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_21-04-12_annot_2022-11-30_01.txt @@ -0,0 +1,144 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.93617004 +2 3.8775 7.755 1000 50 0.9998745 +3 7.755 11.6325 1000 50 0.99419606 +4 11.6325 15.51 1000 50 0.99999976 +5 15.51 19.3875 1000 50 0.998511 +6 19.3875 23.265 1000 50 1.0 +7 23.265 27.142500000000002 1000 50 0.9997719 +8 27.1425 31.02 1000 50 0.9999999 +9 31.02 34.8975 1000 50 0.9886397 +10 34.8975 38.775 1000 50 0.9999807 +11 38.775 42.652499999999996 1000 50 0.9999578 +12 42.6525 46.53 1000 50 0.9999714 +13 46.53 50.4075 1000 50 0.999303 +14 50.4075 54.285 1000 50 0.9999982 +15 54.285 58.162499999999994 1000 50 0.84249127 +16 62.04 65.9175 1000 50 0.99857473 +17 65.9175 69.795 1000 50 0.9997621 +18 69.795 73.6725 1000 50 0.99048924 +19 73.6725 77.55 1000 50 0.984783 +20 77.55 81.4275 1000 50 0.52310413 +21 81.4275 85.30499999999999 1000 50 0.60380346 +22 104.6925 108.57 1000 50 0.85613775 +23 112.4475 116.325 1000 50 0.6343156 +24 120.2025 124.08 1000 50 0.88291407 +25 151.2225 155.1 1000 50 0.97387165 +26 155.1 158.9775 1000 50 0.9952278 +27 158.9775 162.855 1000 50 0.91233426 +28 166.7325 170.60999999999999 1000 50 0.6784703 +29 174.4875 178.365 1000 50 0.58829945 +30 178.365 182.2425 1000 50 0.63602126 +31 186.12 189.9975 1000 50 0.63482267 +32 189.9975 193.875 1000 50 0.5602648 +33 201.63 205.5075 1000 50 0.5419722 +34 213.2625 217.14 1000 50 0.6523256 +35 217.14 221.01749999999998 1000 50 0.5779082 +36 228.7725 232.65 1000 50 0.94254893 +37 232.65 236.5275 1000 50 0.56726205 +38 252.0375 255.915 1000 50 0.82968336 +39 275.3025 279.18 1000 50 0.8481029 +40 290.8125 294.69 1000 50 0.539829 +41 294.69 298.5675 1000 50 0.501646 +42 317.955 321.8325 1000 50 0.7398656 +43 333.465 337.3425 1000 50 0.90362614 +44 341.22 345.0975 1000 50 0.89748603 +45 352.8525 356.73 1000 50 0.60977155 +46 356.73 360.6075 1000 50 0.7959705 +47 364.485 368.3625 1000 50 0.89396936 +48 368.3625 372.24 1000 50 0.96934325 +49 372.24 376.1175 1000 50 0.77627504 +50 376.1175 379.995 1000 50 0.9841277 +51 383.8725 387.75 1000 50 0.88577545 +52 411.015 414.8925 1000 50 0.5117703 +53 418.77 422.6475 1000 50 0.71012646 +54 426.525 430.4025 1000 50 0.55434626 +55 442.035 445.9125 1000 50 0.60554004 +56 453.6675 457.545 1000 50 0.76553655 +57 473.055 476.9325 1000 50 0.71103406 +58 488.565 492.4425 1000 50 0.73664284 +59 500.1975 504.075 1000 50 0.93138236 +60 511.83 515.7075 1000 50 0.5088916 +61 523.4625 527.34 1000 50 0.5297513 +62 531.2175 535.095 1000 50 0.55085 +63 538.9725 542.85 1000 50 0.74791855 +64 542.85 546.7275000000001 1000 50 0.65516394 +65 558.36 562.2375000000001 1000 50 0.63001823 +66 585.5025 589.3800000000001 1000 50 0.9683455 +67 601.0125 604.8900000000001 1000 50 0.7344163 +68 628.155 632.0325 1000 50 0.5007255 +69 639.7875 643.6650000000001 1000 50 0.6610411 +70 643.665 647.5425 1000 50 0.5362523 +71 670.8075 674.6850000000001 1000 50 0.58451194 +72 694.0725 697.95 1000 50 0.6483268 +73 701.8275 705.705 1000 50 0.56551313 +74 713.46 717.3375000000001 1000 50 0.88839805 +75 725.0925 728.97 1000 50 0.69540906 +76 728.97 732.8475000000001 1000 50 0.9991122 +77 736.725 740.6025000000001 1000 50 0.6542197 +78 740.6025 744.48 1000 50 0.8709979 +79 744.48 748.3575000000001 1000 50 0.66515553 +80 756.1125 759.99 1000 50 0.9893718 +81 767.745 771.6225000000001 1000 50 0.5333568 +82 771.6225 775.5 1000 50 0.5388405 +83 775.5 779.3775 1000 50 0.98848593 +84 783.255 787.1325 1000 50 0.74459773 +85 787.1325 791.0100000000001 1000 50 0.5876236 +86 794.8875 798.7650000000001 1000 50 0.7917217 +87 802.6425 806.5200000000001 1000 50 0.8786921 +88 806.52 810.3975 1000 50 0.537045 +89 810.3975 814.2750000000001 1000 50 0.99047863 +90 818.1525 822.0300000000001 1000 50 0.8731456 +91 841.4175 845.2950000000001 1000 50 0.77288216 +92 853.05 856.9275 1000 50 0.5972031 +93 864.6825 868.5600000000001 1000 50 0.69380015 +94 872.4375 876.315 1000 50 0.9992563 +95 884.07 887.9475000000001 1000 50 0.55479836 +96 887.9475 891.825 1000 50 0.99947816 +97 891.825 895.7025000000001 1000 50 0.9936568 +98 895.7025 899.58 1000 50 0.7162536 +99 899.58 903.4575000000001 1000 50 0.6277367 +100 903.4575 907.335 1000 50 0.5191079 +101 907.335 911.2125000000001 1000 50 0.8179109 +102 915.09 918.9675000000001 1000 50 0.8484561 +103 942.2325 946.11 1000 50 0.523472 +104 961.62 965.4975000000001 1000 50 0.52162844 +105 973.2525 977.1300000000001 1000 50 0.85376793 +106 977.13 981.0075 1000 50 0.83458537 +107 981.0075 984.8850000000001 1000 50 0.88773805 +108 988.7625 992.6400000000001 1000 50 0.70312315 +109 992.64 996.5175 1000 50 0.83832693 +110 996.5175 1000.3950000000001 1000 50 0.72422457 +111 1000.395 1004.2725 1000 50 0.89164126 +112 1015.905 1019.7825 1000 50 0.5740365 +113 1027.5375 1031.415 1000 50 0.5865696 +114 1031.415 1035.2925 1000 50 0.6042502 +115 1039.17 1043.0475000000001 1000 50 0.7010448 +116 1043.0475 1046.925 1000 50 0.9478593 +117 1046.925 1050.8025 1000 50 0.677282 +118 1062.435 1066.3125 1000 50 0.52110493 +119 1074.0675 1077.9450000000002 1000 50 0.52534777 +120 1077.945 1081.8225 1000 50 0.50721335 +121 1089.5775 1093.4550000000002 1000 50 0.6576644 +122 1097.3325 1101.21 1000 50 0.6280525 +123 1101.21 1105.0875 1000 50 0.68079734 +124 1108.965 1112.8425 1000 50 0.5114726 +125 1112.8425 1116.72 1000 50 0.8916813 +126 1120.5975 1124.4750000000001 1000 50 0.5512589 +127 1124.475 1128.3525 1000 50 0.67648786 +128 1136.1075 1139.9850000000001 1000 50 0.6095328 +129 1147.74 1151.6175 1000 50 0.75991285 +130 1155.495 1159.3725 1000 50 0.5693144 +131 1159.3725 1163.25 1000 50 0.52881044 +132 1163.25 1167.1275 1000 50 0.61412495 +133 1167.1275 1171.005 1000 50 0.61603993 +134 1178.76 1182.6375 1000 50 0.78024495 +135 1182.6375 1186.515 1000 50 0.5783213 +136 1186.515 1190.3925000000002 1000 50 0.79257566 +137 1194.27 1198.1475 1000 50 0.5587326 +138 1198.1475 1202.025 1000 50 0.5778077 +139 1221.4125 1225.29 1000 50 0.66176623 +140 1225.29 1229.1675 1000 50 0.76257944 +141 1229.1675 1233.045 1000 50 0.7163131 +142 1236.9225 1240.8 1000 50 0.9463758 +143 1240.8 1244.6775 1000 50 0.7943971 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_22-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_22-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..9550b4f55af882ac4e429a76fc6e08f5cc427426 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_22-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,33 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.57510984 +2 7.755 11.6325 1000 50 0.5005204 +3 15.51 19.3875 1000 50 0.5284542 +4 19.3875 23.265 1000 50 0.70625305 +5 31.02 34.8975 1000 50 0.8450333 +6 38.775 42.652499999999996 1000 50 0.5510592 +7 46.53 50.4075 1000 50 0.5553495 +8 54.285 58.162499999999994 1000 50 0.64380115 +9 62.04 65.9175 1000 50 0.6902153 +10 73.6725 77.55 1000 50 0.7047469 +11 93.06 96.9375 1000 50 0.9494347 +12 104.6925 108.57 1000 50 0.5098114 +13 112.4475 116.325 1000 50 0.55402833 +14 139.59 143.4675 1000 50 0.9420185 +15 174.4875 178.365 1000 50 0.95407563 +16 182.2425 186.12 1000 50 0.9598765 +17 186.12 189.9975 1000 50 0.9892202 +18 193.875 197.7525 1000 50 0.9997416 +19 197.7525 201.63 1000 50 0.70223373 +20 205.5075 209.385 1000 50 0.999938 +21 209.385 213.2625 1000 50 0.9832175 +22 217.14 221.01749999999998 1000 50 0.68863267 +23 228.7725 232.65 1000 50 0.99942917 +24 240.405 244.2825 1000 50 0.99803406 +25 248.16 252.0375 1000 50 0.6087789 +26 252.0375 255.915 1000 50 0.5618177 +27 259.7925 263.67 1000 50 0.8343934 +28 263.67 267.5475 1000 50 0.9824349 +29 275.3025 279.18 1000 50 0.99781895 +30 283.0575 286.935 1000 50 0.5510586 +31 306.3225 310.2 1000 50 0.998781 +32 317.955 321.8325 1000 50 0.6253565 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_22-09-02_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_22-09-02_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..636ed37505a2c23ae42dadb66032a6606f8536f8 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_22-09-02_annot_2022-11-30_01.txt @@ -0,0 +1,97 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.572265 +2 11.6325 15.51 1000 50 0.6653135 +3 23.265 27.142500000000002 1000 50 0.50200284 +4 54.285 58.162499999999994 1000 50 0.5644856 +5 65.9175 69.795 1000 50 0.5617132 +6 77.55 81.4275 1000 50 0.81805474 +7 93.06 96.9375 1000 50 0.9094676 +8 116.325 120.2025 1000 50 0.8048807 +9 143.4675 147.345 1000 50 0.70843863 +10 147.345 151.2225 1000 50 0.534754 +11 151.2225 155.1 1000 50 0.8985298 +12 166.7325 170.60999999999999 1000 50 0.7198255 +13 174.4875 178.365 1000 50 0.73202926 +14 182.2425 186.12 1000 50 0.9618481 +15 193.875 197.7525 1000 50 0.9905642 +16 205.5075 209.385 1000 50 0.966689 +17 209.385 213.2625 1000 50 0.6376371 +18 217.14 221.01749999999998 1000 50 0.89416397 +19 224.895 228.7725 1000 50 0.5292768 +20 232.65 236.5275 1000 50 0.7894307 +21 244.2825 248.16 1000 50 0.9988287 +22 248.16 252.0375 1000 50 0.52293414 +23 252.0375 255.915 1000 50 0.5311317 +24 259.7925 263.67 1000 50 0.7117939 +25 263.67 267.5475 1000 50 0.7283108 +26 267.5475 271.425 1000 50 0.5408909 +27 271.425 275.3025 1000 50 0.8846559 +28 275.3025 279.18 1000 50 0.58315605 +29 298.5675 302.445 1000 50 0.61075956 +30 317.955 321.8325 1000 50 0.7443523 +31 321.8325 325.71 1000 50 0.7053684 +32 333.465 337.3425 1000 50 0.6924508 +33 337.3425 341.21999999999997 1000 50 0.56645566 +34 341.22 345.0975 1000 50 0.507188 +35 348.975 352.8525 1000 50 0.70952326 +36 352.8525 356.73 1000 50 0.57064086 +37 364.485 368.3625 1000 50 0.82258624 +38 372.24 376.1175 1000 50 0.70709926 +39 383.8725 387.75 1000 50 0.6270033 +40 387.75 391.6275 1000 50 0.50224817 +41 395.505 399.3825 1000 50 0.7170264 +42 442.035 445.9125 1000 50 0.53147924 +43 449.79 453.6675 1000 50 0.77123904 +44 453.6675 457.545 1000 50 0.6064113 +45 457.545 461.4225 1000 50 0.7425914 +46 461.4225 465.3 1000 50 0.80666536 +47 476.9325 480.81 1000 50 0.7987953 +48 480.81 484.6875 1000 50 0.65910196 +49 488.565 492.4425 1000 50 0.7367404 +50 492.4425 496.32 1000 50 0.7086791 +51 496.32 500.1975 1000 50 0.9887477 +52 504.075 507.9525 1000 50 0.97881454 +53 511.83 515.7075 1000 50 0.99642354 +54 515.7075 519.585 1000 50 0.62838113 +55 519.585 523.4625000000001 1000 50 0.5420863 +56 523.4625 527.34 1000 50 0.94313556 +57 527.34 531.2175000000001 1000 50 0.7268768 +58 531.2175 535.095 1000 50 0.80062014 +59 535.095 538.9725000000001 1000 50 0.99746275 +60 542.85 546.7275000000001 1000 50 0.5913612 +61 546.7275 550.605 1000 50 0.91207945 +62 554.4825 558.36 1000 50 0.50034344 +63 558.36 562.2375000000001 1000 50 0.96702784 +64 573.87 577.7475000000001 1000 50 0.5847389 +65 585.5025 589.3800000000001 1000 50 0.5729636 +66 597.135 601.0125 1000 50 0.6918894 +67 604.89 608.7675 1000 50 0.7289657 +68 616.5225 620.4000000000001 1000 50 0.56259835 +69 620.4 624.2775 1000 50 0.69388723 +70 632.0325 635.9100000000001 1000 50 0.9995931 +71 639.7875 643.6650000000001 1000 50 0.61246264 +72 674.685 678.5625 1000 50 0.58342224 +73 686.3175 690.195 1000 50 0.5367342 +74 713.46 717.3375000000001 1000 50 0.53217524 +75 725.0925 728.97 1000 50 0.5918086 +76 736.725 740.6025000000001 1000 50 0.78775793 +77 744.48 748.3575000000001 1000 50 0.5936943 +78 748.3575 752.235 1000 50 0.70731735 +79 763.8675 767.745 1000 50 0.5865399 +80 767.745 771.6225000000001 1000 50 0.5594215 +81 775.5 779.3775 1000 50 0.6253893 +82 814.275 818.1525 1000 50 0.57256716 +83 837.54 841.4175 1000 50 0.54710066 +84 841.4175 845.2950000000001 1000 50 0.52725214 +85 853.05 856.9275 1000 50 0.5539248 +86 860.805 864.6825 1000 50 0.75609726 +87 864.6825 868.5600000000001 1000 50 0.56154007 +88 868.56 872.4375 1000 50 0.5157229 +89 872.4375 876.315 1000 50 0.5124077 +90 880.1925 884.07 1000 50 0.65073556 +91 887.9475 891.825 1000 50 0.9247247 +92 903.4575 907.335 1000 50 0.7863589 +93 915.09 918.9675000000001 1000 50 0.5488742 +94 918.9675 922.845 1000 50 0.60212666 +95 926.7225 930.6 1000 50 0.7463022 +96 957.7425 961.62 1000 50 0.7182128 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_23-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_23-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b91940e778a3a5ff0f4bb47d0f47ac42e227fff6 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_23-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,63 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.7408466 +2 7.755 11.6325 1000 50 0.9154276 +3 11.6325 15.51 1000 50 0.7227114 +4 19.3875 23.265 1000 50 0.5935937 +5 23.265 27.142500000000002 1000 50 0.99220467 +6 34.8975 38.775 1000 50 0.57896256 +7 58.1625 62.04 1000 50 0.50628936 +8 73.6725 77.55 1000 50 0.60391563 +9 93.06 96.9375 1000 50 0.7068629 +10 96.9375 100.815 1000 50 0.65993327 +11 100.815 104.6925 1000 50 0.80369043 +12 104.6925 108.57 1000 50 0.620601 +13 108.57 112.44749999999999 1000 50 0.5614484 +14 112.4475 116.325 1000 50 0.56924886 +15 116.325 120.2025 1000 50 0.9844455 +16 120.2025 124.08 1000 50 0.99609596 +17 127.9575 131.835 1000 50 0.9996439 +18 135.7125 139.59 1000 50 0.5130684 +19 139.59 143.4675 1000 50 0.99070376 +20 143.4675 147.345 1000 50 0.999913 +21 158.9775 162.855 1000 50 0.51419353 +22 182.2425 186.12 1000 50 0.8007026 +23 193.875 197.7525 1000 50 0.66016364 +24 201.63 205.5075 1000 50 0.994764 +25 213.2625 217.14 1000 50 0.99888164 +26 221.0175 224.895 1000 50 0.69232965 +27 228.7725 232.65 1000 50 0.7457121 +28 232.65 236.5275 1000 50 0.890296 +29 240.405 244.2825 1000 50 0.9059787 +30 252.0375 255.915 1000 50 0.6469218 +31 255.915 259.7925 1000 50 0.58365446 +32 263.67 267.5475 1000 50 0.7565352 +33 267.5475 271.425 1000 50 0.99991393 +34 271.425 275.3025 1000 50 0.99948525 +35 275.3025 279.18 1000 50 0.5507226 +36 279.18 283.0575 1000 50 0.87054175 +37 286.935 290.8125 1000 50 0.7954403 +38 294.69 298.5675 1000 50 0.6055518 +39 298.5675 302.445 1000 50 0.72700906 +40 314.0775 317.955 1000 50 0.9401082 +41 317.955 321.8325 1000 50 0.81914294 +42 325.71 329.5875 1000 50 0.7851613 +43 329.5875 333.465 1000 50 0.96961737 +44 352.8525 356.73 1000 50 0.7211583 +45 364.485 368.3625 1000 50 0.559524 +46 368.3625 372.24 1000 50 0.55082446 +47 372.24 376.1175 1000 50 0.68016523 +48 387.75 391.6275 1000 50 0.8918587 +49 395.505 399.3825 1000 50 0.51584566 +50 403.26 407.1375 1000 50 0.5438048 +51 414.8925 418.77 1000 50 0.5510068 +52 426.525 430.4025 1000 50 0.595162 +53 430.4025 434.28 1000 50 0.68608826 +54 438.1575 442.035 1000 50 0.62305945 +55 442.035 445.9125 1000 50 0.81619173 +56 449.79 453.6675 1000 50 0.50198084 +57 480.81 484.6875 1000 50 0.89402574 +58 492.4425 496.32 1000 50 0.5214713 +59 504.075 507.9525 1000 50 0.6213395 +60 535.095 538.9725000000001 1000 50 0.67867094 +61 542.85 546.7275000000001 1000 50 0.60740966 +62 597.135 601.0125 1000 50 0.5210587 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_23-13-59_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_23-13-59_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f4f3df500781830ffb7edcf3db516a6972537381 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-12_2kHz/channelA_2021-03-12_23-13-59_annot_2022-11-30_01.txt @@ -0,0 +1,125 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99999964 +2 3.8775 7.755 1000 50 0.55017537 +3 7.755 11.6325 1000 50 0.99999964 +4 11.6325 15.51 1000 50 0.76386034 +5 15.51 19.3875 1000 50 0.9999409 +6 19.3875 23.265 1000 50 0.99014574 +7 23.265 27.142500000000002 1000 50 0.74005586 +8 27.1425 31.02 1000 50 0.99998593 +9 31.02 34.8975 1000 50 0.9998523 +10 34.8975 38.775 1000 50 0.58529013 +11 38.775 42.652499999999996 1000 50 0.99999964 +12 42.6525 46.53 1000 50 0.67651373 +13 46.53 50.4075 1000 50 0.9974341 +14 50.4075 54.285 1000 50 0.9997998 +15 58.1625 62.04 1000 50 0.99995136 +16 62.04 65.9175 1000 50 0.9677165 +17 69.795 73.6725 1000 50 0.9999987 +18 73.6725 77.55 1000 50 0.8854555 +19 77.55 81.4275 1000 50 0.9999901 +20 81.4275 85.30499999999999 1000 50 0.9019031 +21 89.1825 93.06 1000 50 0.6019934 +22 93.06 96.9375 1000 50 0.8140017 +23 96.9375 100.815 1000 50 0.8932254 +24 100.815 104.6925 1000 50 0.9544748 +25 108.57 112.44749999999999 1000 50 0.59901845 +26 143.4675 147.345 1000 50 0.62708294 +27 158.9775 162.855 1000 50 0.5819034 +28 170.61 174.4875 1000 50 0.75187564 +29 182.2425 186.12 1000 50 0.5165092 +30 186.12 189.9975 1000 50 0.5366383 +31 205.5075 209.385 1000 50 0.588964 +32 228.7725 232.65 1000 50 0.6099121 +33 236.5275 240.405 1000 50 0.688824 +34 244.2825 248.16 1000 50 0.6984942 +35 248.16 252.0375 1000 50 0.6385715 +36 252.0375 255.915 1000 50 0.544031 +37 255.915 259.7925 1000 50 0.6609361 +38 259.7925 263.67 1000 50 0.5900983 +39 283.0575 286.935 1000 50 0.90327674 +40 290.8125 294.69 1000 50 0.96127766 +41 302.445 306.3225 1000 50 0.73191047 +42 306.3225 310.2 1000 50 0.7399561 +43 310.2 314.0775 1000 50 0.7034143 +44 314.0775 317.955 1000 50 0.58327997 +45 317.955 321.8325 1000 50 0.752395 +46 321.8325 325.71 1000 50 0.751969 +47 325.71 329.5875 1000 50 0.9940422 +48 329.5875 333.465 1000 50 0.6929122 +49 337.3425 341.21999999999997 1000 50 0.88459945 +50 341.22 345.0975 1000 50 0.97402555 +51 345.0975 348.975 1000 50 0.97438365 +52 348.975 352.8525 1000 50 0.99995816 +53 352.8525 356.73 1000 50 0.9999845 +54 360.6075 364.485 1000 50 0.9904606 +55 364.485 368.3625 1000 50 0.99992025 +56 368.3625 372.24 1000 50 0.870232 +57 372.24 376.1175 1000 50 0.955162 +58 379.995 383.8725 1000 50 0.999985 +59 383.8725 387.75 1000 50 0.9992964 +60 387.75 391.6275 1000 50 0.95044416 +61 391.6275 395.505 1000 50 0.60768884 +62 395.505 399.3825 1000 50 0.99925584 +63 399.3825 403.26 1000 50 0.9961514 +64 403.26 407.1375 1000 50 0.9996238 +65 407.1375 411.015 1000 50 0.99645245 +66 411.015 414.8925 1000 50 0.9263442 +67 414.8925 418.77 1000 50 0.67840165 +68 418.77 422.6475 1000 50 0.8653216 +69 422.6475 426.525 1000 50 0.96874267 +70 426.525 430.4025 1000 50 0.8754062 +71 434.28 438.15749999999997 1000 50 0.99871063 +72 442.035 445.9125 1000 50 0.9999906 +73 445.9125 449.79 1000 50 0.99988115 +74 449.79 453.6675 1000 50 0.5938428 +75 453.6675 457.545 1000 50 0.968828 +76 457.545 461.4225 1000 50 0.9999467 +77 461.4225 465.3 1000 50 0.9868304 +78 465.3 469.1775 1000 50 0.9930033 +79 469.1775 473.055 1000 50 0.9999989 +80 476.9325 480.81 1000 50 0.9981375 +81 484.6875 488.565 1000 50 0.9907691 +82 488.565 492.4425 1000 50 0.99591005 +83 496.32 500.1975 1000 50 0.998872 +84 500.1975 504.075 1000 50 0.88977075 +85 504.075 507.9525 1000 50 0.95951194 +86 507.9525 511.83 1000 50 0.9744702 +87 511.83 515.7075 1000 50 0.9999995 +88 515.7075 519.585 1000 50 0.99984777 +89 519.585 523.4625000000001 1000 50 0.95877945 +90 523.4625 527.34 1000 50 0.99996233 +91 527.34 531.2175000000001 1000 50 0.999992 +92 531.2175 535.095 1000 50 0.9999993 +93 535.095 538.9725000000001 1000 50 0.9967505 +94 538.9725 542.85 1000 50 0.9927288 +95 542.85 546.7275000000001 1000 50 1.0 +96 546.7275 550.605 1000 50 0.99979407 +97 550.605 554.4825000000001 1000 50 0.9992454 +98 554.4825 558.36 1000 50 1.0 +99 558.36 562.2375000000001 1000 50 0.9998658 +100 562.2375 566.115 1000 50 0.9999393 +101 566.115 569.9925000000001 1000 50 0.9999753 +102 573.87 577.7475000000001 1000 50 0.9999999 +103 577.7475 581.625 1000 50 0.9999813 +104 581.625 585.5025 1000 50 0.9999888 +105 585.5025 589.3800000000001 1000 50 0.9994892 +106 589.38 593.2575 1000 50 0.9942279 +107 593.2575 597.1350000000001 1000 50 0.94170177 +108 597.135 601.0125 1000 50 0.9999908 +109 601.0125 604.8900000000001 1000 50 0.96882564 +110 604.89 608.7675 1000 50 0.81507874 +111 608.7675 612.6450000000001 1000 50 0.5392167 +112 612.645 616.5225 1000 50 0.99997723 +113 616.5225 620.4000000000001 1000 50 0.9709754 +114 620.4 624.2775 1000 50 0.95481724 +115 624.2775 628.1550000000001 1000 50 0.9803067 +116 628.155 632.0325 1000 50 0.9998807 +117 632.0325 635.9100000000001 1000 50 0.99771225 +118 639.7875 643.6650000000001 1000 50 0.9998783 +119 643.665 647.5425 1000 50 0.9449198 +120 647.5425 651.4200000000001 1000 50 0.9999788 +121 651.42 655.2975 1000 50 0.9936392 +122 655.2975 659.1750000000001 1000 50 0.9064293 +123 659.175 663.0525 1000 50 0.945951 +124 663.0525 666.9300000000001 1000 50 0.9997726 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_00-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_00-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..02ecce169c5c5793aa1a3c4a3b0883b2e527de2b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_00-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,126 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.99999774 +2 11.6325 15.51 1000 50 0.5105733 +3 19.3875 23.265 1000 50 0.98706657 +4 23.265 27.142500000000002 1000 50 0.59705853 +5 27.1425 31.02 1000 50 0.99888104 +6 34.8975 38.775 1000 50 0.8194582 +7 38.775 42.652499999999996 1000 50 0.9621506 +8 46.53 50.4075 1000 50 0.94526196 +9 50.4075 54.285 1000 50 0.9926803 +10 54.285 58.162499999999994 1000 50 0.99977666 +11 58.1625 62.04 1000 50 0.9977151 +12 62.04 65.9175 1000 50 0.7369193 +13 65.9175 69.795 1000 50 0.9999223 +14 69.795 73.6725 1000 50 0.99999785 +15 73.6725 77.55 1000 50 0.9999398 +16 77.55 81.4275 1000 50 0.9939997 +17 81.4275 85.30499999999999 1000 50 0.9955909 +18 89.1825 93.06 1000 50 0.96799636 +19 93.06 96.9375 1000 50 0.7066696 +20 104.6925 108.57 1000 50 0.9993901 +21 112.4475 116.325 1000 50 0.99984586 +22 116.325 120.2025 1000 50 0.6810956 +23 120.2025 124.08 1000 50 0.63971597 +24 124.08 127.9575 1000 50 0.9954418 +25 131.835 135.7125 1000 50 0.99990475 +26 135.7125 139.59 1000 50 0.9908477 +27 139.59 143.4675 1000 50 0.6427883 +28 143.4675 147.345 1000 50 0.99872655 +29 147.345 151.2225 1000 50 0.99658304 +30 151.2225 155.1 1000 50 0.6617103 +31 158.9775 162.855 1000 50 0.6044887 +32 170.61 174.4875 1000 50 0.9900899 +33 174.4875 178.365 1000 50 0.88654935 +34 182.2425 186.12 1000 50 0.998548 +35 186.12 189.9975 1000 50 0.9333319 +36 197.7525 201.63 1000 50 0.5210538 +37 209.385 213.2625 1000 50 0.80916893 +38 224.895 228.7725 1000 50 0.98315316 +39 302.445 306.3225 1000 50 0.9370578 +40 310.2 314.0775 1000 50 0.9632952 +41 325.71 329.5875 1000 50 0.83435977 +42 383.8725 387.75 1000 50 0.62157583 +43 387.75 391.6275 1000 50 0.61546713 +44 399.3825 403.26 1000 50 0.6814123 +45 411.015 414.8925 1000 50 0.58164924 +46 422.6475 426.525 1000 50 0.74646974 +47 445.9125 449.79 1000 50 0.7950585 +48 449.79 453.6675 1000 50 0.99005556 +49 453.6675 457.545 1000 50 0.6519312 +50 465.3 469.1775 1000 50 0.9999435 +51 469.1775 473.055 1000 50 0.97182804 +52 473.055 476.9325 1000 50 0.99960417 +53 476.9325 480.81 1000 50 0.9972344 +54 484.6875 488.565 1000 50 0.99979836 +55 488.565 492.4425 1000 50 0.9973568 +56 496.32 500.1975 1000 50 0.78340715 +57 504.075 507.9525 1000 50 0.9741717 +58 507.9525 511.83 1000 50 0.99528754 +59 515.7075 519.585 1000 50 0.9994816 +60 519.585 523.4625000000001 1000 50 0.92844445 +61 523.4625 527.34 1000 50 0.6758585 +62 527.34 531.2175000000001 1000 50 0.9992874 +63 531.2175 535.095 1000 50 0.999889 +64 535.095 538.9725000000001 1000 50 0.67750466 +65 538.9725 542.85 1000 50 0.75785226 +66 542.85 546.7275000000001 1000 50 0.9966714 +67 550.605 554.4825000000001 1000 50 0.9999995 +68 554.4825 558.36 1000 50 0.9998524 +69 558.36 562.2375000000001 1000 50 0.89479 +70 562.2375 566.115 1000 50 0.999923 +71 566.115 569.9925000000001 1000 50 0.9853477 +72 569.9925 573.87 1000 50 0.85414356 +73 573.87 577.7475000000001 1000 50 0.9980427 +74 577.7475 581.625 1000 50 0.99988174 +75 585.5025 589.3800000000001 1000 50 0.9985845 +76 589.38 593.2575 1000 50 0.9934256 +77 593.2575 597.1350000000001 1000 50 0.9124633 +78 597.135 601.0125 1000 50 0.7902588 +79 601.0125 604.8900000000001 1000 50 0.99963284 +80 608.7675 612.6450000000001 1000 50 0.99999976 +81 612.645 616.5225 1000 50 0.838475 +82 620.4 624.2775 1000 50 0.9999908 +83 628.155 632.0325 1000 50 0.9972704 +84 632.0325 635.9100000000001 1000 50 0.99811685 +85 635.91 639.7875 1000 50 0.8041452 +86 639.7875 643.6650000000001 1000 50 0.999985 +87 643.665 647.5425 1000 50 0.9999776 +88 651.42 655.2975 1000 50 0.99915326 +89 659.175 663.0525 1000 50 0.86351144 +90 663.0525 666.9300000000001 1000 50 0.97303164 +91 666.93 670.8075 1000 50 0.7065809 +92 670.8075 674.6850000000001 1000 50 0.97241706 +93 674.685 678.5625 1000 50 0.6117803 +94 678.5625 682.44 1000 50 0.81889 +95 682.44 686.3175000000001 1000 50 0.74657613 +96 686.3175 690.195 1000 50 0.9853359 +97 690.195 694.0725000000001 1000 50 0.6531431 +98 694.0725 697.95 1000 50 0.96707815 +99 705.705 709.5825000000001 1000 50 0.98065484 +100 709.5825 713.46 1000 50 0.97989583 +101 717.3375 721.215 1000 50 0.99720156 +102 721.215 725.0925000000001 1000 50 0.9940978 +103 725.0925 728.97 1000 50 0.9501784 +104 728.97 732.8475000000001 1000 50 0.9965412 +105 732.8475 736.725 1000 50 0.88558906 +106 736.725 740.6025000000001 1000 50 0.9878734 +107 740.6025 744.48 1000 50 0.91408944 +108 744.48 748.3575000000001 1000 50 0.99745387 +109 748.3575 752.235 1000 50 0.99980205 +110 752.235 756.1125000000001 1000 50 0.98745906 +111 756.1125 759.99 1000 50 0.9786308 +112 759.99 763.8675000000001 1000 50 0.9004604 +113 763.8675 767.745 1000 50 0.992097 +114 767.745 771.6225000000001 1000 50 0.99995255 +115 771.6225 775.5 1000 50 0.98874587 +116 783.255 787.1325 1000 50 0.5040619 +117 806.52 810.3975 1000 50 0.99291795 +118 810.3975 814.2750000000001 1000 50 0.7188277 +119 814.275 818.1525 1000 50 0.78216517 +120 818.1525 822.0300000000001 1000 50 0.6739425 +121 825.9075 829.7850000000001 1000 50 0.53724116 +122 837.54 841.4175 1000 50 0.6004886 +123 872.4375 876.315 1000 50 0.9005174 +124 895.7025 899.58 1000 50 0.62658197 +125 915.09 918.9675000000001 1000 50 0.9996989 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_00-18-59_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_00-18-59_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..fc2c2879c1515448ef45ce99376cc0b530227f42 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_00-18-59_annot_2022-11-30_01.txt @@ -0,0 +1,47 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9459718 +2 7.755 11.6325 1000 50 0.99355006 +3 15.51 19.3875 1000 50 0.9975752 +4 19.3875 23.265 1000 50 0.9880695 +5 31.02 34.8975 1000 50 0.95625037 +6 34.8975 38.775 1000 50 0.95278126 +7 42.6525 46.53 1000 50 0.9999906 +8 46.53 50.4075 1000 50 0.82171047 +9 54.285 58.162499999999994 1000 50 0.58358926 +10 65.9175 69.795 1000 50 0.99379516 +11 69.795 73.6725 1000 50 0.8429394 +12 73.6725 77.55 1000 50 0.9999989 +13 85.305 89.1825 1000 50 0.8699291 +14 89.1825 93.06 1000 50 0.99997985 +15 93.06 96.9375 1000 50 0.99926716 +16 96.9375 100.815 1000 50 0.8242918 +17 100.815 104.6925 1000 50 0.73669535 +18 108.57 112.44749999999999 1000 50 0.9999987 +19 112.4475 116.325 1000 50 0.9908257 +20 116.325 120.2025 1000 50 0.99985576 +21 120.2025 124.08 1000 50 0.99493045 +22 124.08 127.9575 1000 50 0.6484691 +23 127.9575 131.835 1000 50 0.9999913 +24 131.835 135.7125 1000 50 0.98866093 +25 135.7125 139.59 1000 50 0.99994135 +26 139.59 143.4675 1000 50 0.9999975 +27 147.345 151.2225 1000 50 0.9838275 +28 151.2225 155.1 1000 50 0.9093922 +29 155.1 158.9775 1000 50 0.97055817 +30 158.9775 162.855 1000 50 0.917076 +31 162.855 166.7325 1000 50 0.99994147 +32 170.61 174.4875 1000 50 0.6369368 +33 182.2425 186.12 1000 50 0.9708665 +34 213.2625 217.14 1000 50 0.999948 +35 217.14 221.01749999999998 1000 50 0.8977333 +36 221.0175 224.895 1000 50 0.91530347 +37 224.895 228.7725 1000 50 0.90241706 +38 228.7725 232.65 1000 50 0.959247 +39 232.65 236.5275 1000 50 0.9988696 +40 236.5275 240.405 1000 50 0.9854284 +41 244.2825 248.16 1000 50 0.88573587 +42 252.0375 255.915 1000 50 0.9952781 +43 255.915 259.7925 1000 50 0.7677463 +44 271.425 275.3025 1000 50 0.7933651 +45 298.5675 302.445 1000 50 0.6508344 +46 306.3225 310.2 1000 50 0.67432284 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_01-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_01-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..6f8f7194b379479d4bb4a043b8814b8ab6352b91 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_01-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,200 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99127954 +2 3.8775 7.755 1000 50 0.99876475 +3 7.755 11.6325 1000 50 0.99999547 +4 15.51 19.3875 1000 50 0.7285243 +5 19.3875 23.265 1000 50 0.99613345 +6 23.265 27.142500000000002 1000 50 0.9158636 +7 27.1425 31.02 1000 50 0.9684761 +8 31.02 34.8975 1000 50 0.9999975 +9 34.8975 38.775 1000 50 0.85537773 +10 38.775 42.652499999999996 1000 50 0.99994636 +11 42.6525 46.53 1000 50 0.6512751 +12 46.53 50.4075 1000 50 0.99789137 +13 50.4075 54.285 1000 50 0.9999939 +14 54.285 58.162499999999994 1000 50 0.9540903 +15 58.1625 62.04 1000 50 0.68434936 +16 62.04 65.9175 1000 50 0.5896394 +17 65.9175 69.795 1000 50 0.6116754 +18 69.795 73.6725 1000 50 0.99993765 +19 73.6725 77.55 1000 50 0.865527 +20 77.55 81.4275 1000 50 0.9573122 +21 81.4275 85.30499999999999 1000 50 0.9986094 +22 85.305 89.1825 1000 50 0.94031423 +23 89.1825 93.06 1000 50 0.9983682 +24 93.06 96.9375 1000 50 0.85364527 +25 96.9375 100.815 1000 50 0.9913078 +26 100.815 104.6925 1000 50 0.95647085 +27 104.6925 108.57 1000 50 0.521374 +28 108.57 112.44749999999999 1000 50 0.9999541 +29 112.4475 116.325 1000 50 0.73931247 +30 120.2025 124.08 1000 50 0.9991303 +31 124.08 127.9575 1000 50 0.80355656 +32 127.9575 131.835 1000 50 0.79771864 +33 131.835 135.7125 1000 50 0.885604 +34 151.2225 155.1 1000 50 0.98288304 +35 166.7325 170.60999999999999 1000 50 0.983265 +36 170.61 174.4875 1000 50 0.9812618 +37 174.4875 178.365 1000 50 0.9998659 +38 178.365 182.2425 1000 50 0.84712803 +39 186.12 189.9975 1000 50 0.9970739 +40 189.9975 193.875 1000 50 0.96914446 +41 193.875 197.7525 1000 50 0.7841416 +42 197.7525 201.63 1000 50 0.8288132 +43 205.5075 209.385 1000 50 0.96319294 +44 209.385 213.2625 1000 50 0.98344016 +45 213.2625 217.14 1000 50 0.9305551 +46 217.14 221.01749999999998 1000 50 0.77481705 +47 221.0175 224.895 1000 50 0.65642804 +48 228.7725 232.65 1000 50 0.71758026 +49 244.2825 248.16 1000 50 0.8300244 +50 248.16 252.0375 1000 50 0.9643526 +51 283.0575 286.935 1000 50 0.79334563 +52 286.935 290.8125 1000 50 0.6768585 +53 306.3225 310.2 1000 50 0.65250707 +54 314.0775 317.955 1000 50 0.59764355 +55 317.955 321.8325 1000 50 0.99372077 +56 325.71 329.5875 1000 50 0.5570074 +57 329.5875 333.465 1000 50 0.97552687 +58 337.3425 341.21999999999997 1000 50 0.9948087 +59 348.975 352.8525 1000 50 0.6234211 +60 360.6075 364.485 1000 50 0.9746806 +61 364.485 368.3625 1000 50 0.7005294 +62 376.1175 379.995 1000 50 0.7452146 +63 387.75 391.6275 1000 50 0.5311942 +64 391.6275 395.505 1000 50 0.67490023 +65 399.3825 403.26 1000 50 0.8982424 +66 411.015 414.8925 1000 50 0.84595233 +67 418.77 422.6475 1000 50 0.83266157 +68 422.6475 426.525 1000 50 0.52813715 +69 430.4025 434.28 1000 50 0.9855629 +70 434.28 438.15749999999997 1000 50 0.99985385 +71 438.1575 442.035 1000 50 0.76163656 +72 442.035 445.9125 1000 50 0.91206795 +73 445.9125 449.79 1000 50 0.9071348 +74 449.79 453.6675 1000 50 0.7217148 +75 453.6675 457.545 1000 50 0.8590445 +76 457.545 461.4225 1000 50 0.89701307 +77 465.3 469.1775 1000 50 0.59720856 +78 473.055 476.9325 1000 50 0.999767 +79 480.81 484.6875 1000 50 0.57191175 +80 484.6875 488.565 1000 50 0.819146 +81 488.565 492.4425 1000 50 0.99993837 +82 500.1975 504.075 1000 50 0.9911805 +83 504.075 507.9525 1000 50 0.5703516 +84 507.9525 511.83 1000 50 0.9920087 +85 511.83 515.7075 1000 50 0.99360883 +86 519.585 523.4625000000001 1000 50 0.7964164 +87 523.4625 527.34 1000 50 0.9874235 +88 527.34 531.2175000000001 1000 50 0.74685776 +89 531.2175 535.095 1000 50 0.7583545 +90 535.095 538.9725000000001 1000 50 0.8920762 +91 538.9725 542.85 1000 50 0.8912804 +92 542.85 546.7275000000001 1000 50 0.79263383 +93 546.7275 550.605 1000 50 0.9827498 +94 550.605 554.4825000000001 1000 50 0.9870819 +95 562.2375 566.115 1000 50 0.99785334 +96 566.115 569.9925000000001 1000 50 0.89376146 +97 573.87 577.7475000000001 1000 50 0.7299978 +98 581.625 585.5025 1000 50 0.75963676 +99 585.5025 589.3800000000001 1000 50 0.87043315 +100 589.38 593.2575 1000 50 0.6508654 +101 593.2575 597.1350000000001 1000 50 0.7821077 +102 597.135 601.0125 1000 50 0.5000887 +103 601.0125 604.8900000000001 1000 50 0.9751194 +104 604.89 608.7675 1000 50 0.9811497 +105 608.7675 612.6450000000001 1000 50 0.8532894 +106 616.5225 620.4000000000001 1000 50 0.66624475 +107 620.4 624.2775 1000 50 0.79000056 +108 632.0325 635.9100000000001 1000 50 0.7799882 +109 635.91 639.7875 1000 50 0.84486246 +110 639.7875 643.6650000000001 1000 50 0.60116696 +111 643.665 647.5425 1000 50 0.5875684 +112 647.5425 651.4200000000001 1000 50 0.99993324 +113 651.42 655.2975 1000 50 0.92487717 +114 655.2975 659.1750000000001 1000 50 0.8331063 +115 659.175 663.0525 1000 50 0.9815894 +116 670.8075 674.6850000000001 1000 50 0.6592329 +117 682.44 686.3175000000001 1000 50 0.9330153 +118 686.3175 690.195 1000 50 0.56231326 +119 690.195 694.0725000000001 1000 50 0.7811816 +120 701.8275 705.705 1000 50 0.96435213 +121 709.5825 713.46 1000 50 0.9828 +122 713.46 717.3375000000001 1000 50 0.8892422 +123 717.3375 721.215 1000 50 0.9996581 +124 725.0925 728.97 1000 50 0.94697624 +125 732.8475 736.725 1000 50 0.9004577 +126 736.725 740.6025000000001 1000 50 0.9938259 +127 740.6025 744.48 1000 50 0.9996916 +128 744.48 748.3575000000001 1000 50 0.9988172 +129 748.3575 752.235 1000 50 0.70972115 +130 752.235 756.1125000000001 1000 50 0.84723336 +131 756.1125 759.99 1000 50 0.8126146 +132 759.99 763.8675000000001 1000 50 0.89623874 +133 763.8675 767.745 1000 50 0.9510557 +134 767.745 771.6225000000001 1000 50 0.6143559 +135 771.6225 775.5 1000 50 0.9971697 +136 779.3775 783.2550000000001 1000 50 0.5432046 +137 783.255 787.1325 1000 50 0.8938446 +138 794.8875 798.7650000000001 1000 50 0.865865 +139 802.6425 806.5200000000001 1000 50 0.99887913 +140 810.3975 814.2750000000001 1000 50 0.6517025 +141 822.03 825.9075 1000 50 0.7565855 +142 825.9075 829.7850000000001 1000 50 0.72443056 +143 841.4175 845.2950000000001 1000 50 0.5031667 +144 845.295 849.1725 1000 50 0.64215946 +145 849.1725 853.0500000000001 1000 50 0.6210221 +146 860.805 864.6825 1000 50 0.9445631 +147 868.56 872.4375 1000 50 0.6400503 +148 876.315 880.1925000000001 1000 50 0.8890839 +149 884.07 887.9475000000001 1000 50 0.6746128 +150 891.825 895.7025000000001 1000 50 0.81015867 +151 895.7025 899.58 1000 50 0.6335596 +152 899.58 903.4575000000001 1000 50 0.53004265 +153 918.9675 922.845 1000 50 0.57295185 +154 934.4775 938.355 1000 50 0.694558 +155 953.865 957.7425000000001 1000 50 0.6010194 +156 965.4975 969.375 1000 50 0.6835964 +157 973.2525 977.1300000000001 1000 50 0.8120217 +158 977.13 981.0075 1000 50 0.7069575 +159 984.885 988.7625 1000 50 0.99477494 +160 996.5175 1000.3950000000001 1000 50 0.68346983 +161 1004.2725 1008.1500000000001 1000 50 0.6712166 +162 1012.0275 1015.9050000000001 1000 50 0.5101453 +163 1027.5375 1031.415 1000 50 0.5445367 +164 1039.17 1043.0475000000001 1000 50 0.5876675 +165 1043.0475 1046.925 1000 50 0.5078545 +166 1046.925 1050.8025 1000 50 0.9322031 +167 1050.8025 1054.68 1000 50 0.8891561 +168 1058.5575 1062.435 1000 50 0.82883537 +169 1074.0675 1077.9450000000002 1000 50 0.92766565 +170 1081.8225 1085.7 1000 50 0.661942 +171 1089.5775 1093.4550000000002 1000 50 0.55319524 +172 1093.455 1097.3325 1000 50 0.6155103 +173 1101.21 1105.0875 1000 50 0.5524214 +174 1108.965 1112.8425 1000 50 0.77122664 +175 1116.72 1120.5975 1000 50 0.96300197 +176 1124.475 1128.3525 1000 50 0.6725043 +177 1128.3525 1132.23 1000 50 0.9989002 +178 1132.23 1136.1075 1000 50 0.9758504 +179 1136.1075 1139.9850000000001 1000 50 0.7032014 +180 1139.985 1143.8625 1000 50 0.89408153 +181 1143.8625 1147.74 1000 50 0.9998202 +182 1147.74 1151.6175 1000 50 0.9840074 +183 1151.6175 1155.4950000000001 1000 50 0.68251467 +184 1155.495 1159.3725 1000 50 0.7872358 +185 1167.1275 1171.005 1000 50 0.532165 +186 1171.005 1174.8825000000002 1000 50 0.71033216 +187 1174.8825 1178.76 1000 50 0.751445 +188 1178.76 1182.6375 1000 50 0.9998627 +189 1182.6375 1186.515 1000 50 0.940972 +190 1186.515 1190.3925000000002 1000 50 0.72060734 +191 1190.3925 1194.27 1000 50 0.9762439 +192 1194.27 1198.1475 1000 50 0.65349734 +193 1202.025 1205.9025000000001 1000 50 0.62390214 +194 1205.9025 1209.78 1000 50 0.6806885 +195 1213.6575 1217.535 1000 50 0.9999943 +196 1217.535 1221.4125000000001 1000 50 0.8863019 +197 1221.4125 1225.29 1000 50 0.921941 +198 1225.29 1229.1675 1000 50 0.99241275 +199 1233.045 1236.9225000000001 1000 50 0.85966855 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_01-24-17_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_01-24-17_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..96bc9f9ccf43884d2a2ee0bcdefa95f3b10851b5 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_01-24-17_annot_2022-11-30_01.txt @@ -0,0 +1,10 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.98520756 +2 7.755 11.6325 1000 50 0.68907166 +3 15.51 19.3875 1000 50 0.99996686 +4 19.3875 23.265 1000 50 0.99792635 +5 23.265 27.142500000000002 1000 50 0.97800547 +6 27.1425 31.02 1000 50 0.68282145 +7 31.02 34.8975 1000 50 0.99395037 +8 38.775 42.652499999999996 1000 50 0.9993131 +9 42.6525 46.53 1000 50 0.9955083 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_02-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_02-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..49fd5308ae068bc31622404045b4f90b3d4ca684 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_02-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,215 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9999577 +2 7.755 11.6325 1000 50 0.932749 +3 19.3875 23.265 1000 50 0.9767779 +4 23.265 27.142500000000002 1000 50 0.5188261 +5 27.1425 31.02 1000 50 0.87614644 +6 34.8975 38.775 1000 50 0.9904981 +7 46.53 50.4075 1000 50 0.9994438 +8 50.4075 54.285 1000 50 0.8901087 +9 58.1625 62.04 1000 50 0.7950671 +10 62.04 65.9175 1000 50 0.632374 +11 73.6725 77.55 1000 50 0.9928179 +12 77.55 81.4275 1000 50 0.7996409 +13 81.4275 85.30499999999999 1000 50 0.9988607 +14 89.1825 93.06 1000 50 0.9135108 +15 93.06 96.9375 1000 50 0.81647485 +16 96.9375 100.815 1000 50 0.8296498 +17 108.57 112.44749999999999 1000 50 0.51643103 +18 112.4475 116.325 1000 50 0.99987733 +19 124.08 127.9575 1000 50 0.74555516 +20 127.9575 131.835 1000 50 0.81243235 +21 131.835 135.7125 1000 50 0.6410001 +22 135.7125 139.59 1000 50 0.9397278 +23 139.59 143.4675 1000 50 0.72199625 +24 147.345 151.2225 1000 50 0.71373904 +25 155.1 158.9775 1000 50 0.95289326 +26 158.9775 162.855 1000 50 0.99972445 +27 166.7325 170.60999999999999 1000 50 0.9684862 +28 170.61 174.4875 1000 50 0.999982 +29 174.4875 178.365 1000 50 0.9997708 +30 182.2425 186.12 1000 50 0.99994147 +31 186.12 189.9975 1000 50 0.9320394 +32 189.9975 193.875 1000 50 0.9999107 +33 193.875 197.7525 1000 50 0.8004064 +34 197.7525 201.63 1000 50 0.99970263 +35 209.385 213.2625 1000 50 0.9171453 +36 213.2625 217.14 1000 50 0.9570349 +37 217.14 221.01749999999998 1000 50 0.9999733 +38 221.0175 224.895 1000 50 0.9782136 +39 224.895 228.7725 1000 50 0.9999951 +40 228.7725 232.65 1000 50 0.99967086 +41 236.5275 240.405 1000 50 0.9999887 +42 240.405 244.2825 1000 50 0.97047776 +43 244.2825 248.16 1000 50 0.9977315 +44 248.16 252.0375 1000 50 0.98584926 +45 259.7925 263.67 1000 50 0.59326196 +46 263.67 267.5475 1000 50 0.7292064 +47 267.5475 271.425 1000 50 0.7940034 +48 271.425 275.3025 1000 50 0.6468395 +49 279.18 283.0575 1000 50 0.9225698 +50 290.8125 294.69 1000 50 0.98510796 +51 302.445 306.3225 1000 50 0.99331117 +52 306.3225 310.2 1000 50 0.7267193 +53 310.2 314.0775 1000 50 0.997283 +54 314.0775 317.955 1000 50 0.99505544 +55 317.955 321.8325 1000 50 0.98612773 +56 321.8325 325.71 1000 50 0.70376354 +57 325.71 329.5875 1000 50 0.99973446 +58 329.5875 333.465 1000 50 0.9994143 +59 337.3425 341.21999999999997 1000 50 0.56811184 +60 341.22 345.0975 1000 50 0.99998355 +61 345.0975 348.975 1000 50 0.9776045 +62 348.975 352.8525 1000 50 0.9995753 +63 352.8525 356.73 1000 50 0.8260414 +64 356.73 360.6075 1000 50 0.9781375 +65 360.6075 364.485 1000 50 0.60265493 +66 372.24 376.1175 1000 50 0.5126555 +67 379.995 383.8725 1000 50 0.6506835 +68 387.75 391.6275 1000 50 0.52930814 +69 426.525 430.4025 1000 50 0.61516213 +70 442.035 445.9125 1000 50 0.52446926 +71 480.81 484.6875 1000 50 0.56791866 +72 488.565 492.4425 1000 50 0.55576193 +73 500.1975 504.075 1000 50 0.646903 +74 504.075 507.9525 1000 50 0.712434 +75 554.4825 558.36 1000 50 0.65283865 +76 562.2375 566.115 1000 50 0.72346 +77 566.115 569.9925000000001 1000 50 0.5994365 +78 573.87 577.7475000000001 1000 50 0.98936546 +79 581.625 585.5025 1000 50 0.8972977 +80 585.5025 589.3800000000001 1000 50 0.99633443 +81 604.89 608.7675 1000 50 0.9994418 +82 608.7675 612.6450000000001 1000 50 0.9966738 +83 616.5225 620.4000000000001 1000 50 0.9994966 +84 624.2775 628.1550000000001 1000 50 0.7304149 +85 628.155 632.0325 1000 50 0.9993789 +86 632.0325 635.9100000000001 1000 50 0.87376744 +87 639.7875 643.6650000000001 1000 50 0.92022914 +88 643.665 647.5425 1000 50 0.99991393 +89 651.42 655.2975 1000 50 0.98585457 +90 663.0525 666.9300000000001 1000 50 0.9995455 +91 670.8075 674.6850000000001 1000 50 0.80904764 +92 674.685 678.5625 1000 50 0.7357166 +93 686.3175 690.195 1000 50 0.93081033 +94 694.0725 697.95 1000 50 0.5088761 +95 697.95 701.8275000000001 1000 50 0.67668766 +96 701.8275 705.705 1000 50 0.8991366 +97 705.705 709.5825000000001 1000 50 0.98003894 +98 717.3375 721.215 1000 50 0.64257103 +99 725.0925 728.97 1000 50 0.71821374 +100 732.8475 736.725 1000 50 0.99608105 +101 736.725 740.6025000000001 1000 50 0.99647504 +102 740.6025 744.48 1000 50 0.99793077 +103 744.48 748.3575000000001 1000 50 0.9999083 +104 748.3575 752.235 1000 50 0.6000014 +105 752.235 756.1125000000001 1000 50 0.9998585 +106 759.99 763.8675000000001 1000 50 0.9999999 +107 763.8675 767.745 1000 50 0.9999331 +108 771.6225 775.5 1000 50 1.0 +109 775.5 779.3775 1000 50 0.7767398 +110 779.3775 783.2550000000001 1000 50 0.99999976 +111 783.255 787.1325 1000 50 0.9999931 +112 794.8875 798.7650000000001 1000 50 0.82940286 +113 798.765 802.6425 1000 50 0.98128015 +114 802.6425 806.5200000000001 1000 50 0.90350115 +115 806.52 810.3975 1000 50 0.99575293 +116 818.1525 822.0300000000001 1000 50 1.0 +117 825.9075 829.7850000000001 1000 50 0.9998716 +118 829.785 833.6625 1000 50 0.96728355 +119 837.54 841.4175 1000 50 1.0 +120 845.295 849.1725 1000 50 0.74834394 +121 849.1725 853.0500000000001 1000 50 0.99999726 +122 856.9275 860.8050000000001 1000 50 0.9998392 +123 860.805 864.6825 1000 50 0.94664204 +124 868.56 872.4375 1000 50 0.99991536 +125 872.4375 876.315 1000 50 0.998722 +126 876.315 880.1925000000001 1000 50 0.9999764 +127 880.1925 884.07 1000 50 0.9976325 +128 884.07 887.9475000000001 1000 50 0.9893713 +129 887.9475 891.825 1000 50 0.8382756 +130 891.825 895.7025000000001 1000 50 0.9998491 +131 895.7025 899.58 1000 50 0.5107653 +132 899.58 903.4575000000001 1000 50 0.99990535 +133 903.4575 907.335 1000 50 0.97509027 +134 907.335 911.2125000000001 1000 50 0.9584357 +135 911.2125 915.09 1000 50 0.99809116 +136 918.9675 922.845 1000 50 0.9999039 +137 922.845 926.7225000000001 1000 50 0.99919087 +138 926.7225 930.6 1000 50 0.8330361 +139 930.6 934.4775000000001 1000 50 0.9748674 +140 938.355 942.2325000000001 1000 50 0.9433889 +141 942.2325 946.11 1000 50 0.99608177 +142 949.9875 953.865 1000 50 0.93666345 +143 953.865 957.7425000000001 1000 50 0.7140316 +144 965.4975 969.375 1000 50 0.8375976 +145 981.0075 984.8850000000001 1000 50 0.58457774 +146 992.64 996.5175 1000 50 0.74421954 +147 1000.395 1004.2725 1000 50 0.57109237 +148 1008.15 1012.0275 1000 50 0.7538101 +149 1012.0275 1015.9050000000001 1000 50 0.64325625 +150 1015.905 1019.7825 1000 50 0.99785054 +151 1019.7825 1023.6600000000001 1000 50 0.67371327 +152 1027.5375 1031.415 1000 50 0.995443 +153 1031.415 1035.2925 1000 50 0.6155981 +154 1043.0475 1046.925 1000 50 0.6144916 +155 1070.19 1074.0675 1000 50 0.8241441 +156 1085.7 1089.5775 1000 50 0.5922621 +157 1093.455 1097.3325 1000 50 0.90987295 +158 1124.475 1128.3525 1000 50 0.54614335 +159 1132.23 1136.1075 1000 50 0.7764312 +160 1136.1075 1139.9850000000001 1000 50 0.71422774 +161 1139.985 1143.8625 1000 50 0.7336259 +162 1143.8625 1147.74 1000 50 0.82825464 +163 1147.74 1151.6175 1000 50 0.9475027 +164 1159.3725 1163.25 1000 50 0.8845903 +165 1178.76 1182.6375 1000 50 0.5773326 +166 1190.3925 1194.27 1000 50 0.74859697 +167 1202.025 1205.9025000000001 1000 50 0.7858636 +168 1205.9025 1209.78 1000 50 0.7036366 +169 1240.8 1244.6775 1000 50 0.9995832 +170 1244.6775 1248.555 1000 50 0.9995504 +171 1248.555 1252.4325000000001 1000 50 0.73404306 +172 1256.31 1260.1875 1000 50 0.99990547 +173 1260.1875 1264.065 1000 50 0.7487456 +174 1279.575 1283.4525 1000 50 0.9990251 +175 1283.4525 1287.3300000000002 1000 50 0.5097563 +176 1287.33 1291.2075 1000 50 0.9994247 +177 1291.2075 1295.085 1000 50 0.97650856 +178 1295.085 1298.9625 1000 50 0.93069726 +179 1298.9625 1302.8400000000001 1000 50 0.9996842 +180 1302.84 1306.7175 1000 50 0.9999025 +181 1314.4725 1318.3500000000001 1000 50 0.9999522 +182 1318.35 1322.2275 1000 50 0.9915542 +183 1322.2275 1326.105 1000 50 0.5569185 +184 1326.105 1329.9825 1000 50 0.99949515 +185 1329.9825 1333.8600000000001 1000 50 0.9949673 +186 1337.7375 1341.615 1000 50 0.78358483 +187 1341.615 1345.4925 1000 50 0.940628 +188 1345.4925 1349.3700000000001 1000 50 0.70400214 +189 1349.37 1353.2475 1000 50 0.8236773 +190 1353.2475 1357.125 1000 50 0.8117234 +191 1357.125 1361.0025 1000 50 0.507184 +192 1364.88 1368.7575000000002 1000 50 0.84390587 +193 1368.7575 1372.635 1000 50 0.9117557 +194 1376.5125 1380.39 1000 50 0.7032575 +195 1380.39 1384.2675000000002 1000 50 0.98539954 +196 1388.145 1392.0225 1000 50 0.82013077 +197 1392.0225 1395.9 1000 50 0.62558603 +198 1407.5325 1411.41 1000 50 0.85221845 +199 1411.41 1415.2875000000001 1000 50 0.9883171 +200 1419.165 1423.0425 1000 50 0.52956396 +201 1423.0425 1426.92 1000 50 0.9938107 +202 1426.92 1430.7975000000001 1000 50 0.99496716 +203 1430.7975 1434.675 1000 50 0.60667634 +204 1434.675 1438.5525 1000 50 0.963395 +205 1438.5525 1442.43 1000 50 0.89877784 +206 1442.43 1446.3075000000001 1000 50 0.99118114 +207 1454.0625 1457.94 1000 50 0.92507493 +208 1461.8175 1465.6950000000002 1000 50 0.998072 +209 1465.695 1469.5725 1000 50 0.9781245 +210 1469.5725 1473.45 1000 50 0.9927873 +211 1473.45 1477.3275 1000 50 0.96367013 +212 1477.3275 1481.2050000000002 1000 50 0.6354398 +213 1488.96 1492.8375 1000 50 0.9999578 +214 1492.8375 1496.7150000000001 1000 50 0.9877835 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_03-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_03-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..99abab983a2ce6d636d68fffdc71ece4605e401e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_03-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,6 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.7201919 +2 3.8775 7.755 1000 50 0.5844697 +3 27.1425 31.02 1000 50 0.62176514 +4 38.775 42.652499999999996 1000 50 0.71711886 +5 50.4075 54.285 1000 50 0.5038969 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_03-04-34_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_03-04-34_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..fb0b226b688253e95ceb29b6ac4a3cdd764cb586 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_03-04-34_annot_2022-11-30_01.txt @@ -0,0 +1,219 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.99310595 +2 11.6325 15.51 1000 50 0.98278356 +3 19.3875 23.265 1000 50 0.99945027 +4 23.265 27.142500000000002 1000 50 0.9994986 +5 31.02 34.8975 1000 50 0.7338873 +6 34.8975 38.775 1000 50 0.9999982 +7 42.6525 46.53 1000 50 0.982973 +8 46.53 50.4075 1000 50 0.9568035 +9 50.4075 54.285 1000 50 0.86211747 +10 54.285 58.162499999999994 1000 50 0.9490273 +11 58.1625 62.04 1000 50 0.9892908 +12 62.04 65.9175 1000 50 0.9963903 +13 65.9175 69.795 1000 50 0.919698 +14 69.795 73.6725 1000 50 0.6342103 +15 73.6725 77.55 1000 50 0.7161552 +16 77.55 81.4275 1000 50 0.990333 +17 85.305 89.1825 1000 50 0.98825735 +18 89.1825 93.06 1000 50 0.99970347 +19 96.9375 100.815 1000 50 0.50470644 +20 100.815 104.6925 1000 50 0.5492257 +21 104.6925 108.57 1000 50 0.9504178 +22 108.57 112.44749999999999 1000 50 0.72281975 +23 112.4475 116.325 1000 50 0.9955278 +24 116.325 120.2025 1000 50 0.99936754 +25 120.2025 124.08 1000 50 0.9829323 +26 124.08 127.9575 1000 50 0.60881144 +27 127.9575 131.835 1000 50 0.8093207 +28 131.835 135.7125 1000 50 0.9856677 +29 139.59 143.4675 1000 50 0.9904275 +30 143.4675 147.345 1000 50 0.99980146 +31 147.345 151.2225 1000 50 0.99760205 +32 155.1 158.9775 1000 50 0.9999995 +33 158.9775 162.855 1000 50 0.8835338 +34 162.855 166.7325 1000 50 0.9996232 +35 166.7325 170.60999999999999 1000 50 0.99999285 +36 174.4875 178.365 1000 50 0.8962847 +37 178.365 182.2425 1000 50 0.8840937 +38 182.2425 186.12 1000 50 0.9999231 +39 186.12 189.9975 1000 50 0.9996364 +40 193.875 197.7525 1000 50 0.9999994 +41 197.7525 201.63 1000 50 0.52916527 +42 201.63 205.5075 1000 50 0.99995244 +43 205.5075 209.385 1000 50 0.8841137 +44 209.385 213.2625 1000 50 0.99999726 +45 213.2625 217.14 1000 50 1.0 +46 217.14 221.01749999999998 1000 50 0.99614185 +47 221.0175 224.895 1000 50 0.9637212 +48 224.895 228.7725 1000 50 0.857078 +49 228.7725 232.65 1000 50 0.59840935 +50 232.65 236.5275 1000 50 0.97594476 +51 236.5275 240.405 1000 50 0.5398769 +52 240.405 244.2825 1000 50 0.6950294 +53 244.2825 248.16 1000 50 0.7449919 +54 252.0375 255.915 1000 50 0.6056924 +55 255.915 259.7925 1000 50 0.86759907 +56 259.7925 263.67 1000 50 0.68893 +57 267.5475 271.425 1000 50 0.6147631 +58 271.425 275.3025 1000 50 0.9985133 +59 275.3025 279.18 1000 50 0.64425623 +60 283.0575 286.935 1000 50 0.8412513 +61 286.935 290.8125 1000 50 0.64746153 +62 290.8125 294.69 1000 50 0.9732906 +63 294.69 298.5675 1000 50 0.9377739 +64 298.5675 302.445 1000 50 0.9766381 +65 302.445 306.3225 1000 50 0.9743323 +66 306.3225 310.2 1000 50 0.9994142 +67 310.2 314.0775 1000 50 0.67610556 +68 317.955 321.8325 1000 50 0.99605405 +69 321.8325 325.71 1000 50 0.7105866 +70 325.71 329.5875 1000 50 0.7539764 +71 337.3425 341.21999999999997 1000 50 0.7244435 +72 341.22 345.0975 1000 50 0.96652025 +73 348.975 352.8525 1000 50 0.99876285 +74 352.8525 356.73 1000 50 0.81597644 +75 360.6075 364.485 1000 50 0.8172454 +76 364.485 368.3625 1000 50 0.9918699 +77 387.75 391.6275 1000 50 0.73755527 +78 418.77 422.6475 1000 50 0.5826768 +79 430.4025 434.28 1000 50 0.5447388 +80 438.1575 442.035 1000 50 0.6845779 +81 442.035 445.9125 1000 50 0.5692615 +82 461.4225 465.3 1000 50 0.74119025 +83 473.055 476.9325 1000 50 0.5397768 +84 507.9525 511.83 1000 50 0.83405375 +85 519.585 523.4625000000001 1000 50 0.9885727 +86 527.34 531.2175000000001 1000 50 0.54567766 +87 538.9725 542.85 1000 50 0.9932672 +88 542.85 546.7275000000001 1000 50 0.60934705 +89 550.605 554.4825000000001 1000 50 0.9999267 +90 554.4825 558.36 1000 50 0.7095156 +91 558.36 562.2375000000001 1000 50 0.808438 +92 562.2375 566.115 1000 50 0.74864334 +93 566.115 569.9925000000001 1000 50 0.53257656 +94 569.9925 573.87 1000 50 0.9908646 +95 573.87 577.7475000000001 1000 50 0.6017252 +96 581.625 585.5025 1000 50 0.999979 +97 585.5025 589.3800000000001 1000 50 0.5526294 +98 593.2575 597.1350000000001 1000 50 0.60718787 +99 604.89 608.7675 1000 50 0.74253345 +100 608.7675 612.6450000000001 1000 50 0.6686594 +101 616.5225 620.4000000000001 1000 50 0.995171 +102 628.155 632.0325 1000 50 0.94904083 +103 632.0325 635.9100000000001 1000 50 0.59729815 +104 635.91 639.7875 1000 50 0.6780932 +105 643.665 647.5425 1000 50 0.7695855 +106 647.5425 651.4200000000001 1000 50 0.5772513 +107 651.42 655.2975 1000 50 0.9992586 +108 655.2975 659.1750000000001 1000 50 0.58384687 +109 663.0525 666.9300000000001 1000 50 0.9991228 +110 670.8075 674.6850000000001 1000 50 0.9729153 +111 674.685 678.5625 1000 50 0.72874206 +112 682.44 686.3175000000001 1000 50 0.99999905 +113 686.3175 690.195 1000 50 0.8427919 +114 690.195 694.0725000000001 1000 50 0.9999844 +115 694.0725 697.95 1000 50 0.9930393 +116 697.95 701.8275000000001 1000 50 0.7580491 +117 701.8275 705.705 1000 50 0.9996075 +118 705.705 709.5825000000001 1000 50 0.6810606 +119 709.5825 713.46 1000 50 0.9995497 +120 717.3375 721.215 1000 50 0.9999999 +121 721.215 725.0925000000001 1000 50 0.99993026 +122 725.0925 728.97 1000 50 0.9961367 +123 728.97 732.8475000000001 1000 50 0.99999964 +124 732.8475 736.725 1000 50 0.98464775 +125 736.725 740.6025000000001 1000 50 0.795522 +126 740.6025 744.48 1000 50 0.7155196 +127 744.48 748.3575000000001 1000 50 0.99998593 +128 748.3575 752.235 1000 50 0.8764055 +129 752.235 756.1125000000001 1000 50 0.96965975 +130 756.1125 759.99 1000 50 0.9012257 +131 763.8675 767.745 1000 50 0.99826545 +132 771.6225 775.5 1000 50 0.9997533 +133 775.5 779.3775 1000 50 0.99942005 +134 779.3775 783.2550000000001 1000 50 0.9570954 +135 787.1325 791.0100000000001 1000 50 0.9742511 +136 791.01 794.8875 1000 50 0.9999901 +137 794.8875 798.7650000000001 1000 50 0.99983144 +138 798.765 802.6425 1000 50 0.9988362 +139 802.6425 806.5200000000001 1000 50 0.9999994 +140 806.52 810.3975 1000 50 0.99879646 +141 810.3975 814.2750000000001 1000 50 0.99108094 +142 814.275 818.1525 1000 50 0.8870881 +143 818.1525 822.0300000000001 1000 50 0.9525777 +144 822.03 825.9075 1000 50 0.99997246 +145 825.9075 829.7850000000001 1000 50 0.9942483 +146 837.54 841.4175 1000 50 0.99912757 +147 841.4175 845.2950000000001 1000 50 0.9996486 +148 849.1725 853.0500000000001 1000 50 1.0 +149 853.05 856.9275 1000 50 0.7885238 +150 856.9275 860.8050000000001 1000 50 0.99999475 +151 860.805 864.6825 1000 50 0.9999219 +152 864.6825 868.5600000000001 1000 50 0.9829229 +153 872.4375 876.315 1000 50 0.934808 +154 876.315 880.1925000000001 1000 50 0.99231005 +155 880.1925 884.07 1000 50 0.9993699 +156 884.07 887.9475000000001 1000 50 0.58922726 +157 887.9475 891.825 1000 50 0.9998394 +158 891.825 895.7025000000001 1000 50 0.9944766 +159 899.58 903.4575000000001 1000 50 0.99668247 +160 903.4575 907.335 1000 50 0.80252874 +161 907.335 911.2125000000001 1000 50 0.6803022 +162 911.2125 915.09 1000 50 0.9999881 +163 915.09 918.9675000000001 1000 50 0.70356125 +164 918.9675 922.845 1000 50 0.9999716 +165 922.845 926.7225000000001 1000 50 0.88589734 +166 926.7225 930.6 1000 50 0.53755033 +167 930.6 934.4775000000001 1000 50 0.99905187 +168 934.4775 938.355 1000 50 0.9999857 +169 942.2325 946.11 1000 50 0.9999999 +170 946.11 949.9875000000001 1000 50 0.54586655 +171 949.9875 953.865 1000 50 0.9998516 +172 953.865 957.7425000000001 1000 50 0.9998103 +173 961.62 965.4975000000001 1000 50 0.9998305 +174 965.4975 969.375 1000 50 0.999882 +175 973.2525 977.1300000000001 1000 50 0.99998236 +176 977.13 981.0075 1000 50 0.977878 +177 984.885 988.7625 1000 50 0.9999999 +178 988.7625 992.6400000000001 1000 50 0.99471277 +179 992.64 996.5175 1000 50 0.99981314 +180 996.5175 1000.3950000000001 1000 50 0.9774016 +181 1004.2725 1008.1500000000001 1000 50 0.9880535 +182 1008.15 1012.0275 1000 50 0.9702599 +183 1019.7825 1023.6600000000001 1000 50 0.9980215 +184 1027.5375 1031.415 1000 50 0.9046591 +185 1031.415 1035.2925 1000 50 0.9666859 +186 1043.0475 1046.925 1000 50 0.73829806 +187 1046.925 1050.8025 1000 50 0.9778462 +188 1050.8025 1054.68 1000 50 0.5725236 +189 1054.68 1058.5575000000001 1000 50 0.7857599 +190 1058.5575 1062.435 1000 50 0.59736526 +191 1062.435 1066.3125 1000 50 0.89224917 +192 1066.3125 1070.19 1000 50 0.7160485 +193 1070.19 1074.0675 1000 50 0.7089186 +194 1074.0675 1077.9450000000002 1000 50 0.63025033 +195 1077.945 1081.8225 1000 50 0.52357185 +196 1081.8225 1085.7 1000 50 0.73592764 +197 1085.7 1089.5775 1000 50 0.92360973 +198 1093.455 1097.3325 1000 50 0.779223 +199 1097.3325 1101.21 1000 50 0.9399761 +200 1101.21 1105.0875 1000 50 0.74057955 +201 1105.0875 1108.9650000000001 1000 50 0.9993839 +202 1108.965 1112.8425 1000 50 0.93791 +203 1112.8425 1116.72 1000 50 0.9999316 +204 1116.72 1120.5975 1000 50 0.9956246 +205 1120.5975 1124.4750000000001 1000 50 0.95619535 +206 1124.475 1128.3525 1000 50 0.99757046 +207 1128.3525 1132.23 1000 50 0.63689137 +208 1136.1075 1139.9850000000001 1000 50 0.9775998 +209 1143.8625 1147.74 1000 50 0.99998724 +210 1147.74 1151.6175 1000 50 0.993509 +211 1151.6175 1155.4950000000001 1000 50 0.93098015 +212 1155.495 1159.3725 1000 50 0.8490286 +213 1163.25 1167.1275 1000 50 0.6141133 +214 1178.76 1182.6375 1000 50 0.76722234 +215 1198.1475 1202.025 1000 50 0.67885923 +216 1205.9025 1209.78 1000 50 0.62746674 +217 1209.78 1213.6575 1000 50 0.5690391 +218 1217.535 1221.4125000000001 1000 50 0.6290629 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_04-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_04-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d6b566444450de923fa59bfa0a30bfe52ac5e488 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_04-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,64 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.7491142 +2 11.6325 15.51 1000 50 0.92191464 +3 15.51 19.3875 1000 50 0.7873354 +4 23.265 27.142500000000002 1000 50 0.7000104 +5 27.1425 31.02 1000 50 0.75915164 +6 38.775 42.652499999999996 1000 50 0.508233 +7 42.6525 46.53 1000 50 0.89622444 +8 46.53 50.4075 1000 50 0.8155263 +9 50.4075 54.285 1000 50 0.5185927 +10 62.04 65.9175 1000 50 0.9020262 +11 81.4275 85.30499999999999 1000 50 0.5010841 +12 85.305 89.1825 1000 50 0.79718024 +13 100.815 104.6925 1000 50 0.95846593 +14 112.4475 116.325 1000 50 0.52460843 +15 116.325 120.2025 1000 50 0.89221245 +16 124.08 127.9575 1000 50 0.9999852 +17 135.7125 139.59 1000 50 0.9998714 +18 139.59 143.4675 1000 50 0.98493236 +19 143.4675 147.345 1000 50 0.99979526 +20 147.345 151.2225 1000 50 0.87713647 +21 151.2225 155.1 1000 50 0.99999964 +22 155.1 158.9775 1000 50 0.9995167 +23 158.9775 162.855 1000 50 0.9999919 +24 162.855 166.7325 1000 50 0.9992267 +25 170.61 174.4875 1000 50 0.99943346 +26 174.4875 178.365 1000 50 0.9391922 +27 178.365 182.2425 1000 50 0.9998883 +28 182.2425 186.12 1000 50 0.5537531 +29 189.9975 193.875 1000 50 0.6704754 +30 193.875 197.7525 1000 50 0.99998856 +31 197.7525 201.63 1000 50 0.98274153 +32 201.63 205.5075 1000 50 0.9977881 +33 205.5075 209.385 1000 50 0.9981828 +34 209.385 213.2625 1000 50 0.99413306 +35 213.2625 217.14 1000 50 0.8334132 +36 228.7725 232.65 1000 50 1.0 +37 236.5275 240.405 1000 50 0.99999595 +38 240.405 244.2825 1000 50 0.9995376 +39 244.2825 248.16 1000 50 0.97488064 +40 248.16 252.0375 1000 50 0.99998975 +41 252.0375 255.915 1000 50 0.9885356 +42 259.7925 263.67 1000 50 0.99999905 +43 267.5475 271.425 1000 50 0.9878562 +44 271.425 275.3025 1000 50 0.53196174 +45 279.18 283.0575 1000 50 0.9990533 +46 283.0575 286.935 1000 50 0.99999917 +47 290.8125 294.69 1000 50 0.9997969 +48 294.69 298.5675 1000 50 0.99983263 +49 302.445 306.3225 1000 50 0.9917664 +50 310.2 314.0775 1000 50 0.9957968 +51 314.0775 317.955 1000 50 0.9844221 +52 317.955 321.8325 1000 50 0.5770528 +53 321.8325 325.71 1000 50 0.999908 +54 325.71 329.5875 1000 50 0.9999933 +55 329.5875 333.465 1000 50 0.50071543 +56 333.465 337.3425 1000 50 0.99809295 +57 341.22 345.0975 1000 50 0.9990044 +58 345.0975 348.975 1000 50 0.99988914 +59 348.975 352.8525 1000 50 0.76006985 +60 352.8525 356.73 1000 50 0.9998628 +61 356.73 360.6075 1000 50 0.8476076 +62 360.6075 364.485 1000 50 0.6469285 +63 364.485 368.3625 1000 50 0.9870028 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_04-11-43_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_04-11-43_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1aa69c77a0bcb5f716fb458d2c7ca177cfe10e16 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_04-11-43_annot_2022-11-30_01.txt @@ -0,0 +1,130 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.5668293 +2 3.8775 7.755 1000 50 0.53165317 +3 19.3875 23.265 1000 50 0.99350125 +4 23.265 27.142500000000002 1000 50 0.99963605 +5 27.1425 31.02 1000 50 0.58522546 +6 31.02 34.8975 1000 50 0.94936764 +7 34.8975 38.775 1000 50 0.99403596 +8 38.775 42.652499999999996 1000 50 0.99952686 +9 46.53 50.4075 1000 50 0.99797505 +10 50.4075 54.285 1000 50 0.6618259 +11 62.04 65.9175 1000 50 0.9997367 +12 65.9175 69.795 1000 50 0.95282936 +13 73.6725 77.55 1000 50 0.99951684 +14 85.305 89.1825 1000 50 0.8398435 +15 89.1825 93.06 1000 50 0.9946631 +16 93.06 96.9375 1000 50 0.59342563 +17 96.9375 100.815 1000 50 0.99994564 +18 100.815 104.6925 1000 50 0.6734814 +19 104.6925 108.57 1000 50 0.9971507 +20 112.4475 116.325 1000 50 0.6668578 +21 116.325 120.2025 1000 50 0.9929132 +22 124.08 127.9575 1000 50 0.559562 +23 127.9575 131.835 1000 50 0.99602747 +24 131.835 135.7125 1000 50 0.95171607 +25 143.4675 147.345 1000 50 0.99130285 +26 147.345 151.2225 1000 50 0.9639528 +27 151.2225 155.1 1000 50 0.5200712 +28 155.1 158.9775 1000 50 0.80136204 +29 158.9775 162.855 1000 50 0.9938862 +30 162.855 166.7325 1000 50 0.65535253 +31 170.61 174.4875 1000 50 0.999818 +32 174.4875 178.365 1000 50 0.9953797 +33 178.365 182.2425 1000 50 0.8946212 +34 182.2425 186.12 1000 50 0.83853215 +35 186.12 189.9975 1000 50 0.9105085 +36 193.875 197.7525 1000 50 0.9984877 +37 197.7525 201.63 1000 50 0.7335028 +38 201.63 205.5075 1000 50 0.93072224 +39 205.5075 209.385 1000 50 0.9996227 +40 209.385 213.2625 1000 50 0.5682075 +41 213.2625 217.14 1000 50 0.9975426 +42 221.0175 224.895 1000 50 0.9441417 +43 224.895 228.7725 1000 50 0.9999982 +44 232.65 236.5275 1000 50 0.99966526 +45 236.5275 240.405 1000 50 0.8010872 +46 244.2825 248.16 1000 50 0.9501262 +47 248.16 252.0375 1000 50 0.98655635 +48 252.0375 255.915 1000 50 0.7344847 +49 259.7925 263.67 1000 50 0.79919136 +50 267.5475 271.425 1000 50 0.7521081 +51 275.3025 279.18 1000 50 0.92787355 +52 283.0575 286.935 1000 50 0.5635206 +53 286.935 290.8125 1000 50 0.8372892 +54 294.69 298.5675 1000 50 0.82583904 +55 298.5675 302.445 1000 50 0.73703206 +56 302.445 306.3225 1000 50 0.99952865 +57 306.3225 310.2 1000 50 0.9709655 +58 310.2 314.0775 1000 50 0.9824279 +59 314.0775 317.955 1000 50 0.9985669 +60 325.71 329.5875 1000 50 0.9993772 +61 329.5875 333.465 1000 50 0.86026436 +62 333.465 337.3425 1000 50 0.99616784 +63 337.3425 341.21999999999997 1000 50 0.9971668 +64 341.22 345.0975 1000 50 0.85757375 +65 348.975 352.8525 1000 50 0.96030927 +66 352.8525 356.73 1000 50 0.99989796 +67 360.6075 364.485 1000 50 0.65549445 +68 364.485 368.3625 1000 50 0.87325144 +69 403.26 407.1375 1000 50 0.6594147 +70 407.1375 411.015 1000 50 0.5986983 +71 411.015 414.8925 1000 50 0.66673404 +72 442.035 445.9125 1000 50 0.83034545 +73 445.9125 449.79 1000 50 0.74989396 +74 453.6675 457.545 1000 50 0.594653 +75 465.3 469.1775 1000 50 0.6249062 +76 476.9325 480.81 1000 50 0.7200741 +77 484.6875 488.565 1000 50 0.7181805 +78 488.565 492.4425 1000 50 0.55440634 +79 515.7075 519.585 1000 50 0.7559796 +80 519.585 523.4625000000001 1000 50 0.62504584 +81 523.4625 527.34 1000 50 0.7800988 +82 531.2175 535.095 1000 50 0.51668805 +83 535.095 538.9725000000001 1000 50 0.5760698 +84 542.85 546.7275000000001 1000 50 0.67603093 +85 546.7275 550.605 1000 50 0.99200916 +86 550.605 554.4825000000001 1000 50 0.55327135 +87 554.4825 558.36 1000 50 0.53778166 +88 562.2375 566.115 1000 50 0.65434235 +89 569.9925 573.87 1000 50 0.6295953 +90 573.87 577.7475000000001 1000 50 0.5213144 +91 581.625 585.5025 1000 50 0.5610328 +92 589.38 593.2575 1000 50 0.989071 +93 597.135 601.0125 1000 50 0.5442139 +94 601.0125 604.8900000000001 1000 50 0.9994716 +95 604.89 608.7675 1000 50 0.6019807 +96 608.7675 612.6450000000001 1000 50 0.84572923 +97 616.5225 620.4000000000001 1000 50 0.7526339 +98 620.4 624.2775 1000 50 0.9971916 +99 628.155 632.0325 1000 50 0.9973214 +100 632.0325 635.9100000000001 1000 50 0.96427554 +101 639.7875 643.6650000000001 1000 50 0.5055086 +102 651.42 655.2975 1000 50 0.95650387 +103 655.2975 659.1750000000001 1000 50 0.95694065 +104 659.175 663.0525 1000 50 0.84374225 +105 663.0525 666.9300000000001 1000 50 0.9948696 +106 666.93 670.8075 1000 50 0.916758 +107 678.5625 682.44 1000 50 0.9953022 +108 682.44 686.3175000000001 1000 50 0.91299784 +109 690.195 694.0725000000001 1000 50 0.9589432 +110 694.0725 697.95 1000 50 0.9992361 +111 697.95 701.8275000000001 1000 50 0.9591408 +112 705.705 709.5825000000001 1000 50 0.99882025 +113 721.215 725.0925000000001 1000 50 0.99947935 +114 725.0925 728.97 1000 50 0.99105436 +115 732.8475 736.725 1000 50 0.7741731 +116 736.725 740.6025000000001 1000 50 0.51545435 +117 740.6025 744.48 1000 50 0.999871 +118 744.48 748.3575000000001 1000 50 0.9944667 +119 748.3575 752.235 1000 50 0.9890175 +120 752.235 756.1125000000001 1000 50 0.9952933 +121 756.1125 759.99 1000 50 0.5447852 +122 759.99 763.8675000000001 1000 50 0.9892218 +123 767.745 771.6225000000001 1000 50 0.9759734 +124 771.6225 775.5 1000 50 0.9215641 +125 779.3775 783.2550000000001 1000 50 0.9999933 +126 787.1325 791.0100000000001 1000 50 0.9999902 +127 791.01 794.8875 1000 50 0.8868843 +128 794.8875 798.7650000000001 1000 50 0.5440313 +129 798.765 802.6425 1000 50 0.77802306 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_05-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_05-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..365a67456774b6eca48e3dae12253dfb5e8fb676 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_05-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,82 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.585791 +2 7.755 11.6325 1000 50 0.8953533 +3 11.6325 15.51 1000 50 0.8332394 +4 19.3875 23.265 1000 50 0.99804294 +5 23.265 27.142500000000002 1000 50 0.6497661 +6 34.8975 38.775 1000 50 0.9713866 +7 46.53 50.4075 1000 50 0.9981111 +8 50.4075 54.285 1000 50 0.98566103 +9 54.285 58.162499999999994 1000 50 0.9860956 +10 65.9175 69.795 1000 50 0.75175047 +11 69.795 73.6725 1000 50 0.9966158 +12 73.6725 77.55 1000 50 0.9999119 +13 77.55 81.4275 1000 50 0.9928636 +14 85.305 89.1825 1000 50 0.7910989 +15 104.6925 108.57 1000 50 0.8120108 +16 108.57 112.44749999999999 1000 50 0.574128 +17 116.325 120.2025 1000 50 0.96031994 +18 120.2025 124.08 1000 50 0.66882056 +19 127.9575 131.835 1000 50 0.99389786 +20 147.345 151.2225 1000 50 0.5133273 +21 151.2225 155.1 1000 50 0.50106764 +22 162.855 166.7325 1000 50 0.7123712 +23 174.4875 178.365 1000 50 0.6620567 +24 178.365 182.2425 1000 50 0.89687467 +25 189.9975 193.875 1000 50 0.5485604 +26 221.0175 224.895 1000 50 0.94856405 +27 224.895 228.7725 1000 50 0.92410505 +28 228.7725 232.65 1000 50 0.9757028 +29 232.65 236.5275 1000 50 0.50302637 +30 244.2825 248.16 1000 50 0.6162348 +31 255.915 259.7925 1000 50 0.61376595 +32 259.7925 263.67 1000 50 0.90487474 +33 267.5475 271.425 1000 50 0.88544613 +34 271.425 275.3025 1000 50 0.53089726 +35 283.0575 286.935 1000 50 0.9980622 +36 286.935 290.8125 1000 50 0.6761846 +37 302.445 306.3225 1000 50 0.7575571 +38 321.8325 325.71 1000 50 0.99179125 +39 325.71 329.5875 1000 50 0.8449758 +40 341.22 345.0975 1000 50 0.99169296 +41 345.0975 348.975 1000 50 0.9998604 +42 352.8525 356.73 1000 50 1.0 +43 356.73 360.6075 1000 50 0.73733133 +44 376.1175 379.995 1000 50 0.60265803 +45 379.995 383.8725 1000 50 0.99352705 +46 383.8725 387.75 1000 50 0.53034794 +47 387.75 391.6275 1000 50 0.79859954 +48 391.6275 395.505 1000 50 0.9990282 +49 403.26 407.1375 1000 50 0.9999933 +50 407.1375 411.015 1000 50 0.52055436 +51 411.015 414.8925 1000 50 0.84547853 +52 414.8925 418.77 1000 50 0.96398133 +53 422.6475 426.525 1000 50 0.99923706 +54 434.28 438.15749999999997 1000 50 0.99959403 +55 445.9125 449.79 1000 50 0.6424478 +56 457.545 461.4225 1000 50 0.6334573 +57 465.3 469.1775 1000 50 0.5607492 +58 476.9325 480.81 1000 50 0.5923675 +59 488.565 492.4425 1000 50 0.66281193 +60 500.1975 504.075 1000 50 0.9954229 +61 504.075 507.9525 1000 50 0.9743113 +62 507.9525 511.83 1000 50 0.99824667 +63 515.7075 519.585 1000 50 0.99559915 +64 519.585 523.4625000000001 1000 50 0.99995685 +65 527.34 531.2175000000001 1000 50 0.89656085 +66 531.2175 535.095 1000 50 0.9995571 +67 538.9725 542.85 1000 50 0.6757175 +68 542.85 546.7275000000001 1000 50 0.8880606 +69 546.7275 550.605 1000 50 0.9983936 +70 550.605 554.4825000000001 1000 50 0.9571497 +71 558.36 562.2375000000001 1000 50 0.9861108 +72 562.2375 566.115 1000 50 0.7549221 +73 569.9925 573.87 1000 50 0.6144921 +74 593.2575 597.1350000000001 1000 50 0.5625213 +75 647.5425 651.4200000000001 1000 50 0.79977876 +76 655.2975 659.1750000000001 1000 50 0.53155 +77 713.46 717.3375000000001 1000 50 0.5023527 +78 728.97 732.8475000000001 1000 50 0.5352806 +79 732.8475 736.725 1000 50 0.6779343 +80 744.48 748.3575000000001 1000 50 0.77865726 +81 752.235 756.1125000000001 1000 50 0.6285777 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_05-16-56_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_05-16-56_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..9ca6e4ac5315e2ca31f7e929c451b654a18e4bf6 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_05-16-56_annot_2022-11-30_01.txt @@ -0,0 +1,73 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.85013926 +2 15.51 19.3875 1000 50 0.95542 +3 19.3875 23.265 1000 50 0.9785518 +4 23.265 27.142500000000002 1000 50 0.9961701 +5 31.02 34.8975 1000 50 0.78970426 +6 34.8975 38.775 1000 50 0.8455043 +7 46.53 50.4075 1000 50 0.98542166 +8 62.04 65.9175 1000 50 0.5870332 +9 65.9175 69.795 1000 50 0.80075014 +10 77.55 81.4275 1000 50 0.7264756 +11 85.305 89.1825 1000 50 0.95044297 +12 104.6925 108.57 1000 50 0.79017496 +13 108.57 112.44749999999999 1000 50 0.8508342 +14 112.4475 116.325 1000 50 0.9744153 +15 116.325 120.2025 1000 50 0.99727863 +16 120.2025 124.08 1000 50 0.9818533 +17 127.9575 131.835 1000 50 0.99850273 +18 131.835 135.7125 1000 50 0.9980453 +19 139.59 143.4675 1000 50 0.99981505 +20 143.4675 147.345 1000 50 0.98511475 +21 147.345 151.2225 1000 50 0.9961306 +22 151.2225 155.1 1000 50 0.5930735 +23 155.1 158.9775 1000 50 0.98890054 +24 162.855 166.7325 1000 50 0.7812978 +25 178.365 182.2425 1000 50 0.78451717 +26 186.12 189.9975 1000 50 0.5943065 +27 189.9975 193.875 1000 50 0.56087905 +28 193.875 197.7525 1000 50 0.6857161 +29 205.5075 209.385 1000 50 0.97202605 +30 213.2625 217.14 1000 50 0.9995579 +31 217.14 221.01749999999998 1000 50 0.998408 +32 221.0175 224.895 1000 50 0.67904013 +33 228.7725 232.65 1000 50 0.6786826 +34 232.65 236.5275 1000 50 0.9907128 +35 240.405 244.2825 1000 50 0.9317831 +36 244.2825 248.16 1000 50 0.9904688 +37 248.16 252.0375 1000 50 0.76139516 +38 252.0375 255.915 1000 50 0.5754004 +39 259.7925 263.67 1000 50 0.6071984 +40 263.67 267.5475 1000 50 0.9998877 +41 271.425 275.3025 1000 50 0.67335767 +42 275.3025 279.18 1000 50 0.9998093 +43 279.18 283.0575 1000 50 0.957034 +44 283.0575 286.935 1000 50 0.99406165 +45 286.935 290.8125 1000 50 0.8832533 +46 294.69 298.5675 1000 50 0.6916915 +47 306.3225 310.2 1000 50 0.6918287 +48 317.955 321.8325 1000 50 0.64654887 +49 329.5875 333.465 1000 50 0.6621811 +50 337.3425 341.21999999999997 1000 50 0.82080644 +51 348.975 352.8525 1000 50 0.79168224 +52 352.8525 356.73 1000 50 0.5687037 +53 360.6075 364.485 1000 50 0.5384405 +54 368.3625 372.24 1000 50 0.948382 +55 372.24 376.1175 1000 50 0.82005346 +56 379.995 383.8725 1000 50 0.6143682 +57 387.75 391.6275 1000 50 0.6177109 +58 391.6275 395.505 1000 50 0.99113584 +59 395.505 399.3825 1000 50 0.9827603 +60 407.1375 411.015 1000 50 0.95148116 +61 411.015 414.8925 1000 50 0.99529415 +62 414.8925 418.77 1000 50 0.99846905 +63 422.6475 426.525 1000 50 0.99770594 +64 426.525 430.4025 1000 50 0.94451183 +65 438.1575 442.035 1000 50 0.88564545 +66 445.9125 449.79 1000 50 0.83522075 +67 449.79 453.6675 1000 50 0.5293323 +68 457.545 461.4225 1000 50 0.9660154 +69 465.3 469.1775 1000 50 0.9913976 +70 469.1775 473.055 1000 50 0.70103896 +71 476.9325 480.81 1000 50 0.97165966 +72 480.81 484.6875 1000 50 0.66807544 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_06-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_06-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f215a8d6324ae7a12e425a9f245836cad2984ee4 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_06-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,187 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 15.51 19.3875 1000 50 0.8225492 +2 19.3875 23.265 1000 50 0.70684505 +3 46.53 50.4075 1000 50 0.79659384 +4 54.285 58.162499999999994 1000 50 0.6186995 +5 62.04 65.9175 1000 50 0.5162183 +6 65.9175 69.795 1000 50 0.589974 +7 69.795 73.6725 1000 50 0.9994252 +8 77.55 81.4275 1000 50 0.99344563 +9 81.4275 85.30499999999999 1000 50 0.999288 +10 89.1825 93.06 1000 50 0.9995005 +11 93.06 96.9375 1000 50 0.9986714 +12 96.9375 100.815 1000 50 0.58174217 +13 100.815 104.6925 1000 50 0.9976629 +14 104.6925 108.57 1000 50 0.99933076 +15 112.4475 116.325 1000 50 0.5955679 +16 116.325 120.2025 1000 50 0.9038713 +17 127.9575 131.835 1000 50 0.99833506 +18 131.835 135.7125 1000 50 0.70732516 +19 139.59 143.4675 1000 50 0.97414327 +20 143.4675 147.345 1000 50 0.98463595 +21 147.345 151.2225 1000 50 0.5686094 +22 151.2225 155.1 1000 50 0.96264875 +23 155.1 158.9775 1000 50 0.99777764 +24 158.9775 162.855 1000 50 0.99164563 +25 162.855 166.7325 1000 50 0.8591899 +26 170.61 174.4875 1000 50 0.99610424 +27 178.365 182.2425 1000 50 0.87128735 +28 182.2425 186.12 1000 50 0.9856845 +29 186.12 189.9975 1000 50 0.5273136 +30 189.9975 193.875 1000 50 0.9650122 +31 197.7525 201.63 1000 50 0.86029273 +32 201.63 205.5075 1000 50 0.570754 +33 205.5075 209.385 1000 50 0.8040864 +34 209.385 213.2625 1000 50 0.9968219 +35 221.0175 224.895 1000 50 0.8231326 +36 232.65 236.5275 1000 50 0.8897345 +37 240.405 244.2825 1000 50 0.7887328 +38 248.16 252.0375 1000 50 0.99893826 +39 252.0375 255.915 1000 50 0.9127846 +40 255.915 259.7925 1000 50 0.93411535 +41 259.7925 263.67 1000 50 0.99439913 +42 263.67 267.5475 1000 50 0.92090255 +43 267.5475 271.425 1000 50 0.9998554 +44 279.18 283.0575 1000 50 0.99999964 +45 283.0575 286.935 1000 50 0.9997851 +46 286.935 290.8125 1000 50 0.98398757 +47 290.8125 294.69 1000 50 0.68114394 +48 294.69 298.5675 1000 50 0.9995591 +49 298.5675 302.445 1000 50 0.9999827 +50 302.445 306.3225 1000 50 0.97364277 +51 306.3225 310.2 1000 50 0.7591036 +52 310.2 314.0775 1000 50 0.5554259 +53 314.0775 317.955 1000 50 0.91736186 +54 317.955 321.8325 1000 50 0.99880123 +55 321.8325 325.71 1000 50 0.9999999 +56 325.71 329.5875 1000 50 0.93619597 +57 329.5875 333.465 1000 50 0.9999584 +58 333.465 337.3425 1000 50 0.996086 +59 341.22 345.0975 1000 50 0.999926 +60 345.0975 348.975 1000 50 0.99979216 +61 352.8525 356.73 1000 50 0.99999654 +62 356.73 360.6075 1000 50 0.79058695 +63 360.6075 364.485 1000 50 0.9738384 +64 364.485 368.3625 1000 50 0.99990404 +65 368.3625 372.24 1000 50 0.99995303 +66 372.24 376.1175 1000 50 0.9999676 +67 376.1175 379.995 1000 50 0.9153692 +68 379.995 383.8725 1000 50 0.92308646 +69 383.8725 387.75 1000 50 0.99999523 +70 391.6275 395.505 1000 50 0.9860697 +71 395.505 399.3825 1000 50 0.94294804 +72 407.1375 411.015 1000 50 0.6891148 +73 411.015 414.8925 1000 50 0.9689989 +74 418.77 422.6475 1000 50 0.8209251 +75 422.6475 426.525 1000 50 0.8977132 +76 426.525 430.4025 1000 50 0.6836133 +77 430.4025 434.28 1000 50 0.7341779 +78 438.1575 442.035 1000 50 0.57510304 +79 442.035 445.9125 1000 50 0.8389947 +80 445.9125 449.79 1000 50 0.96597654 +81 453.6675 457.545 1000 50 0.8852072 +82 457.545 461.4225 1000 50 0.9783019 +83 461.4225 465.3 1000 50 0.99796 +84 465.3 469.1775 1000 50 0.9934749 +85 469.1775 473.055 1000 50 0.6056236 +86 473.055 476.9325 1000 50 0.9999862 +87 476.9325 480.81 1000 50 0.99978644 +88 480.81 484.6875 1000 50 0.99539065 +89 484.6875 488.565 1000 50 0.6195094 +90 492.4425 496.32 1000 50 0.716221 +91 500.1975 504.075 1000 50 0.5272804 +92 504.075 507.9525 1000 50 0.53051335 +93 507.9525 511.83 1000 50 0.7562571 +94 535.095 538.9725000000001 1000 50 0.9848202 +95 538.9725 542.85 1000 50 0.99711716 +96 546.7275 550.605 1000 50 0.56393474 +97 550.605 554.4825000000001 1000 50 0.51764166 +98 566.115 569.9925000000001 1000 50 0.5838799 +99 569.9925 573.87 1000 50 0.5506078 +100 577.7475 581.625 1000 50 0.75471056 +101 581.625 585.5025 1000 50 0.9601487 +102 589.38 593.2575 1000 50 0.60265815 +103 593.2575 597.1350000000001 1000 50 0.9907567 +104 597.135 601.0125 1000 50 0.8401081 +105 601.0125 604.8900000000001 1000 50 0.99619824 +106 608.7675 612.6450000000001 1000 50 0.7715327 +107 616.5225 620.4000000000001 1000 50 0.8654336 +108 620.4 624.2775 1000 50 0.9901822 +109 624.2775 628.1550000000001 1000 50 0.6698972 +110 632.0325 635.9100000000001 1000 50 0.995565 +111 643.665 647.5425 1000 50 0.99786925 +112 647.5425 651.4200000000001 1000 50 0.7369546 +113 651.42 655.2975 1000 50 0.9995838 +114 655.2975 659.1750000000001 1000 50 0.9917618 +115 663.0525 666.9300000000001 1000 50 0.9954848 +116 666.93 670.8075 1000 50 0.9805927 +117 674.685 678.5625 1000 50 0.9994999 +118 682.44 686.3175000000001 1000 50 0.6658122 +119 686.3175 690.195 1000 50 0.9414944 +120 690.195 694.0725000000001 1000 50 0.62495804 +121 694.0725 697.95 1000 50 0.9846773 +122 697.95 701.8275000000001 1000 50 0.99041957 +123 705.705 709.5825000000001 1000 50 0.96852833 +124 709.5825 713.46 1000 50 0.99941194 +125 713.46 717.3375000000001 1000 50 0.64183813 +126 717.3375 721.215 1000 50 0.93418086 +127 721.215 725.0925000000001 1000 50 0.77862823 +128 725.0925 728.97 1000 50 0.74850833 +129 728.97 732.8475000000001 1000 50 0.52063316 +130 732.8475 736.725 1000 50 0.97759205 +131 740.6025 744.48 1000 50 0.6056952 +132 744.48 748.3575000000001 1000 50 0.5540581 +133 752.235 756.1125000000001 1000 50 0.9012584 +134 756.1125 759.99 1000 50 0.5691202 +135 763.8675 767.745 1000 50 0.91419935 +136 771.6225 775.5 1000 50 0.843611 +137 783.255 787.1325 1000 50 0.9972313 +138 787.1325 791.0100000000001 1000 50 0.99912864 +139 791.01 794.8875 1000 50 0.6993232 +140 794.8875 798.7650000000001 1000 50 0.7049105 +141 798.765 802.6425 1000 50 0.9943011 +142 806.52 810.3975 1000 50 0.8378521 +143 814.275 818.1525 1000 50 0.96870875 +144 818.1525 822.0300000000001 1000 50 0.903352 +145 822.03 825.9075 1000 50 0.9851441 +146 825.9075 829.7850000000001 1000 50 0.8590101 +147 829.785 833.6625 1000 50 0.9999864 +148 833.6625 837.5400000000001 1000 50 0.83705443 +149 841.4175 845.2950000000001 1000 50 1.0 +150 849.1725 853.0500000000001 1000 50 0.99999785 +151 856.9275 860.8050000000001 1000 50 0.94664526 +152 860.805 864.6825 1000 50 0.9869686 +153 868.56 872.4375 1000 50 0.99929166 +154 872.4375 876.315 1000 50 0.9937929 +155 880.1925 884.07 1000 50 0.9999163 +156 884.07 887.9475000000001 1000 50 0.6979605 +157 887.9475 891.825 1000 50 0.9999857 +158 891.825 895.7025000000001 1000 50 0.9834341 +159 895.7025 899.58 1000 50 0.9818283 +160 899.58 903.4575000000001 1000 50 0.98019546 +161 903.4575 907.335 1000 50 0.9770511 +162 907.335 911.2125000000001 1000 50 0.9970591 +163 911.2125 915.09 1000 50 0.9032603 +164 918.9675 922.845 1000 50 0.9997626 +165 922.845 926.7225000000001 1000 50 0.9999732 +166 930.6 934.4775000000001 1000 50 0.99999523 +167 934.4775 938.355 1000 50 0.552268 +168 938.355 942.2325000000001 1000 50 0.9949999 +169 942.2325 946.11 1000 50 0.9998241 +170 949.9875 953.865 1000 50 0.9909808 +171 957.7425 961.62 1000 50 0.65846366 +172 961.62 965.4975000000001 1000 50 0.9999949 +173 965.4975 969.375 1000 50 0.51415443 +174 969.375 973.2525 1000 50 0.9639563 +175 977.13 981.0075 1000 50 0.6058211 +176 1000.395 1004.2725 1000 50 0.9835638 +177 1012.0275 1015.9050000000001 1000 50 0.97480255 +178 1023.66 1027.5375 1000 50 0.84519297 +179 1039.17 1043.0475000000001 1000 50 0.8499 +180 1050.8025 1054.68 1000 50 0.5296921 +181 1074.0675 1077.9450000000002 1000 50 0.5743124 +182 1081.8225 1085.7 1000 50 0.65430516 +183 1093.455 1097.3325 1000 50 0.53593147 +184 1101.21 1105.0875 1000 50 0.5271236 +185 1105.0875 1108.9650000000001 1000 50 0.72068805 +186 1112.8425 1116.72 1000 50 0.8130958 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_06-22-15_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_06-22-15_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..21478173433ed5643f5c08198724f9e9e3944db3 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_06-22-15_annot_2022-11-30_01.txt @@ -0,0 +1,30 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.997407 +2 11.6325 15.51 1000 50 0.9999713 +3 15.51 19.3875 1000 50 0.8635483 +4 23.265 27.142500000000002 1000 50 0.9994728 +5 27.1425 31.02 1000 50 0.77339894 +6 31.02 34.8975 1000 50 0.99530375 +7 34.8975 38.775 1000 50 0.99968743 +8 46.53 50.4075 1000 50 0.8849541 +9 50.4075 54.285 1000 50 0.98803955 +10 54.285 58.162499999999994 1000 50 0.64223397 +11 58.1625 62.04 1000 50 0.77515644 +12 62.04 65.9175 1000 50 0.9995407 +13 69.795 73.6725 1000 50 0.77889276 +14 81.4275 85.30499999999999 1000 50 0.7801321 +15 85.305 89.1825 1000 50 0.94003856 +16 93.06 96.9375 1000 50 0.64460397 +17 96.9375 100.815 1000 50 0.98789537 +18 108.57 112.44749999999999 1000 50 0.66742337 +19 116.325 120.2025 1000 50 0.9997116 +20 120.2025 124.08 1000 50 0.9987299 +21 124.08 127.9575 1000 50 0.70996386 +22 127.9575 131.835 1000 50 0.99853265 +23 135.7125 139.59 1000 50 0.99983513 +24 143.4675 147.345 1000 50 0.99796367 +25 147.345 151.2225 1000 50 0.99170154 +26 151.2225 155.1 1000 50 0.9991572 +27 155.1 158.9775 1000 50 0.9998481 +28 158.9775 162.855 1000 50 0.6216285 +29 162.855 166.7325 1000 50 0.9981998 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_07-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_07-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5c55c462a5c9025486fa37d8fe729c31f0300466 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_07-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,239 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9998745 +2 3.8775 7.755 1000 50 0.9086174 +3 7.755 11.6325 1000 50 0.9990343 +4 11.6325 15.51 1000 50 0.90403503 +5 15.51 19.3875 1000 50 0.9963936 +6 19.3875 23.265 1000 50 0.9977054 +7 23.265 27.142500000000002 1000 50 0.99900085 +8 27.1425 31.02 1000 50 0.727616 +9 31.02 34.8975 1000 50 0.929413 +10 42.6525 46.53 1000 50 0.79075116 +11 46.53 50.4075 1000 50 0.54925716 +12 54.285 58.162499999999994 1000 50 0.9051321 +13 58.1625 62.04 1000 50 0.7086032 +14 62.04 65.9175 1000 50 0.9420865 +15 65.9175 69.795 1000 50 0.9973615 +16 69.795 73.6725 1000 50 0.51344925 +17 73.6725 77.55 1000 50 0.97009957 +18 77.55 81.4275 1000 50 0.9062917 +19 85.305 89.1825 1000 50 0.99981874 +20 89.1825 93.06 1000 50 0.9926144 +21 93.06 96.9375 1000 50 0.9646614 +22 100.815 104.6925 1000 50 0.957507 +23 104.6925 108.57 1000 50 0.99999213 +24 108.57 112.44749999999999 1000 50 0.8857181 +25 112.4475 116.325 1000 50 0.99999917 +26 120.2025 124.08 1000 50 0.9999994 +27 124.08 127.9575 1000 50 0.9999807 +28 131.835 135.7125 1000 50 0.99998224 +29 135.7125 139.59 1000 50 0.9992631 +30 139.59 143.4675 1000 50 0.9738869 +31 143.4675 147.345 1000 50 0.9993931 +32 147.345 151.2225 1000 50 0.5848501 +33 151.2225 155.1 1000 50 0.9999666 +34 155.1 158.9775 1000 50 0.93026274 +35 158.9775 162.855 1000 50 0.7277831 +36 162.855 166.7325 1000 50 0.9999677 +37 166.7325 170.60999999999999 1000 50 0.9979638 +38 170.61 174.4875 1000 50 0.99590516 +39 174.4875 178.365 1000 50 0.9993973 +40 178.365 182.2425 1000 50 0.7173589 +41 182.2425 186.12 1000 50 0.99999976 +42 186.12 189.9975 1000 50 0.95446765 +43 189.9975 193.875 1000 50 0.85388154 +44 193.875 197.7525 1000 50 0.77394867 +45 197.7525 201.63 1000 50 0.9895103 +46 201.63 205.5075 1000 50 0.6977648 +47 209.385 213.2625 1000 50 0.9976675 +48 217.14 221.01749999999998 1000 50 0.7632867 +49 221.0175 224.895 1000 50 0.87583935 +50 236.5275 240.405 1000 50 0.5483636 +51 244.2825 248.16 1000 50 0.89036185 +52 248.16 252.0375 1000 50 0.9999974 +53 252.0375 255.915 1000 50 0.6835214 +54 255.915 259.7925 1000 50 0.99590296 +55 259.7925 263.67 1000 50 0.9999738 +56 263.67 267.5475 1000 50 0.939744 +57 267.5475 271.425 1000 50 0.9936982 +58 271.425 275.3025 1000 50 0.9976624 +59 275.3025 279.18 1000 50 0.9989172 +60 279.18 283.0575 1000 50 0.96931714 +61 283.0575 286.935 1000 50 0.99824405 +62 290.8125 294.69 1000 50 0.57705414 +63 333.465 337.3425 1000 50 0.790328 +64 337.3425 341.21999999999997 1000 50 0.71945256 +65 345.0975 348.975 1000 50 0.8441336 +66 348.975 352.8525 1000 50 0.75993735 +67 364.485 368.3625 1000 50 0.53140557 +68 368.3625 372.24 1000 50 0.69584787 +69 379.995 383.8725 1000 50 0.5016159 +70 387.75 391.6275 1000 50 0.5613635 +71 399.3825 403.26 1000 50 0.5344328 +72 407.1375 411.015 1000 50 0.5676843 +73 418.77 422.6475 1000 50 0.94230413 +74 430.4025 434.28 1000 50 0.8299074 +75 434.28 438.15749999999997 1000 50 0.5580246 +76 453.6675 457.545 1000 50 0.5600365 +77 457.545 461.4225 1000 50 0.51531214 +78 461.4225 465.3 1000 50 0.5763416 +79 465.3 469.1775 1000 50 0.74716324 +80 469.1775 473.055 1000 50 0.5056835 +81 473.055 476.9325 1000 50 0.6760285 +82 480.81 484.6875 1000 50 0.9676875 +83 492.4425 496.32 1000 50 0.99877125 +84 500.1975 504.075 1000 50 0.66855454 +85 504.075 507.9525 1000 50 0.72194743 +86 511.83 515.7075 1000 50 0.9999939 +87 519.585 523.4625000000001 1000 50 0.9067566 +88 523.4625 527.34 1000 50 0.9952679 +89 531.2175 535.095 1000 50 0.9954776 +90 535.095 538.9725000000001 1000 50 0.7838729 +91 542.85 546.7275000000001 1000 50 0.99523383 +92 546.7275 550.605 1000 50 0.6254819 +93 554.4825 558.36 1000 50 0.8572055 +94 562.2375 566.115 1000 50 0.7950193 +95 566.115 569.9925000000001 1000 50 0.9357362 +96 569.9925 573.87 1000 50 0.8573519 +97 577.7475 581.625 1000 50 0.9999745 +98 581.625 585.5025 1000 50 0.6960223 +99 585.5025 589.3800000000001 1000 50 0.7552555 +100 593.2575 597.1350000000001 1000 50 0.8506246 +101 597.135 601.0125 1000 50 0.9998367 +102 601.0125 604.8900000000001 1000 50 0.90773946 +103 608.7675 612.6450000000001 1000 50 0.99985504 +104 612.645 616.5225 1000 50 0.99607456 +105 620.4 624.2775 1000 50 0.98590964 +106 624.2775 628.1550000000001 1000 50 0.7519987 +107 632.0325 635.9100000000001 1000 50 0.92055154 +108 635.91 639.7875 1000 50 0.99662197 +109 639.7875 643.6650000000001 1000 50 0.90003335 +110 643.665 647.5425 1000 50 0.9996667 +111 647.5425 651.4200000000001 1000 50 0.999313 +112 651.42 655.2975 1000 50 0.9987551 +113 655.2975 659.1750000000001 1000 50 0.6882633 +114 659.175 663.0525 1000 50 0.9999975 +115 663.0525 666.9300000000001 1000 50 0.65789 +116 666.93 670.8075 1000 50 0.99999964 +117 670.8075 674.6850000000001 1000 50 0.99590874 +118 678.5625 682.44 1000 50 1.0 +119 682.44 686.3175000000001 1000 50 0.99888664 +120 686.3175 690.195 1000 50 0.9058771 +121 690.195 694.0725000000001 1000 50 0.95049316 +122 694.0725 697.95 1000 50 0.9914799 +123 697.95 701.8275000000001 1000 50 0.68672556 +124 705.705 709.5825000000001 1000 50 0.99013865 +125 709.5825 713.46 1000 50 0.9999995 +126 717.3375 721.215 1000 50 0.99971646 +127 721.215 725.0925000000001 1000 50 0.99282044 +128 725.0925 728.97 1000 50 0.9999999 +129 728.97 732.8475000000001 1000 50 0.864849 +130 732.8475 736.725 1000 50 0.9997156 +131 736.725 740.6025000000001 1000 50 1.0 +132 744.48 748.3575000000001 1000 50 0.9999796 +133 748.3575 752.235 1000 50 0.983499 +134 756.1125 759.99 1000 50 0.9999579 +135 759.99 763.8675000000001 1000 50 0.9978064 +136 763.8675 767.745 1000 50 0.6108447 +137 771.6225 775.5 1000 50 0.65366304 +138 775.5 779.3775 1000 50 0.9871858 +139 779.3775 783.2550000000001 1000 50 0.966343 +140 783.255 787.1325 1000 50 0.6776454 +141 787.1325 791.0100000000001 1000 50 0.9693943 +142 791.01 794.8875 1000 50 0.9857078 +143 794.8875 798.7650000000001 1000 50 0.571227 +144 798.765 802.6425 1000 50 0.9998828 +145 802.6425 806.5200000000001 1000 50 0.87221193 +146 806.52 810.3975 1000 50 0.96168166 +147 810.3975 814.2750000000001 1000 50 0.9459181 +148 814.275 818.1525 1000 50 0.7102426 +149 818.1525 822.0300000000001 1000 50 0.99932945 +150 822.03 825.9075 1000 50 0.94294477 +151 829.785 833.6625 1000 50 0.99995244 +152 833.6625 837.5400000000001 1000 50 0.9999552 +153 837.54 841.4175 1000 50 0.94086677 +154 841.4175 845.2950000000001 1000 50 0.82666695 +155 845.295 849.1725 1000 50 0.6580616 +156 860.805 864.6825 1000 50 0.75285155 +157 864.6825 868.5600000000001 1000 50 0.90286636 +158 872.4375 876.315 1000 50 0.62383056 +159 876.315 880.1925000000001 1000 50 0.53117 +160 887.9475 891.825 1000 50 0.79263705 +161 895.7025 899.58 1000 50 0.7614165 +162 907.335 911.2125000000001 1000 50 0.7793834 +163 918.9675 922.845 1000 50 0.75612855 +164 930.6 934.4775000000001 1000 50 0.81217706 +165 938.355 942.2325000000001 1000 50 0.69894785 +166 949.9875 953.865 1000 50 0.5137424 +167 953.865 957.7425000000001 1000 50 0.53303546 +168 961.62 965.4975000000001 1000 50 0.79669243 +169 965.4975 969.375 1000 50 0.5239537 +170 988.7625 992.6400000000001 1000 50 0.62742686 +171 1000.395 1004.2725 1000 50 0.72230536 +172 1019.7825 1023.6600000000001 1000 50 0.74547416 +173 1031.415 1035.2925 1000 50 0.7405224 +174 1043.0475 1046.925 1000 50 0.6987104 +175 1058.5575 1062.435 1000 50 0.96508247 +176 1070.19 1074.0675 1000 50 0.9986738 +177 1074.0675 1077.9450000000002 1000 50 0.5004939 +178 1105.0875 1108.9650000000001 1000 50 0.55893147 +179 1108.965 1112.8425 1000 50 0.73176104 +180 1112.8425 1116.72 1000 50 0.6818203 +181 1120.5975 1124.4750000000001 1000 50 0.9983316 +182 1124.475 1128.3525 1000 50 0.993554 +183 1132.23 1136.1075 1000 50 0.9933629 +184 1136.1075 1139.9850000000001 1000 50 0.99186796 +185 1143.8625 1147.74 1000 50 0.7201664 +186 1151.6175 1155.4950000000001 1000 50 0.7573391 +187 1159.3725 1163.25 1000 50 0.9988865 +188 1163.25 1167.1275 1000 50 0.999887 +189 1167.1275 1171.005 1000 50 0.99347633 +190 1171.005 1174.8825000000002 1000 50 0.99972874 +191 1174.8825 1178.76 1000 50 0.51259345 +192 1178.76 1182.6375 1000 50 0.9991559 +193 1182.6375 1186.515 1000 50 0.9970445 +194 1186.515 1190.3925000000002 1000 50 0.9916386 +195 1190.3925 1194.27 1000 50 0.99812526 +196 1194.27 1198.1475 1000 50 0.97967774 +197 1202.025 1205.9025000000001 1000 50 0.9999995 +198 1209.78 1213.6575 1000 50 0.9999484 +199 1213.6575 1217.535 1000 50 0.99998605 +200 1217.535 1221.4125000000001 1000 50 0.9956741 +201 1221.4125 1225.29 1000 50 0.9999902 +202 1225.29 1229.1675 1000 50 0.9993055 +203 1229.1675 1233.045 1000 50 0.5669548 +204 1233.045 1236.9225000000001 1000 50 0.99999595 +205 1236.9225 1240.8 1000 50 0.9858293 +206 1240.8 1244.6775 1000 50 0.995861 +207 1244.6775 1248.555 1000 50 0.9999863 +208 1248.555 1252.4325000000001 1000 50 0.99914396 +209 1252.4325 1256.31 1000 50 0.9997662 +210 1256.31 1260.1875 1000 50 0.58997667 +211 1260.1875 1264.065 1000 50 0.99941874 +212 1264.065 1267.9425 1000 50 0.99936444 +213 1267.9425 1271.8200000000002 1000 50 0.9479238 +214 1275.6975 1279.575 1000 50 0.9967353 +215 1279.575 1283.4525 1000 50 0.8608256 +216 1287.33 1291.2075 1000 50 0.9898099 +217 1295.085 1298.9625 1000 50 0.6210242 +218 1298.9625 1302.8400000000001 1000 50 0.97154105 +219 1302.84 1306.7175 1000 50 0.90885276 +220 1306.7175 1310.595 1000 50 0.955629 +221 1310.595 1314.4725 1000 50 0.5146267 +222 1314.4725 1318.3500000000001 1000 50 0.9837426 +223 1318.35 1322.2275 1000 50 0.99360126 +224 1329.9825 1333.8600000000001 1000 50 0.6310769 +225 1333.86 1337.7375 1000 50 0.94652426 +226 1341.615 1345.4925 1000 50 0.9718208 +227 1345.4925 1349.3700000000001 1000 50 0.99638224 +228 1353.2475 1357.125 1000 50 0.76625586 +229 1357.125 1361.0025 1000 50 0.97662884 +230 1361.0025 1364.88 1000 50 0.9976987 +231 1364.88 1368.7575000000002 1000 50 0.97414136 +232 1368.7575 1372.635 1000 50 0.7568817 +233 1372.635 1376.5125 1000 50 0.9571394 +234 1376.5125 1380.39 1000 50 0.82534575 +235 1384.2675 1388.145 1000 50 0.9947956 +236 1388.145 1392.0225 1000 50 0.7903187 +237 1399.7775 1403.655 1000 50 0.51756436 +238 1411.41 1415.2875000000001 1000 50 0.67648834 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_08-01-55_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_08-01-55_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0da43cdad2910ab68a0136162d3ec939f5309312 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_08-01-55_annot_2022-11-30_01.txt @@ -0,0 +1,192 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.8021065 +2 15.51 19.3875 1000 50 0.79685277 +3 19.3875 23.265 1000 50 0.6387342 +4 23.265 27.142500000000002 1000 50 0.924975 +5 34.8975 38.775 1000 50 0.50962657 +6 38.775 42.652499999999996 1000 50 0.978156 +7 46.53 50.4075 1000 50 0.9997874 +8 50.4075 54.285 1000 50 0.9811025 +9 54.285 58.162499999999994 1000 50 0.99448556 +10 58.1625 62.04 1000 50 0.99788445 +11 62.04 65.9175 1000 50 0.87837684 +12 65.9175 69.795 1000 50 0.66587293 +13 69.795 73.6725 1000 50 0.9999188 +14 73.6725 77.55 1000 50 0.99830306 +15 77.55 81.4275 1000 50 0.57855445 +16 81.4275 85.30499999999999 1000 50 0.5382731 +17 89.1825 93.06 1000 50 0.561137 +18 116.325 120.2025 1000 50 0.51189315 +19 197.7525 201.63 1000 50 0.8625691 +20 205.5075 209.385 1000 50 0.6639736 +21 209.385 213.2625 1000 50 0.8880706 +22 232.65 236.5275 1000 50 0.8727834 +23 244.2825 248.16 1000 50 0.99952424 +24 248.16 252.0375 1000 50 0.77547514 +25 252.0375 255.915 1000 50 0.96330506 +26 259.7925 263.67 1000 50 0.9272262 +27 263.67 267.5475 1000 50 0.9712253 +28 275.3025 279.18 1000 50 0.8822598 +29 279.18 283.0575 1000 50 0.86255765 +30 283.0575 286.935 1000 50 0.94840443 +31 286.935 290.8125 1000 50 0.9812618 +32 290.8125 294.69 1000 50 0.7242681 +33 294.69 298.5675 1000 50 0.5845946 +34 337.3425 341.21999999999997 1000 50 0.9430404 +35 348.975 352.8525 1000 50 0.7549382 +36 356.73 360.6075 1000 50 0.7745349 +37 360.6075 364.485 1000 50 0.5149544 +38 368.3625 372.24 1000 50 0.55836886 +39 372.24 376.1175 1000 50 0.9414572 +40 376.1175 379.995 1000 50 0.99217165 +41 383.8725 387.75 1000 50 0.57439274 +42 387.75 391.6275 1000 50 0.9996123 +43 391.6275 395.505 1000 50 0.9560925 +44 395.505 399.3825 1000 50 0.7366314 +45 399.3825 403.26 1000 50 0.99683005 +46 403.26 407.1375 1000 50 0.99872357 +47 411.015 414.8925 1000 50 1.0 +48 418.77 422.6475 1000 50 0.9998461 +49 422.6475 426.525 1000 50 0.99999774 +50 426.525 430.4025 1000 50 0.9994253 +51 430.4025 434.28 1000 50 0.99804354 +52 434.28 438.15749999999997 1000 50 0.9960444 +53 438.1575 442.035 1000 50 0.9967194 +54 442.035 445.9125 1000 50 0.98135585 +55 445.9125 449.79 1000 50 0.9828362 +56 449.79 453.6675 1000 50 0.98081285 +57 453.6675 457.545 1000 50 0.6622643 +58 457.545 461.4225 1000 50 0.99998844 +59 461.4225 465.3 1000 50 0.79276884 +60 465.3 469.1775 1000 50 0.9956866 +61 469.1775 473.055 1000 50 0.9996917 +62 476.9325 480.81 1000 50 0.9999211 +63 480.81 484.6875 1000 50 0.99999905 +64 488.565 492.4425 1000 50 0.99914277 +65 492.4425 496.32 1000 50 0.6291065 +66 496.32 500.1975 1000 50 0.99440855 +67 500.1975 504.075 1000 50 0.6767054 +68 504.075 507.9525 1000 50 0.9730314 +69 507.9525 511.83 1000 50 0.99421084 +70 511.83 515.7075 1000 50 0.99999917 +71 515.7075 519.585 1000 50 0.7584164 +72 519.585 523.4625000000001 1000 50 0.9999739 +73 523.4625 527.34 1000 50 0.9936075 +74 527.34 531.2175000000001 1000 50 0.7796912 +75 531.2175 535.095 1000 50 0.99991906 +76 535.095 538.9725000000001 1000 50 0.9954731 +77 538.9725 542.85 1000 50 0.9999275 +78 542.85 546.7275000000001 1000 50 0.99134856 +79 546.7275 550.605 1000 50 0.99942267 +80 550.605 554.4825000000001 1000 50 0.9998609 +81 554.4825 558.36 1000 50 0.9873564 +82 562.2375 566.115 1000 50 0.9995858 +83 566.115 569.9925000000001 1000 50 0.9999974 +84 573.87 577.7475000000001 1000 50 0.9999981 +85 577.7475 581.625 1000 50 0.9626281 +86 581.625 585.5025 1000 50 0.9867013 +87 585.5025 589.3800000000001 1000 50 0.9873499 +88 593.2575 597.1350000000001 1000 50 0.98613876 +89 601.0125 604.8900000000001 1000 50 0.8473738 +90 608.7675 612.6450000000001 1000 50 0.78516805 +91 612.645 616.5225 1000 50 0.99040204 +92 616.5225 620.4000000000001 1000 50 0.87470543 +93 620.4 624.2775 1000 50 0.7645916 +94 635.91 639.7875 1000 50 0.65930325 +95 639.7875 643.6650000000001 1000 50 0.86015517 +96 643.665 647.5425 1000 50 0.68447024 +97 647.5425 651.4200000000001 1000 50 0.5392336 +98 655.2975 659.1750000000001 1000 50 0.5211268 +99 670.8075 674.6850000000001 1000 50 0.7044493 +100 682.44 686.3175000000001 1000 50 0.92482656 +101 697.95 701.8275000000001 1000 50 0.51360863 +102 701.8275 705.705 1000 50 0.629624 +103 705.705 709.5825000000001 1000 50 0.779301 +104 725.0925 728.97 1000 50 0.52116156 +105 736.725 740.6025000000001 1000 50 0.81614923 +106 740.6025 744.48 1000 50 0.5075192 +107 748.3575 752.235 1000 50 0.5971359 +108 759.99 763.8675000000001 1000 50 0.6465705 +109 767.745 771.6225000000001 1000 50 0.9083492 +110 771.6225 775.5 1000 50 0.65546024 +111 779.3775 783.2550000000001 1000 50 0.7045864 +112 787.1325 791.0100000000001 1000 50 0.91719115 +113 791.01 794.8875 1000 50 0.9171471 +114 794.8875 798.7650000000001 1000 50 0.5520014 +115 822.03 825.9075 1000 50 0.932559 +116 829.785 833.6625 1000 50 0.9986559 +117 833.6625 837.5400000000001 1000 50 0.59330344 +118 837.54 841.4175 1000 50 0.54041386 +119 845.295 849.1725 1000 50 0.8795843 +120 856.9275 860.8050000000001 1000 50 0.63841206 +121 872.4375 876.315 1000 50 0.8796913 +122 884.07 887.9475000000001 1000 50 0.74947786 +123 891.825 895.7025000000001 1000 50 0.7850946 +124 895.7025 899.58 1000 50 0.9176565 +125 903.4575 907.335 1000 50 0.9451401 +126 907.335 911.2125000000001 1000 50 0.79344606 +127 911.2125 915.09 1000 50 0.7399321 +128 915.09 918.9675000000001 1000 50 0.9469105 +129 926.7225 930.6 1000 50 0.98688483 +130 930.6 934.4775000000001 1000 50 0.996396 +131 938.355 942.2325000000001 1000 50 0.9999999 +132 942.2325 946.11 1000 50 0.8851891 +133 949.9875 953.865 1000 50 0.9071693 +134 953.865 957.7425000000001 1000 50 0.99989665 +135 957.7425 961.62 1000 50 0.9995622 +136 961.62 965.4975000000001 1000 50 0.99095213 +137 965.4975 969.375 1000 50 0.94774646 +138 969.375 973.2525 1000 50 0.99956757 +139 977.13 981.0075 1000 50 0.86797196 +140 981.0075 984.8850000000001 1000 50 0.98147917 +141 984.885 988.7625 1000 50 0.8524344 +142 992.64 996.5175 1000 50 0.99956304 +143 996.5175 1000.3950000000001 1000 50 0.9992995 +144 1000.395 1004.2725 1000 50 0.8431702 +145 1004.2725 1008.1500000000001 1000 50 0.96421015 +146 1008.15 1012.0275 1000 50 0.9999777 +147 1012.0275 1015.9050000000001 1000 50 0.9999801 +148 1015.905 1019.7825 1000 50 0.69972026 +149 1019.7825 1023.6600000000001 1000 50 0.9999294 +150 1023.66 1027.5375 1000 50 0.9832117 +151 1027.5375 1031.415 1000 50 0.99997115 +152 1035.2925 1039.17 1000 50 0.6073778 +153 1039.17 1043.0475000000001 1000 50 1.0 +154 1046.925 1050.8025 1000 50 0.999481 +155 1062.435 1066.3125 1000 50 0.9104421 +156 1066.3125 1070.19 1000 50 0.76076424 +157 1070.19 1074.0675 1000 50 0.5163767 +158 1074.0675 1077.9450000000002 1000 50 0.9803741 +159 1081.8225 1085.7 1000 50 0.94594777 +160 1085.7 1089.5775 1000 50 0.62538755 +161 1089.5775 1093.4550000000002 1000 50 0.9999118 +162 1093.455 1097.3325 1000 50 0.83724177 +163 1097.3325 1101.21 1000 50 0.5771583 +164 1101.21 1105.0875 1000 50 0.87259316 +165 1105.0875 1108.9650000000001 1000 50 0.99897194 +166 1108.965 1112.8425 1000 50 0.9991954 +167 1112.8425 1116.72 1000 50 0.9873368 +168 1116.72 1120.5975 1000 50 0.993211 +169 1120.5975 1124.4750000000001 1000 50 0.99925977 +170 1124.475 1128.3525 1000 50 0.9360421 +171 1128.3525 1132.23 1000 50 0.6805261 +172 1132.23 1136.1075 1000 50 0.9826744 +173 1136.1075 1139.9850000000001 1000 50 0.9822657 +174 1139.985 1143.8625 1000 50 0.78119457 +175 1143.8625 1147.74 1000 50 0.99779093 +176 1151.6175 1155.4950000000001 1000 50 0.9835805 +177 1167.1275 1171.005 1000 50 0.74640924 +178 1171.005 1174.8825000000002 1000 50 0.9600846 +179 1178.76 1182.6375 1000 50 0.60299903 +180 1198.1475 1202.025 1000 50 0.6092573 +181 1221.4125 1225.29 1000 50 0.9307721 +182 1236.9225 1240.8 1000 50 0.7188911 +183 1244.6775 1248.555 1000 50 0.7277509 +184 1256.31 1260.1875 1000 50 0.59238124 +185 1271.82 1275.6975 1000 50 0.6928572 +186 1283.4525 1287.3300000000002 1000 50 0.74566555 +187 1291.2075 1295.085 1000 50 0.9998043 +188 1295.085 1298.9625 1000 50 0.54019135 +189 1306.7175 1310.595 1000 50 0.5823223 +190 1368.7575 1372.635 1000 50 0.63949424 +191 1384.2675 1388.145 1000 50 0.6068306 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_09-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_09-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..fb4a372b3f4df22061231d4c6dbbd9ecde2a1211 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_09-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,39 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.906704 +2 7.755 11.6325 1000 50 0.99830014 +3 11.6325 15.51 1000 50 0.99999964 +4 15.51 19.3875 1000 50 0.9990614 +5 19.3875 23.265 1000 50 0.9998287 +6 23.265 27.142500000000002 1000 50 0.98970747 +7 27.1425 31.02 1000 50 0.99978966 +8 31.02 34.8975 1000 50 0.9999957 +9 34.8975 38.775 1000 50 0.9936195 +10 38.775 42.652499999999996 1000 50 0.5325062 +11 42.6525 46.53 1000 50 0.99999976 +12 46.53 50.4075 1000 50 0.9999993 +13 50.4075 54.285 1000 50 0.8081089 +14 54.285 58.162499999999994 1000 50 0.99999726 +15 58.1625 62.04 1000 50 0.9696135 +16 62.04 65.9175 1000 50 0.99995697 +17 65.9175 69.795 1000 50 0.99741983 +18 69.795 73.6725 1000 50 0.6741049 +19 73.6725 77.55 1000 50 0.85987484 +20 77.55 81.4275 1000 50 0.96780604 +21 81.4275 85.30499999999999 1000 50 0.98865813 +22 89.1825 93.06 1000 50 0.86461276 +23 93.06 96.9375 1000 50 0.7147448 +24 100.815 104.6925 1000 50 0.8133177 +25 104.6925 108.57 1000 50 0.9357626 +26 112.4475 116.325 1000 50 0.98866045 +27 116.325 120.2025 1000 50 0.96316737 +28 124.08 127.9575 1000 50 0.98329437 +29 127.9575 131.835 1000 50 0.9996737 +30 131.835 135.7125 1000 50 0.9682566 +31 135.7125 139.59 1000 50 0.99907887 +32 139.59 143.4675 1000 50 0.9994869 +33 147.345 151.2225 1000 50 0.9993292 +34 151.2225 155.1 1000 50 0.992847 +35 162.855 166.7325 1000 50 0.9998394 +36 166.7325 170.60999999999999 1000 50 0.9986557 +37 170.61 174.4875 1000 50 0.8837012 +38 174.4875 178.365 1000 50 0.99981076 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_09-06-42_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_09-06-42_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..2d25f919d55e03da4ef41b3dfbe4091de0082a86 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_09-06-42_annot_2022-11-30_01.txt @@ -0,0 +1,159 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.99944085 +2 15.51 19.3875 1000 50 0.75990343 +3 23.265 27.142500000000002 1000 50 0.996608 +4 34.8975 38.775 1000 50 0.99474514 +5 38.775 42.652499999999996 1000 50 0.9680766 +6 42.6525 46.53 1000 50 0.9502193 +7 46.53 50.4075 1000 50 0.5153607 +8 54.285 58.162499999999994 1000 50 0.7268872 +9 58.1625 62.04 1000 50 0.9580866 +10 62.04 65.9175 1000 50 0.61217916 +11 65.9175 69.795 1000 50 0.99930847 +12 69.795 73.6725 1000 50 0.9821269 +13 73.6725 77.55 1000 50 0.61172515 +14 81.4275 85.30499999999999 1000 50 0.50997645 +15 85.305 89.1825 1000 50 0.6896292 +16 89.1825 93.06 1000 50 0.9476825 +17 93.06 96.9375 1000 50 0.9989975 +18 96.9375 100.815 1000 50 0.871881 +19 100.815 104.6925 1000 50 0.8485121 +20 104.6925 108.57 1000 50 0.9995839 +21 116.325 120.2025 1000 50 0.9933494 +22 120.2025 124.08 1000 50 0.5265275 +23 124.08 127.9575 1000 50 0.99999976 +24 127.9575 131.835 1000 50 0.99986815 +25 131.835 135.7125 1000 50 0.68735087 +26 135.7125 139.59 1000 50 0.99999976 +27 139.59 143.4675 1000 50 0.6212432 +28 143.4675 147.345 1000 50 1.0 +29 151.2225 155.1 1000 50 0.99997365 +30 158.9775 162.855 1000 50 0.999948 +31 162.855 166.7325 1000 50 0.92807394 +32 166.7325 170.60999999999999 1000 50 0.997255 +33 170.61 174.4875 1000 50 0.99997365 +34 174.4875 178.365 1000 50 0.99999666 +35 178.365 182.2425 1000 50 0.9991672 +36 182.2425 186.12 1000 50 0.6755464 +37 186.12 189.9975 1000 50 0.99928635 +38 189.9975 193.875 1000 50 0.99996424 +39 193.875 197.7525 1000 50 0.9999181 +40 201.63 205.5075 1000 50 0.99945194 +41 205.5075 209.385 1000 50 0.9986848 +42 209.385 213.2625 1000 50 0.99826944 +43 213.2625 217.14 1000 50 0.99993753 +44 217.14 221.01749999999998 1000 50 0.96304643 +45 221.0175 224.895 1000 50 0.9999883 +46 224.895 228.7725 1000 50 0.94483066 +47 228.7725 232.65 1000 50 0.9999912 +48 232.65 236.5275 1000 50 0.978734 +49 236.5275 240.405 1000 50 0.7415147 +50 240.405 244.2825 1000 50 0.99929225 +51 244.2825 248.16 1000 50 0.99995494 +52 248.16 252.0375 1000 50 0.73422354 +53 252.0375 255.915 1000 50 0.9999982 +54 259.7925 263.67 1000 50 0.99996364 +55 267.5475 271.425 1000 50 0.74321276 +56 286.935 290.8125 1000 50 0.70822346 +57 290.8125 294.69 1000 50 0.53547794 +58 294.69 298.5675 1000 50 0.96466035 +59 302.445 306.3225 1000 50 0.89881897 +60 314.0775 317.955 1000 50 0.6654754 +61 333.465 337.3425 1000 50 0.8019859 +62 337.3425 341.21999999999997 1000 50 0.5576448 +63 341.22 345.0975 1000 50 0.9123465 +64 345.0975 348.975 1000 50 0.8114009 +65 348.975 352.8525 1000 50 0.7126395 +66 352.8525 356.73 1000 50 0.59396505 +67 356.73 360.6075 1000 50 0.8274806 +68 360.6075 364.485 1000 50 0.5585443 +69 368.3625 372.24 1000 50 0.7751699 +70 372.24 376.1175 1000 50 0.5061826 +71 383.8725 387.75 1000 50 0.68935424 +72 399.3825 403.26 1000 50 0.6359786 +73 411.015 414.8925 1000 50 0.53914845 +74 438.1575 442.035 1000 50 0.8201998 +75 457.545 461.4225 1000 50 0.68782586 +76 469.1775 473.055 1000 50 0.5845891 +77 484.6875 488.565 1000 50 0.7855039 +78 492.4425 496.32 1000 50 0.51967716 +79 500.1975 504.075 1000 50 0.5925168 +80 507.9525 511.83 1000 50 0.67386174 +81 519.585 523.4625000000001 1000 50 0.51458454 +82 523.4625 527.34 1000 50 0.9002595 +83 527.34 531.2175000000001 1000 50 0.7955599 +84 531.2175 535.095 1000 50 0.978008 +85 546.7275 550.605 1000 50 0.5769415 +86 566.115 569.9925000000001 1000 50 0.68579406 +87 585.5025 589.3800000000001 1000 50 0.99998343 +88 593.2575 597.1350000000001 1000 50 0.85144657 +89 597.135 601.0125 1000 50 0.7554997 +90 604.89 608.7675 1000 50 0.9710831 +91 608.7675 612.6450000000001 1000 50 0.9919641 +92 616.5225 620.4000000000001 1000 50 0.84662646 +93 620.4 624.2775 1000 50 0.970221 +94 624.2775 628.1550000000001 1000 50 0.6182228 +95 632.0325 635.9100000000001 1000 50 0.999228 +96 635.91 639.7875 1000 50 0.63285124 +97 639.7875 643.6650000000001 1000 50 0.9656033 +98 643.665 647.5425 1000 50 0.9999931 +99 647.5425 651.4200000000001 1000 50 0.86982346 +100 655.2975 659.1750000000001 1000 50 0.95025563 +101 659.175 663.0525 1000 50 0.9520519 +102 663.0525 666.9300000000001 1000 50 0.9999995 +103 666.93 670.8075 1000 50 0.99253196 +104 670.8075 674.6850000000001 1000 50 0.9966042 +105 674.685 678.5625 1000 50 1.0 +106 682.44 686.3175000000001 1000 50 0.9945952 +107 686.3175 690.195 1000 50 0.938499 +108 690.195 694.0725000000001 1000 50 0.99644035 +109 694.0725 697.95 1000 50 0.79065734 +110 697.95 701.8275000000001 1000 50 0.52145493 +111 705.705 709.5825000000001 1000 50 0.9761594 +112 717.3375 721.215 1000 50 0.96598256 +113 732.8475 736.725 1000 50 0.92155474 +114 744.48 748.3575000000001 1000 50 0.99995995 +115 748.3575 752.235 1000 50 0.9623128 +116 752.235 756.1125000000001 1000 50 0.9899412 +117 756.1125 759.99 1000 50 0.99999154 +118 759.99 763.8675000000001 1000 50 0.99124557 +119 763.8675 767.745 1000 50 0.9994978 +120 767.745 771.6225000000001 1000 50 0.9982496 +121 771.6225 775.5 1000 50 0.9759186 +122 775.5 779.3775 1000 50 0.99993026 +123 779.3775 783.2550000000001 1000 50 0.98885185 +124 783.255 787.1325 1000 50 0.9983551 +125 787.1325 791.0100000000001 1000 50 0.85228956 +126 791.01 794.8875 1000 50 0.99777126 +127 798.765 802.6425 1000 50 0.90034807 +128 802.6425 806.5200000000001 1000 50 0.9999957 +129 806.52 810.3975 1000 50 0.7032097 +130 810.3975 814.2750000000001 1000 50 0.9480786 +131 818.1525 822.0300000000001 1000 50 0.51980716 +132 822.03 825.9075 1000 50 0.984014 +133 825.9075 829.7850000000001 1000 50 0.7814281 +134 849.1725 853.0500000000001 1000 50 0.9612765 +135 903.4575 907.335 1000 50 0.67438245 +136 922.845 926.7225000000001 1000 50 0.5311991 +137 930.6 934.4775000000001 1000 50 0.5686064 +138 942.2325 946.11 1000 50 0.76776403 +139 953.865 957.7425000000001 1000 50 0.7080803 +140 965.4975 969.375 1000 50 0.69633394 +141 988.7625 992.6400000000001 1000 50 0.60247815 +142 992.64 996.5175 1000 50 0.99981827 +143 1004.2725 1008.1500000000001 1000 50 0.6786823 +144 1008.15 1012.0275 1000 50 0.58285433 +145 1012.0275 1015.9050000000001 1000 50 0.54362804 +146 1015.905 1019.7825 1000 50 0.9957289 +147 1023.66 1027.5375 1000 50 0.9905324 +148 1027.5375 1031.415 1000 50 0.9995659 +149 1031.415 1035.2925 1000 50 0.70976454 +150 1035.2925 1039.17 1000 50 0.99916387 +151 1039.17 1043.0475000000001 1000 50 0.9997584 +152 1046.925 1050.8025 1000 50 0.8905121 +153 1050.8025 1054.68 1000 50 0.9987317 +154 1058.5575 1062.435 1000 50 0.9936963 +155 1062.435 1066.3125 1000 50 0.97952956 +156 1077.945 1081.8225 1000 50 0.90685946 +157 1089.5775 1093.4550000000002 1000 50 0.99999595 +158 1101.21 1105.0875 1000 50 0.9958652 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_10-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_10-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1361de182d3e74466153fc9cd57017caf63c58d9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_10-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,55 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9824348 +2 7.755 11.6325 1000 50 0.8927885 +3 11.6325 15.51 1000 50 0.5681607 +4 19.3875 23.265 1000 50 0.9851598 +5 23.265 27.142500000000002 1000 50 0.6348643 +6 27.1425 31.02 1000 50 0.8086464 +7 34.8975 38.775 1000 50 0.9975061 +8 38.775 42.652499999999996 1000 50 0.91112447 +9 42.6525 46.53 1000 50 0.6833065 +10 46.53 50.4075 1000 50 0.9775777 +11 50.4075 54.285 1000 50 0.78093743 +12 58.1625 62.04 1000 50 0.9988133 +13 69.795 73.6725 1000 50 0.9946302 +14 73.6725 77.55 1000 50 0.9944817 +15 77.55 81.4275 1000 50 0.54816574 +16 81.4275 85.30499999999999 1000 50 0.9563494 +17 85.305 89.1825 1000 50 0.91789216 +18 89.1825 93.06 1000 50 0.9449171 +19 93.06 96.9375 1000 50 0.98998183 +20 96.9375 100.815 1000 50 0.99828583 +21 104.6925 108.57 1000 50 0.9279288 +22 112.4475 116.325 1000 50 0.9980044 +23 120.2025 124.08 1000 50 0.9999341 +24 124.08 127.9575 1000 50 0.9891384 +25 127.9575 131.835 1000 50 0.5058884 +26 131.835 135.7125 1000 50 0.82349044 +27 139.59 143.4675 1000 50 0.9982778 +28 143.4675 147.345 1000 50 0.99123794 +29 151.2225 155.1 1000 50 0.84416705 +30 155.1 158.9775 1000 50 0.6459992 +31 162.855 166.7325 1000 50 0.6504103 +32 166.7325 170.60999999999999 1000 50 0.79076576 +33 170.61 174.4875 1000 50 0.99931276 +34 178.365 182.2425 1000 50 0.6744666 +35 182.2425 186.12 1000 50 0.992998 +36 193.875 197.7525 1000 50 0.62448275 +37 217.14 221.01749999999998 1000 50 0.5984206 +38 259.7925 263.67 1000 50 0.65127283 +39 275.3025 279.18 1000 50 0.76046187 +40 279.18 283.0575 1000 50 0.5546003 +41 290.8125 294.69 1000 50 0.7125158 +42 302.445 306.3225 1000 50 0.6063812 +43 310.2 314.0775 1000 50 0.99873894 +44 314.0775 317.955 1000 50 0.8678278 +45 321.8325 325.71 1000 50 0.70635283 +46 325.71 329.5875 1000 50 0.5328365 +47 372.24 376.1175 1000 50 0.8042461 +48 376.1175 379.995 1000 50 0.5825633 +49 379.995 383.8725 1000 50 0.62597597 +50 395.505 399.3825 1000 50 0.6976709 +51 407.1375 411.015 1000 50 0.6304185 +52 411.015 414.8925 1000 50 0.7122645 +53 418.77 422.6475 1000 50 0.89407724 +54 426.525 430.4025 1000 50 0.9105016 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_10-11-36_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_10-11-36_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..7997cd9ab4c023be37c261ecaf22b3de445a4f0e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_10-11-36_annot_2022-11-30_01.txt @@ -0,0 +1,46 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.9310281 +2 19.3875 23.265 1000 50 0.52141905 +3 23.265 27.142500000000002 1000 50 0.9486979 +4 31.02 34.8975 1000 50 0.5680699 +5 54.285 58.162499999999994 1000 50 0.5028588 +6 73.6725 77.55 1000 50 0.5567836 +7 85.305 89.1825 1000 50 0.71325105 +8 151.2225 155.1 1000 50 0.6308916 +9 158.9775 162.855 1000 50 0.7174032 +10 189.9975 193.875 1000 50 0.5641563 +11 209.385 213.2625 1000 50 0.68159336 +12 213.2625 217.14 1000 50 0.80983174 +13 217.14 221.01749999999998 1000 50 0.71733195 +14 232.65 236.5275 1000 50 0.61616004 +15 244.2825 248.16 1000 50 0.5580869 +16 263.67 267.5475 1000 50 0.8848557 +17 267.5475 271.425 1000 50 0.61367553 +18 286.935 290.8125 1000 50 0.54054815 +19 310.2 314.0775 1000 50 0.5710481 +20 317.955 321.8325 1000 50 0.6713383 +21 341.22 345.0975 1000 50 0.6858996 +22 345.0975 348.975 1000 50 0.5512294 +23 360.6075 364.485 1000 50 0.56986064 +24 376.1175 379.995 1000 50 0.53259414 +25 399.3825 403.26 1000 50 0.6629923 +26 442.035 445.9125 1000 50 0.8144142 +27 453.6675 457.545 1000 50 0.65407497 +28 511.83 515.7075 1000 50 0.649938 +29 519.585 523.4625000000001 1000 50 0.8481018 +30 538.9725 542.85 1000 50 0.5632571 +31 554.4825 558.36 1000 50 0.56797314 +32 566.115 569.9925000000001 1000 50 0.80132085 +33 569.9925 573.87 1000 50 0.5025504 +34 628.155 632.0325 1000 50 0.53587514 +35 670.8075 674.6850000000001 1000 50 0.71196187 +36 674.685 678.5625 1000 50 0.65639764 +37 678.5625 682.44 1000 50 0.5023132 +38 690.195 694.0725000000001 1000 50 0.50861275 +39 717.3375 721.215 1000 50 0.5640576 +40 736.725 740.6025000000001 1000 50 0.7090182 +41 740.6025 744.48 1000 50 0.6179336 +42 744.48 748.3575000000001 1000 50 0.5787482 +43 752.235 756.1125000000001 1000 50 0.6282344 +44 794.8875 798.7650000000001 1000 50 0.90280795 +45 806.52 810.3975 1000 50 0.7970941 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_11-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_11-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..cbda6a84c077a5e33f05a7f0aa540bcc7ecab0d1 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_11-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,100 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99999666 +2 3.8775 7.755 1000 50 0.99924576 +3 7.755 11.6325 1000 50 0.8281558 +4 11.6325 15.51 1000 50 0.9989361 +5 15.51 19.3875 1000 50 0.9454434 +6 19.3875 23.265 1000 50 0.6095946 +7 27.1425 31.02 1000 50 0.6421239 +8 34.8975 38.775 1000 50 0.89183927 +9 38.775 42.652499999999996 1000 50 0.7837158 +10 42.6525 46.53 1000 50 0.9655626 +11 46.53 50.4075 1000 50 0.73020136 +12 62.04 65.9175 1000 50 0.64886343 +13 81.4275 85.30499999999999 1000 50 0.6630455 +14 93.06 96.9375 1000 50 0.74058396 +15 100.815 104.6925 1000 50 0.5974837 +16 104.6925 108.57 1000 50 0.80306184 +17 112.4475 116.325 1000 50 0.8058213 +18 124.08 127.9575 1000 50 0.54358584 +19 127.9575 131.835 1000 50 0.85397446 +20 135.7125 139.59 1000 50 0.990789 +21 143.4675 147.345 1000 50 0.9981312 +22 147.345 151.2225 1000 50 0.99988914 +23 151.2225 155.1 1000 50 0.8389155 +24 155.1 158.9775 1000 50 0.99988306 +25 158.9775 162.855 1000 50 0.98768544 +26 162.855 166.7325 1000 50 0.7328156 +27 174.4875 178.365 1000 50 0.9503487 +28 186.12 189.9975 1000 50 0.6341391 +29 189.9975 193.875 1000 50 0.980072 +30 197.7525 201.63 1000 50 0.9998636 +31 209.385 213.2625 1000 50 0.9984397 +32 228.7725 232.65 1000 50 0.9390413 +33 240.405 244.2825 1000 50 0.994177 +34 244.2825 248.16 1000 50 0.52780426 +35 252.0375 255.915 1000 50 0.9915364 +36 255.915 259.7925 1000 50 0.9472468 +37 263.67 267.5475 1000 50 0.83813006 +38 271.425 275.3025 1000 50 0.66290784 +39 279.18 283.0575 1000 50 0.8039363 +40 283.0575 286.935 1000 50 0.88540393 +41 290.8125 294.69 1000 50 0.9956655 +42 306.3225 310.2 1000 50 0.9601604 +43 310.2 314.0775 1000 50 0.9999502 +44 314.0775 317.955 1000 50 0.8426964 +45 317.955 321.8325 1000 50 0.53568894 +46 321.8325 325.71 1000 50 0.961387 +47 325.71 329.5875 1000 50 0.7720621 +48 329.5875 333.465 1000 50 0.9652703 +49 337.3425 341.21999999999997 1000 50 0.5527438 +50 341.22 345.0975 1000 50 0.62181693 +51 345.0975 348.975 1000 50 0.894035 +52 356.73 360.6075 1000 50 0.87938535 +53 360.6075 364.485 1000 50 0.7550793 +54 368.3625 372.24 1000 50 0.6249448 +55 372.24 376.1175 1000 50 0.9898432 +56 376.1175 379.995 1000 50 0.51124704 +57 383.8725 387.75 1000 50 0.9949765 +58 387.75 391.6275 1000 50 0.5112875 +59 399.3825 403.26 1000 50 0.56578875 +60 403.26 407.1375 1000 50 0.5462832 +61 411.015 414.8925 1000 50 0.5961612 +62 426.525 430.4025 1000 50 0.7351906 +63 434.28 438.15749999999997 1000 50 0.8698977 +64 438.1575 442.035 1000 50 0.57066315 +65 442.035 445.9125 1000 50 0.6316371 +66 453.6675 457.545 1000 50 0.86190754 +67 461.4225 465.3 1000 50 0.5019514 +68 465.3 469.1775 1000 50 0.79092056 +69 473.055 476.9325 1000 50 0.7823438 +70 476.9325 480.81 1000 50 0.664794 +71 488.565 492.4425 1000 50 0.9471379 +72 593.2575 597.1350000000001 1000 50 0.9005269 +73 597.135 601.0125 1000 50 0.60637355 +74 616.5225 620.4000000000001 1000 50 0.9966918 +75 620.4 624.2775 1000 50 0.6154409 +76 628.155 632.0325 1000 50 0.99028134 +77 639.7875 643.6650000000001 1000 50 0.97863674 +78 647.5425 651.4200000000001 1000 50 0.5866021 +79 651.42 655.2975 1000 50 0.99721104 +80 682.44 686.3175000000001 1000 50 0.9559596 +81 686.3175 690.195 1000 50 0.61672103 +82 694.0725 697.95 1000 50 0.88241404 +83 697.95 701.8275000000001 1000 50 0.5446618 +84 701.8275 705.705 1000 50 0.51608396 +85 709.5825 713.46 1000 50 0.9998596 +86 713.46 717.3375000000001 1000 50 0.57158935 +87 717.3375 721.215 1000 50 0.85818964 +88 721.215 725.0925000000001 1000 50 0.9999957 +89 732.8475 736.725 1000 50 0.7263073 +90 740.6025 744.48 1000 50 0.99635005 +91 744.48 748.3575000000001 1000 50 0.9994029 +92 748.3575 752.235 1000 50 0.9928 +93 752.235 756.1125000000001 1000 50 0.99898845 +94 756.1125 759.99 1000 50 0.86997956 +95 759.99 763.8675000000001 1000 50 0.9999192 +96 763.8675 767.745 1000 50 0.9799977 +97 767.745 771.6225000000001 1000 50 0.95755655 +98 771.6225 775.5 1000 50 0.9955146 +99 775.5 779.3775 1000 50 0.99970347 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_11-16-36_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_11-16-36_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..c1a6daa02393cb892e5d1e7937c0398a4257fd3a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_11-16-36_annot_2022-11-30_01.txt @@ -0,0 +1,84 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999875 +2 3.8775 7.755 1000 50 0.5784244 +3 7.755 11.6325 1000 50 0.9997309 +4 11.6325 15.51 1000 50 0.9950063 +5 23.265 27.142500000000002 1000 50 0.99912447 +6 27.1425 31.02 1000 50 0.9918771 +7 34.8975 38.775 1000 50 0.8471871 +8 54.285 58.162499999999994 1000 50 0.9934117 +9 58.1625 62.04 1000 50 0.91757387 +10 62.04 65.9175 1000 50 0.9127889 +11 65.9175 69.795 1000 50 0.99155444 +12 69.795 73.6725 1000 50 0.918824 +13 73.6725 77.55 1000 50 0.58288425 +14 77.55 81.4275 1000 50 0.8461524 +15 81.4275 85.30499999999999 1000 50 0.9993913 +16 89.1825 93.06 1000 50 0.9318836 +17 96.9375 100.815 1000 50 0.6394177 +18 100.815 104.6925 1000 50 0.99934727 +19 104.6925 108.57 1000 50 0.94014436 +20 116.325 120.2025 1000 50 0.9996611 +21 120.2025 124.08 1000 50 0.9999895 +22 124.08 127.9575 1000 50 0.99993896 +23 127.9575 131.835 1000 50 0.7842614 +24 135.7125 139.59 1000 50 1.0 +25 139.59 143.4675 1000 50 0.9836557 +26 143.4675 147.345 1000 50 0.9999999 +27 147.345 151.2225 1000 50 0.9999949 +28 151.2225 155.1 1000 50 0.99990857 +29 155.1 158.9775 1000 50 0.59120345 +30 162.855 166.7325 1000 50 0.9999865 +31 166.7325 170.60999999999999 1000 50 0.69860315 +32 170.61 174.4875 1000 50 0.9982083 +33 174.4875 178.365 1000 50 1.0 +34 178.365 182.2425 1000 50 0.99996436 +35 182.2425 186.12 1000 50 0.8829342 +36 189.9975 193.875 1000 50 0.9828934 +37 193.875 197.7525 1000 50 0.9126805 +38 201.63 205.5075 1000 50 0.7122574 +39 205.5075 209.385 1000 50 0.99851316 +40 209.385 213.2625 1000 50 0.75323015 +41 213.2625 217.14 1000 50 0.61515576 +42 217.14 221.01749999999998 1000 50 0.58027357 +43 221.0175 224.895 1000 50 0.69268167 +44 224.895 228.7725 1000 50 0.91157603 +45 228.7725 232.65 1000 50 0.82538587 +46 236.5275 240.405 1000 50 0.55540687 +47 240.405 244.2825 1000 50 0.7543057 +48 244.2825 248.16 1000 50 0.8611963 +49 248.16 252.0375 1000 50 0.99750715 +50 252.0375 255.915 1000 50 0.99429804 +51 255.915 259.7925 1000 50 0.9991015 +52 259.7925 263.67 1000 50 0.8822271 +53 263.67 267.5475 1000 50 0.9967439 +54 267.5475 271.425 1000 50 0.99960035 +55 271.425 275.3025 1000 50 0.6118509 +56 275.3025 279.18 1000 50 0.89268357 +57 279.18 283.0575 1000 50 0.68433183 +58 283.0575 286.935 1000 50 0.60871756 +59 286.935 290.8125 1000 50 0.99716395 +60 290.8125 294.69 1000 50 0.99964225 +61 294.69 298.5675 1000 50 0.89039594 +62 298.5675 302.445 1000 50 0.9093747 +63 302.445 306.3225 1000 50 0.9644065 +64 306.3225 310.2 1000 50 0.85260403 +65 310.2 314.0775 1000 50 0.76038295 +66 317.955 321.8325 1000 50 0.98818934 +67 325.71 329.5875 1000 50 0.6638164 +68 341.22 345.0975 1000 50 0.57525265 +69 352.8525 356.73 1000 50 0.74172115 +70 364.485 368.3625 1000 50 0.507154 +71 379.995 383.8725 1000 50 0.6470764 +72 403.26 407.1375 1000 50 0.8793002 +73 411.015 414.8925 1000 50 0.5491993 +74 414.8925 418.77 1000 50 0.9556869 +75 426.525 430.4025 1000 50 0.8546597 +76 430.4025 434.28 1000 50 0.53340644 +77 442.035 445.9125 1000 50 0.6122597 +78 461.4225 465.3 1000 50 0.52810293 +79 469.1775 473.055 1000 50 0.5462262 +80 473.055 476.9325 1000 50 0.5677207 +81 484.6875 488.565 1000 50 0.6284359 +82 488.565 492.4425 1000 50 0.97534376 +83 500.1975 504.075 1000 50 0.999321 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_12-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_12-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ce98f6b6bdac5a4034fb78faacd79deefc2022ab --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_12-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,53 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 31.02 34.8975 1000 50 0.66487414 +2 50.4075 54.285 1000 50 0.5137212 +3 58.1625 62.04 1000 50 0.91253895 +4 62.04 65.9175 1000 50 0.5039718 +5 93.06 96.9375 1000 50 0.96337944 +6 112.4475 116.325 1000 50 0.6251812 +7 131.835 135.7125 1000 50 0.57280236 +8 143.4675 147.345 1000 50 0.56427854 +9 147.345 151.2225 1000 50 0.6457912 +10 155.1 158.9775 1000 50 0.72875345 +11 178.365 182.2425 1000 50 0.95847505 +12 205.5075 209.385 1000 50 0.9998379 +13 209.385 213.2625 1000 50 0.9225484 +14 236.5275 240.405 1000 50 0.6230624 +15 290.8125 294.69 1000 50 0.6288666 +16 294.69 298.5675 1000 50 0.60642105 +17 306.3225 310.2 1000 50 0.5001804 +18 391.6275 395.505 1000 50 0.9104137 +19 407.1375 411.015 1000 50 0.5683483 +20 442.035 445.9125 1000 50 0.7745345 +21 457.545 461.4225 1000 50 0.60885286 +22 484.6875 488.565 1000 50 0.78411347 +23 496.32 500.1975 1000 50 0.9997243 +24 507.9525 511.83 1000 50 0.680215 +25 511.83 515.7075 1000 50 0.59213483 +26 527.34 531.2175000000001 1000 50 0.51084036 +27 538.9725 542.85 1000 50 0.61824185 +28 546.7275 550.605 1000 50 0.7732695 +29 554.4825 558.36 1000 50 0.9693666 +30 573.87 577.7475000000001 1000 50 0.5688285 +31 577.7475 581.625 1000 50 0.6905774 +32 597.135 601.0125 1000 50 0.654387 +33 620.4 624.2775 1000 50 0.68270165 +34 632.0325 635.9100000000001 1000 50 0.9664152 +35 643.665 647.5425 1000 50 0.7132994 +36 655.2975 659.1750000000001 1000 50 0.7430995 +37 674.685 678.5625 1000 50 0.8734411 +38 694.0725 697.95 1000 50 0.5046818 +39 744.48 748.3575000000001 1000 50 0.5369217 +40 775.5 779.3775 1000 50 0.51028246 +41 791.01 794.8875 1000 50 0.99745184 +42 810.3975 814.2750000000001 1000 50 0.70878625 +43 822.03 825.9075 1000 50 0.6007279 +44 911.2125 915.09 1000 50 0.7870092 +45 977.13 981.0075 1000 50 0.7582751 +46 984.885 988.7625 1000 50 0.50608647 +47 1004.2725 1008.1500000000001 1000 50 0.736005 +48 1008.15 1012.0275 1000 50 0.5091934 +49 1015.905 1019.7825 1000 50 0.78753036 +50 1043.0475 1046.925 1000 50 0.8626285 +51 1070.19 1074.0675 1000 50 0.9835122 +52 1074.0675 1077.9450000000002 1000 50 0.62923115 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_12-21-43_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_12-21-43_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5d104bebe05868d761802110f9e8c15475a8550f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_12-21-43_annot_2022-11-30_01.txt @@ -0,0 +1,12 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.6301535 +2 15.51 19.3875 1000 50 0.5162382 +3 31.02 34.8975 1000 50 0.8814495 +4 46.53 50.4075 1000 50 0.99742293 +5 81.4275 85.30499999999999 1000 50 0.89490706 +6 96.9375 100.815 1000 50 0.7378659 +7 120.2025 124.08 1000 50 0.52988553 +8 127.9575 131.835 1000 50 0.97575593 +9 139.59 143.4675 1000 50 0.7622087 +10 166.7325 170.60999999999999 1000 50 0.66761726 +11 197.7525 201.63 1000 50 0.9913803 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_13-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_13-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b767d55779c7b7b32ef58a7f6046b597030a77f8 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_13-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,157 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 46.53 50.4075 1000 50 0.5165966 +2 62.04 65.9175 1000 50 0.54608685 +3 65.9175 69.795 1000 50 0.97649 +4 81.4275 85.30499999999999 1000 50 0.9773685 +5 85.305 89.1825 1000 50 0.73505104 +6 89.1825 93.06 1000 50 0.844886 +7 93.06 96.9375 1000 50 0.99504197 +8 96.9375 100.815 1000 50 0.8051697 +9 100.815 104.6925 1000 50 0.7882893 +10 104.6925 108.57 1000 50 0.999081 +11 112.4475 116.325 1000 50 0.5502247 +12 116.325 120.2025 1000 50 0.9570126 +13 124.08 127.9575 1000 50 0.5399877 +14 127.9575 131.835 1000 50 0.59035015 +15 131.835 135.7125 1000 50 0.9994703 +16 135.7125 139.59 1000 50 0.8810335 +17 143.4675 147.345 1000 50 0.88147545 +18 147.345 151.2225 1000 50 0.8720217 +19 151.2225 155.1 1000 50 0.79265755 +20 155.1 158.9775 1000 50 0.6437714 +21 162.855 166.7325 1000 50 0.5592075 +22 182.2425 186.12 1000 50 0.99919564 +23 186.12 189.9975 1000 50 0.85857284 +24 189.9975 193.875 1000 50 0.9686826 +25 193.875 197.7525 1000 50 0.5130097 +26 197.7525 201.63 1000 50 0.98474914 +27 201.63 205.5075 1000 50 0.8568598 +28 205.5075 209.385 1000 50 0.9998841 +29 209.385 213.2625 1000 50 0.8636903 +30 236.5275 240.405 1000 50 0.97503245 +31 298.5675 302.445 1000 50 0.5085238 +32 314.0775 317.955 1000 50 0.78772765 +33 317.955 321.8325 1000 50 0.5398457 +34 352.8525 356.73 1000 50 0.6210258 +35 364.485 368.3625 1000 50 0.505813 +36 368.3625 372.24 1000 50 0.5979609 +37 399.3825 403.26 1000 50 0.61579216 +38 407.1375 411.015 1000 50 0.7351868 +39 418.77 422.6475 1000 50 0.5810941 +40 426.525 430.4025 1000 50 0.88918567 +41 500.1975 504.075 1000 50 0.9355649 +42 519.585 523.4625000000001 1000 50 0.53725505 +43 527.34 531.2175000000001 1000 50 0.86037254 +44 546.7275 550.605 1000 50 0.9319777 +45 581.625 585.5025 1000 50 0.53714937 +46 589.38 593.2575 1000 50 0.5175231 +47 593.2575 597.1350000000001 1000 50 0.8813158 +48 604.89 608.7675 1000 50 0.5875922 +49 612.645 616.5225 1000 50 0.69345367 +50 616.5225 620.4000000000001 1000 50 0.5613586 +51 624.2775 628.1550000000001 1000 50 0.97667605 +52 628.155 632.0325 1000 50 0.884432 +53 639.7875 643.6650000000001 1000 50 0.6570852 +54 655.2975 659.1750000000001 1000 50 0.8128352 +55 659.175 663.0525 1000 50 0.52923703 +56 663.0525 666.9300000000001 1000 50 0.5077272 +57 690.195 694.0725000000001 1000 50 0.7525492 +58 694.0725 697.95 1000 50 0.61179465 +59 705.705 709.5825000000001 1000 50 0.9690272 +60 713.46 717.3375000000001 1000 50 0.6436804 +61 721.215 725.0925000000001 1000 50 0.8176653 +62 725.0925 728.97 1000 50 0.7950075 +63 732.8475 736.725 1000 50 0.9988657 +64 744.48 748.3575000000001 1000 50 0.9709635 +65 756.1125 759.99 1000 50 0.5697893 +66 767.745 771.6225000000001 1000 50 0.95388013 +67 771.6225 775.5 1000 50 0.8221964 +68 794.8875 798.7650000000001 1000 50 0.8764921 +69 806.52 810.3975 1000 50 0.7997102 +70 814.275 818.1525 1000 50 0.94829595 +71 822.03 825.9075 1000 50 0.60310906 +72 825.9075 829.7850000000001 1000 50 0.7527737 +73 833.6625 837.5400000000001 1000 50 0.603175 +74 841.4175 845.2950000000001 1000 50 0.99182254 +75 845.295 849.1725 1000 50 0.99905473 +76 849.1725 853.0500000000001 1000 50 0.92534554 +77 853.05 856.9275 1000 50 0.82247424 +78 856.9275 860.8050000000001 1000 50 0.9999951 +79 860.805 864.6825 1000 50 0.98050183 +80 864.6825 868.5600000000001 1000 50 0.9381472 +81 872.4375 876.315 1000 50 0.5025787 +82 876.315 880.1925000000001 1000 50 0.9980868 +83 884.07 887.9475000000001 1000 50 1.0 +84 887.9475 891.825 1000 50 0.9909994 +85 891.825 895.7025000000001 1000 50 0.8304238 +86 895.7025 899.58 1000 50 0.9765929 +87 899.58 903.4575000000001 1000 50 0.9053659 +88 903.4575 907.335 1000 50 0.96984583 +89 907.335 911.2125000000001 1000 50 0.50634867 +90 915.09 918.9675000000001 1000 50 0.96820337 +91 918.9675 922.845 1000 50 0.8484653 +92 922.845 926.7225000000001 1000 50 0.63396114 +93 926.7225 930.6 1000 50 0.9965842 +94 930.6 934.4775000000001 1000 50 0.72281384 +95 938.355 942.2325000000001 1000 50 0.88975155 +96 942.2325 946.11 1000 50 0.9809192 +97 946.11 949.9875000000001 1000 50 0.9994048 +98 949.9875 953.865 1000 50 0.99834013 +99 953.865 957.7425000000001 1000 50 0.96319544 +100 957.7425 961.62 1000 50 0.9999958 +101 965.4975 969.375 1000 50 0.7861291 +102 969.375 973.2525 1000 50 0.6963325 +103 973.2525 977.1300000000001 1000 50 0.7645828 +104 977.13 981.0075 1000 50 0.7146968 +105 981.0075 984.8850000000001 1000 50 0.8144834 +106 988.7625 992.6400000000001 1000 50 0.9936726 +107 992.64 996.5175 1000 50 0.6217612 +108 1000.395 1004.2725 1000 50 0.99999774 +109 1008.15 1012.0275 1000 50 0.99799925 +110 1012.0275 1015.9050000000001 1000 50 0.99485415 +111 1019.7825 1023.6600000000001 1000 50 0.9999852 +112 1023.66 1027.5375 1000 50 0.83835965 +113 1031.415 1035.2925 1000 50 0.9684344 +114 1035.2925 1039.17 1000 50 0.8394176 +115 1062.435 1066.3125 1000 50 0.9632926 +116 1066.3125 1070.19 1000 50 0.6672261 +117 1070.19 1074.0675 1000 50 0.62134737 +118 1081.8225 1085.7 1000 50 0.7510497 +119 1093.455 1097.3325 1000 50 0.7271988 +120 1097.3325 1101.21 1000 50 0.994464 +121 1101.21 1105.0875 1000 50 0.74080503 +122 1120.5975 1124.4750000000001 1000 50 0.6325857 +123 1139.985 1143.8625 1000 50 0.7327073 +124 1143.8625 1147.74 1000 50 0.90778905 +125 1147.74 1151.6175 1000 50 0.9864058 +126 1151.6175 1155.4950000000001 1000 50 0.9637649 +127 1155.495 1159.3725 1000 50 0.85718465 +128 1159.3725 1163.25 1000 50 0.64833385 +129 1178.76 1182.6375 1000 50 0.6551384 +130 1182.6375 1186.515 1000 50 0.6366767 +131 1190.3925 1194.27 1000 50 0.9911822 +132 1194.27 1198.1475 1000 50 0.9343946 +133 1202.025 1205.9025000000001 1000 50 0.9641298 +134 1205.9025 1209.78 1000 50 0.9844355 +135 1213.6575 1217.535 1000 50 0.77536917 +136 1221.4125 1225.29 1000 50 0.9824421 +137 1225.29 1229.1675 1000 50 0.88734215 +138 1233.045 1236.9225000000001 1000 50 0.65766245 +139 1236.9225 1240.8 1000 50 0.89764696 +140 1248.555 1252.4325000000001 1000 50 0.6191956 +141 1260.1875 1264.065 1000 50 0.70092916 +142 1271.82 1275.6975 1000 50 0.9025385 +143 1275.6975 1279.575 1000 50 0.5540252 +144 1291.2075 1295.085 1000 50 0.96300936 +145 1298.9625 1302.8400000000001 1000 50 0.76217115 +146 1306.7175 1310.595 1000 50 0.53714675 +147 1318.35 1322.2275 1000 50 0.6949862 +148 1326.105 1329.9825 1000 50 0.8964734 +149 1329.9825 1333.8600000000001 1000 50 0.88611335 +150 1337.7375 1341.615 1000 50 0.5745971 +151 1345.4925 1349.3700000000001 1000 50 0.8233786 +152 1349.37 1353.2475 1000 50 0.98610455 +153 1361.0025 1364.88 1000 50 0.6126944 +154 1372.635 1376.5125 1000 50 0.7210764 +155 1384.2675 1388.145 1000 50 0.5303169 +156 1395.9 1399.7775000000001 1000 50 0.86754245 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_14-01-54_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_14-01-54_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..cebd7a5c26499393417ed30d4e5978bfdfd2b076 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_14-01-54_annot_2022-11-30_01.txt @@ -0,0 +1,162 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.522573 +2 11.6325 15.51 1000 50 0.6228355 +3 15.51 19.3875 1000 50 0.64062023 +4 19.3875 23.265 1000 50 0.9998454 +5 31.02 34.8975 1000 50 0.6688543 +6 38.775 42.652499999999996 1000 50 0.9165845 +7 46.53 50.4075 1000 50 0.9868738 +8 58.1625 62.04 1000 50 0.9997732 +9 65.9175 69.795 1000 50 0.65806746 +10 73.6725 77.55 1000 50 0.7523149 +11 77.55 81.4275 1000 50 0.68647575 +12 85.305 89.1825 1000 50 0.6197083 +13 93.06 96.9375 1000 50 0.999213 +14 96.9375 100.815 1000 50 0.9926017 +15 100.815 104.6925 1000 50 0.89671576 +16 120.2025 124.08 1000 50 0.7211053 +17 127.9575 131.835 1000 50 0.7124736 +18 131.835 135.7125 1000 50 0.6423931 +19 139.59 143.4675 1000 50 0.65271884 +20 155.1 158.9775 1000 50 0.6850844 +21 166.7325 170.60999999999999 1000 50 0.8529983 +22 170.61 174.4875 1000 50 0.8517119 +23 178.365 182.2425 1000 50 0.8248892 +24 182.2425 186.12 1000 50 0.7773844 +25 193.875 197.7525 1000 50 0.9364193 +26 197.7525 201.63 1000 50 0.6342045 +27 201.63 205.5075 1000 50 0.7312632 +28 205.5075 209.385 1000 50 0.9991295 +29 213.2625 217.14 1000 50 0.99865663 +30 217.14 221.01749999999998 1000 50 0.95432156 +31 224.895 228.7725 1000 50 0.92198896 +32 232.65 236.5275 1000 50 0.9553863 +33 240.405 244.2825 1000 50 0.9960653 +34 248.16 252.0375 1000 50 0.78297836 +35 259.7925 263.67 1000 50 0.9844699 +36 271.425 275.3025 1000 50 0.7839347 +37 279.18 283.0575 1000 50 0.9796236 +38 283.0575 286.935 1000 50 0.5925839 +39 286.935 290.8125 1000 50 0.6782109 +40 290.8125 294.69 1000 50 0.6911573 +41 294.69 298.5675 1000 50 0.5089485 +42 302.445 306.3225 1000 50 0.6669346 +43 306.3225 310.2 1000 50 0.91115385 +44 310.2 314.0775 1000 50 0.70783013 +45 314.0775 317.955 1000 50 0.99994826 +46 317.955 321.8325 1000 50 0.5319242 +47 321.8325 325.71 1000 50 0.5638443 +48 333.465 337.3425 1000 50 0.9447952 +49 345.0975 348.975 1000 50 0.55413795 +50 352.8525 356.73 1000 50 0.999987 +51 356.73 360.6075 1000 50 0.60682964 +52 360.6075 364.485 1000 50 0.9983852 +53 368.3625 372.24 1000 50 0.84311074 +54 372.24 376.1175 1000 50 0.6143551 +55 376.1175 379.995 1000 50 0.7217161 +56 379.995 383.8725 1000 50 0.9969868 +57 391.6275 395.505 1000 50 0.9562251 +58 395.505 399.3825 1000 50 0.6167609 +59 399.3825 403.26 1000 50 0.9767729 +60 403.26 407.1375 1000 50 0.9950557 +61 407.1375 411.015 1000 50 0.5332312 +62 411.015 414.8925 1000 50 0.99999964 +63 414.8925 418.77 1000 50 0.83590746 +64 418.77 422.6475 1000 50 0.7880693 +65 422.6475 426.525 1000 50 0.9984149 +66 426.525 430.4025 1000 50 0.7978539 +67 430.4025 434.28 1000 50 0.9862585 +68 434.28 438.15749999999997 1000 50 0.99962795 +69 445.9125 449.79 1000 50 0.6345958 +70 469.1775 473.055 1000 50 0.5059104 +71 480.81 484.6875 1000 50 0.9953334 +72 484.6875 488.565 1000 50 0.81481725 +73 500.1975 504.075 1000 50 0.59239405 +74 504.075 507.9525 1000 50 0.6131177 +75 507.9525 511.83 1000 50 0.8734484 +76 515.7075 519.585 1000 50 0.5168634 +77 519.585 523.4625000000001 1000 50 0.7233994 +78 554.4825 558.36 1000 50 0.5200551 +79 558.36 562.2375000000001 1000 50 0.59295124 +80 566.115 569.9925000000001 1000 50 0.5169793 +81 589.38 593.2575 1000 50 0.69792575 +82 593.2575 597.1350000000001 1000 50 0.7224618 +83 632.0325 635.9100000000001 1000 50 0.5267795 +84 643.665 647.5425 1000 50 0.540526 +85 647.5425 651.4200000000001 1000 50 0.5260181 +86 651.42 655.2975 1000 50 0.6017799 +87 666.93 670.8075 1000 50 0.5780802 +88 670.8075 674.6850000000001 1000 50 0.65253407 +89 674.685 678.5625 1000 50 0.63046473 +90 682.44 686.3175000000001 1000 50 0.5403249 +91 686.3175 690.195 1000 50 0.65910393 +92 697.95 701.8275000000001 1000 50 0.52879757 +93 728.97 732.8475000000001 1000 50 0.85804874 +94 759.99 763.8675000000001 1000 50 0.6279581 +95 763.8675 767.745 1000 50 0.51424074 +96 802.6425 806.5200000000001 1000 50 0.6019105 +97 849.1725 853.0500000000001 1000 50 0.8566887 +98 856.9275 860.8050000000001 1000 50 0.6819686 +99 860.805 864.6825 1000 50 0.7277728 +100 868.56 872.4375 1000 50 0.5849692 +101 872.4375 876.315 1000 50 0.52475834 +102 876.315 880.1925000000001 1000 50 0.7601409 +103 880.1925 884.07 1000 50 0.5020994 +104 884.07 887.9475000000001 1000 50 0.9975261 +105 887.9475 891.825 1000 50 0.68473166 +106 895.7025 899.58 1000 50 0.52943796 +107 899.58 903.4575000000001 1000 50 0.54956067 +108 907.335 911.2125000000001 1000 50 0.7517284 +109 911.2125 915.09 1000 50 0.62998384 +110 915.09 918.9675000000001 1000 50 0.67313486 +111 918.9675 922.845 1000 50 0.92996544 +112 922.845 926.7225000000001 1000 50 0.553871 +113 953.865 957.7425000000001 1000 50 0.7697541 +114 961.62 965.4975000000001 1000 50 0.99847716 +115 973.2525 977.1300000000001 1000 50 0.99036014 +116 977.13 981.0075 1000 50 0.89077395 +117 981.0075 984.8850000000001 1000 50 0.997436 +118 984.885 988.7625 1000 50 0.91182184 +119 988.7625 992.6400000000001 1000 50 0.92265993 +120 992.64 996.5175 1000 50 0.8780158 +121 1000.395 1004.2725 1000 50 0.8901161 +122 1008.15 1012.0275 1000 50 0.6467215 +123 1012.0275 1015.9050000000001 1000 50 0.85062253 +124 1019.7825 1023.6600000000001 1000 50 0.97727305 +125 1039.17 1043.0475000000001 1000 50 0.5470229 +126 1054.68 1058.5575000000001 1000 50 0.6412136 +127 1077.945 1081.8225 1000 50 0.96309835 +128 1085.7 1089.5775 1000 50 0.6565879 +129 1105.0875 1108.9650000000001 1000 50 0.5822398 +130 1108.965 1112.8425 1000 50 0.9854329 +131 1112.8425 1116.72 1000 50 0.5649293 +132 1116.72 1120.5975 1000 50 0.60479194 +133 1124.475 1128.3525 1000 50 0.59774 +134 1132.23 1136.1075 1000 50 0.71352404 +135 1136.1075 1139.9850000000001 1000 50 0.7342501 +136 1139.985 1143.8625 1000 50 0.5138399 +137 1143.8625 1147.74 1000 50 0.762527 +138 1147.74 1151.6175 1000 50 0.6386912 +139 1198.1475 1202.025 1000 50 0.9381998 +140 1202.025 1205.9025000000001 1000 50 0.74635774 +141 1225.29 1229.1675 1000 50 0.6473241 +142 1240.8 1244.6775 1000 50 0.5833141 +143 1256.31 1260.1875 1000 50 0.6583855 +144 1267.9425 1271.8200000000002 1000 50 0.63716775 +145 1271.82 1275.6975 1000 50 0.7082379 +146 1291.2075 1295.085 1000 50 0.6342278 +147 1295.085 1298.9625 1000 50 0.702658 +148 1298.9625 1302.8400000000001 1000 50 0.50141203 +149 1302.84 1306.7175 1000 50 0.69766134 +150 1306.7175 1310.595 1000 50 0.9813255 +151 1310.595 1314.4725 1000 50 0.79380274 +152 1314.4725 1318.3500000000001 1000 50 0.9010259 +153 1318.35 1322.2275 1000 50 0.5966979 +154 1326.105 1329.9825 1000 50 0.6062131 +155 1329.9825 1333.8600000000001 1000 50 0.7678645 +156 1333.86 1337.7375 1000 50 0.90662384 +157 1341.615 1345.4925 1000 50 0.83012426 +158 1349.37 1353.2475 1000 50 0.84352785 +159 1353.2475 1357.125 1000 50 0.7959156 +160 1357.125 1361.0025 1000 50 0.62468106 +161 1384.2675 1388.145 1000 50 0.7169905 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_15-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_15-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e4a958da91a9d8623bdd5d8adbfcfdbb9e774259 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_15-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,19 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 27.1425 31.02 1000 50 0.5104818 +2 31.02 34.8975 1000 50 0.5192454 +3 34.8975 38.775 1000 50 0.5439266 +4 46.53 50.4075 1000 50 0.6243449 +5 50.4075 54.285 1000 50 0.7851429 +6 62.04 65.9175 1000 50 0.69570667 +7 69.795 73.6725 1000 50 0.52461016 +8 73.6725 77.55 1000 50 0.8254794 +9 77.55 81.4275 1000 50 0.84480053 +10 81.4275 85.30499999999999 1000 50 0.72265077 +11 85.305 89.1825 1000 50 0.6602849 +12 89.1825 93.06 1000 50 0.8819783 +13 112.4475 116.325 1000 50 0.77025855 +14 135.7125 139.59 1000 50 0.5501742 +15 147.345 151.2225 1000 50 0.8883779 +16 162.855 166.7325 1000 50 0.5430626 +17 178.365 182.2425 1000 50 0.67968374 +18 189.9975 193.875 1000 50 0.5126027 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_15-07-13_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_15-07-13_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..6b761654dd7a980b61a7f13d4019307daedbe0c9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_15-07-13_annot_2022-11-30_01.txt @@ -0,0 +1,120 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.5122253 +2 7.755 11.6325 1000 50 0.56742835 +3 11.6325 15.51 1000 50 0.520926 +4 15.51 19.3875 1000 50 0.8260912 +5 19.3875 23.265 1000 50 0.5530902 +6 23.265 27.142500000000002 1000 50 0.65343827 +7 27.1425 31.02 1000 50 0.6494115 +8 31.02 34.8975 1000 50 0.7053695 +9 42.6525 46.53 1000 50 0.6650328 +10 46.53 50.4075 1000 50 0.529412 +11 77.55 81.4275 1000 50 0.7149905 +12 89.1825 93.06 1000 50 0.7298589 +13 100.815 104.6925 1000 50 0.62956274 +14 104.6925 108.57 1000 50 0.7394912 +15 112.4475 116.325 1000 50 0.7092641 +16 116.325 120.2025 1000 50 0.739919 +17 131.835 135.7125 1000 50 0.6100398 +18 135.7125 139.59 1000 50 0.55941546 +19 139.59 143.4675 1000 50 0.5485149 +20 143.4675 147.345 1000 50 0.6332176 +21 151.2225 155.1 1000 50 0.55905443 +22 155.1 158.9775 1000 50 0.73720735 +23 158.9775 162.855 1000 50 0.6715552 +24 162.855 166.7325 1000 50 0.73014754 +25 166.7325 170.60999999999999 1000 50 0.6767237 +26 170.61 174.4875 1000 50 0.6135093 +27 174.4875 178.365 1000 50 0.5830988 +28 178.365 182.2425 1000 50 0.6964611 +29 182.2425 186.12 1000 50 0.5409281 +30 186.12 189.9975 1000 50 0.5967945 +31 189.9975 193.875 1000 50 0.8312862 +32 193.875 197.7525 1000 50 0.7195672 +33 197.7525 201.63 1000 50 0.55450255 +34 201.63 205.5075 1000 50 0.82550025 +35 205.5075 209.385 1000 50 0.555556 +36 209.385 213.2625 1000 50 0.79875076 +37 217.14 221.01749999999998 1000 50 0.5114985 +38 221.0175 224.895 1000 50 0.5922659 +39 228.7725 232.65 1000 50 0.79470193 +40 236.5275 240.405 1000 50 0.7146309 +41 240.405 244.2825 1000 50 0.51558596 +42 244.2825 248.16 1000 50 0.6605355 +43 252.0375 255.915 1000 50 0.7161575 +44 259.7925 263.67 1000 50 0.5026317 +45 279.18 283.0575 1000 50 0.50510114 +46 283.0575 286.935 1000 50 0.5295541 +47 294.69 298.5675 1000 50 0.66191065 +48 298.5675 302.445 1000 50 0.53668475 +49 310.2 314.0775 1000 50 0.536443 +50 314.0775 317.955 1000 50 0.69419754 +51 321.8325 325.71 1000 50 0.8907195 +52 325.71 329.5875 1000 50 0.7217832 +53 341.22 345.0975 1000 50 0.72813106 +54 356.73 360.6075 1000 50 0.7966913 +55 360.6075 364.485 1000 50 0.77565074 +56 368.3625 372.24 1000 50 0.78230304 +57 379.995 383.8725 1000 50 0.90791637 +58 387.75 391.6275 1000 50 0.78818196 +59 407.1375 411.015 1000 50 0.56512576 +60 411.015 414.8925 1000 50 0.783721 +61 418.77 422.6475 1000 50 0.5145096 +62 426.525 430.4025 1000 50 0.8761922 +63 434.28 438.15749999999997 1000 50 0.99037606 +64 442.035 445.9125 1000 50 0.7135329 +65 449.79 453.6675 1000 50 0.5609837 +66 461.4225 465.3 1000 50 0.84182227 +67 465.3 469.1775 1000 50 0.53220767 +68 469.1775 473.055 1000 50 0.7535521 +69 476.9325 480.81 1000 50 0.7000552 +70 480.81 484.6875 1000 50 0.58097994 +71 531.2175 535.095 1000 50 0.63043374 +72 535.095 538.9725000000001 1000 50 0.5292059 +73 542.85 546.7275000000001 1000 50 0.844738 +74 546.7275 550.605 1000 50 0.70950085 +75 585.5025 589.3800000000001 1000 50 0.55160767 +76 597.135 601.0125 1000 50 0.59717137 +77 604.89 608.7675 1000 50 0.6721674 +78 612.645 616.5225 1000 50 0.73744607 +79 616.5225 620.4000000000001 1000 50 0.85781735 +80 620.4 624.2775 1000 50 0.8212439 +81 639.7875 643.6650000000001 1000 50 0.8521615 +82 651.42 655.2975 1000 50 0.6480294 +83 659.175 663.0525 1000 50 0.8732102 +84 666.93 670.8075 1000 50 0.60759103 +85 670.8075 674.6850000000001 1000 50 0.5716879 +86 682.44 686.3175000000001 1000 50 0.63920677 +87 686.3175 690.195 1000 50 0.90691763 +88 690.195 694.0725000000001 1000 50 0.7289464 +89 697.95 701.8275000000001 1000 50 0.68195206 +90 705.705 709.5825000000001 1000 50 0.62107044 +91 725.0925 728.97 1000 50 0.6056601 +92 756.1125 759.99 1000 50 0.57084507 +93 759.99 763.8675000000001 1000 50 0.5986245 +94 775.5 779.3775 1000 50 0.622423 +95 794.8875 798.7650000000001 1000 50 0.796743 +96 829.785 833.6625 1000 50 0.6442082 +97 841.4175 845.2950000000001 1000 50 0.69748026 +98 845.295 849.1725 1000 50 0.8385123 +99 849.1725 853.0500000000001 1000 50 0.8015727 +100 853.05 856.9275 1000 50 0.54521406 +101 856.9275 860.8050000000001 1000 50 0.6446113 +102 864.6825 868.5600000000001 1000 50 0.9316458 +103 872.4375 876.315 1000 50 0.6463912 +104 884.07 887.9475000000001 1000 50 0.5325708 +105 887.9475 891.825 1000 50 0.82848763 +106 911.2125 915.09 1000 50 0.7530191 +107 915.09 918.9675000000001 1000 50 0.9591456 +108 918.9675 922.845 1000 50 0.9492365 +109 949.9875 953.865 1000 50 0.6568841 +110 953.865 957.7425000000001 1000 50 0.6105807 +111 957.7425 961.62 1000 50 0.9963993 +112 965.4975 969.375 1000 50 0.5173471 +113 981.0075 984.8850000000001 1000 50 0.56910765 +114 984.885 988.7625 1000 50 0.71494573 +115 996.5175 1000.3950000000001 1000 50 0.6051485 +116 1008.15 1012.0275 1000 50 0.55952585 +117 1015.905 1019.7825 1000 50 0.8085142 +118 1035.2925 1039.17 1000 50 0.5480049 +119 1066.3125 1070.19 1000 50 0.52321947 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_16-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_16-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..c5790b437783d0ccbdc4ca305c1c66568d2c3e7e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_16-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,30 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 31.02 34.8975 1000 50 0.61401117 +2 38.775 42.652499999999996 1000 50 0.60576856 +3 42.6525 46.53 1000 50 0.72088796 +4 58.1625 62.04 1000 50 0.77215695 +5 65.9175 69.795 1000 50 0.77776074 +6 69.795 73.6725 1000 50 0.65006846 +7 81.4275 85.30499999999999 1000 50 0.7520118 +8 139.59 143.4675 1000 50 0.5838366 +9 151.2225 155.1 1000 50 0.5627387 +10 158.9775 162.855 1000 50 0.56952226 +11 170.61 174.4875 1000 50 0.8778307 +12 182.2425 186.12 1000 50 0.9861347 +13 193.875 197.7525 1000 50 0.6588753 +14 197.7525 201.63 1000 50 0.5826036 +15 224.895 228.7725 1000 50 0.7724162 +16 240.405 244.2825 1000 50 0.7511273 +17 248.16 252.0375 1000 50 0.56723607 +18 252.0375 255.915 1000 50 0.50730723 +19 259.7925 263.67 1000 50 0.765431 +20 275.3025 279.18 1000 50 0.55342793 +21 283.0575 286.935 1000 50 0.7251292 +22 306.3225 310.2 1000 50 0.51074433 +23 360.6075 364.485 1000 50 0.5603684 +24 368.3625 372.24 1000 50 0.7247534 +25 376.1175 379.995 1000 50 0.51360106 +26 399.3825 403.26 1000 50 0.94040257 +27 453.6675 457.545 1000 50 0.7454441 +28 500.1975 504.075 1000 50 0.5317263 +29 511.83 515.7075 1000 50 0.6351477 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_16-12-30_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_16-12-30_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5152ffb94f35f37bd452a22bc32ff04abc744499 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_16-12-30_annot_2022-11-30_01.txt @@ -0,0 +1,61 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.8623598 +2 11.6325 15.51 1000 50 0.5498252 +3 27.1425 31.02 1000 50 0.65734196 +4 31.02 34.8975 1000 50 0.5158115 +5 46.53 50.4075 1000 50 0.61581403 +6 50.4075 54.285 1000 50 0.925044 +7 58.1625 62.04 1000 50 0.6972477 +8 85.305 89.1825 1000 50 0.7765848 +9 96.9375 100.815 1000 50 0.98632205 +10 100.815 104.6925 1000 50 0.5665086 +11 104.6925 108.57 1000 50 0.5525539 +12 112.4475 116.325 1000 50 0.7980557 +13 124.08 127.9575 1000 50 0.76436526 +14 135.7125 139.59 1000 50 0.6631418 +15 155.1 158.9775 1000 50 0.6990143 +16 178.365 182.2425 1000 50 0.59034896 +17 193.875 197.7525 1000 50 0.5634882 +18 205.5075 209.385 1000 50 0.5759247 +19 236.5275 240.405 1000 50 0.76023644 +20 252.0375 255.915 1000 50 0.7023885 +21 263.67 267.5475 1000 50 0.5447359 +22 279.18 283.0575 1000 50 0.65373874 +23 283.0575 286.935 1000 50 0.6768123 +24 294.69 298.5675 1000 50 0.6711732 +25 314.0775 317.955 1000 50 0.52214396 +26 329.5875 333.465 1000 50 0.6641998 +27 345.0975 348.975 1000 50 0.7581462 +28 352.8525 356.73 1000 50 0.72727084 +29 356.73 360.6075 1000 50 0.7269376 +30 368.3625 372.24 1000 50 0.68783814 +31 407.1375 411.015 1000 50 0.7215899 +32 418.77 422.6475 1000 50 0.54897845 +33 434.28 438.15749999999997 1000 50 0.9294254 +34 461.4225 465.3 1000 50 0.66626436 +35 476.9325 480.81 1000 50 0.7030628 +36 480.81 484.6875 1000 50 0.5521604 +37 492.4425 496.32 1000 50 0.59556085 +38 504.075 507.9525 1000 50 0.58266294 +39 507.9525 511.83 1000 50 0.554668 +40 511.83 515.7075 1000 50 0.86433804 +41 519.585 523.4625000000001 1000 50 0.9836548 +42 542.85 546.7275000000001 1000 50 0.7762514 +43 558.36 562.2375000000001 1000 50 0.7150739 +44 562.2375 566.115 1000 50 0.95689857 +45 566.115 569.9925000000001 1000 50 0.81380844 +46 573.87 577.7475000000001 1000 50 0.50710326 +47 577.7475 581.625 1000 50 0.79163957 +48 581.625 585.5025 1000 50 0.50971305 +49 616.5225 620.4000000000001 1000 50 0.6514185 +50 635.91 639.7875 1000 50 0.66238177 +51 643.665 647.5425 1000 50 0.6994189 +52 659.175 663.0525 1000 50 0.575857 +53 686.3175 690.195 1000 50 0.76418275 +54 690.195 694.0725000000001 1000 50 0.72937423 +55 701.8275 705.705 1000 50 0.5927097 +56 709.5825 713.46 1000 50 0.8192186 +57 713.46 717.3375000000001 1000 50 0.7412073 +58 725.0925 728.97 1000 50 0.5058464 +59 736.725 740.6025000000001 1000 50 0.5267188 +60 740.6025 744.48 1000 50 0.9487158 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_17-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_17-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..11f75f78a800baddeabaeff53e688c29b3adf457 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_17-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,107 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.72313297 +2 15.51 19.3875 1000 50 0.62303776 +3 23.265 27.142500000000002 1000 50 0.56926036 +4 58.1625 62.04 1000 50 0.9839685 +5 96.9375 100.815 1000 50 0.84973836 +6 108.57 112.44749999999999 1000 50 0.7043596 +7 112.4475 116.325 1000 50 0.52420694 +8 116.325 120.2025 1000 50 0.94286174 +9 120.2025 124.08 1000 50 0.6283192 +10 127.9575 131.835 1000 50 0.5771211 +11 135.7125 139.59 1000 50 0.5076605 +12 143.4675 147.345 1000 50 0.6166033 +13 147.345 151.2225 1000 50 0.5428629 +14 151.2225 155.1 1000 50 0.7332334 +15 158.9775 162.855 1000 50 0.61925685 +16 178.365 182.2425 1000 50 0.5533984 +17 186.12 189.9975 1000 50 0.76820093 +18 189.9975 193.875 1000 50 0.70292705 +19 201.63 205.5075 1000 50 0.8239209 +20 224.895 228.7725 1000 50 0.52150553 +21 228.7725 232.65 1000 50 0.9565448 +22 232.65 236.5275 1000 50 0.8297949 +23 255.915 259.7925 1000 50 0.60745084 +24 263.67 267.5475 1000 50 0.6361682 +25 271.425 275.3025 1000 50 0.73403466 +26 279.18 283.0575 1000 50 0.5844377 +27 283.0575 286.935 1000 50 0.7752691 +28 290.8125 294.69 1000 50 0.51829207 +29 298.5675 302.445 1000 50 0.7459633 +30 310.2 314.0775 1000 50 0.53146714 +31 314.0775 317.955 1000 50 0.9258995 +32 321.8325 325.71 1000 50 0.6014168 +33 325.71 329.5875 1000 50 0.8432652 +34 329.5875 333.465 1000 50 0.71414953 +35 333.465 337.3425 1000 50 0.73048675 +36 337.3425 341.21999999999997 1000 50 0.6940056 +37 341.22 345.0975 1000 50 0.7134123 +38 345.0975 348.975 1000 50 0.6865059 +39 348.975 352.8525 1000 50 0.74317205 +40 352.8525 356.73 1000 50 0.5067241 +41 368.3625 372.24 1000 50 0.66322845 +42 372.24 376.1175 1000 50 0.76024246 +43 376.1175 379.995 1000 50 0.7113112 +44 383.8725 387.75 1000 50 0.6407765 +45 391.6275 395.505 1000 50 0.6121537 +46 395.505 399.3825 1000 50 0.6866766 +47 399.3825 403.26 1000 50 0.66283727 +48 407.1375 411.015 1000 50 0.7320581 +49 418.77 422.6475 1000 50 0.7908681 +50 426.525 430.4025 1000 50 0.6722809 +51 438.1575 442.035 1000 50 0.8516447 +52 453.6675 457.545 1000 50 0.73109454 +53 461.4225 465.3 1000 50 0.8198237 +54 469.1775 473.055 1000 50 0.6925662 +55 473.055 476.9325 1000 50 0.79295677 +56 476.9325 480.81 1000 50 0.9523081 +57 484.6875 488.565 1000 50 0.7009163 +58 496.32 500.1975 1000 50 0.6422835 +59 511.83 515.7075 1000 50 0.60644215 +60 531.2175 535.095 1000 50 0.5082028 +61 538.9725 542.85 1000 50 0.64017504 +62 554.4825 558.36 1000 50 0.65270025 +63 562.2375 566.115 1000 50 0.5150662 +64 566.115 569.9925000000001 1000 50 0.7354211 +65 573.87 577.7475000000001 1000 50 0.7111304 +66 577.7475 581.625 1000 50 0.6593215 +67 581.625 585.5025 1000 50 0.64690405 +68 585.5025 589.3800000000001 1000 50 0.70811677 +69 589.38 593.2575 1000 50 0.6385326 +70 593.2575 597.1350000000001 1000 50 0.7890089 +71 597.135 601.0125 1000 50 0.8810113 +72 601.0125 604.8900000000001 1000 50 0.70024294 +73 612.645 616.5225 1000 50 0.6498901 +74 624.2775 628.1550000000001 1000 50 0.75221497 +75 628.155 632.0325 1000 50 0.609504 +76 632.0325 635.9100000000001 1000 50 0.66689587 +77 635.91 639.7875 1000 50 0.7605617 +78 643.665 647.5425 1000 50 0.69597185 +79 659.175 663.0525 1000 50 0.5796708 +80 663.0525 666.9300000000001 1000 50 0.63081706 +81 666.93 670.8075 1000 50 0.735769 +82 674.685 678.5625 1000 50 0.6147804 +83 686.3175 690.195 1000 50 0.9179747 +84 690.195 694.0725000000001 1000 50 0.5513108 +85 694.0725 697.95 1000 50 0.7181291 +86 697.95 701.8275000000001 1000 50 0.53141004 +87 705.705 709.5825000000001 1000 50 0.64489925 +88 713.46 717.3375000000001 1000 50 0.60806143 +89 717.3375 721.215 1000 50 0.7884867 +90 721.215 725.0925000000001 1000 50 0.5867186 +91 725.0925 728.97 1000 50 0.54464626 +92 728.97 732.8475000000001 1000 50 0.7186024 +93 732.8475 736.725 1000 50 0.7579287 +94 736.725 740.6025000000001 1000 50 0.67826974 +95 740.6025 744.48 1000 50 0.9045078 +96 748.3575 752.235 1000 50 0.5613312 +97 752.235 756.1125000000001 1000 50 0.9985435 +98 763.8675 767.745 1000 50 0.90075135 +99 783.255 787.1325 1000 50 0.5885479 +100 787.1325 791.0100000000001 1000 50 0.90235037 +101 794.8875 798.7650000000001 1000 50 0.67257524 +102 798.765 802.6425 1000 50 0.5145617 +103 810.3975 814.2750000000001 1000 50 0.7883767 +104 814.275 818.1525 1000 50 0.9052929 +105 818.1525 822.0300000000001 1000 50 0.9311004 +106 845.295 849.1725 1000 50 0.5817283 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_17-17-50_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_17-17-50_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ce66aeb4cf492222523ac945c5bfee16ac81fe6a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_17-17-50_annot_2022-11-30_01.txt @@ -0,0 +1,54 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.7151706 +2 7.755 11.6325 1000 50 0.9336618 +3 15.51 19.3875 1000 50 0.997601 +4 19.3875 23.265 1000 50 0.9369509 +5 27.1425 31.02 1000 50 0.63042986 +6 31.02 34.8975 1000 50 0.8393692 +7 38.775 42.652499999999996 1000 50 0.7692873 +8 50.4075 54.285 1000 50 0.57623166 +9 58.1625 62.04 1000 50 0.60643554 +10 81.4275 85.30499999999999 1000 50 0.533287 +11 85.305 89.1825 1000 50 0.6651297 +12 93.06 96.9375 1000 50 0.8121973 +13 96.9375 100.815 1000 50 0.9233133 +14 104.6925 108.57 1000 50 0.80621356 +15 112.4475 116.325 1000 50 0.5313079 +16 116.325 120.2025 1000 50 0.57185924 +17 120.2025 124.08 1000 50 0.66584426 +18 131.835 135.7125 1000 50 0.8352003 +19 135.7125 139.59 1000 50 0.8349251 +20 147.345 151.2225 1000 50 0.84362686 +21 155.1 158.9775 1000 50 0.67372906 +22 162.855 166.7325 1000 50 0.96338296 +23 182.2425 186.12 1000 50 0.9982127 +24 189.9975 193.875 1000 50 0.6939958 +25 193.875 197.7525 1000 50 0.84161997 +26 205.5075 209.385 1000 50 0.886291 +27 209.385 213.2625 1000 50 0.5412316 +28 217.14 221.01749999999998 1000 50 0.9368893 +29 224.895 228.7725 1000 50 0.70064485 +30 236.5275 240.405 1000 50 0.5035306 +31 252.0375 255.915 1000 50 0.7609754 +32 259.7925 263.67 1000 50 0.50310725 +33 263.67 267.5475 1000 50 0.61766785 +34 267.5475 271.425 1000 50 0.7725206 +35 286.935 290.8125 1000 50 0.82394856 +36 290.8125 294.69 1000 50 0.5573622 +37 298.5675 302.445 1000 50 0.5058287 +38 302.445 306.3225 1000 50 0.50619453 +39 317.955 321.8325 1000 50 0.655694 +40 321.8325 325.71 1000 50 0.8026398 +41 333.465 337.3425 1000 50 0.5111563 +42 337.3425 341.21999999999997 1000 50 0.5088487 +43 341.22 345.0975 1000 50 0.57693297 +44 368.3625 372.24 1000 50 0.6858224 +45 372.24 376.1175 1000 50 0.57178247 +46 376.1175 379.995 1000 50 0.57475114 +47 391.6275 395.505 1000 50 0.7373265 +48 399.3825 403.26 1000 50 0.80388784 +49 403.26 407.1375 1000 50 0.5666231 +50 407.1375 411.015 1000 50 0.7494617 +51 418.77 422.6475 1000 50 0.9918452 +52 426.525 430.4025 1000 50 0.5000152 +53 430.4025 434.28 1000 50 0.9633607 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_18-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_18-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f2e11c64e7469e75da80b68bb1ea97f54b868d3c --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_18-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,133 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.5884997 +2 7.755 11.6325 1000 50 0.50653815 +3 27.1425 31.02 1000 50 0.69669294 +4 46.53 50.4075 1000 50 0.76814044 +5 50.4075 54.285 1000 50 0.5373838 +6 54.285 58.162499999999994 1000 50 0.5671981 +7 62.04 65.9175 1000 50 0.7412909 +8 65.9175 69.795 1000 50 0.5200424 +9 69.795 73.6725 1000 50 0.5829965 +10 73.6725 77.55 1000 50 0.66490513 +11 77.55 81.4275 1000 50 0.610656 +12 85.305 89.1825 1000 50 0.60839576 +13 89.1825 93.06 1000 50 0.76402336 +14 96.9375 100.815 1000 50 0.9831942 +15 100.815 104.6925 1000 50 0.8115027 +16 104.6925 108.57 1000 50 0.6392307 +17 108.57 112.44749999999999 1000 50 0.7182028 +18 112.4475 116.325 1000 50 0.91320086 +19 127.9575 131.835 1000 50 0.8567597 +20 135.7125 139.59 1000 50 0.7809054 +21 139.59 143.4675 1000 50 0.70302194 +22 143.4675 147.345 1000 50 0.68909615 +23 151.2225 155.1 1000 50 0.63741565 +24 158.9775 162.855 1000 50 0.87204635 +25 162.855 166.7325 1000 50 0.81207037 +26 178.365 182.2425 1000 50 0.7622539 +27 201.63 205.5075 1000 50 0.54817945 +28 213.2625 217.14 1000 50 0.50225073 +29 217.14 221.01749999999998 1000 50 0.76886606 +30 232.65 236.5275 1000 50 0.5242437 +31 236.5275 240.405 1000 50 0.5091067 +32 240.405 244.2825 1000 50 0.793512 +33 248.16 252.0375 1000 50 0.7232772 +34 255.915 259.7925 1000 50 0.6435082 +35 283.0575 286.935 1000 50 0.72951096 +36 286.935 290.8125 1000 50 0.5794326 +37 290.8125 294.69 1000 50 0.56906164 +38 310.2 314.0775 1000 50 0.58723706 +39 314.0775 317.955 1000 50 0.8751852 +40 333.465 337.3425 1000 50 0.59723926 +41 337.3425 341.21999999999997 1000 50 0.693397 +42 345.0975 348.975 1000 50 0.663914 +43 352.8525 356.73 1000 50 0.6801272 +44 356.73 360.6075 1000 50 0.7159396 +45 360.6075 364.485 1000 50 0.88358533 +46 364.485 368.3625 1000 50 0.5045744 +47 387.75 391.6275 1000 50 0.83253187 +48 414.8925 418.77 1000 50 0.5093938 +49 422.6475 426.525 1000 50 0.7310244 +50 434.28 438.15749999999997 1000 50 0.52409834 +51 442.035 445.9125 1000 50 0.6429421 +52 445.9125 449.79 1000 50 0.56948805 +53 449.79 453.6675 1000 50 0.8433786 +54 465.3 469.1775 1000 50 0.7748878 +55 469.1775 473.055 1000 50 0.5803884 +56 476.9325 480.81 1000 50 0.60157454 +57 484.6875 488.565 1000 50 0.52953327 +58 496.32 500.1975 1000 50 0.68174344 +59 504.075 507.9525 1000 50 0.7141572 +60 507.9525 511.83 1000 50 0.65286267 +61 511.83 515.7075 1000 50 0.5260344 +62 523.4625 527.34 1000 50 0.58706194 +63 535.095 538.9725000000001 1000 50 0.58439225 +64 538.9725 542.85 1000 50 0.8051298 +65 573.87 577.7475000000001 1000 50 0.565663 +66 589.38 593.2575 1000 50 0.5419262 +67 593.2575 597.1350000000001 1000 50 0.75095034 +68 604.89 608.7675 1000 50 0.8518244 +69 616.5225 620.4000000000001 1000 50 0.7746261 +70 624.2775 628.1550000000001 1000 50 0.67506754 +71 632.0325 635.9100000000001 1000 50 0.59436125 +72 635.91 639.7875 1000 50 0.8042383 +73 639.7875 643.6650000000001 1000 50 0.54939795 +74 655.2975 659.1750000000001 1000 50 0.65174 +75 659.175 663.0525 1000 50 0.52990854 +76 663.0525 666.9300000000001 1000 50 0.6798714 +77 666.93 670.8075 1000 50 0.5833941 +78 670.8075 674.6850000000001 1000 50 0.81767595 +79 697.95 701.8275000000001 1000 50 0.5658235 +80 701.8275 705.705 1000 50 0.56632596 +81 705.705 709.5825000000001 1000 50 0.7024675 +82 709.5825 713.46 1000 50 0.86664885 +83 721.215 725.0925000000001 1000 50 0.5615315 +84 725.0925 728.97 1000 50 0.72583646 +85 740.6025 744.48 1000 50 0.74902004 +86 744.48 748.3575000000001 1000 50 0.7009303 +87 752.235 756.1125000000001 1000 50 0.98480207 +88 756.1125 759.99 1000 50 0.9288755 +89 759.99 763.8675000000001 1000 50 0.93638104 +90 767.745 771.6225000000001 1000 50 0.6907353 +91 771.6225 775.5 1000 50 0.97690976 +92 787.1325 791.0100000000001 1000 50 0.6791876 +93 791.01 794.8875 1000 50 0.9517113 +94 798.765 802.6425 1000 50 0.69274026 +95 810.3975 814.2750000000001 1000 50 0.84429723 +96 814.275 818.1525 1000 50 0.5319262 +97 818.1525 822.0300000000001 1000 50 0.6492478 +98 825.9075 829.7850000000001 1000 50 0.80420274 +99 833.6625 837.5400000000001 1000 50 0.9684323 +100 841.4175 845.2950000000001 1000 50 0.7953703 +101 849.1725 853.0500000000001 1000 50 0.87590986 +102 853.05 856.9275 1000 50 0.5460055 +103 856.9275 860.8050000000001 1000 50 0.6374886 +104 864.6825 868.5600000000001 1000 50 0.7855777 +105 872.4375 876.315 1000 50 0.93195975 +106 884.07 887.9475000000001 1000 50 0.6890069 +107 887.9475 891.825 1000 50 0.85539246 +108 895.7025 899.58 1000 50 0.66740996 +109 903.4575 907.335 1000 50 0.73012084 +110 907.335 911.2125000000001 1000 50 0.760633 +111 911.2125 915.09 1000 50 0.63903785 +112 915.09 918.9675000000001 1000 50 0.52684325 +113 938.355 942.2325000000001 1000 50 0.68887705 +114 946.11 949.9875000000001 1000 50 0.78153825 +115 977.13 981.0075 1000 50 0.6165094 +116 981.0075 984.8850000000001 1000 50 0.5194945 +117 984.885 988.7625 1000 50 0.7079141 +118 988.7625 992.6400000000001 1000 50 0.50322783 +119 1004.2725 1008.1500000000001 1000 50 0.7409233 +120 1027.5375 1031.415 1000 50 0.9865302 +121 1035.2925 1039.17 1000 50 0.6882544 +122 1039.17 1043.0475000000001 1000 50 0.9008086 +123 1054.68 1058.5575000000001 1000 50 0.60192394 +124 1058.5575 1062.435 1000 50 0.5573567 +125 1070.19 1074.0675 1000 50 0.6806764 +126 1077.945 1081.8225 1000 50 0.50416297 +127 1089.5775 1093.4550000000002 1000 50 0.5138191 +128 1101.21 1105.0875 1000 50 0.7585964 +129 1112.8425 1116.72 1000 50 0.64526176 +130 1132.23 1136.1075 1000 50 0.59873235 +131 1136.1075 1139.9850000000001 1000 50 0.5210046 +132 1167.1275 1171.005 1000 50 0.50046736 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_18-23-08_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_18-23-08_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e7c1c4ac0db796571c6846d9cfee77080ccaeefd --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_18-23-08_annot_2022-11-30_01.txt @@ -0,0 +1,20 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.5515488 +2 3.8775 7.755 1000 50 0.76447 +3 7.755 11.6325 1000 50 0.610236 +4 11.6325 15.51 1000 50 0.5195258 +5 15.51 19.3875 1000 50 0.9115762 +6 31.02 34.8975 1000 50 0.66726995 +7 38.775 42.652499999999996 1000 50 0.55297816 +8 42.6525 46.53 1000 50 0.6657635 +9 46.53 50.4075 1000 50 0.5374608 +10 54.285 58.162499999999994 1000 50 0.63415766 +11 58.1625 62.04 1000 50 0.78384435 +12 62.04 65.9175 1000 50 0.59127533 +13 73.6725 77.55 1000 50 0.5526467 +14 77.55 81.4275 1000 50 0.5287894 +15 85.305 89.1825 1000 50 0.5766876 +16 96.9375 100.815 1000 50 0.6057171 +17 100.815 104.6925 1000 50 0.56351036 +18 104.6925 108.57 1000 50 0.60789424 +19 112.4475 116.325 1000 50 0.5532303 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_19-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_19-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..43107297751438edd6ab687324a8793fc2b9adb6 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_19-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,71 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.9410296 +2 19.3875 23.265 1000 50 0.7614539 +3 27.1425 31.02 1000 50 0.6356264 +4 58.1625 62.04 1000 50 0.6263864 +5 85.305 89.1825 1000 50 0.5175344 +6 151.2225 155.1 1000 50 0.56395036 +7 158.9775 162.855 1000 50 0.508639 +8 162.855 166.7325 1000 50 0.7349272 +9 170.61 174.4875 1000 50 0.51642466 +10 182.2425 186.12 1000 50 0.56479245 +11 201.63 205.5075 1000 50 0.84357834 +12 213.2625 217.14 1000 50 0.64971125 +13 228.7725 232.65 1000 50 0.980604 +14 255.915 259.7925 1000 50 0.5415795 +15 259.7925 263.67 1000 50 0.6278432 +16 263.67 267.5475 1000 50 0.52285296 +17 333.465 337.3425 1000 50 0.6279442 +18 383.8725 387.75 1000 50 0.963418 +19 387.75 391.6275 1000 50 0.69595605 +20 407.1375 411.015 1000 50 0.98608464 +21 453.6675 457.545 1000 50 0.56261176 +22 465.3 469.1775 1000 50 0.616781 +23 473.055 476.9325 1000 50 0.62607515 +24 476.9325 480.81 1000 50 0.70554626 +25 515.7075 519.585 1000 50 0.9221918 +26 546.7275 550.605 1000 50 0.6246353 +27 566.115 569.9925000000001 1000 50 0.70052564 +28 589.38 593.2575 1000 50 0.62090576 +29 593.2575 597.1350000000001 1000 50 0.8574173 +30 597.135 601.0125 1000 50 0.94213754 +31 608.7675 612.6450000000001 1000 50 0.81812364 +32 612.645 616.5225 1000 50 0.65919983 +33 616.5225 620.4000000000001 1000 50 0.62885386 +34 624.2775 628.1550000000001 1000 50 0.6695908 +35 628.155 632.0325 1000 50 0.9652983 +36 655.2975 659.1750000000001 1000 50 0.95035416 +37 674.685 678.5625 1000 50 0.64013946 +38 713.46 717.3375000000001 1000 50 0.9386395 +39 725.0925 728.97 1000 50 0.80128074 +40 767.745 771.6225000000001 1000 50 0.5458302 +41 798.765 802.6425 1000 50 0.7998228 +42 829.785 833.6625 1000 50 0.65884095 +43 849.1725 853.0500000000001 1000 50 0.7456878 +44 860.805 864.6825 1000 50 0.5162137 +45 903.4575 907.335 1000 50 0.6136034 +46 911.2125 915.09 1000 50 0.5027039 +47 1012.0275 1015.9050000000001 1000 50 0.6300566 +48 1019.7825 1023.6600000000001 1000 50 0.5405197 +49 1023.66 1027.5375 1000 50 0.5830959 +50 1043.0475 1046.925 1000 50 0.68910724 +51 1050.8025 1054.68 1000 50 0.7452018 +52 1074.0675 1077.9450000000002 1000 50 0.52720356 +53 1085.7 1089.5775 1000 50 0.9539307 +54 1101.21 1105.0875 1000 50 0.62101614 +55 1202.025 1205.9025000000001 1000 50 0.6469909 +56 1209.78 1213.6575 1000 50 0.64801884 +57 1221.4125 1225.29 1000 50 0.649529 +58 1233.045 1236.9225000000001 1000 50 0.7530734 +59 1236.9225 1240.8 1000 50 0.62693524 +60 1244.6775 1248.555 1000 50 0.95222574 +61 1252.4325 1256.31 1000 50 0.53902495 +62 1287.33 1291.2075 1000 50 0.5114584 +63 1337.7375 1341.615 1000 50 0.94309473 +64 1349.37 1353.2475 1000 50 0.56566626 +65 1361.0025 1364.88 1000 50 0.73311114 +66 1403.655 1407.5325 1000 50 0.8440487 +67 1415.2875 1419.165 1000 50 0.62968886 +68 1426.92 1430.7975000000001 1000 50 0.62627643 +69 1434.675 1438.5525 1000 50 0.9262328 +70 1438.5525 1442.43 1000 50 0.98123986 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_20-01-53_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_20-01-53_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..901370c3278943ebbe1d9e84e9fe5c9d409bf4d0 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_20-01-53_annot_2022-11-30_01.txt @@ -0,0 +1,71 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.5486426 +2 62.04 65.9175 1000 50 0.7801144 +3 89.1825 93.06 1000 50 0.87784123 +4 93.06 96.9375 1000 50 0.74490005 +5 112.4475 116.325 1000 50 0.73715466 +6 116.325 120.2025 1000 50 0.7378993 +7 213.2625 217.14 1000 50 0.51686037 +8 317.955 321.8325 1000 50 0.561424 +9 325.71 329.5875 1000 50 0.5237791 +10 337.3425 341.21999999999997 1000 50 0.5303051 +11 348.975 352.8525 1000 50 0.6632138 +12 387.75 391.6275 1000 50 0.5926325 +13 391.6275 395.505 1000 50 0.9972036 +14 453.6675 457.545 1000 50 0.6826389 +15 457.545 461.4225 1000 50 0.8047735 +16 469.1775 473.055 1000 50 0.90906507 +17 527.34 531.2175000000001 1000 50 0.5287447 +18 538.9725 542.85 1000 50 0.6019394 +19 569.9925 573.87 1000 50 0.84216815 +20 612.645 616.5225 1000 50 0.681611 +21 670.8075 674.6850000000001 1000 50 0.7084054 +22 690.195 694.0725000000001 1000 50 0.57699347 +23 694.0725 697.95 1000 50 0.5780801 +24 728.97 732.8475000000001 1000 50 0.8765827 +25 736.725 740.6025000000001 1000 50 0.5634141 +26 748.3575 752.235 1000 50 0.5339183 +27 759.99 763.8675000000001 1000 50 0.91957974 +28 767.745 771.6225000000001 1000 50 0.7440713 +29 825.9075 829.7850000000001 1000 50 0.50714415 +30 841.4175 845.2950000000001 1000 50 0.53169996 +31 849.1725 853.0500000000001 1000 50 0.55403984 +32 856.9275 860.8050000000001 1000 50 0.6238548 +33 872.4375 876.315 1000 50 0.590971 +34 884.07 887.9475000000001 1000 50 0.62437516 +35 895.7025 899.58 1000 50 0.5170193 +36 899.58 903.4575000000001 1000 50 0.7223143 +37 907.335 911.2125000000001 1000 50 0.6713456 +38 915.09 918.9675000000001 1000 50 0.88908416 +39 922.845 926.7225000000001 1000 50 0.5059233 +40 930.6 934.4775000000001 1000 50 0.7985907 +41 938.355 942.2325000000001 1000 50 0.7594091 +42 973.2525 977.1300000000001 1000 50 0.8359536 +43 984.885 988.7625 1000 50 0.5559953 +44 992.64 996.5175 1000 50 0.7081633 +45 1004.2725 1008.1500000000001 1000 50 0.5031575 +46 1012.0275 1015.9050000000001 1000 50 0.7471619 +47 1015.905 1019.7825 1000 50 0.6147429 +48 1019.7825 1023.6600000000001 1000 50 0.65291196 +49 1027.5375 1031.415 1000 50 0.50166255 +50 1039.17 1043.0475000000001 1000 50 0.86819 +51 1058.5575 1062.435 1000 50 0.54272836 +52 1089.5775 1093.4550000000002 1000 50 0.8031085 +53 1093.455 1097.3325 1000 50 0.6925922 +54 1105.0875 1108.9650000000001 1000 50 0.66072756 +55 1108.965 1112.8425 1000 50 0.517781 +56 1112.8425 1116.72 1000 50 0.5007114 +57 1124.475 1128.3525 1000 50 0.6231256 +58 1136.1075 1139.9850000000001 1000 50 0.50640655 +59 1147.74 1151.6175 1000 50 0.58842 +60 1151.6175 1155.4950000000001 1000 50 0.5967792 +61 1174.8825 1178.76 1000 50 0.8253421 +62 1205.9025 1209.78 1000 50 0.5324625 +63 1217.535 1221.4125000000001 1000 50 0.72927344 +64 1221.4125 1225.29 1000 50 0.7153671 +65 1233.045 1236.9225000000001 1000 50 0.98452353 +66 1264.065 1267.9425 1000 50 0.62211156 +67 1314.4725 1318.3500000000001 1000 50 0.70730823 +68 1326.105 1329.9825 1000 50 0.9060017 +69 1337.7375 1341.615 1000 50 0.5851881 +70 1388.145 1392.0225 1000 50 0.5181244 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_21-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_21-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b81f5c98270bd38ed042c648016c87399ea70caf --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_21-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,18 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.62661755 +2 34.8975 38.775 1000 50 0.5982262 +3 50.4075 54.285 1000 50 0.75184584 +4 62.04 65.9175 1000 50 0.51272786 +5 69.795 73.6725 1000 50 0.50039846 +6 116.325 120.2025 1000 50 0.78555846 +7 127.9575 131.835 1000 50 0.69839126 +8 131.835 135.7125 1000 50 0.74929756 +9 135.7125 139.59 1000 50 0.6191727 +10 139.59 143.4675 1000 50 0.7850979 +11 143.4675 147.345 1000 50 0.54301745 +12 151.2225 155.1 1000 50 0.9721504 +13 155.1 158.9775 1000 50 0.7016561 +14 178.365 182.2425 1000 50 0.6015871 +15 189.9975 193.875 1000 50 0.72545916 +16 201.63 205.5075 1000 50 0.81372696 +17 205.5075 209.385 1000 50 0.81856835 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_21-07-07_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_21-07-07_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..79260cc408778cf3b7c10b81e778e6d0ec76e09c --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_21-07-07_annot_2022-11-30_01.txt @@ -0,0 +1,98 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.75846064 +2 15.51 19.3875 1000 50 0.72929776 +3 19.3875 23.265 1000 50 0.7109911 +4 23.265 27.142500000000002 1000 50 0.9645166 +5 31.02 34.8975 1000 50 0.6518035 +6 38.775 42.652499999999996 1000 50 0.52765197 +7 50.4075 54.285 1000 50 0.55182433 +8 69.795 73.6725 1000 50 0.64502937 +9 77.55 81.4275 1000 50 0.5573677 +10 96.9375 100.815 1000 50 0.99807274 +11 104.6925 108.57 1000 50 0.92804027 +12 116.325 120.2025 1000 50 0.54385144 +13 143.4675 147.345 1000 50 0.7287547 +14 158.9775 162.855 1000 50 0.6596044 +15 178.365 182.2425 1000 50 0.5009857 +16 201.63 205.5075 1000 50 0.6446979 +17 221.0175 224.895 1000 50 0.5860306 +18 232.65 236.5275 1000 50 0.7025015 +19 240.405 244.2825 1000 50 0.81312364 +20 244.2825 248.16 1000 50 0.66505057 +21 255.915 259.7925 1000 50 0.63039696 +22 259.7925 263.67 1000 50 0.77447367 +23 263.67 267.5475 1000 50 0.569194 +24 286.935 290.8125 1000 50 0.5165836 +25 294.69 298.5675 1000 50 0.5312128 +26 306.3225 310.2 1000 50 0.50807965 +27 321.8325 325.71 1000 50 0.50314 +28 329.5875 333.465 1000 50 0.65810174 +29 337.3425 341.21999999999997 1000 50 0.6548034 +30 341.22 345.0975 1000 50 0.8329996 +31 348.975 352.8525 1000 50 0.53718287 +32 360.6075 364.485 1000 50 0.5940222 +33 379.995 383.8725 1000 50 0.7008401 +34 391.6275 395.505 1000 50 0.5825856 +35 399.3825 403.26 1000 50 0.548324 +36 407.1375 411.015 1000 50 0.66291064 +37 411.015 414.8925 1000 50 0.61739665 +38 426.525 430.4025 1000 50 0.8825501 +39 430.4025 434.28 1000 50 0.7154514 +40 434.28 438.15749999999997 1000 50 0.541688 +41 449.79 453.6675 1000 50 0.585675 +42 457.545 461.4225 1000 50 0.7738357 +43 469.1775 473.055 1000 50 0.5402903 +44 496.32 500.1975 1000 50 0.81689125 +45 504.075 507.9525 1000 50 0.5683649 +46 511.83 515.7075 1000 50 0.6604228 +47 519.585 523.4625000000001 1000 50 0.64014465 +48 531.2175 535.095 1000 50 0.5160306 +49 538.9725 542.85 1000 50 0.77827317 +50 573.87 577.7475000000001 1000 50 0.60347927 +51 597.135 601.0125 1000 50 0.656926 +52 604.89 608.7675 1000 50 0.68722105 +53 639.7875 643.6650000000001 1000 50 0.62828577 +54 643.665 647.5425 1000 50 0.85125214 +55 659.175 663.0525 1000 50 0.5183843 +56 690.195 694.0725000000001 1000 50 0.8147817 +57 694.0725 697.95 1000 50 0.55249786 +58 697.95 701.8275000000001 1000 50 0.5071778 +59 701.8275 705.705 1000 50 0.8381644 +60 705.705 709.5825000000001 1000 50 0.5157061 +61 721.215 725.0925000000001 1000 50 0.61840934 +62 725.0925 728.97 1000 50 0.660804 +63 779.3775 783.2550000000001 1000 50 0.96748227 +64 787.1325 791.0100000000001 1000 50 0.55404294 +65 798.765 802.6425 1000 50 0.5888226 +66 802.6425 806.5200000000001 1000 50 0.6884739 +67 810.3975 814.2750000000001 1000 50 0.50424397 +68 814.275 818.1525 1000 50 0.5143001 +69 822.03 825.9075 1000 50 0.66132003 +70 825.9075 829.7850000000001 1000 50 0.57102305 +71 829.785 833.6625 1000 50 0.6092726 +72 841.4175 845.2950000000001 1000 50 0.5317084 +73 845.295 849.1725 1000 50 0.7907201 +74 849.1725 853.0500000000001 1000 50 0.6905075 +75 856.9275 860.8050000000001 1000 50 0.7468256 +76 872.4375 876.315 1000 50 0.5479774 +77 880.1925 884.07 1000 50 0.52303684 +78 895.7025 899.58 1000 50 0.8447631 +79 899.58 903.4575000000001 1000 50 0.5299542 +80 907.335 911.2125000000001 1000 50 0.68369246 +81 911.2125 915.09 1000 50 0.8106415 +82 926.7225 930.6 1000 50 0.65797627 +83 946.11 949.9875000000001 1000 50 0.55580133 +84 949.9875 953.865 1000 50 0.6233945 +85 953.865 957.7425000000001 1000 50 0.5215547 +86 973.2525 977.1300000000001 1000 50 0.79806095 +87 984.885 988.7625 1000 50 0.61617243 +88 992.64 996.5175 1000 50 0.55430263 +89 996.5175 1000.3950000000001 1000 50 0.80666447 +90 1023.66 1027.5375 1000 50 0.5644292 +91 1031.415 1035.2925 1000 50 0.86388093 +92 1039.17 1043.0475000000001 1000 50 0.509356 +93 1050.8025 1054.68 1000 50 0.78167444 +94 1058.5575 1062.435 1000 50 0.54337204 +95 1066.3125 1070.19 1000 50 0.68587655 +96 1070.19 1074.0675 1000 50 0.6167649 +97 1074.0675 1077.9450000000002 1000 50 0.5923071 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_22-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_22-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e8ed0e1e97ea0da4d0ecd3fc2ae861e26c56c14d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_22-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,40 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.60369843 +2 27.1425 31.02 1000 50 0.6448425 +3 58.1625 62.04 1000 50 0.78960687 +4 69.795 73.6725 1000 50 0.51562804 +5 73.6725 77.55 1000 50 0.72231823 +6 85.305 89.1825 1000 50 0.9422418 +7 93.06 96.9375 1000 50 0.84431183 +8 100.815 104.6925 1000 50 0.65178984 +9 116.325 120.2025 1000 50 0.55655676 +10 120.2025 124.08 1000 50 0.5074354 +11 135.7125 139.59 1000 50 0.51209414 +12 139.59 143.4675 1000 50 0.5256862 +13 143.4675 147.345 1000 50 0.6352179 +14 147.345 151.2225 1000 50 0.85485834 +15 170.61 174.4875 1000 50 0.550754 +16 182.2425 186.12 1000 50 0.5252737 +17 193.875 197.7525 1000 50 0.5725798 +18 201.63 205.5075 1000 50 0.7793709 +19 209.385 213.2625 1000 50 0.65335715 +20 213.2625 217.14 1000 50 0.6165973 +21 221.0175 224.895 1000 50 0.684863 +22 240.405 244.2825 1000 50 0.7581086 +23 275.3025 279.18 1000 50 0.6059059 +24 279.18 283.0575 1000 50 0.67057484 +25 298.5675 302.445 1000 50 0.7036671 +26 302.445 306.3225 1000 50 0.62505454 +27 317.955 321.8325 1000 50 0.9983348 +28 360.6075 364.485 1000 50 0.86161023 +29 364.485 368.3625 1000 50 0.50517464 +30 368.3625 372.24 1000 50 0.71999955 +31 383.8725 387.75 1000 50 0.68459684 +32 407.1375 411.015 1000 50 0.66997796 +33 418.77 422.6475 1000 50 0.6018292 +34 422.6475 426.525 1000 50 0.51487076 +35 434.28 438.15749999999997 1000 50 0.5036762 +36 438.1575 442.035 1000 50 0.72788066 +37 442.035 445.9125 1000 50 0.6682164 +38 469.1775 473.055 1000 50 0.5636399 +39 484.6875 488.565 1000 50 0.6171918 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_22-15-48_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_22-15-48_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a8fe9d4db2aa7cff7131dd1f42d6b77dadd17b53 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_22-15-48_annot_2022-11-30_01.txt @@ -0,0 +1,49 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.6049239 +2 15.51 19.3875 1000 50 0.50670314 +3 19.3875 23.265 1000 50 0.7277773 +4 46.53 50.4075 1000 50 0.7727369 +5 65.9175 69.795 1000 50 0.78158844 +6 93.06 96.9375 1000 50 0.7498069 +7 100.815 104.6925 1000 50 0.5852393 +8 104.6925 108.57 1000 50 0.65850675 +9 116.325 120.2025 1000 50 0.63834465 +10 124.08 127.9575 1000 50 0.9207017 +11 135.7125 139.59 1000 50 0.50563216 +12 151.2225 155.1 1000 50 0.64120305 +13 170.61 174.4875 1000 50 0.80643487 +14 178.365 182.2425 1000 50 0.5656285 +15 193.875 197.7525 1000 50 0.7117966 +16 205.5075 209.385 1000 50 0.59890985 +17 213.2625 217.14 1000 50 0.525195 +18 221.0175 224.895 1000 50 0.6424915 +19 224.895 228.7725 1000 50 0.5865758 +20 232.65 236.5275 1000 50 0.73943555 +21 244.2825 248.16 1000 50 0.5235371 +22 248.16 252.0375 1000 50 0.7402977 +23 263.67 267.5475 1000 50 0.8223762 +24 283.0575 286.935 1000 50 0.61697906 +25 286.935 290.8125 1000 50 0.7412775 +26 294.69 298.5675 1000 50 0.64338124 +27 317.955 321.8325 1000 50 0.5607571 +28 337.3425 341.21999999999997 1000 50 0.5716709 +29 379.995 383.8725 1000 50 0.67243147 +30 387.75 391.6275 1000 50 0.6909609 +31 391.6275 395.505 1000 50 0.56112117 +32 411.015 414.8925 1000 50 0.5002114 +33 414.8925 418.77 1000 50 0.7062785 +34 418.77 422.6475 1000 50 0.61037326 +35 426.525 430.4025 1000 50 0.50216067 +36 434.28 438.15749999999997 1000 50 0.69430673 +37 438.1575 442.035 1000 50 0.72789043 +38 442.035 445.9125 1000 50 0.8648554 +39 453.6675 457.545 1000 50 0.7182998 +40 461.4225 465.3 1000 50 0.58182967 +41 469.1775 473.055 1000 50 0.83367956 +42 476.9325 480.81 1000 50 0.9531348 +43 496.32 500.1975 1000 50 0.6973652 +44 504.075 507.9525 1000 50 0.52920383 +45 519.585 523.4625000000001 1000 50 0.50795126 +46 523.4625 527.34 1000 50 0.7858632 +47 531.2175 535.095 1000 50 0.659166 +48 538.9725 542.85 1000 50 0.6582361 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_23-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_23-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..57c384e31b5bde785e388c7a290b359f6ce696c9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_23-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,78 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 31.02 34.8975 1000 50 0.52522117 +2 34.8975 38.775 1000 50 0.5498067 +3 38.775 42.652499999999996 1000 50 0.54130083 +4 54.285 58.162499999999994 1000 50 0.5208378 +5 73.6725 77.55 1000 50 0.6917837 +6 77.55 81.4275 1000 50 0.61683136 +7 85.305 89.1825 1000 50 0.6992499 +8 108.57 112.44749999999999 1000 50 0.5601237 +9 131.835 135.7125 1000 50 0.5144514 +10 158.9775 162.855 1000 50 0.76666343 +11 166.7325 170.60999999999999 1000 50 0.89850384 +12 170.61 174.4875 1000 50 0.5333796 +13 197.7525 201.63 1000 50 0.77018136 +14 232.65 236.5275 1000 50 0.5212896 +15 263.67 267.5475 1000 50 0.65556115 +16 267.5475 271.425 1000 50 0.5852453 +17 275.3025 279.18 1000 50 0.80954623 +18 279.18 283.0575 1000 50 0.5700486 +19 294.69 298.5675 1000 50 0.6516681 +20 314.0775 317.955 1000 50 0.5498179 +21 321.8325 325.71 1000 50 0.7993399 +22 333.465 337.3425 1000 50 0.7912519 +23 337.3425 341.21999999999997 1000 50 0.5524939 +24 345.0975 348.975 1000 50 0.753252 +25 352.8525 356.73 1000 50 0.7513337 +26 360.6075 364.485 1000 50 0.6070012 +27 364.485 368.3625 1000 50 0.66273385 +28 387.75 391.6275 1000 50 0.6658664 +29 395.505 399.3825 1000 50 0.7144572 +30 399.3825 403.26 1000 50 0.84166056 +31 403.26 407.1375 1000 50 0.6022957 +32 411.015 414.8925 1000 50 0.62082624 +33 414.8925 418.77 1000 50 0.6051007 +34 422.6475 426.525 1000 50 0.91975904 +35 445.9125 449.79 1000 50 0.6854211 +36 457.545 461.4225 1000 50 0.8306631 +37 465.3 469.1775 1000 50 0.6942407 +38 469.1775 473.055 1000 50 0.5399528 +39 476.9325 480.81 1000 50 0.903296 +40 492.4425 496.32 1000 50 0.5313413 +41 507.9525 511.83 1000 50 0.66411984 +42 511.83 515.7075 1000 50 0.7537636 +43 535.095 538.9725000000001 1000 50 0.7199351 +44 542.85 546.7275000000001 1000 50 0.5143732 +45 550.605 554.4825000000001 1000 50 0.53612334 +46 562.2375 566.115 1000 50 0.94219565 +47 573.87 577.7475000000001 1000 50 0.5896209 +48 585.5025 589.3800000000001 1000 50 0.77931494 +49 597.135 601.0125 1000 50 0.7954751 +50 620.4 624.2775 1000 50 0.56145984 +51 628.155 632.0325 1000 50 0.79985505 +52 651.42 655.2975 1000 50 0.861008 +53 659.175 663.0525 1000 50 0.9402243 +54 701.8275 705.705 1000 50 0.9024448 +55 713.46 717.3375000000001 1000 50 0.6060032 +56 725.0925 728.97 1000 50 0.61669 +57 736.725 740.6025000000001 1000 50 0.84471065 +58 771.6225 775.5 1000 50 0.5360174 +59 775.5 779.3775 1000 50 0.57400936 +60 798.765 802.6425 1000 50 0.7223486 +61 806.52 810.3975 1000 50 0.68880504 +62 833.6625 837.5400000000001 1000 50 0.50751424 +63 837.54 841.4175 1000 50 0.78080046 +64 845.295 849.1725 1000 50 0.60131913 +65 856.9275 860.8050000000001 1000 50 0.6043593 +66 864.6825 868.5600000000001 1000 50 0.74851966 +67 876.315 880.1925000000001 1000 50 0.652999 +68 891.825 895.7025000000001 1000 50 0.6102758 +69 899.58 903.4575000000001 1000 50 0.8296485 +70 907.335 911.2125000000001 1000 50 0.54480404 +71 911.2125 915.09 1000 50 0.61531717 +72 926.7225 930.6 1000 50 0.71711534 +73 934.4775 938.355 1000 50 0.5964641 +74 946.11 949.9875000000001 1000 50 0.91150236 +75 949.9875 953.865 1000 50 0.67729986 +76 988.7625 992.6400000000001 1000 50 0.6703962 +77 1023.66 1027.5375 1000 50 0.5263469 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_23-20-57_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_23-20-57_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..35c69740c622ec852ef1d46384e0f524c112ffd4 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-13_2kHz/channelA_2021-03-13_23-20-57_annot_2022-11-30_01.txt @@ -0,0 +1,16 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.52125984 +2 15.51 19.3875 1000 50 0.50526893 +3 46.53 50.4075 1000 50 0.5608479 +4 58.1625 62.04 1000 50 0.5281921 +5 73.6725 77.55 1000 50 0.7212216 +6 85.305 89.1825 1000 50 0.5832358 +7 127.9575 131.835 1000 50 0.70120454 +8 131.835 135.7125 1000 50 0.7214339 +9 143.4675 147.345 1000 50 0.90501183 +10 182.2425 186.12 1000 50 0.8552236 +11 201.63 205.5075 1000 50 0.5958933 +12 205.5075 209.385 1000 50 0.8100033 +13 217.14 221.01749999999998 1000 50 0.6399616 +14 236.5275 240.405 1000 50 0.6638358 +15 244.2825 248.16 1000 50 0.67405987 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_00-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_00-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..26cf5e5872e91ac6b377de34c051083767e147b0 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_00-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,131 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 27.1425 31.02 1000 50 0.5035358 +2 46.53 50.4075 1000 50 0.7113401 +3 54.285 58.162499999999994 1000 50 0.6448333 +4 69.795 73.6725 1000 50 0.8373424 +5 96.9375 100.815 1000 50 0.7214491 +6 124.08 127.9575 1000 50 0.57908523 +7 139.59 143.4675 1000 50 0.64284223 +8 182.2425 186.12 1000 50 0.5563584 +9 186.12 189.9975 1000 50 0.7483475 +10 193.875 197.7525 1000 50 0.6138447 +11 197.7525 201.63 1000 50 0.6260748 +12 205.5075 209.385 1000 50 0.8172652 +13 209.385 213.2625 1000 50 0.8174635 +14 244.2825 248.16 1000 50 0.74589634 +15 252.0375 255.915 1000 50 0.5473453 +16 259.7925 263.67 1000 50 0.58137834 +17 271.425 275.3025 1000 50 0.6770296 +18 275.3025 279.18 1000 50 0.7412209 +19 298.5675 302.445 1000 50 0.6087333 +20 341.22 345.0975 1000 50 0.85278463 +21 360.6075 364.485 1000 50 0.81464136 +22 368.3625 372.24 1000 50 0.9786912 +23 376.1175 379.995 1000 50 0.72897816 +24 383.8725 387.75 1000 50 0.5896844 +25 391.6275 395.505 1000 50 0.7065632 +26 395.505 399.3825 1000 50 0.95460504 +27 399.3825 403.26 1000 50 0.7216495 +28 422.6475 426.525 1000 50 0.7404356 +29 434.28 438.15749999999997 1000 50 0.9977319 +30 438.1575 442.035 1000 50 0.6813777 +31 442.035 445.9125 1000 50 0.5742529 +32 445.9125 449.79 1000 50 0.50628287 +33 453.6675 457.545 1000 50 0.77168727 +34 461.4225 465.3 1000 50 0.65282637 +35 465.3 469.1775 1000 50 0.7971688 +36 469.1775 473.055 1000 50 0.76053613 +37 476.9325 480.81 1000 50 0.761639 +38 480.81 484.6875 1000 50 0.7712798 +39 500.1975 504.075 1000 50 0.99302566 +40 527.34 531.2175000000001 1000 50 0.71948045 +41 538.9725 542.85 1000 50 0.6838719 +42 542.85 546.7275000000001 1000 50 0.58067894 +43 573.87 577.7475000000001 1000 50 0.8676786 +44 577.7475 581.625 1000 50 0.7156468 +45 581.625 585.5025 1000 50 0.94266456 +46 585.5025 589.3800000000001 1000 50 0.64837605 +47 601.0125 604.8900000000001 1000 50 0.6931577 +48 608.7675 612.6450000000001 1000 50 0.58561534 +49 620.4 624.2775 1000 50 0.7295824 +50 624.2775 628.1550000000001 1000 50 0.99234843 +51 632.0325 635.9100000000001 1000 50 0.86674684 +52 639.7875 643.6650000000001 1000 50 0.71686786 +53 670.8075 674.6850000000001 1000 50 0.57913154 +54 674.685 678.5625 1000 50 0.5731755 +55 678.5625 682.44 1000 50 0.9681131 +56 682.44 686.3175000000001 1000 50 0.5524833 +57 690.195 694.0725000000001 1000 50 0.6805648 +58 713.46 717.3375000000001 1000 50 0.53816205 +59 717.3375 721.215 1000 50 0.636741 +60 721.215 725.0925000000001 1000 50 0.7130606 +61 732.8475 736.725 1000 50 0.67386955 +62 736.725 740.6025000000001 1000 50 0.60669816 +63 748.3575 752.235 1000 50 0.5580358 +64 752.235 756.1125000000001 1000 50 0.5520726 +65 767.745 771.6225000000001 1000 50 0.5559899 +66 771.6225 775.5 1000 50 0.5922704 +67 783.255 787.1325 1000 50 0.999411 +68 787.1325 791.0100000000001 1000 50 0.66529703 +69 791.01 794.8875 1000 50 0.6360014 +70 802.6425 806.5200000000001 1000 50 0.7367377 +71 814.275 818.1525 1000 50 0.55638355 +72 825.9075 829.7850000000001 1000 50 0.9834583 +73 833.6625 837.5400000000001 1000 50 0.6971782 +74 837.54 841.4175 1000 50 0.5333399 +75 841.4175 845.2950000000001 1000 50 0.5008305 +76 845.295 849.1725 1000 50 0.57863855 +77 856.9275 860.8050000000001 1000 50 0.94932836 +78 860.805 864.6825 1000 50 0.96279615 +79 864.6825 868.5600000000001 1000 50 0.87969375 +80 872.4375 876.315 1000 50 0.87143975 +81 887.9475 891.825 1000 50 0.63039774 +82 891.825 895.7025000000001 1000 50 0.8130936 +83 930.6 934.4775000000001 1000 50 0.8228034 +84 942.2325 946.11 1000 50 0.59978575 +85 946.11 949.9875000000001 1000 50 0.5913162 +86 949.9875 953.865 1000 50 0.77765304 +87 957.7425 961.62 1000 50 0.55978286 +88 961.62 965.4975000000001 1000 50 0.6844075 +89 992.64 996.5175 1000 50 0.9993017 +90 996.5175 1000.3950000000001 1000 50 0.8444593 +91 1004.2725 1008.1500000000001 1000 50 0.6803295 +92 1012.0275 1015.9050000000001 1000 50 0.71186626 +93 1019.7825 1023.6600000000001 1000 50 0.54479223 +94 1027.5375 1031.415 1000 50 0.7955055 +95 1039.17 1043.0475000000001 1000 50 0.64044946 +96 1043.0475 1046.925 1000 50 0.62319744 +97 1046.925 1050.8025 1000 50 0.505974 +98 1054.68 1058.5575000000001 1000 50 0.72737783 +99 1074.0675 1077.9450000000002 1000 50 0.5480122 +100 1077.945 1081.8225 1000 50 0.5231721 +101 1085.7 1089.5775 1000 50 0.7238854 +102 1089.5775 1093.4550000000002 1000 50 0.7727389 +103 1093.455 1097.3325 1000 50 0.8739968 +104 1097.3325 1101.21 1000 50 0.8027714 +105 1101.21 1105.0875 1000 50 0.7129242 +106 1108.965 1112.8425 1000 50 0.7446424 +107 1120.5975 1124.4750000000001 1000 50 0.5354688 +108 1124.475 1128.3525 1000 50 0.77601165 +109 1128.3525 1132.23 1000 50 0.9881087 +110 1136.1075 1139.9850000000001 1000 50 0.6284143 +111 1139.985 1143.8625 1000 50 0.759008 +112 1143.8625 1147.74 1000 50 0.80230254 +113 1155.495 1159.3725 1000 50 0.62509197 +114 1163.25 1167.1275 1000 50 0.7073271 +115 1198.1475 1202.025 1000 50 0.53120923 +116 1209.78 1213.6575 1000 50 0.7094288 +117 1233.045 1236.9225000000001 1000 50 0.6006009 +118 1244.6775 1248.555 1000 50 0.69520575 +119 1248.555 1252.4325000000001 1000 50 0.555745 +120 1256.31 1260.1875 1000 50 0.5038636 +121 1260.1875 1264.065 1000 50 0.75341415 +122 1271.82 1275.6975 1000 50 0.8279535 +123 1287.33 1291.2075 1000 50 0.5650545 +124 1295.085 1298.9625 1000 50 0.6638562 +125 1298.9625 1302.8400000000001 1000 50 0.6334514 +126 1314.4725 1318.3500000000001 1000 50 0.89697474 +127 1318.35 1322.2275 1000 50 0.5282899 +128 1329.9825 1333.8600000000001 1000 50 0.7095512 +129 1333.86 1337.7375 1000 50 0.5299111 +130 1349.37 1353.2475 1000 50 0.78691846 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_01-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_01-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..3be0906cce26437a87e12ad439d2a74151e6dfb2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_01-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,112 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 19.3875 23.265 1000 50 0.86136323 +2 34.8975 38.775 1000 50 0.59034413 +3 42.6525 46.53 1000 50 0.6303666 +4 89.1825 93.06 1000 50 0.6379305 +5 93.06 96.9375 1000 50 0.83414 +6 151.2225 155.1 1000 50 0.9780862 +7 155.1 158.9775 1000 50 0.78056675 +8 158.9775 162.855 1000 50 0.57499164 +9 166.7325 170.60999999999999 1000 50 0.53102726 +10 178.365 182.2425 1000 50 0.74127775 +11 182.2425 186.12 1000 50 0.58040166 +12 193.875 197.7525 1000 50 0.58760136 +13 205.5075 209.385 1000 50 0.84628046 +14 209.385 213.2625 1000 50 0.74162614 +15 213.2625 217.14 1000 50 0.56499094 +16 224.895 228.7725 1000 50 0.5042333 +17 228.7725 232.65 1000 50 0.9625555 +18 232.65 236.5275 1000 50 0.5638285 +19 248.16 252.0375 1000 50 0.86053133 +20 252.0375 255.915 1000 50 0.867277 +21 294.69 298.5675 1000 50 0.7894104 +22 306.3225 310.2 1000 50 0.804934 +23 314.0775 317.955 1000 50 0.9872433 +24 317.955 321.8325 1000 50 0.7274337 +25 345.0975 348.975 1000 50 0.5238229 +26 356.73 360.6075 1000 50 0.63264126 +27 364.485 368.3625 1000 50 0.62476265 +28 395.505 399.3825 1000 50 0.7051591 +29 434.28 438.15749999999997 1000 50 0.6279727 +30 442.035 445.9125 1000 50 0.59146994 +31 469.1775 473.055 1000 50 0.59922427 +32 480.81 484.6875 1000 50 0.56254816 +33 492.4425 496.32 1000 50 0.8860512 +34 500.1975 504.075 1000 50 0.72026056 +35 504.075 507.9525 1000 50 0.68967426 +36 523.4625 527.34 1000 50 0.9346528 +37 535.095 538.9725000000001 1000 50 0.7173472 +38 542.85 546.7275000000001 1000 50 0.6913947 +39 546.7275 550.605 1000 50 0.92160165 +40 608.7675 612.6450000000001 1000 50 0.8773897 +41 612.645 616.5225 1000 50 0.8988493 +42 620.4 624.2775 1000 50 0.63384855 +43 632.0325 635.9100000000001 1000 50 0.58513355 +44 643.665 647.5425 1000 50 0.8894029 +45 647.5425 651.4200000000001 1000 50 0.71373165 +46 663.0525 666.9300000000001 1000 50 0.55170876 +47 670.8075 674.6850000000001 1000 50 0.55269456 +48 678.5625 682.44 1000 50 0.5911575 +49 690.195 694.0725000000001 1000 50 0.8209139 +50 694.0725 697.95 1000 50 0.602973 +51 713.46 717.3375000000001 1000 50 0.6275157 +52 725.0925 728.97 1000 50 0.64677614 +53 736.725 740.6025000000001 1000 50 0.68065614 +54 744.48 748.3575000000001 1000 50 0.60295945 +55 748.3575 752.235 1000 50 0.55953395 +56 756.1125 759.99 1000 50 0.5843885 +57 759.99 763.8675000000001 1000 50 0.88000953 +58 763.8675 767.745 1000 50 0.5808447 +59 767.745 771.6225000000001 1000 50 0.5082721 +60 775.5 779.3775 1000 50 0.6487335 +61 802.6425 806.5200000000001 1000 50 0.61363375 +62 825.9075 829.7850000000001 1000 50 0.54973054 +63 841.4175 845.2950000000001 1000 50 0.5606557 +64 899.58 903.4575000000001 1000 50 0.97609484 +65 907.335 911.2125000000001 1000 50 0.5991466 +66 918.9675 922.845 1000 50 0.6411857 +67 938.355 942.2325000000001 1000 50 0.6336507 +68 953.865 957.7425000000001 1000 50 0.5245682 +69 957.7425 961.62 1000 50 0.6295161 +70 969.375 973.2525 1000 50 0.6324299 +71 973.2525 977.1300000000001 1000 50 0.6955604 +72 977.13 981.0075 1000 50 0.5937088 +73 981.0075 984.8850000000001 1000 50 0.514519 +74 984.885 988.7625 1000 50 0.73929155 +75 992.64 996.5175 1000 50 0.66314405 +76 1004.2725 1008.1500000000001 1000 50 0.647656 +77 1012.0275 1015.9050000000001 1000 50 0.628054 +78 1015.905 1019.7825 1000 50 0.77933675 +79 1019.7825 1023.6600000000001 1000 50 0.649328 +80 1031.415 1035.2925 1000 50 0.64754134 +81 1039.17 1043.0475000000001 1000 50 0.6920485 +82 1058.5575 1062.435 1000 50 0.5565685 +83 1062.435 1066.3125 1000 50 0.6815147 +84 1070.19 1074.0675 1000 50 0.636943 +85 1097.3325 1101.21 1000 50 0.92864436 +86 1105.0875 1108.9650000000001 1000 50 0.8673383 +87 1116.72 1120.5975 1000 50 0.57521945 +88 1128.3525 1132.23 1000 50 0.61693496 +89 1139.985 1143.8625 1000 50 0.5024776 +90 1155.495 1159.3725 1000 50 0.8587701 +91 1167.1275 1171.005 1000 50 0.57064843 +92 1198.1475 1202.025 1000 50 0.7763709 +93 1202.025 1205.9025000000001 1000 50 0.6608286 +94 1233.045 1236.9225000000001 1000 50 0.51060385 +95 1236.9225 1240.8 1000 50 0.5448109 +96 1248.555 1252.4325000000001 1000 50 0.6977043 +97 1275.6975 1279.575 1000 50 0.5743262 +98 1326.105 1329.9825 1000 50 0.711598 +99 1333.86 1337.7375 1000 50 0.69018394 +100 1349.37 1353.2475 1000 50 0.7520508 +101 1357.125 1361.0025 1000 50 0.76889265 +102 1368.7575 1372.635 1000 50 0.55621666 +103 1372.635 1376.5125 1000 50 0.74791616 +104 1380.39 1384.2675000000002 1000 50 0.57067186 +105 1403.655 1407.5325 1000 50 0.5489076 +106 1407.5325 1411.41 1000 50 0.64404625 +107 1446.3075 1450.185 1000 50 0.54473233 +108 1457.94 1461.8175 1000 50 0.6105362 +109 1469.5725 1473.45 1000 50 0.8794176 +110 1477.3275 1481.2050000000002 1000 50 0.66407025 +111 1485.0825 1488.96 1000 50 0.60359085 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_02-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_02-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ddd02851ef7a0242f3c8025b7c3b2df90b47fa6b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_02-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,13 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 15.51 19.3875 1000 50 0.6693802 +2 19.3875 23.265 1000 50 0.59040874 +3 27.1425 31.02 1000 50 0.7188651 +4 31.02 34.8975 1000 50 0.5145947 +5 46.53 50.4075 1000 50 0.5187398 +6 50.4075 54.285 1000 50 0.72085285 +7 58.1625 62.04 1000 50 0.53258526 +8 65.9175 69.795 1000 50 0.60668904 +9 73.6725 77.55 1000 50 0.91572404 +10 81.4275 85.30499999999999 1000 50 0.5303511 +11 85.305 89.1825 1000 50 0.9980927 +12 96.9375 100.815 1000 50 0.9216462 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_02-05-22_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_02-05-22_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..46423243dfc367d0f447090d6f5e7131b156c1f0 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_02-05-22_annot_2022-11-30_01.txt @@ -0,0 +1,107 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.61031437 +2 23.265 27.142500000000002 1000 50 0.90192133 +3 34.8975 38.775 1000 50 0.99850535 +4 46.53 50.4075 1000 50 0.9996642 +5 65.9175 69.795 1000 50 0.6495425 +6 69.795 73.6725 1000 50 0.64352393 +7 81.4275 85.30499999999999 1000 50 0.84365845 +8 85.305 89.1825 1000 50 0.90382195 +9 89.1825 93.06 1000 50 0.8359885 +10 93.06 96.9375 1000 50 0.50822914 +11 112.4475 116.325 1000 50 0.5645589 +12 124.08 127.9575 1000 50 0.93036675 +13 127.9575 131.835 1000 50 0.940842 +14 147.345 151.2225 1000 50 0.5908958 +15 155.1 158.9775 1000 50 0.71054924 +16 170.61 174.4875 1000 50 0.8596737 +17 186.12 189.9975 1000 50 0.5019542 +18 189.9975 193.875 1000 50 0.53269315 +19 193.875 197.7525 1000 50 0.8061148 +20 228.7725 232.65 1000 50 0.9990933 +21 240.405 244.2825 1000 50 0.97544074 +22 248.16 252.0375 1000 50 0.5874159 +23 252.0375 255.915 1000 50 0.99292505 +24 259.7925 263.67 1000 50 0.9380771 +25 263.67 267.5475 1000 50 0.9663924 +26 279.18 283.0575 1000 50 0.6766734 +27 286.935 290.8125 1000 50 0.9036199 +28 302.445 306.3225 1000 50 0.5242213 +29 306.3225 310.2 1000 50 0.9979462 +30 317.955 321.8325 1000 50 0.9963039 +31 329.5875 333.465 1000 50 0.61928153 +32 333.465 337.3425 1000 50 0.7939493 +33 341.22 345.0975 1000 50 0.9963565 +34 348.975 352.8525 1000 50 0.6080807 +35 352.8525 356.73 1000 50 0.651119 +36 356.73 360.6075 1000 50 0.6873396 +37 376.1175 379.995 1000 50 0.6340866 +38 391.6275 395.505 1000 50 0.68505573 +39 395.505 399.3825 1000 50 0.57650876 +40 403.26 407.1375 1000 50 0.7454012 +41 445.9125 449.79 1000 50 0.7373253 +42 449.79 453.6675 1000 50 0.62953144 +43 469.1775 473.055 1000 50 0.6877982 +44 473.055 476.9325 1000 50 0.95975685 +45 492.4425 496.32 1000 50 0.6372177 +46 500.1975 504.075 1000 50 0.90648854 +47 504.075 507.9525 1000 50 0.6196645 +48 519.585 523.4625000000001 1000 50 0.5043046 +49 523.4625 527.34 1000 50 0.67413896 +50 538.9725 542.85 1000 50 0.7363419 +51 550.605 554.4825000000001 1000 50 0.7181776 +52 573.87 577.7475000000001 1000 50 0.52305675 +53 585.5025 589.3800000000001 1000 50 0.64228016 +54 604.89 608.7675 1000 50 0.71777904 +55 616.5225 620.4000000000001 1000 50 0.72032356 +56 635.91 639.7875 1000 50 0.8310099 +57 659.175 663.0525 1000 50 0.60685724 +58 674.685 678.5625 1000 50 0.7288463 +59 694.0725 697.95 1000 50 0.7188851 +60 705.705 709.5825000000001 1000 50 0.8127344 +61 728.97 732.8475000000001 1000 50 0.5297387 +62 736.725 740.6025000000001 1000 50 0.7539982 +63 740.6025 744.48 1000 50 0.6679857 +64 748.3575 752.235 1000 50 0.6338847 +65 759.99 763.8675000000001 1000 50 0.5263465 +66 763.8675 767.745 1000 50 0.8123887 +67 771.6225 775.5 1000 50 0.7536621 +68 775.5 779.3775 1000 50 0.5291522 +69 783.255 787.1325 1000 50 0.81847686 +70 798.765 802.6425 1000 50 0.99027294 +71 806.52 810.3975 1000 50 0.55935323 +72 818.1525 822.0300000000001 1000 50 0.524943 +73 822.03 825.9075 1000 50 0.6689038 +74 864.6825 868.5600000000001 1000 50 0.59584963 +75 911.2125 915.09 1000 50 0.6774776 +76 922.845 926.7225000000001 1000 50 0.6658695 +77 926.7225 930.6 1000 50 0.5843247 +78 930.6 934.4775000000001 1000 50 0.5944032 +79 942.2325 946.11 1000 50 0.99796474 +80 953.865 957.7425000000001 1000 50 0.99939084 +81 965.4975 969.375 1000 50 0.63609016 +82 977.13 981.0075 1000 50 0.99967194 +83 996.5175 1000.3950000000001 1000 50 0.6708935 +84 1000.395 1004.2725 1000 50 0.8624093 +85 1008.15 1012.0275 1000 50 0.76456463 +86 1012.0275 1015.9050000000001 1000 50 0.52371764 +87 1019.7825 1023.6600000000001 1000 50 0.5744408 +88 1023.66 1027.5375 1000 50 0.9911863 +89 1031.415 1035.2925 1000 50 0.59204715 +90 1039.17 1043.0475000000001 1000 50 0.5471817 +91 1050.8025 1054.68 1000 50 0.6537255 +92 1054.68 1058.5575000000001 1000 50 0.7261748 +93 1058.5575 1062.435 1000 50 0.64750016 +94 1062.435 1066.3125 1000 50 0.806934 +95 1085.7 1089.5775 1000 50 0.8247352 +96 1089.5775 1093.4550000000002 1000 50 0.99043965 +97 1120.5975 1124.4750000000001 1000 50 0.9143764 +98 1124.475 1128.3525 1000 50 0.5810596 +99 1128.3525 1132.23 1000 50 0.64683783 +100 1132.23 1136.1075 1000 50 0.9850632 +101 1139.985 1143.8625 1000 50 0.5308352 +102 1143.8625 1147.74 1000 50 0.7466955 +103 1167.1275 1171.005 1000 50 0.64464426 +104 1171.005 1174.8825000000002 1000 50 0.51375246 +105 1174.8825 1178.76 1000 50 0.89194214 +106 1178.76 1182.6375 1000 50 0.5360955 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_03-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_03-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..51e698e0b1213dca974ea504114473c2f0cab257 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_03-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,50 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.765014 +2 11.6325 15.51 1000 50 0.6507868 +3 42.6525 46.53 1000 50 0.7566081 +4 46.53 50.4075 1000 50 0.7884724 +5 50.4075 54.285 1000 50 0.67214406 +6 54.285 58.162499999999994 1000 50 0.79361004 +7 58.1625 62.04 1000 50 0.69220805 +8 73.6725 77.55 1000 50 0.52222574 +9 77.55 81.4275 1000 50 0.54193115 +10 81.4275 85.30499999999999 1000 50 0.69557315 +11 85.305 89.1825 1000 50 0.72392786 +12 100.815 104.6925 1000 50 0.73479766 +13 104.6925 108.57 1000 50 0.5040622 +14 124.08 127.9575 1000 50 0.7513273 +15 139.59 143.4675 1000 50 0.87316537 +16 151.2225 155.1 1000 50 0.7391615 +17 155.1 158.9775 1000 50 0.9790506 +18 158.9775 162.855 1000 50 0.61996007 +19 170.61 174.4875 1000 50 0.63259804 +20 178.365 182.2425 1000 50 0.88877887 +21 201.63 205.5075 1000 50 0.8399588 +22 217.14 221.01749999999998 1000 50 0.6615724 +23 221.0175 224.895 1000 50 0.7207594 +24 228.7725 232.65 1000 50 0.60794973 +25 236.5275 240.405 1000 50 0.81474406 +26 240.405 244.2825 1000 50 0.5151218 +27 244.2825 248.16 1000 50 0.7001285 +28 255.915 259.7925 1000 50 0.9705559 +29 263.67 267.5475 1000 50 0.820913 +30 267.5475 271.425 1000 50 0.71774447 +31 271.425 275.3025 1000 50 0.707082 +32 283.0575 286.935 1000 50 0.6716064 +33 286.935 290.8125 1000 50 0.73590696 +34 294.69 298.5675 1000 50 0.90160346 +35 317.955 321.8325 1000 50 0.8956424 +36 321.8325 325.71 1000 50 0.7305773 +37 333.465 337.3425 1000 50 0.613736 +38 337.3425 341.21999999999997 1000 50 0.7048582 +39 341.22 345.0975 1000 50 0.6791833 +40 345.0975 348.975 1000 50 0.5530261 +41 348.975 352.8525 1000 50 0.6752173 +42 360.6075 364.485 1000 50 0.6604536 +43 368.3625 372.24 1000 50 0.6807491 +44 383.8725 387.75 1000 50 0.62129223 +45 387.75 391.6275 1000 50 0.9967602 +46 395.505 399.3825 1000 50 0.6650938 +47 399.3825 403.26 1000 50 0.6099512 +48 403.26 407.1375 1000 50 0.53050256 +49 414.8925 418.77 1000 50 0.83467126 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_03-10-40_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_03-10-40_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..2a78cbdf31144a23530bbe4feac84a8279f36a50 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_03-10-40_annot_2022-11-30_01.txt @@ -0,0 +1,89 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.5566981 +2 15.51 19.3875 1000 50 0.776999 +3 27.1425 31.02 1000 50 0.62902886 +4 38.775 42.652499999999996 1000 50 0.5061784 +5 42.6525 46.53 1000 50 0.85389453 +6 73.6725 77.55 1000 50 0.5617709 +7 81.4275 85.30499999999999 1000 50 0.82683545 +8 85.305 89.1825 1000 50 0.6046072 +9 89.1825 93.06 1000 50 0.89008236 +10 100.815 104.6925 1000 50 0.5301186 +11 104.6925 108.57 1000 50 0.78444713 +12 116.325 120.2025 1000 50 0.99721956 +13 131.835 135.7125 1000 50 0.5691416 +14 135.7125 139.59 1000 50 0.7853047 +15 139.59 143.4675 1000 50 0.61596596 +16 155.1 158.9775 1000 50 0.53354996 +17 158.9775 162.855 1000 50 0.5810734 +18 174.4875 178.365 1000 50 0.69814986 +19 193.875 197.7525 1000 50 0.718771 +20 197.7525 201.63 1000 50 0.52625835 +21 201.63 205.5075 1000 50 0.8423309 +22 213.2625 217.14 1000 50 0.5954812 +23 221.0175 224.895 1000 50 0.74687356 +24 232.65 236.5275 1000 50 0.7294068 +25 236.5275 240.405 1000 50 0.7088012 +26 244.2825 248.16 1000 50 0.52060384 +27 252.0375 255.915 1000 50 0.7624121 +28 255.915 259.7925 1000 50 0.73455924 +29 263.67 267.5475 1000 50 0.56455106 +30 271.425 275.3025 1000 50 0.55420744 +31 290.8125 294.69 1000 50 0.93832177 +32 298.5675 302.445 1000 50 0.6818497 +33 302.445 306.3225 1000 50 0.6333391 +34 314.0775 317.955 1000 50 0.6451241 +35 321.8325 325.71 1000 50 0.5825726 +36 329.5875 333.465 1000 50 0.675902 +37 348.975 352.8525 1000 50 0.73841006 +38 364.485 368.3625 1000 50 0.60672694 +39 368.3625 372.24 1000 50 0.99993694 +40 376.1175 379.995 1000 50 0.5189838 +41 379.995 383.8725 1000 50 0.999587 +42 383.8725 387.75 1000 50 0.6760684 +43 391.6275 395.505 1000 50 0.57665414 +44 395.505 399.3825 1000 50 0.70075154 +45 399.3825 403.26 1000 50 0.8906873 +46 403.26 407.1375 1000 50 0.67229503 +47 414.8925 418.77 1000 50 0.5690709 +48 426.525 430.4025 1000 50 0.673711 +49 449.79 453.6675 1000 50 0.5595593 +50 457.545 461.4225 1000 50 0.5486484 +51 469.1775 473.055 1000 50 0.53635305 +52 492.4425 496.32 1000 50 0.7580175 +53 504.075 507.9525 1000 50 0.81955624 +54 515.7075 519.585 1000 50 0.75664824 +55 523.4625 527.34 1000 50 0.59335095 +56 527.34 531.2175000000001 1000 50 0.59914565 +57 554.4825 558.36 1000 50 0.5687002 +58 569.9925 573.87 1000 50 0.7593941 +59 577.7475 581.625 1000 50 0.57435215 +60 581.625 585.5025 1000 50 0.64161307 +61 601.0125 604.8900000000001 1000 50 0.7609377 +62 624.2775 628.1550000000001 1000 50 0.5204954 +63 632.0325 635.9100000000001 1000 50 0.53295565 +64 635.91 639.7875 1000 50 0.60838765 +65 639.7875 643.6650000000001 1000 50 0.5486354 +66 643.665 647.5425 1000 50 0.5204858 +67 647.5425 651.4200000000001 1000 50 0.5238221 +68 651.42 655.2975 1000 50 0.6375162 +69 659.175 663.0525 1000 50 0.5918162 +70 663.0525 666.9300000000001 1000 50 0.5826726 +71 666.93 670.8075 1000 50 0.70501024 +72 682.44 686.3175000000001 1000 50 0.7172735 +73 690.195 694.0725000000001 1000 50 0.6792029 +74 713.46 717.3375000000001 1000 50 0.9715276 +75 721.215 725.0925000000001 1000 50 0.812479 +76 748.3575 752.235 1000 50 0.5080397 +77 759.99 763.8675000000001 1000 50 0.83906907 +78 767.745 771.6225000000001 1000 50 0.6493623 +79 771.6225 775.5 1000 50 0.63494575 +80 787.1325 791.0100000000001 1000 50 0.6719802 +81 802.6425 806.5200000000001 1000 50 0.7391819 +82 814.275 818.1525 1000 50 0.9754739 +83 818.1525 822.0300000000001 1000 50 0.9625304 +84 829.785 833.6625 1000 50 0.5647953 +85 833.6625 837.5400000000001 1000 50 0.7416532 +86 841.4175 845.2950000000001 1000 50 0.9969265 +87 849.1725 853.0500000000001 1000 50 0.68412477 +88 860.805 864.6825 1000 50 0.5475953 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_04-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_04-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b3b3a6ccc432e98c10f88753088c830a4c7129d3 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_04-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,71 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.8268339 +2 11.6325 15.51 1000 50 0.56721866 +3 15.51 19.3875 1000 50 0.7551927 +4 19.3875 23.265 1000 50 0.64240575 +5 23.265 27.142500000000002 1000 50 0.55412996 +6 31.02 34.8975 1000 50 0.5426534 +7 38.775 42.652499999999996 1000 50 0.5248452 +8 42.6525 46.53 1000 50 0.5933562 +9 58.1625 62.04 1000 50 0.8487714 +10 69.795 73.6725 1000 50 0.5974475 +11 73.6725 77.55 1000 50 0.58832073 +12 85.305 89.1825 1000 50 0.5561217 +13 93.06 96.9375 1000 50 0.55725545 +14 116.325 120.2025 1000 50 0.6461618 +15 120.2025 124.08 1000 50 0.6610572 +16 131.835 135.7125 1000 50 0.69965774 +17 143.4675 147.345 1000 50 0.7771843 +18 166.7325 170.60999999999999 1000 50 0.68821883 +19 174.4875 178.365 1000 50 0.50590014 +20 178.365 182.2425 1000 50 0.80347675 +21 189.9975 193.875 1000 50 0.61929625 +22 201.63 205.5075 1000 50 0.53081053 +23 205.5075 209.385 1000 50 0.5988239 +24 213.2625 217.14 1000 50 0.7557472 +25 221.0175 224.895 1000 50 0.62982273 +26 232.65 236.5275 1000 50 0.60523146 +27 240.405 244.2825 1000 50 0.72487676 +28 252.0375 255.915 1000 50 0.8072802 +29 255.915 259.7925 1000 50 0.6985933 +30 259.7925 263.67 1000 50 0.61755663 +31 263.67 267.5475 1000 50 0.5338707 +32 283.0575 286.935 1000 50 0.97583145 +33 294.69 298.5675 1000 50 0.5315972 +34 298.5675 302.445 1000 50 0.64696324 +35 314.0775 317.955 1000 50 0.5459855 +36 333.465 337.3425 1000 50 0.6210246 +37 337.3425 341.21999999999997 1000 50 0.64834267 +38 348.975 352.8525 1000 50 0.5548173 +39 352.8525 356.73 1000 50 0.9027107 +40 368.3625 372.24 1000 50 0.5753071 +41 383.8725 387.75 1000 50 0.81196976 +42 387.75 391.6275 1000 50 0.6320289 +43 391.6275 395.505 1000 50 0.6845215 +44 395.505 399.3825 1000 50 0.9893476 +45 399.3825 403.26 1000 50 0.5440798 +46 407.1375 411.015 1000 50 0.5158498 +47 411.015 414.8925 1000 50 0.8252892 +48 430.4025 434.28 1000 50 0.8725358 +49 434.28 438.15749999999997 1000 50 0.8502073 +50 449.79 453.6675 1000 50 0.9137564 +51 496.32 500.1975 1000 50 0.53348786 +52 500.1975 504.075 1000 50 0.54557574 +53 504.075 507.9525 1000 50 0.9537486 +54 507.9525 511.83 1000 50 0.819298 +55 527.34 531.2175000000001 1000 50 0.5512036 +56 542.85 546.7275000000001 1000 50 0.7903783 +57 558.36 562.2375000000001 1000 50 0.64362884 +58 562.2375 566.115 1000 50 0.5459659 +59 573.87 577.7475000000001 1000 50 0.680737 +60 604.89 608.7675 1000 50 0.50266427 +61 608.7675 612.6450000000001 1000 50 0.7057834 +62 624.2775 628.1550000000001 1000 50 0.8141224 +63 647.5425 651.4200000000001 1000 50 0.7203389 +64 651.42 655.2975 1000 50 0.56548935 +65 659.175 663.0525 1000 50 0.6848294 +66 666.93 670.8075 1000 50 0.75970846 +67 697.95 701.8275000000001 1000 50 0.6674478 +68 701.8275 705.705 1000 50 0.57028544 +69 713.46 717.3375000000001 1000 50 0.5553014 +70 717.3375 721.215 1000 50 0.6775329 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_04-15-59_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_04-15-59_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ee543a8f9d957f221e901d9d6628cc45a491bedc --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_04-15-59_annot_2022-11-30_01.txt @@ -0,0 +1,67 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.8748353 +2 15.51 19.3875 1000 50 0.7972853 +3 19.3875 23.265 1000 50 0.5498527 +4 23.265 27.142500000000002 1000 50 0.53797305 +5 27.1425 31.02 1000 50 0.6135147 +6 42.6525 46.53 1000 50 0.94272625 +7 46.53 50.4075 1000 50 0.55362946 +8 50.4075 54.285 1000 50 0.66769624 +9 54.285 58.162499999999994 1000 50 0.5086276 +10 58.1625 62.04 1000 50 0.9237499 +11 73.6725 77.55 1000 50 0.65241504 +12 85.305 89.1825 1000 50 0.6189602 +13 89.1825 93.06 1000 50 0.5493017 +14 93.06 96.9375 1000 50 0.57986486 +15 100.815 104.6925 1000 50 0.53983384 +16 104.6925 108.57 1000 50 0.5681062 +17 116.325 120.2025 1000 50 0.74268997 +18 124.08 127.9575 1000 50 0.54547215 +19 131.835 135.7125 1000 50 0.666658 +20 143.4675 147.345 1000 50 0.5603836 +21 147.345 151.2225 1000 50 0.6627087 +22 151.2225 155.1 1000 50 0.6371146 +23 155.1 158.9775 1000 50 0.5902482 +24 158.9775 162.855 1000 50 0.788053 +25 166.7325 170.60999999999999 1000 50 0.6315886 +26 174.4875 178.365 1000 50 0.79693 +27 178.365 182.2425 1000 50 0.7992708 +28 182.2425 186.12 1000 50 0.674488 +29 197.7525 201.63 1000 50 0.73385817 +30 201.63 205.5075 1000 50 0.659159 +31 205.5075 209.385 1000 50 0.6349264 +32 209.385 213.2625 1000 50 0.5278762 +33 221.0175 224.895 1000 50 0.67433625 +34 228.7725 232.65 1000 50 0.7979762 +35 232.65 236.5275 1000 50 0.5413953 +36 244.2825 248.16 1000 50 0.8183274 +37 248.16 252.0375 1000 50 0.9266082 +38 252.0375 255.915 1000 50 0.9865594 +39 259.7925 263.67 1000 50 0.7254548 +40 267.5475 271.425 1000 50 0.60310364 +41 271.425 275.3025 1000 50 0.730727 +42 275.3025 279.18 1000 50 0.6240421 +43 286.935 290.8125 1000 50 0.6008224 +44 290.8125 294.69 1000 50 0.60508436 +45 298.5675 302.445 1000 50 0.8199502 +46 314.0775 317.955 1000 50 0.57834625 +47 321.8325 325.71 1000 50 0.5794171 +48 337.3425 341.21999999999997 1000 50 0.6924613 +49 356.73 360.6075 1000 50 0.59240985 +50 403.26 407.1375 1000 50 0.68448424 +51 411.015 414.8925 1000 50 0.81900036 +52 414.8925 418.77 1000 50 0.812328 +53 422.6475 426.525 1000 50 0.6524472 +54 426.525 430.4025 1000 50 0.6902792 +55 430.4025 434.28 1000 50 0.5437787 +56 434.28 438.15749999999997 1000 50 0.5295532 +57 438.1575 442.035 1000 50 0.8663091 +58 445.9125 449.79 1000 50 0.7722825 +59 449.79 453.6675 1000 50 0.5977124 +60 461.4225 465.3 1000 50 0.68413335 +61 480.81 484.6875 1000 50 0.93881387 +62 484.6875 488.565 1000 50 0.67810595 +63 492.4425 496.32 1000 50 0.5714566 +64 504.075 507.9525 1000 50 0.9068124 +65 515.7075 519.585 1000 50 0.8632693 +66 523.4625 527.34 1000 50 0.6794467 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_05-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_05-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1e6c2efe38682532e13771c3fe8f7779e2c238fc --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_05-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,116 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.5557714 +2 23.265 27.142500000000002 1000 50 0.6980628 +3 27.1425 31.02 1000 50 0.7582271 +4 46.53 50.4075 1000 50 0.7914129 +5 50.4075 54.285 1000 50 0.76960087 +6 54.285 58.162499999999994 1000 50 0.660387 +7 62.04 65.9175 1000 50 0.5150916 +8 69.795 73.6725 1000 50 0.737063 +9 73.6725 77.55 1000 50 0.5109101 +10 85.305 89.1825 1000 50 0.60278934 +11 96.9375 100.815 1000 50 0.5722946 +12 104.6925 108.57 1000 50 0.9430566 +13 124.08 127.9575 1000 50 0.83740324 +14 135.7125 139.59 1000 50 0.7115844 +15 139.59 143.4675 1000 50 0.75552684 +16 143.4675 147.345 1000 50 0.9681847 +17 147.345 151.2225 1000 50 0.5690531 +18 155.1 158.9775 1000 50 0.64231884 +19 166.7325 170.60999999999999 1000 50 0.5787268 +20 170.61 174.4875 1000 50 0.71617967 +21 178.365 182.2425 1000 50 0.77063656 +22 182.2425 186.12 1000 50 0.5877947 +23 193.875 197.7525 1000 50 0.5469615 +24 201.63 205.5075 1000 50 0.66115844 +25 205.5075 209.385 1000 50 0.9439822 +26 209.385 213.2625 1000 50 0.5632858 +27 221.0175 224.895 1000 50 0.9540482 +28 236.5275 240.405 1000 50 0.93955773 +29 240.405 244.2825 1000 50 0.9985275 +30 244.2825 248.16 1000 50 0.9256349 +31 248.16 252.0375 1000 50 0.57982516 +32 252.0375 255.915 1000 50 0.63018554 +33 259.7925 263.67 1000 50 0.9455603 +34 263.67 267.5475 1000 50 0.82309276 +35 267.5475 271.425 1000 50 0.72798043 +36 271.425 275.3025 1000 50 0.80513686 +37 294.69 298.5675 1000 50 0.89805067 +38 298.5675 302.445 1000 50 0.71023476 +39 302.445 306.3225 1000 50 0.65094495 +40 317.955 321.8325 1000 50 0.7236221 +41 321.8325 325.71 1000 50 0.5347973 +42 325.71 329.5875 1000 50 0.5065712 +43 333.465 337.3425 1000 50 0.5344874 +44 341.22 345.0975 1000 50 0.52956104 +45 345.0975 348.975 1000 50 0.78464144 +46 352.8525 356.73 1000 50 0.7234602 +47 372.24 376.1175 1000 50 0.5608905 +48 376.1175 379.995 1000 50 0.62452847 +49 379.995 383.8725 1000 50 0.75359666 +50 383.8725 387.75 1000 50 0.71557164 +51 391.6275 395.505 1000 50 0.7624397 +52 399.3825 403.26 1000 50 0.6739892 +53 407.1375 411.015 1000 50 0.60604346 +54 411.015 414.8925 1000 50 0.6593757 +55 418.77 422.6475 1000 50 0.5351493 +56 430.4025 434.28 1000 50 0.5750985 +57 442.035 445.9125 1000 50 0.5427931 +58 449.79 453.6675 1000 50 0.6402332 +59 473.055 476.9325 1000 50 0.7000559 +60 480.81 484.6875 1000 50 0.6080255 +61 484.6875 488.565 1000 50 0.66731125 +62 488.565 492.4425 1000 50 0.53836995 +63 492.4425 496.32 1000 50 0.5409433 +64 500.1975 504.075 1000 50 0.5404723 +65 511.83 515.7075 1000 50 0.8163093 +66 515.7075 519.585 1000 50 0.72982484 +67 519.585 523.4625000000001 1000 50 0.68071425 +68 523.4625 527.34 1000 50 0.603595 +69 535.095 538.9725000000001 1000 50 0.61646736 +70 538.9725 542.85 1000 50 0.73622984 +71 562.2375 566.115 1000 50 0.6546587 +72 581.625 585.5025 1000 50 0.59776443 +73 597.135 601.0125 1000 50 0.6858492 +74 601.0125 604.8900000000001 1000 50 0.50937104 +75 674.685 678.5625 1000 50 0.8092089 +76 678.5625 682.44 1000 50 0.6880841 +77 682.44 686.3175000000001 1000 50 0.6090681 +78 725.0925 728.97 1000 50 0.5912407 +79 736.725 740.6025000000001 1000 50 0.8077145 +80 767.745 771.6225000000001 1000 50 0.6300134 +81 779.3775 783.2550000000001 1000 50 0.6568895 +82 783.255 787.1325 1000 50 0.6327124 +83 794.8875 798.7650000000001 1000 50 0.781124 +84 810.3975 814.2750000000001 1000 50 0.5584724 +85 841.4175 845.2950000000001 1000 50 0.56155294 +86 849.1725 853.0500000000001 1000 50 0.524864 +87 856.9275 860.8050000000001 1000 50 0.503315 +88 868.56 872.4375 1000 50 0.5680281 +89 872.4375 876.315 1000 50 0.91175693 +90 876.315 880.1925000000001 1000 50 0.54870516 +91 880.1925 884.07 1000 50 0.6989807 +92 884.07 887.9475000000001 1000 50 0.6282204 +93 887.9475 891.825 1000 50 0.6669476 +94 891.825 895.7025000000001 1000 50 0.7893178 +95 899.58 903.4575000000001 1000 50 0.58780855 +96 903.4575 907.335 1000 50 0.73462796 +97 918.9675 922.845 1000 50 0.9690874 +98 930.6 934.4775000000001 1000 50 0.7090104 +99 938.355 942.2325000000001 1000 50 0.83383256 +100 946.11 949.9875000000001 1000 50 0.7189574 +101 949.9875 953.865 1000 50 0.50684595 +102 957.7425 961.62 1000 50 0.5741587 +103 965.4975 969.375 1000 50 0.5562497 +104 984.885 988.7625 1000 50 0.5993807 +105 988.7625 992.6400000000001 1000 50 0.70897245 +106 992.64 996.5175 1000 50 0.545755 +107 1004.2725 1008.1500000000001 1000 50 0.5218211 +108 1008.15 1012.0275 1000 50 0.8274772 +109 1012.0275 1015.9050000000001 1000 50 0.6207694 +110 1031.415 1035.2925 1000 50 0.6511034 +111 1035.2925 1039.17 1000 50 0.52964574 +112 1043.0475 1046.925 1000 50 0.61913013 +113 1046.925 1050.8025 1000 50 0.5909334 +114 1050.8025 1054.68 1000 50 0.6177775 +115 1058.5575 1062.435 1000 50 0.78055555 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_05-21-19_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_05-21-19_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..6f5063505c26b1e438f5213daa12d3737b6acadf --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_05-21-19_annot_2022-11-30_01.txt @@ -0,0 +1,29 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.5566631 +2 3.8775 7.755 1000 50 0.7281046 +3 7.755 11.6325 1000 50 0.612809 +4 11.6325 15.51 1000 50 0.6173551 +5 15.51 19.3875 1000 50 0.7633305 +6 19.3875 23.265 1000 50 0.5704261 +7 23.265 27.142500000000002 1000 50 0.7543939 +8 27.1425 31.02 1000 50 0.58680576 +9 31.02 34.8975 1000 50 0.79136556 +10 46.53 50.4075 1000 50 0.6742989 +11 50.4075 54.285 1000 50 0.79952896 +12 62.04 65.9175 1000 50 0.7727734 +13 65.9175 69.795 1000 50 0.5415814 +14 73.6725 77.55 1000 50 0.799453 +15 81.4275 85.30499999999999 1000 50 0.7443904 +16 89.1825 93.06 1000 50 0.9222136 +17 96.9375 100.815 1000 50 0.55403346 +18 100.815 104.6925 1000 50 0.808012 +19 131.835 135.7125 1000 50 0.8082242 +20 147.345 151.2225 1000 50 0.94402987 +21 155.1 158.9775 1000 50 0.6655531 +22 162.855 166.7325 1000 50 0.64117706 +23 170.61 174.4875 1000 50 0.6878293 +24 182.2425 186.12 1000 50 0.5068234 +25 193.875 197.7525 1000 50 0.6019911 +26 197.7525 201.63 1000 50 0.5407575 +27 201.63 205.5075 1000 50 0.53894436 +28 221.0175 224.895 1000 50 0.7921683 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_06-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_06-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1cc0b8be077418587939b06b26da3b4b0008239b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_06-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,155 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.5245585 +2 7.755 11.6325 1000 50 0.83185 +3 11.6325 15.51 1000 50 0.64830184 +4 15.51 19.3875 1000 50 0.5726515 +5 19.3875 23.265 1000 50 0.62047416 +6 23.265 27.142500000000002 1000 50 0.6625385 +7 31.02 34.8975 1000 50 0.5672695 +8 34.8975 38.775 1000 50 0.5233906 +9 46.53 50.4075 1000 50 0.5706556 +10 54.285 58.162499999999994 1000 50 0.6020689 +11 58.1625 62.04 1000 50 0.52134883 +12 62.04 65.9175 1000 50 0.5524305 +13 65.9175 69.795 1000 50 0.5678777 +14 77.55 81.4275 1000 50 0.70618457 +15 81.4275 85.30499999999999 1000 50 0.52745885 +16 89.1825 93.06 1000 50 0.60946935 +17 108.57 112.44749999999999 1000 50 0.55909854 +18 120.2025 124.08 1000 50 0.7644198 +19 135.7125 139.59 1000 50 0.81947577 +20 143.4675 147.345 1000 50 0.8514316 +21 158.9775 162.855 1000 50 0.7247691 +22 166.7325 170.60999999999999 1000 50 0.7077359 +23 174.4875 178.365 1000 50 0.85278386 +24 178.365 182.2425 1000 50 0.8215223 +25 182.2425 186.12 1000 50 0.69474614 +26 205.5075 209.385 1000 50 0.5743656 +27 217.14 221.01749999999998 1000 50 0.6657969 +28 221.0175 224.895 1000 50 0.52658767 +29 232.65 236.5275 1000 50 0.8934512 +30 236.5275 240.405 1000 50 0.8187441 +31 240.405 244.2825 1000 50 0.6054866 +32 248.16 252.0375 1000 50 0.70235574 +33 252.0375 255.915 1000 50 0.5504522 +34 259.7925 263.67 1000 50 0.69299513 +35 267.5475 271.425 1000 50 0.79507047 +36 271.425 275.3025 1000 50 0.701268 +37 275.3025 279.18 1000 50 0.73576576 +38 283.0575 286.935 1000 50 0.7355135 +39 286.935 290.8125 1000 50 0.78169686 +40 290.8125 294.69 1000 50 0.5605931 +41 294.69 298.5675 1000 50 0.74966335 +42 298.5675 302.445 1000 50 0.81420434 +43 317.955 321.8325 1000 50 0.61403 +44 329.5875 333.465 1000 50 0.5716677 +45 333.465 337.3425 1000 50 0.6263569 +46 341.22 345.0975 1000 50 0.8109424 +47 348.975 352.8525 1000 50 0.60873824 +48 356.73 360.6075 1000 50 0.6612713 +49 360.6075 364.485 1000 50 0.6513666 +50 364.485 368.3625 1000 50 0.8528567 +51 376.1175 379.995 1000 50 0.6142069 +52 383.8725 387.75 1000 50 0.5495673 +53 395.505 399.3825 1000 50 0.63333315 +54 403.26 407.1375 1000 50 0.7506883 +55 422.6475 426.525 1000 50 0.8543333 +56 438.1575 442.035 1000 50 0.58601177 +57 445.9125 449.79 1000 50 0.5652342 +58 469.1775 473.055 1000 50 0.7641379 +59 473.055 476.9325 1000 50 0.86871254 +60 480.81 484.6875 1000 50 0.90334594 +61 484.6875 488.565 1000 50 0.65417033 +62 492.4425 496.32 1000 50 0.69068635 +63 500.1975 504.075 1000 50 0.73830616 +64 504.075 507.9525 1000 50 0.72535104 +65 507.9525 511.83 1000 50 0.68978435 +66 523.4625 527.34 1000 50 0.61323315 +67 527.34 531.2175000000001 1000 50 0.6493045 +68 531.2175 535.095 1000 50 0.62671626 +69 535.095 538.9725000000001 1000 50 0.5333038 +70 538.9725 542.85 1000 50 0.60124445 +71 550.605 554.4825000000001 1000 50 0.5855454 +72 558.36 562.2375000000001 1000 50 0.6406654 +73 573.87 577.7475000000001 1000 50 0.7450843 +74 593.2575 597.1350000000001 1000 50 0.6985449 +75 597.135 601.0125 1000 50 0.6489042 +76 601.0125 604.8900000000001 1000 50 0.50688696 +77 604.89 608.7675 1000 50 0.7102455 +78 616.5225 620.4000000000001 1000 50 0.50073606 +79 628.155 632.0325 1000 50 0.8178332 +80 635.91 639.7875 1000 50 0.75352067 +81 651.42 655.2975 1000 50 0.6960913 +82 663.0525 666.9300000000001 1000 50 0.589799 +83 666.93 670.8075 1000 50 0.5664187 +84 674.685 678.5625 1000 50 0.78608644 +85 690.195 694.0725000000001 1000 50 0.727457 +86 697.95 701.8275000000001 1000 50 0.62564033 +87 709.5825 713.46 1000 50 0.6632635 +88 728.97 732.8475000000001 1000 50 0.55365765 +89 732.8475 736.725 1000 50 0.5168459 +90 740.6025 744.48 1000 50 0.66967034 +91 744.48 748.3575000000001 1000 50 0.7237613 +92 752.235 756.1125000000001 1000 50 0.78255147 +93 756.1125 759.99 1000 50 0.7257461 +94 783.255 787.1325 1000 50 0.66371703 +95 787.1325 791.0100000000001 1000 50 0.5480841 +96 794.8875 798.7650000000001 1000 50 0.601534 +97 798.765 802.6425 1000 50 0.57895166 +98 802.6425 806.5200000000001 1000 50 0.5244429 +99 806.52 810.3975 1000 50 0.6313488 +100 829.785 833.6625 1000 50 0.7298713 +101 856.9275 860.8050000000001 1000 50 0.84923506 +102 864.6825 868.5600000000001 1000 50 0.57268846 +103 876.315 880.1925000000001 1000 50 0.77489877 +104 880.1925 884.07 1000 50 0.66189724 +105 884.07 887.9475000000001 1000 50 0.53665054 +106 899.58 903.4575000000001 1000 50 0.9671706 +107 911.2125 915.09 1000 50 0.59758645 +108 918.9675 922.845 1000 50 0.80704993 +109 922.845 926.7225000000001 1000 50 0.59982 +110 930.6 934.4775000000001 1000 50 0.7441637 +111 949.9875 953.865 1000 50 0.64518356 +112 953.865 957.7425000000001 1000 50 0.6176508 +113 957.7425 961.62 1000 50 0.75913835 +114 969.375 973.2525 1000 50 0.7221548 +115 981.0075 984.8850000000001 1000 50 0.56675094 +116 988.7625 992.6400000000001 1000 50 0.9274398 +117 992.64 996.5175 1000 50 0.5419944 +118 996.5175 1000.3950000000001 1000 50 0.6640572 +119 1008.15 1012.0275 1000 50 0.6839954 +120 1012.0275 1015.9050000000001 1000 50 0.52827656 +121 1015.905 1019.7825 1000 50 0.6359168 +122 1019.7825 1023.6600000000001 1000 50 0.7739061 +123 1027.5375 1031.415 1000 50 0.6209041 +124 1043.0475 1046.925 1000 50 0.65692484 +125 1046.925 1050.8025 1000 50 0.76822793 +126 1058.5575 1062.435 1000 50 0.73275495 +127 1062.435 1066.3125 1000 50 0.77672744 +128 1077.945 1081.8225 1000 50 0.5103808 +129 1081.8225 1085.7 1000 50 0.57984096 +130 1085.7 1089.5775 1000 50 0.74261665 +131 1093.455 1097.3325 1000 50 0.57030153 +132 1101.21 1105.0875 1000 50 0.91037476 +133 1108.965 1112.8425 1000 50 0.55958796 +134 1120.5975 1124.4750000000001 1000 50 0.7769406 +135 1147.74 1151.6175 1000 50 0.55179715 +136 1151.6175 1155.4950000000001 1000 50 0.5935847 +137 1159.3725 1163.25 1000 50 0.53639334 +138 1163.25 1167.1275 1000 50 0.67107815 +139 1174.8825 1178.76 1000 50 0.8453329 +140 1205.9025 1209.78 1000 50 0.99202746 +141 1217.535 1221.4125000000001 1000 50 0.55074924 +142 1236.9225 1240.8 1000 50 0.6510849 +143 1244.6775 1248.555 1000 50 0.6233317 +144 1267.9425 1271.8200000000002 1000 50 0.56364566 +145 1287.33 1291.2075 1000 50 0.6304967 +146 1291.2075 1295.085 1000 50 0.5104682 +147 1302.84 1306.7175 1000 50 0.9064578 +148 1314.4725 1318.3500000000001 1000 50 0.7977719 +149 1322.2275 1326.105 1000 50 0.9443012 +150 1329.9825 1333.8600000000001 1000 50 0.9140272 +151 1333.86 1337.7375 1000 50 0.84865814 +152 1341.615 1345.4925 1000 50 0.72418773 +153 1361.0025 1364.88 1000 50 0.70308113 +154 1364.88 1368.7575000000002 1000 50 0.52201796 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_07-00-06_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_07-00-06_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..707a88b7ffdf3d73ca353ce449cdc088a683c6dd --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_07-00-06_annot_2022-11-30_01.txt @@ -0,0 +1,170 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.7420003 +2 11.6325 15.51 1000 50 0.7505702 +3 27.1425 31.02 1000 50 0.5877833 +4 38.775 42.652499999999996 1000 50 0.5405848 +5 42.6525 46.53 1000 50 0.51988405 +6 46.53 50.4075 1000 50 0.53608346 +7 50.4075 54.285 1000 50 0.58948237 +8 58.1625 62.04 1000 50 0.56500465 +9 69.795 73.6725 1000 50 0.7536808 +10 85.305 89.1825 1000 50 0.8258196 +11 89.1825 93.06 1000 50 0.55291873 +12 93.06 96.9375 1000 50 0.61884457 +13 100.815 104.6925 1000 50 0.6560863 +14 104.6925 108.57 1000 50 0.74095577 +15 108.57 112.44749999999999 1000 50 0.5415399 +16 120.2025 124.08 1000 50 0.78926724 +17 135.7125 139.59 1000 50 0.77365285 +18 147.345 151.2225 1000 50 0.6664721 +19 151.2225 155.1 1000 50 0.8301519 +20 155.1 158.9775 1000 50 0.599028 +21 166.7325 170.60999999999999 1000 50 0.5852515 +22 170.61 174.4875 1000 50 0.5822153 +23 174.4875 178.365 1000 50 0.7653199 +24 182.2425 186.12 1000 50 0.5275446 +25 193.875 197.7525 1000 50 0.7372917 +26 197.7525 201.63 1000 50 0.70662177 +27 201.63 205.5075 1000 50 0.72622514 +28 205.5075 209.385 1000 50 0.70831585 +29 209.385 213.2625 1000 50 0.5451621 +30 213.2625 217.14 1000 50 0.71550906 +31 221.0175 224.895 1000 50 0.6088725 +32 232.65 236.5275 1000 50 0.7532866 +33 236.5275 240.405 1000 50 0.7504528 +34 244.2825 248.16 1000 50 0.7132219 +35 259.7925 263.67 1000 50 0.7802735 +36 263.67 267.5475 1000 50 0.7522274 +37 267.5475 271.425 1000 50 0.63897604 +38 279.18 283.0575 1000 50 0.67979187 +39 286.935 290.8125 1000 50 0.75307107 +40 290.8125 294.69 1000 50 0.64171815 +41 294.69 298.5675 1000 50 0.52585715 +42 302.445 306.3225 1000 50 0.6833056 +43 306.3225 310.2 1000 50 0.582378 +44 310.2 314.0775 1000 50 0.7730437 +45 314.0775 317.955 1000 50 0.7108099 +46 348.975 352.8525 1000 50 0.5388972 +47 352.8525 356.73 1000 50 0.68777555 +48 356.73 360.6075 1000 50 0.75957227 +49 360.6075 364.485 1000 50 0.5413642 +50 364.485 368.3625 1000 50 0.579092 +51 368.3625 372.24 1000 50 0.6959429 +52 372.24 376.1175 1000 50 0.735798 +53 407.1375 411.015 1000 50 0.7211155 +54 411.015 414.8925 1000 50 0.7311305 +55 418.77 422.6475 1000 50 0.5917767 +56 430.4025 434.28 1000 50 0.5126411 +57 438.1575 442.035 1000 50 0.7880065 +58 449.79 453.6675 1000 50 0.5645726 +59 453.6675 457.545 1000 50 0.5510073 +60 461.4225 465.3 1000 50 0.7702933 +61 473.055 476.9325 1000 50 0.67364764 +62 484.6875 488.565 1000 50 0.5466935 +63 492.4425 496.32 1000 50 0.5731931 +64 504.075 507.9525 1000 50 0.77002984 +65 527.34 531.2175000000001 1000 50 0.7286262 +66 538.9725 542.85 1000 50 0.9592936 +67 550.605 554.4825000000001 1000 50 0.72038066 +68 554.4825 558.36 1000 50 0.98158777 +69 558.36 562.2375000000001 1000 50 0.72723645 +70 569.9925 573.87 1000 50 0.73650086 +71 581.625 585.5025 1000 50 0.6103991 +72 608.7675 612.6450000000001 1000 50 0.8258624 +73 612.645 616.5225 1000 50 0.5791356 +74 620.4 624.2775 1000 50 0.57128483 +75 639.7875 643.6650000000001 1000 50 0.5657127 +76 647.5425 651.4200000000001 1000 50 0.6237751 +77 651.42 655.2975 1000 50 0.69216555 +78 655.2975 659.1750000000001 1000 50 0.5693659 +79 659.175 663.0525 1000 50 0.5024898 +80 663.0525 666.9300000000001 1000 50 0.690524 +81 670.8075 674.6850000000001 1000 50 0.6459749 +82 678.5625 682.44 1000 50 0.79969066 +83 690.195 694.0725000000001 1000 50 0.83257914 +84 694.0725 697.95 1000 50 0.84150124 +85 697.95 701.8275000000001 1000 50 0.61479867 +86 709.5825 713.46 1000 50 0.9114442 +87 721.215 725.0925000000001 1000 50 0.73367006 +88 732.8475 736.725 1000 50 0.7691205 +89 744.48 748.3575000000001 1000 50 0.5534058 +90 752.235 756.1125000000001 1000 50 0.70265895 +91 787.1325 791.0100000000001 1000 50 0.5496973 +92 794.8875 798.7650000000001 1000 50 0.7583929 +93 798.765 802.6425 1000 50 0.6767045 +94 802.6425 806.5200000000001 1000 50 0.6117927 +95 806.52 810.3975 1000 50 0.73718125 +96 810.3975 814.2750000000001 1000 50 0.8771254 +97 818.1525 822.0300000000001 1000 50 0.7711635 +98 822.03 825.9075 1000 50 0.6861728 +99 845.295 849.1725 1000 50 0.71797305 +100 849.1725 853.0500000000001 1000 50 0.53473055 +101 853.05 856.9275 1000 50 0.8152044 +102 856.9275 860.8050000000001 1000 50 0.5753572 +103 872.4375 876.315 1000 50 0.9549492 +104 876.315 880.1925000000001 1000 50 0.50678295 +105 895.7025 899.58 1000 50 0.65525436 +106 899.58 903.4575000000001 1000 50 0.72618175 +107 903.4575 907.335 1000 50 0.6724322 +108 918.9675 922.845 1000 50 0.5400587 +109 930.6 934.4775000000001 1000 50 0.90760183 +110 934.4775 938.355 1000 50 0.756919 +111 942.2325 946.11 1000 50 0.6887697 +112 946.11 949.9875000000001 1000 50 0.53885627 +113 953.865 957.7425000000001 1000 50 0.54171693 +114 957.7425 961.62 1000 50 0.8322001 +115 961.62 965.4975000000001 1000 50 0.5559378 +116 981.0075 984.8850000000001 1000 50 0.5019714 +117 996.5175 1000.3950000000001 1000 50 0.84156686 +118 1000.395 1004.2725 1000 50 0.7362995 +119 1004.2725 1008.1500000000001 1000 50 0.61024016 +120 1008.15 1012.0275 1000 50 0.7119829 +121 1015.905 1019.7825 1000 50 0.55027044 +122 1019.7825 1023.6600000000001 1000 50 0.60620135 +123 1023.66 1027.5375 1000 50 0.64318895 +124 1027.5375 1031.415 1000 50 0.80431193 +125 1058.5575 1062.435 1000 50 0.5380373 +126 1066.3125 1070.19 1000 50 0.5262288 +127 1085.7 1089.5775 1000 50 0.61661565 +128 1089.5775 1093.4550000000002 1000 50 0.88496876 +129 1093.455 1097.3325 1000 50 0.5035701 +130 1108.965 1112.8425 1000 50 0.8006534 +131 1112.8425 1116.72 1000 50 0.6944288 +132 1128.3525 1132.23 1000 50 0.62910736 +133 1155.495 1159.3725 1000 50 0.6150931 +134 1163.25 1167.1275 1000 50 0.75291497 +135 1167.1275 1171.005 1000 50 0.698873 +136 1174.8825 1178.76 1000 50 0.8746386 +137 1178.76 1182.6375 1000 50 0.50103724 +138 1186.515 1190.3925000000002 1000 50 0.5383822 +139 1190.3925 1194.27 1000 50 0.9181829 +140 1198.1475 1202.025 1000 50 0.7547302 +141 1209.78 1213.6575 1000 50 0.7716927 +142 1217.535 1221.4125000000001 1000 50 0.6979577 +143 1225.29 1229.1675 1000 50 0.7076437 +144 1233.045 1236.9225000000001 1000 50 0.6178033 +145 1291.2075 1295.085 1000 50 0.54719543 +146 1298.9625 1302.8400000000001 1000 50 0.9594383 +147 1310.595 1314.4725 1000 50 0.60887724 +148 1329.9825 1333.8600000000001 1000 50 0.53213495 +149 1345.4925 1349.3700000000001 1000 50 0.6404288 +150 1349.37 1353.2475 1000 50 0.750161 +151 1353.2475 1357.125 1000 50 0.6568649 +152 1357.125 1361.0025 1000 50 0.60401326 +153 1361.0025 1364.88 1000 50 0.5753421 +154 1364.88 1368.7575000000002 1000 50 0.5086741 +155 1384.2675 1388.145 1000 50 0.62739253 +156 1392.0225 1395.9 1000 50 0.87273806 +157 1395.9 1399.7775000000001 1000 50 0.6692912 +158 1399.7775 1403.655 1000 50 0.71038663 +159 1403.655 1407.5325 1000 50 0.5051748 +160 1415.2875 1419.165 1000 50 0.8158345 +161 1423.0425 1426.92 1000 50 0.62360287 +162 1442.43 1446.3075000000001 1000 50 0.71374464 +163 1446.3075 1450.185 1000 50 0.7893921 +164 1450.185 1454.0625 1000 50 0.5491927 +165 1461.8175 1465.6950000000002 1000 50 0.7543603 +166 1465.695 1469.5725 1000 50 0.5523769 +167 1469.5725 1473.45 1000 50 0.5007771 +168 1473.45 1477.3275 1000 50 0.5146552 +169 1488.96 1492.8375 1000 50 0.54051924 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_08-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_08-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..288f1372382b4735a68f52698471ad2358f080e9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_08-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,10 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.6178361 +2 11.6325 15.51 1000 50 0.50328 +3 23.265 27.142500000000002 1000 50 0.63025665 +4 27.1425 31.02 1000 50 0.6289889 +5 42.6525 46.53 1000 50 0.56357396 +6 46.53 50.4075 1000 50 0.51416075 +7 58.1625 62.04 1000 50 0.7431821 +8 62.04 65.9175 1000 50 0.74791336 +9 65.9175 69.795 1000 50 0.5799052 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_08-04-49_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_08-04-49_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d217a216f1f1fcac16aa5ae4ec55904d032a3016 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_08-04-49_annot_2022-11-30_01.txt @@ -0,0 +1,153 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.85593057 +2 11.6325 15.51 1000 50 0.7134284 +3 19.3875 23.265 1000 50 0.706963 +4 23.265 27.142500000000002 1000 50 0.65621006 +5 27.1425 31.02 1000 50 0.7722187 +6 31.02 34.8975 1000 50 0.9236192 +7 34.8975 38.775 1000 50 0.80741364 +8 50.4075 54.285 1000 50 0.6529234 +9 54.285 58.162499999999994 1000 50 0.81189585 +10 65.9175 69.795 1000 50 0.5450692 +11 73.6725 77.55 1000 50 0.58485734 +12 85.305 89.1825 1000 50 0.6002027 +13 104.6925 108.57 1000 50 0.5474315 +14 108.57 112.44749999999999 1000 50 0.689784 +15 127.9575 131.835 1000 50 0.6754065 +16 131.835 135.7125 1000 50 0.65595466 +17 139.59 143.4675 1000 50 0.8293791 +18 143.4675 147.345 1000 50 0.63426185 +19 147.345 151.2225 1000 50 0.7694072 +20 158.9775 162.855 1000 50 0.9835224 +21 162.855 166.7325 1000 50 0.51820064 +22 178.365 182.2425 1000 50 0.6125652 +23 182.2425 186.12 1000 50 0.5185406 +24 186.12 189.9975 1000 50 0.63269156 +25 189.9975 193.875 1000 50 0.5658108 +26 193.875 197.7525 1000 50 0.6604574 +27 197.7525 201.63 1000 50 0.7771771 +28 205.5075 209.385 1000 50 0.66725326 +29 209.385 213.2625 1000 50 0.6323125 +30 213.2625 217.14 1000 50 0.6685487 +31 217.14 221.01749999999998 1000 50 0.8785452 +32 228.7725 232.65 1000 50 0.5070468 +33 236.5275 240.405 1000 50 0.7761203 +34 252.0375 255.915 1000 50 0.61455435 +35 279.18 283.0575 1000 50 0.9953992 +36 286.935 290.8125 1000 50 0.5325842 +37 294.69 298.5675 1000 50 0.86565757 +38 298.5675 302.445 1000 50 0.5476075 +39 302.445 306.3225 1000 50 0.6659286 +40 321.8325 325.71 1000 50 0.76815826 +41 325.71 329.5875 1000 50 0.7760919 +42 333.465 337.3425 1000 50 0.82372904 +43 337.3425 341.21999999999997 1000 50 0.8450337 +44 341.22 345.0975 1000 50 0.6721392 +45 348.975 352.8525 1000 50 0.62365997 +46 356.73 360.6075 1000 50 0.6001875 +47 360.6075 364.485 1000 50 0.6665825 +48 368.3625 372.24 1000 50 0.5247323 +49 379.995 383.8725 1000 50 0.73125863 +50 383.8725 387.75 1000 50 0.7688871 +51 399.3825 403.26 1000 50 0.8391179 +52 403.26 407.1375 1000 50 0.5328796 +53 411.015 414.8925 1000 50 0.5787275 +54 418.77 422.6475 1000 50 0.6884154 +55 430.4025 434.28 1000 50 0.5169435 +56 434.28 438.15749999999997 1000 50 0.53075755 +57 442.035 445.9125 1000 50 0.8544507 +58 445.9125 449.79 1000 50 0.5210609 +59 453.6675 457.545 1000 50 0.53817856 +60 465.3 469.1775 1000 50 0.8145564 +61 476.9325 480.81 1000 50 0.5873926 +62 484.6875 488.565 1000 50 0.7115821 +63 504.075 507.9525 1000 50 0.6374833 +64 535.095 538.9725000000001 1000 50 0.6120782 +65 538.9725 542.85 1000 50 0.93015146 +66 542.85 546.7275000000001 1000 50 0.7735484 +67 550.605 554.4825000000001 1000 50 0.69983095 +68 554.4825 558.36 1000 50 0.75201374 +69 562.2375 566.115 1000 50 0.79310054 +70 581.625 585.5025 1000 50 0.92957455 +71 589.38 593.2575 1000 50 0.57668865 +72 597.135 601.0125 1000 50 0.8168907 +73 604.89 608.7675 1000 50 0.52913743 +74 608.7675 612.6450000000001 1000 50 0.7877154 +75 624.2775 628.1550000000001 1000 50 0.57023275 +76 639.7875 643.6650000000001 1000 50 0.62709105 +77 647.5425 651.4200000000001 1000 50 0.6654485 +78 663.0525 666.9300000000001 1000 50 0.78258175 +79 666.93 670.8075 1000 50 0.5701067 +80 670.8075 674.6850000000001 1000 50 0.51502377 +81 682.44 686.3175000000001 1000 50 0.82154274 +82 690.195 694.0725000000001 1000 50 0.654092 +83 694.0725 697.95 1000 50 0.62270933 +84 697.95 701.8275000000001 1000 50 0.6586334 +85 705.705 709.5825000000001 1000 50 0.596846 +86 725.0925 728.97 1000 50 0.6470846 +87 732.8475 736.725 1000 50 0.78885794 +88 736.725 740.6025000000001 1000 50 0.6516715 +89 740.6025 744.48 1000 50 0.6916201 +90 752.235 756.1125000000001 1000 50 0.67343354 +91 759.99 763.8675000000001 1000 50 0.5571224 +92 767.745 771.6225000000001 1000 50 0.73929846 +93 775.5 779.3775 1000 50 0.5320797 +94 779.3775 783.2550000000001 1000 50 0.507458 +95 783.255 787.1325 1000 50 0.5410909 +96 787.1325 791.0100000000001 1000 50 0.653646 +97 798.765 802.6425 1000 50 0.7242987 +98 806.52 810.3975 1000 50 0.83249843 +99 810.3975 814.2750000000001 1000 50 0.9984328 +100 818.1525 822.0300000000001 1000 50 0.7368628 +101 825.9075 829.7850000000001 1000 50 0.5544983 +102 829.785 833.6625 1000 50 0.61704344 +103 833.6625 837.5400000000001 1000 50 0.6433231 +104 837.54 841.4175 1000 50 0.6750648 +105 841.4175 845.2950000000001 1000 50 0.64016247 +106 849.1725 853.0500000000001 1000 50 0.6247698 +107 856.9275 860.8050000000001 1000 50 0.5980714 +108 860.805 864.6825 1000 50 0.5240504 +109 872.4375 876.315 1000 50 0.9553872 +110 876.315 880.1925000000001 1000 50 0.7726872 +111 880.1925 884.07 1000 50 0.584621 +112 884.07 887.9475000000001 1000 50 0.98062813 +113 887.9475 891.825 1000 50 0.5654005 +114 891.825 895.7025000000001 1000 50 0.79510957 +115 907.335 911.2125000000001 1000 50 0.9119173 +116 915.09 918.9675000000001 1000 50 0.5529174 +117 922.845 926.7225000000001 1000 50 0.5099044 +118 926.7225 930.6 1000 50 0.5329482 +119 942.2325 946.11 1000 50 0.8791005 +120 953.865 957.7425000000001 1000 50 0.662305 +121 957.7425 961.62 1000 50 0.8969545 +122 961.62 965.4975000000001 1000 50 0.7083624 +123 973.2525 977.1300000000001 1000 50 0.85916185 +124 981.0075 984.8850000000001 1000 50 0.84706676 +125 984.885 988.7625 1000 50 0.68087906 +126 988.7625 992.6400000000001 1000 50 0.857358 +127 996.5175 1000.3950000000001 1000 50 0.56366634 +128 1012.0275 1015.9050000000001 1000 50 0.5096248 +129 1015.905 1019.7825 1000 50 0.5875538 +130 1019.7825 1023.6600000000001 1000 50 0.7110793 +131 1023.66 1027.5375 1000 50 0.5233327 +132 1027.5375 1031.415 1000 50 0.7494429 +133 1031.415 1035.2925 1000 50 0.69999844 +134 1039.17 1043.0475000000001 1000 50 0.5970292 +135 1043.0475 1046.925 1000 50 0.63304967 +136 1046.925 1050.8025 1000 50 0.8802155 +137 1050.8025 1054.68 1000 50 0.91855794 +138 1058.5575 1062.435 1000 50 0.9895307 +139 1070.19 1074.0675 1000 50 0.8701106 +140 1097.3325 1101.21 1000 50 0.76544464 +141 1112.8425 1116.72 1000 50 0.50160396 +142 1116.72 1120.5975 1000 50 0.67551047 +143 1120.5975 1124.4750000000001 1000 50 0.7630132 +144 1136.1075 1139.9850000000001 1000 50 0.7603471 +145 1139.985 1143.8625 1000 50 0.50739133 +146 1143.8625 1147.74 1000 50 0.83670205 +147 1163.25 1167.1275 1000 50 0.66301847 +148 1171.005 1174.8825000000002 1000 50 0.61309934 +149 1174.8825 1178.76 1000 50 0.7957871 +150 1182.6375 1186.515 1000 50 0.60251975 +151 1186.515 1190.3925000000002 1000 50 0.54505444 +152 1202.025 1205.9025000000001 1000 50 0.6511082 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_09-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_09-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d69714532de7a924946a52922b8cf041be8c1f28 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_09-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,56 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.7182966 +2 23.265 27.142500000000002 1000 50 0.99212426 +3 27.1425 31.02 1000 50 0.9090685 +4 31.02 34.8975 1000 50 0.9994375 +5 34.8975 38.775 1000 50 0.98312104 +6 38.775 42.652499999999996 1000 50 0.99923694 +7 46.53 50.4075 1000 50 0.9853012 +8 54.285 58.162499999999994 1000 50 0.67591786 +9 58.1625 62.04 1000 50 0.8612235 +10 62.04 65.9175 1000 50 0.66553485 +11 65.9175 69.795 1000 50 0.5474633 +12 69.795 73.6725 1000 50 0.9546119 +13 73.6725 77.55 1000 50 0.8843485 +14 81.4275 85.30499999999999 1000 50 0.55701625 +15 93.06 96.9375 1000 50 0.8546421 +16 100.815 104.6925 1000 50 0.7549073 +17 104.6925 108.57 1000 50 0.89322746 +18 108.57 112.44749999999999 1000 50 0.5538138 +19 116.325 120.2025 1000 50 0.81459093 +20 124.08 127.9575 1000 50 0.980682 +21 127.9575 131.835 1000 50 0.58371246 +22 147.345 151.2225 1000 50 0.87523603 +23 158.9775 162.855 1000 50 0.82011485 +24 166.7325 170.60999999999999 1000 50 0.66445744 +25 170.61 174.4875 1000 50 0.85810447 +26 174.4875 178.365 1000 50 0.63972765 +27 178.365 182.2425 1000 50 0.71021163 +28 182.2425 186.12 1000 50 0.9542457 +29 189.9975 193.875 1000 50 0.7669638 +30 193.875 197.7525 1000 50 0.9520765 +31 197.7525 201.63 1000 50 0.9891747 +32 201.63 205.5075 1000 50 0.8106464 +33 209.385 213.2625 1000 50 0.96316826 +34 213.2625 217.14 1000 50 0.5220206 +35 217.14 221.01749999999998 1000 50 0.9574493 +36 221.0175 224.895 1000 50 0.83721155 +37 224.895 228.7725 1000 50 0.86944395 +38 228.7725 232.65 1000 50 0.9198007 +39 232.65 236.5275 1000 50 0.84233934 +40 236.5275 240.405 1000 50 0.7128562 +41 240.405 244.2825 1000 50 0.73552173 +42 244.2825 248.16 1000 50 0.6046565 +43 248.16 252.0375 1000 50 0.74823964 +44 255.915 259.7925 1000 50 0.9549426 +45 263.67 267.5475 1000 50 0.84434456 +46 267.5475 271.425 1000 50 0.85843027 +47 286.935 290.8125 1000 50 0.98857784 +48 290.8125 294.69 1000 50 0.8650366 +49 294.69 298.5675 1000 50 0.7998953 +50 310.2 314.0775 1000 50 0.5658431 +51 321.8325 325.71 1000 50 0.92065835 +52 337.3425 341.21999999999997 1000 50 0.66337985 +53 348.975 352.8525 1000 50 0.7156158 +54 352.8525 356.73 1000 50 0.61491764 +55 356.73 360.6075 1000 50 0.53084046 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_09-09-40_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_09-09-40_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..97e43a2fb546f5057437ab191afee5430c9d6742 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_09-09-40_annot_2022-11-30_01.txt @@ -0,0 +1,154 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.6029671 +2 3.8775 7.755 1000 50 0.66076976 +3 7.755 11.6325 1000 50 0.80020833 +4 19.3875 23.265 1000 50 0.50138456 +5 27.1425 31.02 1000 50 0.53253984 +6 31.02 34.8975 1000 50 0.6158318 +7 34.8975 38.775 1000 50 0.5836915 +8 38.775 42.652499999999996 1000 50 0.99718 +9 42.6525 46.53 1000 50 0.6642921 +10 54.285 58.162499999999994 1000 50 0.6589889 +11 62.04 65.9175 1000 50 0.90821576 +12 65.9175 69.795 1000 50 0.64074856 +13 73.6725 77.55 1000 50 0.6663017 +14 77.55 81.4275 1000 50 0.7013189 +15 81.4275 85.30499999999999 1000 50 0.8010489 +16 104.6925 108.57 1000 50 0.5430422 +17 108.57 112.44749999999999 1000 50 0.783037 +18 120.2025 124.08 1000 50 0.6108352 +19 127.9575 131.835 1000 50 0.7600339 +20 131.835 135.7125 1000 50 0.7482641 +21 143.4675 147.345 1000 50 0.5618833 +22 147.345 151.2225 1000 50 0.63931984 +23 155.1 158.9775 1000 50 0.73498017 +24 166.7325 170.60999999999999 1000 50 0.8315152 +25 170.61 174.4875 1000 50 0.6090647 +26 174.4875 178.365 1000 50 0.6033271 +27 205.5075 209.385 1000 50 0.5710064 +28 209.385 213.2625 1000 50 0.7394968 +29 213.2625 217.14 1000 50 0.50406784 +30 224.895 228.7725 1000 50 0.65332663 +31 228.7725 232.65 1000 50 0.7112105 +32 232.65 236.5275 1000 50 0.51173145 +33 240.405 244.2825 1000 50 0.51419395 +34 244.2825 248.16 1000 50 0.74426687 +35 252.0375 255.915 1000 50 0.64187545 +36 255.915 259.7925 1000 50 0.75341535 +37 259.7925 263.67 1000 50 0.9071694 +38 263.67 267.5475 1000 50 0.9378432 +39 267.5475 271.425 1000 50 0.6135222 +40 271.425 275.3025 1000 50 0.9104525 +41 275.3025 279.18 1000 50 0.96201223 +42 286.935 290.8125 1000 50 0.98303694 +43 290.8125 294.69 1000 50 0.99992466 +44 294.69 298.5675 1000 50 0.7498337 +45 298.5675 302.445 1000 50 0.8656472 +46 302.445 306.3225 1000 50 0.9524602 +47 317.955 321.8325 1000 50 0.57124114 +48 325.71 329.5875 1000 50 0.8862856 +49 337.3425 341.21999999999997 1000 50 0.8233713 +50 348.975 352.8525 1000 50 0.7542676 +51 352.8525 356.73 1000 50 0.61670846 +52 360.6075 364.485 1000 50 0.748319 +53 364.485 368.3625 1000 50 0.5396744 +54 372.24 376.1175 1000 50 0.8365757 +55 376.1175 379.995 1000 50 0.68584806 +56 379.995 383.8725 1000 50 0.63730985 +57 383.8725 387.75 1000 50 0.6734616 +58 391.6275 395.505 1000 50 0.7829078 +59 395.505 399.3825 1000 50 0.7269338 +60 403.26 407.1375 1000 50 0.5863766 +61 414.8925 418.77 1000 50 0.64091045 +62 418.77 422.6475 1000 50 0.7456506 +63 422.6475 426.525 1000 50 0.56118727 +64 430.4025 434.28 1000 50 0.816027 +65 449.79 453.6675 1000 50 0.973776 +66 453.6675 457.545 1000 50 0.79708827 +67 457.545 461.4225 1000 50 0.5021093 +68 461.4225 465.3 1000 50 0.5006018 +69 465.3 469.1775 1000 50 0.54877096 +70 473.055 476.9325 1000 50 0.7209353 +71 492.4425 496.32 1000 50 0.8191788 +72 496.32 500.1975 1000 50 0.8542112 +73 504.075 507.9525 1000 50 0.6500651 +74 515.7075 519.585 1000 50 0.6639158 +75 523.4625 527.34 1000 50 0.8035101 +76 531.2175 535.095 1000 50 0.9998989 +77 535.095 538.9725000000001 1000 50 0.7486225 +78 542.85 546.7275000000001 1000 50 0.75675327 +79 566.115 569.9925000000001 1000 50 0.97726554 +80 569.9925 573.87 1000 50 0.7325499 +81 577.7475 581.625 1000 50 0.8365634 +82 585.5025 589.3800000000001 1000 50 0.81847584 +83 593.2575 597.1350000000001 1000 50 0.99993 +84 597.135 601.0125 1000 50 0.9261771 +85 601.0125 604.8900000000001 1000 50 0.6372722 +86 604.89 608.7675 1000 50 0.6254945 +87 616.5225 620.4000000000001 1000 50 0.9128473 +88 620.4 624.2775 1000 50 0.81065345 +89 624.2775 628.1550000000001 1000 50 0.62830454 +90 628.155 632.0325 1000 50 0.99031234 +91 632.0325 635.9100000000001 1000 50 0.8398114 +92 639.7875 643.6650000000001 1000 50 0.9400235 +93 643.665 647.5425 1000 50 0.9352059 +94 647.5425 651.4200000000001 1000 50 0.7786857 +95 651.42 655.2975 1000 50 0.99737227 +96 655.2975 659.1750000000001 1000 50 0.99271774 +97 659.175 663.0525 1000 50 0.99082536 +98 663.0525 666.9300000000001 1000 50 0.9212562 +99 666.93 670.8075 1000 50 0.7060672 +100 670.8075 674.6850000000001 1000 50 0.99814916 +101 674.685 678.5625 1000 50 0.99905854 +102 678.5625 682.44 1000 50 0.7702902 +103 682.44 686.3175000000001 1000 50 0.8413128 +104 686.3175 690.195 1000 50 0.911071 +105 690.195 694.0725000000001 1000 50 0.81613326 +106 694.0725 697.95 1000 50 0.61452705 +107 697.95 701.8275000000001 1000 50 0.9998542 +108 705.705 709.5825000000001 1000 50 0.6662579 +109 709.5825 713.46 1000 50 0.99964726 +110 717.3375 721.215 1000 50 0.8467629 +111 721.215 725.0925000000001 1000 50 0.99964345 +112 725.0925 728.97 1000 50 0.6583452 +113 728.97 732.8475000000001 1000 50 0.9999856 +114 732.8475 736.725 1000 50 0.9838231 +115 736.725 740.6025000000001 1000 50 0.8354968 +116 740.6025 744.48 1000 50 0.9925107 +117 752.235 756.1125000000001 1000 50 0.9997415 +118 756.1125 759.99 1000 50 0.9975139 +119 759.99 763.8675000000001 1000 50 0.5757862 +120 763.8675 767.745 1000 50 0.9988675 +121 767.745 771.6225000000001 1000 50 0.99882835 +122 779.3775 783.2550000000001 1000 50 0.9971841 +123 787.1325 791.0100000000001 1000 50 0.9995065 +124 798.765 802.6425 1000 50 0.8183326 +125 802.6425 806.5200000000001 1000 50 0.71819437 +126 810.3975 814.2750000000001 1000 50 0.99974793 +127 814.275 818.1525 1000 50 0.8954444 +128 818.1525 822.0300000000001 1000 50 0.95419466 +129 822.03 825.9075 1000 50 0.91529906 +130 825.9075 829.7850000000001 1000 50 0.9995708 +131 829.785 833.6625 1000 50 0.97366005 +132 833.6625 837.5400000000001 1000 50 0.9997942 +133 837.54 841.4175 1000 50 0.9646946 +134 845.295 849.1725 1000 50 0.999116 +135 849.1725 853.0500000000001 1000 50 0.99901235 +136 853.05 856.9275 1000 50 0.99999964 +137 856.9275 860.8050000000001 1000 50 0.93654066 +138 860.805 864.6825 1000 50 0.99910885 +139 864.6825 868.5600000000001 1000 50 0.9656413 +140 868.56 872.4375 1000 50 0.99770004 +141 872.4375 876.315 1000 50 0.9999665 +142 876.315 880.1925000000001 1000 50 0.96813107 +143 880.1925 884.07 1000 50 0.99785453 +144 884.07 887.9475000000001 1000 50 0.99996436 +145 887.9475 891.825 1000 50 0.98575646 +146 891.825 895.7025000000001 1000 50 0.9999794 +147 899.58 903.4575000000001 1000 50 0.9226655 +148 903.4575 907.335 1000 50 0.99895155 +149 907.335 911.2125000000001 1000 50 0.9912384 +150 911.2125 915.09 1000 50 0.93827915 +151 915.09 918.9675000000001 1000 50 0.99989426 +152 918.9675 922.845 1000 50 0.7025661 +153 922.845 926.7225000000001 1000 50 0.9704232 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_10-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_10-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..279151429b3bf9ba83cd59a581fbcad4624a6c8a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_10-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,77 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.684983 +2 7.755 11.6325 1000 50 0.7760589 +3 11.6325 15.51 1000 50 0.7175249 +4 19.3875 23.265 1000 50 0.7285976 +5 31.02 34.8975 1000 50 0.6232377 +6 38.775 42.652499999999996 1000 50 0.72706455 +7 46.53 50.4075 1000 50 0.5189547 +8 50.4075 54.285 1000 50 0.9822108 +9 58.1625 62.04 1000 50 0.64312714 +10 65.9175 69.795 1000 50 0.6885382 +11 69.795 73.6725 1000 50 0.6461052 +12 73.6725 77.55 1000 50 0.7087596 +13 81.4275 85.30499999999999 1000 50 0.98697865 +14 96.9375 100.815 1000 50 0.95270324 +15 104.6925 108.57 1000 50 0.99985635 +16 112.4475 116.325 1000 50 0.98239744 +17 120.2025 124.08 1000 50 0.5967255 +18 124.08 127.9575 1000 50 0.9100615 +19 139.59 143.4675 1000 50 0.82686543 +20 143.4675 147.345 1000 50 0.8105355 +21 147.345 151.2225 1000 50 0.5508229 +22 162.855 166.7325 1000 50 0.678695 +23 166.7325 170.60999999999999 1000 50 0.7300645 +24 178.365 182.2425 1000 50 0.5232141 +25 217.14 221.01749999999998 1000 50 0.6127674 +26 232.65 236.5275 1000 50 0.65244335 +27 236.5275 240.405 1000 50 0.5725848 +28 248.16 252.0375 1000 50 0.6159288 +29 255.915 259.7925 1000 50 0.52109337 +30 259.7925 263.67 1000 50 0.96398336 +31 263.67 267.5475 1000 50 0.9223928 +32 267.5475 271.425 1000 50 0.6394341 +33 271.425 275.3025 1000 50 0.6815255 +34 286.935 290.8125 1000 50 0.5559391 +35 290.8125 294.69 1000 50 0.5867711 +36 294.69 298.5675 1000 50 0.83275217 +37 302.445 306.3225 1000 50 0.9962877 +38 306.3225 310.2 1000 50 0.56489164 +39 310.2 314.0775 1000 50 0.5913279 +40 317.955 321.8325 1000 50 0.6191785 +41 333.465 337.3425 1000 50 0.5931989 +42 345.0975 348.975 1000 50 0.55044 +43 348.975 352.8525 1000 50 0.6508986 +44 352.8525 356.73 1000 50 0.5441692 +45 360.6075 364.485 1000 50 0.55176723 +46 368.3625 372.24 1000 50 0.8209646 +47 372.24 376.1175 1000 50 0.6485055 +48 383.8725 387.75 1000 50 0.53408986 +49 395.505 399.3825 1000 50 0.77824587 +50 399.3825 403.26 1000 50 0.6936802 +51 411.015 414.8925 1000 50 0.8014097 +52 414.8925 418.77 1000 50 0.847062 +53 422.6475 426.525 1000 50 0.68603194 +54 430.4025 434.28 1000 50 0.50736564 +55 438.1575 442.035 1000 50 0.7432003 +56 442.035 445.9125 1000 50 0.77086663 +57 445.9125 449.79 1000 50 0.71141124 +58 449.79 453.6675 1000 50 0.7791716 +59 465.3 469.1775 1000 50 0.54729605 +60 473.055 476.9325 1000 50 0.93036836 +61 476.9325 480.81 1000 50 0.56277287 +62 488.565 492.4425 1000 50 0.55464005 +63 496.32 500.1975 1000 50 0.6299258 +64 500.1975 504.075 1000 50 0.5045828 +65 504.075 507.9525 1000 50 0.5493896 +66 507.9525 511.83 1000 50 0.99356973 +67 519.585 523.4625000000001 1000 50 0.98068386 +68 531.2175 535.095 1000 50 0.89753574 +69 542.85 546.7275000000001 1000 50 0.7727993 +70 558.36 562.2375000000001 1000 50 0.5217535 +71 581.625 585.5025 1000 50 0.72732186 +72 589.38 593.2575 1000 50 0.5266684 +73 601.0125 604.8900000000001 1000 50 0.5320552 +74 608.7675 612.6450000000001 1000 50 0.68598396 +75 612.645 616.5225 1000 50 0.70996726 +76 616.5225 620.4000000000001 1000 50 0.74424565 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_10-14-12_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_10-14-12_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e374feaecb17dd2226ec3edba58e84129f7ed7d4 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_10-14-12_annot_2022-11-30_01.txt @@ -0,0 +1,96 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.8707729 +2 15.51 19.3875 1000 50 0.75088733 +3 19.3875 23.265 1000 50 0.9991032 +4 23.265 27.142500000000002 1000 50 0.5141658 +5 27.1425 31.02 1000 50 0.6698042 +6 31.02 34.8975 1000 50 0.99953485 +7 38.775 42.652499999999996 1000 50 0.9066176 +8 50.4075 54.285 1000 50 0.9747696 +9 54.285 58.162499999999994 1000 50 0.734716 +10 58.1625 62.04 1000 50 0.65149534 +11 65.9175 69.795 1000 50 0.9967349 +12 69.795 73.6725 1000 50 0.8547223 +13 77.55 81.4275 1000 50 0.89210343 +14 81.4275 85.30499999999999 1000 50 0.52084106 +15 85.305 89.1825 1000 50 0.52493 +16 93.06 96.9375 1000 50 0.7936122 +17 96.9375 100.815 1000 50 0.6046561 +18 100.815 104.6925 1000 50 0.8983016 +19 108.57 112.44749999999999 1000 50 0.7906022 +20 112.4475 116.325 1000 50 0.7290146 +21 116.325 120.2025 1000 50 0.685341 +22 120.2025 124.08 1000 50 0.5681416 +23 135.7125 139.59 1000 50 0.72094864 +24 151.2225 155.1 1000 50 0.6005672 +25 155.1 158.9775 1000 50 0.5175067 +26 170.61 174.4875 1000 50 0.6808115 +27 174.4875 178.365 1000 50 0.6475663 +28 182.2425 186.12 1000 50 0.93453735 +29 186.12 189.9975 1000 50 0.9002226 +30 193.875 197.7525 1000 50 0.520384 +31 197.7525 201.63 1000 50 0.810124 +32 201.63 205.5075 1000 50 0.51800156 +33 205.5075 209.385 1000 50 0.5878043 +34 209.385 213.2625 1000 50 0.6245211 +35 213.2625 217.14 1000 50 0.5166238 +36 221.0175 224.895 1000 50 0.65344703 +37 224.895 228.7725 1000 50 0.5225414 +38 228.7725 232.65 1000 50 0.90302324 +39 236.5275 240.405 1000 50 0.84152067 +40 252.0375 255.915 1000 50 0.7233418 +41 255.915 259.7925 1000 50 0.5178765 +42 263.67 267.5475 1000 50 0.7787367 +43 267.5475 271.425 1000 50 0.7857437 +44 271.425 275.3025 1000 50 0.69515514 +45 279.18 283.0575 1000 50 0.73174405 +46 283.0575 286.935 1000 50 0.5262317 +47 290.8125 294.69 1000 50 0.55340075 +48 306.3225 310.2 1000 50 0.8087391 +49 321.8325 325.71 1000 50 0.56781614 +50 325.71 329.5875 1000 50 0.50628865 +51 333.465 337.3425 1000 50 0.5836383 +52 337.3425 341.21999999999997 1000 50 0.6032055 +53 341.22 345.0975 1000 50 0.89127755 +54 352.8525 356.73 1000 50 0.7024894 +55 360.6075 364.485 1000 50 0.69976944 +56 364.485 368.3625 1000 50 0.6434149 +57 372.24 376.1175 1000 50 0.80566144 +58 379.995 383.8725 1000 50 0.92141527 +59 387.75 391.6275 1000 50 0.8652136 +60 391.6275 395.505 1000 50 0.70663613 +61 399.3825 403.26 1000 50 0.74473095 +62 403.26 407.1375 1000 50 0.54881597 +63 407.1375 411.015 1000 50 0.5438909 +64 418.77 422.6475 1000 50 0.8087846 +65 422.6475 426.525 1000 50 0.645215 +66 426.525 430.4025 1000 50 0.91004944 +67 430.4025 434.28 1000 50 0.56018054 +68 438.1575 442.035 1000 50 0.5878844 +69 442.035 445.9125 1000 50 0.8234567 +70 445.9125 449.79 1000 50 0.6938751 +71 449.79 453.6675 1000 50 0.81224585 +72 453.6675 457.545 1000 50 0.6685159 +73 457.545 461.4225 1000 50 0.9928676 +74 461.4225 465.3 1000 50 0.75016916 +75 469.1775 473.055 1000 50 0.9999653 +76 473.055 476.9325 1000 50 0.5227733 +77 480.81 484.6875 1000 50 0.83691454 +78 484.6875 488.565 1000 50 0.8415251 +79 488.565 492.4425 1000 50 0.8569176 +80 492.4425 496.32 1000 50 0.71699256 +81 496.32 500.1975 1000 50 0.5209693 +82 500.1975 504.075 1000 50 0.8612358 +83 504.075 507.9525 1000 50 0.5604892 +84 527.34 531.2175000000001 1000 50 0.7298709 +85 535.095 538.9725000000001 1000 50 0.6253557 +86 542.85 546.7275000000001 1000 50 0.53706205 +87 546.7275 550.605 1000 50 0.5839679 +88 554.4825 558.36 1000 50 0.5115333 +89 562.2375 566.115 1000 50 0.88930297 +90 566.115 569.9925000000001 1000 50 0.93418443 +91 601.0125 604.8900000000001 1000 50 0.59488034 +92 624.2775 628.1550000000001 1000 50 0.5500042 +93 635.91 639.7875 1000 50 0.65985787 +94 639.7875 643.6650000000001 1000 50 0.7249026 +95 643.665 647.5425 1000 50 0.8098734 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_11-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_11-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5c91dc7613fb3e8a7acf265ce438b3b0664f66f9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_11-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,149 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.5095308 +2 3.8775 7.755 1000 50 0.5893179 +3 11.6325 15.51 1000 50 0.9932522 +4 15.51 19.3875 1000 50 0.99329305 +5 34.8975 38.775 1000 50 0.6258606 +6 42.6525 46.53 1000 50 0.9789286 +7 46.53 50.4075 1000 50 0.98325133 +8 54.285 58.162499999999994 1000 50 0.96278566 +9 62.04 65.9175 1000 50 0.86458594 +10 69.795 73.6725 1000 50 0.5077388 +11 73.6725 77.55 1000 50 0.7920685 +12 77.55 81.4275 1000 50 0.66963184 +13 81.4275 85.30499999999999 1000 50 0.74579525 +14 85.305 89.1825 1000 50 0.618277 +15 93.06 96.9375 1000 50 0.8065476 +16 100.815 104.6925 1000 50 0.6860379 +17 108.57 112.44749999999999 1000 50 0.9289892 +18 112.4475 116.325 1000 50 0.66220087 +19 116.325 120.2025 1000 50 0.9404851 +20 124.08 127.9575 1000 50 0.66364336 +21 131.835 135.7125 1000 50 0.7594569 +22 135.7125 139.59 1000 50 0.7656262 +23 139.59 143.4675 1000 50 0.82140255 +24 143.4675 147.345 1000 50 0.7703339 +25 147.345 151.2225 1000 50 0.96470815 +26 151.2225 155.1 1000 50 0.76051944 +27 155.1 158.9775 1000 50 0.965327 +28 158.9775 162.855 1000 50 0.61801773 +29 162.855 166.7325 1000 50 0.7664272 +30 166.7325 170.60999999999999 1000 50 0.9257623 +31 174.4875 178.365 1000 50 0.92915714 +32 186.12 189.9975 1000 50 0.55667686 +33 189.9975 193.875 1000 50 0.5010292 +34 193.875 197.7525 1000 50 0.888978 +35 217.14 221.01749999999998 1000 50 0.9764812 +36 236.5275 240.405 1000 50 0.6169722 +37 255.915 259.7925 1000 50 0.74441993 +38 267.5475 271.425 1000 50 0.84529674 +39 279.18 283.0575 1000 50 0.6936664 +40 286.935 290.8125 1000 50 0.87765956 +41 294.69 298.5675 1000 50 0.6165017 +42 298.5675 302.445 1000 50 0.81282824 +43 310.2 314.0775 1000 50 0.68620145 +44 321.8325 325.71 1000 50 0.751069 +45 325.71 329.5875 1000 50 0.957164 +46 329.5875 333.465 1000 50 0.50395226 +47 333.465 337.3425 1000 50 0.9614993 +48 337.3425 341.21999999999997 1000 50 0.9761028 +49 345.0975 348.975 1000 50 0.7700099 +50 348.975 352.8525 1000 50 0.9492519 +51 360.6075 364.485 1000 50 0.7553971 +52 368.3625 372.24 1000 50 0.99059427 +53 383.8725 387.75 1000 50 0.73436517 +54 387.75 391.6275 1000 50 0.86171997 +55 407.1375 411.015 1000 50 0.99896514 +56 411.015 414.8925 1000 50 0.6143633 +57 418.77 422.6475 1000 50 0.57349765 +58 434.28 438.15749999999997 1000 50 0.98453575 +59 438.1575 442.035 1000 50 0.78974915 +60 442.035 445.9125 1000 50 0.51569784 +61 445.9125 449.79 1000 50 0.51084584 +62 453.6675 457.545 1000 50 0.6863285 +63 457.545 461.4225 1000 50 0.8170808 +64 461.4225 465.3 1000 50 0.88920707 +65 465.3 469.1775 1000 50 0.8275737 +66 469.1775 473.055 1000 50 0.5465006 +67 473.055 476.9325 1000 50 0.8422937 +68 476.9325 480.81 1000 50 0.9129209 +69 488.565 492.4425 1000 50 0.60490996 +70 492.4425 496.32 1000 50 0.6306794 +71 496.32 500.1975 1000 50 0.8035374 +72 504.075 507.9525 1000 50 0.95430815 +73 507.9525 511.83 1000 50 0.99801564 +74 511.83 515.7075 1000 50 0.9991543 +75 519.585 523.4625000000001 1000 50 0.78544855 +76 527.34 531.2175000000001 1000 50 0.65969604 +77 538.9725 542.85 1000 50 0.6240972 +78 542.85 546.7275000000001 1000 50 0.94818246 +79 546.7275 550.605 1000 50 0.94369197 +80 550.605 554.4825000000001 1000 50 0.7242227 +81 554.4825 558.36 1000 50 0.7901437 +82 558.36 562.2375000000001 1000 50 0.8021025 +83 562.2375 566.115 1000 50 0.9710844 +84 566.115 569.9925000000001 1000 50 0.9863442 +85 569.9925 573.87 1000 50 0.5182304 +86 573.87 577.7475000000001 1000 50 0.63503915 +87 581.625 585.5025 1000 50 0.97411716 +88 585.5025 589.3800000000001 1000 50 0.6917383 +89 589.38 593.2575 1000 50 0.6201227 +90 593.2575 597.1350000000001 1000 50 0.9898587 +91 597.135 601.0125 1000 50 0.9927583 +92 601.0125 604.8900000000001 1000 50 0.7501728 +93 612.645 616.5225 1000 50 0.9720054 +94 616.5225 620.4000000000001 1000 50 0.69934726 +95 624.2775 628.1550000000001 1000 50 0.5081417 +96 628.155 632.0325 1000 50 0.8578826 +97 632.0325 635.9100000000001 1000 50 0.8019115 +98 639.7875 643.6650000000001 1000 50 0.5811189 +99 655.2975 659.1750000000001 1000 50 0.95903456 +100 659.175 663.0525 1000 50 0.5776008 +101 663.0525 666.9300000000001 1000 50 0.7843355 +102 666.93 670.8075 1000 50 0.77319664 +103 670.8075 674.6850000000001 1000 50 0.7826749 +104 674.685 678.5625 1000 50 0.79717666 +105 686.3175 690.195 1000 50 0.6478128 +106 690.195 694.0725000000001 1000 50 0.5769862 +107 694.0725 697.95 1000 50 0.9653388 +108 701.8275 705.705 1000 50 0.8170543 +109 705.705 709.5825000000001 1000 50 0.9951256 +110 709.5825 713.46 1000 50 0.9993455 +111 713.46 717.3375000000001 1000 50 0.7619248 +112 717.3375 721.215 1000 50 0.99202627 +113 725.0925 728.97 1000 50 0.93091697 +114 728.97 732.8475000000001 1000 50 0.9928681 +115 732.8475 736.725 1000 50 0.9215409 +116 736.725 740.6025000000001 1000 50 0.9842961 +117 740.6025 744.48 1000 50 0.999062 +118 744.48 748.3575000000001 1000 50 0.82735145 +119 748.3575 752.235 1000 50 0.9998703 +120 752.235 756.1125000000001 1000 50 0.8388371 +121 756.1125 759.99 1000 50 0.6232275 +122 759.99 763.8675000000001 1000 50 0.73489136 +123 763.8675 767.745 1000 50 0.99102646 +124 767.745 771.6225000000001 1000 50 0.9950335 +125 775.5 779.3775 1000 50 0.7114983 +126 783.255 787.1325 1000 50 0.930195 +127 787.1325 791.0100000000001 1000 50 0.97268313 +128 802.6425 806.5200000000001 1000 50 0.9978294 +129 806.52 810.3975 1000 50 0.5034305 +130 810.3975 814.2750000000001 1000 50 0.8699401 +131 814.275 818.1525 1000 50 0.64849496 +132 818.1525 822.0300000000001 1000 50 0.9696278 +133 825.9075 829.7850000000001 1000 50 0.7767046 +134 833.6625 837.5400000000001 1000 50 0.9911033 +135 841.4175 845.2950000000001 1000 50 0.79246634 +136 845.295 849.1725 1000 50 0.6797823 +137 853.05 856.9275 1000 50 0.8749356 +138 856.9275 860.8050000000001 1000 50 0.6741662 +139 860.805 864.6825 1000 50 0.5430968 +140 868.56 872.4375 1000 50 0.6308857 +141 872.4375 876.315 1000 50 0.79403275 +142 876.315 880.1925000000001 1000 50 0.6137112 +143 887.9475 891.825 1000 50 0.9451829 +144 891.825 895.7025000000001 1000 50 0.55401397 +145 895.7025 899.58 1000 50 0.75869614 +146 899.58 903.4575000000001 1000 50 0.84117234 +147 907.335 911.2125000000001 1000 50 0.77578866 +148 911.2125 915.09 1000 50 0.7716099 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_11-19-14_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_11-19-14_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ff049499be446f451b9b70cdd755dc87bff91c3f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_11-19-14_annot_2022-11-30_01.txt @@ -0,0 +1,64 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.97886 +2 7.755 11.6325 1000 50 0.89719415 +3 11.6325 15.51 1000 50 0.7434411 +4 15.51 19.3875 1000 50 0.9963617 +5 19.3875 23.265 1000 50 0.98157126 +6 23.265 27.142500000000002 1000 50 0.98512036 +7 27.1425 31.02 1000 50 0.7227626 +8 31.02 34.8975 1000 50 0.93294454 +9 34.8975 38.775 1000 50 0.9999814 +10 58.1625 62.04 1000 50 0.99269134 +11 62.04 65.9175 1000 50 0.7122316 +12 65.9175 69.795 1000 50 0.6202198 +13 69.795 73.6725 1000 50 0.5590706 +14 77.55 81.4275 1000 50 0.98201996 +15 81.4275 85.30499999999999 1000 50 0.8127725 +16 85.305 89.1825 1000 50 0.99133873 +17 89.1825 93.06 1000 50 0.9961831 +18 93.06 96.9375 1000 50 0.99614394 +19 96.9375 100.815 1000 50 0.99846447 +20 100.815 104.6925 1000 50 0.7524885 +21 108.57 112.44749999999999 1000 50 0.9879224 +22 112.4475 116.325 1000 50 0.9957989 +23 116.325 120.2025 1000 50 0.6764312 +24 120.2025 124.08 1000 50 0.9983785 +25 131.835 135.7125 1000 50 0.8112341 +26 139.59 143.4675 1000 50 0.9995265 +27 147.345 151.2225 1000 50 0.9999994 +28 151.2225 155.1 1000 50 0.9468863 +29 155.1 158.9775 1000 50 0.9461436 +30 158.9775 162.855 1000 50 0.81332636 +31 162.855 166.7325 1000 50 0.9815285 +32 166.7325 170.60999999999999 1000 50 0.98982483 +33 170.61 174.4875 1000 50 0.9364082 +34 174.4875 178.365 1000 50 0.59356546 +35 178.365 182.2425 1000 50 0.98606837 +36 189.9975 193.875 1000 50 0.7448486 +37 209.385 213.2625 1000 50 0.6890427 +38 213.2625 217.14 1000 50 0.5841156 +39 217.14 221.01749999999998 1000 50 0.8434695 +40 221.0175 224.895 1000 50 0.98113453 +41 224.895 228.7725 1000 50 0.9483696 +42 232.65 236.5275 1000 50 0.92857045 +43 236.5275 240.405 1000 50 0.8059747 +44 244.2825 248.16 1000 50 0.79653865 +45 248.16 252.0375 1000 50 0.9977155 +46 252.0375 255.915 1000 50 0.6604212 +47 255.915 259.7925 1000 50 0.99607253 +48 259.7925 263.67 1000 50 0.9327431 +49 263.67 267.5475 1000 50 0.5215493 +50 267.5475 271.425 1000 50 0.9993038 +51 279.18 283.0575 1000 50 0.99741024 +52 283.0575 286.935 1000 50 0.996874 +53 290.8125 294.69 1000 50 0.9930616 +54 294.69 298.5675 1000 50 0.9983895 +55 298.5675 302.445 1000 50 0.8949924 +56 302.445 306.3225 1000 50 0.9516429 +57 306.3225 310.2 1000 50 0.67300236 +58 310.2 314.0775 1000 50 0.9950374 +59 314.0775 317.955 1000 50 0.99483335 +60 321.8325 325.71 1000 50 0.96877843 +61 325.71 329.5875 1000 50 0.90077746 +62 333.465 337.3425 1000 50 0.8265871 +63 348.975 352.8525 1000 50 0.9961628 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_12-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_12-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..3e51dade191350d9101deb8168d2cdb8aec9cfe8 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_12-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,213 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 19.3875 23.265 1000 50 0.9285789 +2 54.285 58.162499999999994 1000 50 0.7380155 +3 58.1625 62.04 1000 50 0.70968395 +4 73.6725 77.55 1000 50 0.6779847 +5 100.815 104.6925 1000 50 0.7417604 +6 104.6925 108.57 1000 50 0.58824605 +7 108.57 112.44749999999999 1000 50 0.63660467 +8 124.08 127.9575 1000 50 0.9517585 +9 131.835 135.7125 1000 50 0.99704236 +10 135.7125 139.59 1000 50 0.70062095 +11 139.59 143.4675 1000 50 0.9524517 +12 147.345 151.2225 1000 50 0.5779579 +13 151.2225 155.1 1000 50 0.92102295 +14 155.1 158.9775 1000 50 0.82297647 +15 158.9775 162.855 1000 50 0.83285457 +16 162.855 166.7325 1000 50 0.94906455 +17 166.7325 170.60999999999999 1000 50 0.9746518 +18 170.61 174.4875 1000 50 0.87395346 +19 174.4875 178.365 1000 50 0.99999 +20 178.365 182.2425 1000 50 0.9992693 +21 205.5075 209.385 1000 50 0.6626759 +22 217.14 221.01749999999998 1000 50 0.79719615 +23 221.0175 224.895 1000 50 0.6673161 +24 224.895 228.7725 1000 50 0.9997706 +25 228.7725 232.65 1000 50 0.7902709 +26 232.65 236.5275 1000 50 0.7129265 +27 236.5275 240.405 1000 50 0.9931666 +28 244.2825 248.16 1000 50 0.93417674 +29 248.16 252.0375 1000 50 0.99764925 +30 255.915 259.7925 1000 50 0.9976545 +31 259.7925 263.67 1000 50 0.78599584 +32 263.67 267.5475 1000 50 0.8596092 +33 267.5475 271.425 1000 50 0.9999505 +34 271.425 275.3025 1000 50 0.9991671 +35 283.0575 286.935 1000 50 0.50511247 +36 286.935 290.8125 1000 50 0.991791 +37 290.8125 294.69 1000 50 0.9948685 +38 294.69 298.5675 1000 50 0.74886084 +39 298.5675 302.445 1000 50 0.9979964 +40 302.445 306.3225 1000 50 0.90710413 +41 306.3225 310.2 1000 50 0.9706289 +42 310.2 314.0775 1000 50 0.9937435 +43 317.955 321.8325 1000 50 0.88684076 +44 325.71 329.5875 1000 50 0.9999995 +45 329.5875 333.465 1000 50 0.89441985 +46 333.465 337.3425 1000 50 0.6020443 +47 337.3425 341.21999999999997 1000 50 0.9978667 +48 345.0975 348.975 1000 50 0.956162 +49 348.975 352.8525 1000 50 0.9942297 +50 352.8525 356.73 1000 50 0.6960973 +51 356.73 360.6075 1000 50 0.66294885 +52 360.6075 364.485 1000 50 0.67186624 +53 364.485 368.3625 1000 50 0.95595014 +54 368.3625 372.24 1000 50 0.79129124 +55 372.24 376.1175 1000 50 0.9964514 +56 376.1175 379.995 1000 50 0.83453214 +57 379.995 383.8725 1000 50 0.9969338 +58 383.8725 387.75 1000 50 0.9640546 +59 387.75 391.6275 1000 50 0.81512713 +60 391.6275 395.505 1000 50 0.99824274 +61 395.505 399.3825 1000 50 0.99196905 +62 399.3825 403.26 1000 50 0.6521087 +63 403.26 407.1375 1000 50 0.9848049 +64 407.1375 411.015 1000 50 0.7918471 +65 411.015 414.8925 1000 50 0.99978644 +66 418.77 422.6475 1000 50 0.8313148 +67 422.6475 426.525 1000 50 0.9999739 +68 426.525 430.4025 1000 50 0.9609263 +69 434.28 438.15749999999997 1000 50 0.99999034 +70 438.1575 442.035 1000 50 0.8811681 +71 442.035 445.9125 1000 50 0.9999993 +72 445.9125 449.79 1000 50 0.983824 +73 449.79 453.6675 1000 50 0.9998727 +74 453.6675 457.545 1000 50 0.9785744 +75 457.545 461.4225 1000 50 0.95782936 +76 461.4225 465.3 1000 50 0.89020205 +77 465.3 469.1775 1000 50 0.7834527 +78 469.1775 473.055 1000 50 0.99993646 +79 473.055 476.9325 1000 50 0.6222033 +80 476.9325 480.81 1000 50 0.987255 +81 480.81 484.6875 1000 50 0.88231677 +82 484.6875 488.565 1000 50 0.99875 +83 488.565 492.4425 1000 50 0.9991985 +84 496.32 500.1975 1000 50 0.99805766 +85 500.1975 504.075 1000 50 0.9958514 +86 504.075 507.9525 1000 50 0.8259786 +87 507.9525 511.83 1000 50 0.996637 +88 511.83 515.7075 1000 50 0.99165416 +89 515.7075 519.585 1000 50 0.9999126 +90 519.585 523.4625000000001 1000 50 0.9944924 +91 523.4625 527.34 1000 50 0.9751384 +92 527.34 531.2175000000001 1000 50 0.99992883 +93 535.095 538.9725000000001 1000 50 0.6822175 +94 538.9725 542.85 1000 50 0.98962116 +95 546.7275 550.605 1000 50 0.99642134 +96 550.605 554.4825000000001 1000 50 0.98834175 +97 554.4825 558.36 1000 50 0.7431068 +98 562.2375 566.115 1000 50 0.5894269 +99 566.115 569.9925000000001 1000 50 0.58952737 +100 569.9925 573.87 1000 50 0.988591 +101 577.7475 581.625 1000 50 0.97975254 +102 581.625 585.5025 1000 50 0.9998865 +103 589.38 593.2575 1000 50 0.6387671 +104 593.2575 597.1350000000001 1000 50 0.5556506 +105 597.135 601.0125 1000 50 0.8985052 +106 604.89 608.7675 1000 50 0.7801674 +107 608.7675 612.6450000000001 1000 50 0.9929275 +108 612.645 616.5225 1000 50 0.6403182 +109 616.5225 620.4000000000001 1000 50 0.6402722 +110 643.665 647.5425 1000 50 0.70859295 +111 647.5425 651.4200000000001 1000 50 0.9111581 +112 659.175 663.0525 1000 50 0.80200046 +113 663.0525 666.9300000000001 1000 50 0.5746489 +114 690.195 694.0725000000001 1000 50 0.9939224 +115 697.95 701.8275000000001 1000 50 0.7346512 +116 705.705 709.5825000000001 1000 50 0.50083965 +117 728.97 732.8475000000001 1000 50 0.53160465 +118 740.6025 744.48 1000 50 0.57072794 +119 744.48 748.3575000000001 1000 50 0.52929854 +120 759.99 763.8675000000001 1000 50 0.7021776 +121 767.745 771.6225000000001 1000 50 0.9151461 +122 775.5 779.3775 1000 50 0.77837425 +123 783.255 787.1325 1000 50 0.9435975 +124 791.01 794.8875 1000 50 0.52576196 +125 794.8875 798.7650000000001 1000 50 0.59400374 +126 810.3975 814.2750000000001 1000 50 0.9900969 +127 814.275 818.1525 1000 50 0.92106473 +128 818.1525 822.0300000000001 1000 50 0.77521694 +129 822.03 825.9075 1000 50 0.6668431 +130 829.785 833.6625 1000 50 0.99594146 +131 833.6625 837.5400000000001 1000 50 0.9998449 +132 837.54 841.4175 1000 50 0.50201374 +133 841.4175 845.2950000000001 1000 50 0.9582567 +134 845.295 849.1725 1000 50 0.9182323 +135 853.05 856.9275 1000 50 0.99959344 +136 860.805 864.6825 1000 50 0.5811704 +137 864.6825 868.5600000000001 1000 50 0.99999213 +138 868.56 872.4375 1000 50 0.99976736 +139 876.315 880.1925000000001 1000 50 0.9994276 +140 880.1925 884.07 1000 50 0.9682054 +141 884.07 887.9475000000001 1000 50 0.99996746 +142 887.9475 891.825 1000 50 0.93499273 +143 891.825 895.7025000000001 1000 50 0.9989753 +144 895.7025 899.58 1000 50 0.99994516 +145 899.58 903.4575000000001 1000 50 0.95853704 +146 907.335 911.2125000000001 1000 50 0.6671868 +147 911.2125 915.09 1000 50 0.74950135 +148 915.09 918.9675000000001 1000 50 0.9997714 +149 918.9675 922.845 1000 50 0.9985379 +150 926.7225 930.6 1000 50 0.99887186 +151 930.6 934.4775000000001 1000 50 0.9873307 +152 934.4775 938.355 1000 50 0.9977062 +153 938.355 942.2325000000001 1000 50 0.97888744 +154 942.2325 946.11 1000 50 0.9999962 +155 946.11 949.9875000000001 1000 50 0.9850771 +156 949.9875 953.865 1000 50 0.7132225 +157 953.865 957.7425000000001 1000 50 0.92458683 +158 957.7425 961.62 1000 50 0.993877 +159 965.4975 969.375 1000 50 0.7880805 +160 969.375 973.2525 1000 50 0.95130086 +161 977.13 981.0075 1000 50 0.82659787 +162 981.0075 984.8850000000001 1000 50 0.5108206 +163 984.885 988.7625 1000 50 0.7257385 +164 988.7625 992.6400000000001 1000 50 0.85352224 +165 992.64 996.5175 1000 50 0.7861127 +166 996.5175 1000.3950000000001 1000 50 0.95473975 +167 1000.395 1004.2725 1000 50 0.9980471 +168 1004.2725 1008.1500000000001 1000 50 0.99988866 +169 1008.15 1012.0275 1000 50 0.94668716 +170 1012.0275 1015.9050000000001 1000 50 0.88180226 +171 1015.905 1019.7825 1000 50 0.92973393 +172 1019.7825 1023.6600000000001 1000 50 0.5105771 +173 1027.5375 1031.415 1000 50 0.6237796 +174 1031.415 1035.2925 1000 50 0.99641293 +175 1035.2925 1039.17 1000 50 0.9994979 +176 1039.17 1043.0475000000001 1000 50 0.7693728 +177 1043.0475 1046.925 1000 50 0.99996495 +178 1046.925 1050.8025 1000 50 0.999619 +179 1054.68 1058.5575000000001 1000 50 0.92625415 +180 1058.5575 1062.435 1000 50 0.9999759 +181 1062.435 1066.3125 1000 50 0.98224384 +182 1066.3125 1070.19 1000 50 0.81618273 +183 1070.19 1074.0675 1000 50 0.56140774 +184 1074.0675 1077.9450000000002 1000 50 0.8857591 +185 1077.945 1081.8225 1000 50 0.98155355 +186 1081.8225 1085.7 1000 50 0.72127426 +187 1085.7 1089.5775 1000 50 0.8029344 +188 1093.455 1097.3325 1000 50 0.6928919 +189 1097.3325 1101.21 1000 50 0.72875804 +190 1105.0875 1108.9650000000001 1000 50 0.99848145 +191 1108.965 1112.8425 1000 50 0.5586328 +192 1112.8425 1116.72 1000 50 0.9498939 +193 1116.72 1120.5975 1000 50 0.7866946 +194 1120.5975 1124.4750000000001 1000 50 0.9972862 +195 1128.3525 1132.23 1000 50 0.9950003 +196 1132.23 1136.1075 1000 50 0.9787622 +197 1136.1075 1139.9850000000001 1000 50 0.8753978 +198 1139.985 1143.8625 1000 50 0.9748444 +199 1143.8625 1147.74 1000 50 0.63457 +200 1147.74 1151.6175 1000 50 0.84072083 +201 1167.1275 1171.005 1000 50 0.7414698 +202 1171.005 1174.8825000000002 1000 50 0.546343 +203 1178.76 1182.6375 1000 50 0.86363024 +204 1190.3925 1194.27 1000 50 0.9570078 +205 1198.1475 1202.025 1000 50 0.8469328 +206 1205.9025 1209.78 1000 50 0.9896936 +207 1209.78 1213.6575 1000 50 0.99183816 +208 1213.6575 1217.535 1000 50 0.5117658 +209 1217.535 1221.4125000000001 1000 50 0.96505195 +210 1233.045 1236.9225000000001 1000 50 0.5972209 +211 1236.9225 1240.8 1000 50 0.7367311 +212 1240.8 1244.6775 1000 50 0.9984561 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_12-24-25_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_12-24-25_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..613fbdf8c864de8bea361a7a235b3023a6e08b2b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_12-24-25_annot_2022-11-30_01.txt @@ -0,0 +1,8 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.8991096 +2 7.755 11.6325 1000 50 0.54991174 +3 11.6325 15.51 1000 50 0.9484911 +4 19.3875 23.265 1000 50 0.603268 +5 23.265 27.142500000000002 1000 50 0.6902032 +6 27.1425 31.02 1000 50 0.6800228 +7 31.02 34.8975 1000 50 0.9083466 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_13-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_13-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..8bd0b6f7118e66b91fdb66c495a41f79eb6d40aa --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_13-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,273 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.95687574 +2 3.8775 7.755 1000 50 0.73886096 +3 11.6325 15.51 1000 50 0.99991727 +4 15.51 19.3875 1000 50 0.5364379 +5 19.3875 23.265 1000 50 0.6893022 +6 27.1425 31.02 1000 50 0.99960226 +7 31.02 34.8975 1000 50 0.9446306 +8 34.8975 38.775 1000 50 0.5955701 +9 42.6525 46.53 1000 50 0.9955782 +10 46.53 50.4075 1000 50 0.58999467 +11 62.04 65.9175 1000 50 0.9870072 +12 65.9175 69.795 1000 50 0.8537402 +13 69.795 73.6725 1000 50 0.98982763 +14 73.6725 77.55 1000 50 0.9855062 +15 77.55 81.4275 1000 50 0.97372025 +16 81.4275 85.30499999999999 1000 50 0.9196222 +17 85.305 89.1825 1000 50 0.94078845 +18 89.1825 93.06 1000 50 0.9999591 +19 93.06 96.9375 1000 50 0.977353 +20 96.9375 100.815 1000 50 0.975518 +21 100.815 104.6925 1000 50 0.95866454 +22 104.6925 108.57 1000 50 0.9999343 +23 108.57 112.44749999999999 1000 50 0.88416266 +24 112.4475 116.325 1000 50 0.860637 +25 116.325 120.2025 1000 50 0.9026674 +26 120.2025 124.08 1000 50 0.9948396 +27 124.08 127.9575 1000 50 0.99075985 +28 127.9575 131.835 1000 50 0.9990702 +29 131.835 135.7125 1000 50 0.9715235 +30 135.7125 139.59 1000 50 0.9973821 +31 139.59 143.4675 1000 50 0.9999616 +32 143.4675 147.345 1000 50 0.9966815 +33 147.345 151.2225 1000 50 0.99988556 +34 151.2225 155.1 1000 50 0.99201816 +35 155.1 158.9775 1000 50 0.88574517 +36 158.9775 162.855 1000 50 0.9936047 +37 162.855 166.7325 1000 50 0.9683223 +38 170.61 174.4875 1000 50 0.9999895 +39 174.4875 178.365 1000 50 0.9995621 +40 178.365 182.2425 1000 50 1.0 +41 182.2425 186.12 1000 50 0.99964786 +42 186.12 189.9975 1000 50 0.97361606 +43 189.9975 193.875 1000 50 0.9999511 +44 193.875 197.7525 1000 50 0.57391965 +45 197.7525 201.63 1000 50 0.99973243 +46 201.63 205.5075 1000 50 0.987182 +47 205.5075 209.385 1000 50 0.8528533 +48 209.385 213.2625 1000 50 0.99947304 +49 213.2625 217.14 1000 50 0.9642507 +50 217.14 221.01749999999998 1000 50 0.9999989 +51 221.0175 224.895 1000 50 0.9999732 +52 224.895 228.7725 1000 50 0.9842181 +53 228.7725 232.65 1000 50 0.9999964 +54 232.65 236.5275 1000 50 0.99975175 +55 240.405 244.2825 1000 50 0.9891884 +56 244.2825 248.16 1000 50 0.998672 +57 252.0375 255.915 1000 50 0.9990609 +58 255.915 259.7925 1000 50 0.9990889 +59 259.7925 263.67 1000 50 0.9995147 +60 267.5475 271.425 1000 50 0.98301226 +61 271.425 275.3025 1000 50 0.9849749 +62 279.18 283.0575 1000 50 0.9998988 +63 283.0575 286.935 1000 50 0.99719906 +64 286.935 290.8125 1000 50 0.86401665 +65 290.8125 294.69 1000 50 0.9999213 +66 294.69 298.5675 1000 50 0.97951895 +67 298.5675 302.445 1000 50 0.99980205 +68 302.445 306.3225 1000 50 0.9831586 +69 306.3225 310.2 1000 50 0.99528307 +70 314.0775 317.955 1000 50 0.9570081 +71 317.955 321.8325 1000 50 0.8650247 +72 321.8325 325.71 1000 50 0.99999774 +73 325.71 329.5875 1000 50 0.89431334 +74 329.5875 333.465 1000 50 0.9729989 +75 333.465 337.3425 1000 50 0.8972809 +76 337.3425 341.21999999999997 1000 50 0.99953675 +77 341.22 345.0975 1000 50 0.9322223 +78 348.975 352.8525 1000 50 0.99895394 +79 360.6075 364.485 1000 50 0.9284541 +80 364.485 368.3625 1000 50 0.8455333 +81 368.3625 372.24 1000 50 0.88735604 +82 372.24 376.1175 1000 50 0.99559444 +83 376.1175 379.995 1000 50 0.9740354 +84 379.995 383.8725 1000 50 0.99906975 +85 383.8725 387.75 1000 50 0.9922156 +86 387.75 391.6275 1000 50 0.99997985 +87 391.6275 395.505 1000 50 0.9748233 +88 395.505 399.3825 1000 50 0.8085612 +89 399.3825 403.26 1000 50 0.98147076 +90 403.26 407.1375 1000 50 0.98013675 +91 407.1375 411.015 1000 50 0.79434794 +92 411.015 414.8925 1000 50 0.513019 +93 414.8925 418.77 1000 50 0.9866811 +94 418.77 422.6475 1000 50 0.80848974 +95 422.6475 426.525 1000 50 0.8391571 +96 426.525 430.4025 1000 50 0.85988444 +97 434.28 438.15749999999997 1000 50 0.9964812 +98 438.1575 442.035 1000 50 0.99996734 +99 445.9125 449.79 1000 50 0.9596906 +100 453.6675 457.545 1000 50 0.71813685 +101 461.4225 465.3 1000 50 0.9959877 +102 465.3 469.1775 1000 50 0.99258703 +103 469.1775 473.055 1000 50 0.8829694 +104 473.055 476.9325 1000 50 0.8909632 +105 476.9325 480.81 1000 50 0.51724356 +106 480.81 484.6875 1000 50 0.64500564 +107 484.6875 488.565 1000 50 0.9993519 +108 488.565 492.4425 1000 50 0.6963485 +109 492.4425 496.32 1000 50 0.6601778 +110 507.9525 511.83 1000 50 0.9970143 +111 511.83 515.7075 1000 50 0.868541 +112 515.7075 519.585 1000 50 0.69592583 +113 519.585 523.4625000000001 1000 50 0.9857226 +114 523.4625 527.34 1000 50 0.99453616 +115 527.34 531.2175000000001 1000 50 0.9793443 +116 538.9725 542.85 1000 50 0.7089564 +117 550.605 554.4825000000001 1000 50 0.99955755 +118 562.2375 566.115 1000 50 0.705589 +119 573.87 577.7475000000001 1000 50 0.9995833 +120 581.625 585.5025 1000 50 0.99264866 +121 585.5025 589.3800000000001 1000 50 0.9726935 +122 589.38 593.2575 1000 50 0.70481473 +123 593.2575 597.1350000000001 1000 50 0.7920801 +124 597.135 601.0125 1000 50 0.9511976 +125 601.0125 604.8900000000001 1000 50 0.61278534 +126 616.5225 620.4000000000001 1000 50 0.5009418 +127 624.2775 628.1550000000001 1000 50 0.5035968 +128 632.0325 635.9100000000001 1000 50 0.6394338 +129 635.91 639.7875 1000 50 0.99432206 +130 639.7875 643.6650000000001 1000 50 0.63260883 +131 651.42 655.2975 1000 50 0.9981244 +132 659.175 663.0525 1000 50 0.59931433 +133 670.8075 674.6850000000001 1000 50 0.993385 +134 674.685 678.5625 1000 50 0.5998981 +135 686.3175 690.195 1000 50 0.9631962 +136 694.0725 697.95 1000 50 0.8937795 +137 701.8275 705.705 1000 50 0.90135926 +138 705.705 709.5825000000001 1000 50 0.99122286 +139 717.3375 721.215 1000 50 0.81657666 +140 721.215 725.0925000000001 1000 50 0.98293763 +141 728.97 732.8475000000001 1000 50 0.92099714 +142 732.8475 736.725 1000 50 0.8873082 +143 752.235 756.1125000000001 1000 50 0.65240705 +144 756.1125 759.99 1000 50 0.9900607 +145 759.99 763.8675000000001 1000 50 0.95217526 +146 775.5 779.3775 1000 50 0.77881473 +147 787.1325 791.0100000000001 1000 50 0.9880931 +148 798.765 802.6425 1000 50 0.76327795 +149 802.6425 806.5200000000001 1000 50 0.5784796 +150 814.275 818.1525 1000 50 0.99999833 +151 822.03 825.9075 1000 50 0.99969447 +152 825.9075 829.7850000000001 1000 50 0.990862 +153 829.785 833.6625 1000 50 0.8270052 +154 833.6625 837.5400000000001 1000 50 0.9914932 +155 837.54 841.4175 1000 50 0.99669206 +156 841.4175 845.2950000000001 1000 50 0.9983742 +157 845.295 849.1725 1000 50 0.99968004 +158 849.1725 853.0500000000001 1000 50 0.9990067 +159 853.05 856.9275 1000 50 0.8703734 +160 856.9275 860.8050000000001 1000 50 0.9995962 +161 860.805 864.6825 1000 50 0.9999999 +162 868.56 872.4375 1000 50 0.69723386 +163 872.4375 876.315 1000 50 0.9999939 +164 876.315 880.1925000000001 1000 50 0.9993612 +165 880.1925 884.07 1000 50 0.9983777 +166 884.07 887.9475000000001 1000 50 0.97715855 +167 887.9475 891.825 1000 50 0.96615636 +168 891.825 895.7025000000001 1000 50 0.9983974 +169 899.58 903.4575000000001 1000 50 0.9814403 +170 907.335 911.2125000000001 1000 50 0.98962456 +171 915.09 918.9675000000001 1000 50 0.9958162 +172 918.9675 922.845 1000 50 0.9650272 +173 922.845 926.7225000000001 1000 50 0.8796894 +174 926.7225 930.6 1000 50 0.9736041 +175 930.6 934.4775000000001 1000 50 0.99526227 +176 934.4775 938.355 1000 50 0.69067675 +177 938.355 942.2325000000001 1000 50 0.90208775 +178 942.2325 946.11 1000 50 0.9999889 +179 946.11 949.9875000000001 1000 50 0.99967444 +180 953.865 957.7425000000001 1000 50 0.9002075 +181 957.7425 961.62 1000 50 0.99919134 +182 961.62 965.4975000000001 1000 50 0.9634557 +183 965.4975 969.375 1000 50 0.9931242 +184 969.375 973.2525 1000 50 0.9923316 +185 973.2525 977.1300000000001 1000 50 0.99833906 +186 977.13 981.0075 1000 50 0.9808952 +187 981.0075 984.8850000000001 1000 50 0.67532367 +188 984.885 988.7625 1000 50 0.9997532 +189 992.64 996.5175 1000 50 0.9904461 +190 996.5175 1000.3950000000001 1000 50 0.700814 +191 1004.2725 1008.1500000000001 1000 50 0.9919166 +192 1008.15 1012.0275 1000 50 0.89989763 +193 1019.7825 1023.6600000000001 1000 50 0.64468455 +194 1027.5375 1031.415 1000 50 0.73826677 +195 1035.2925 1039.17 1000 50 0.7708004 +196 1046.925 1050.8025 1000 50 0.5467103 +197 1058.5575 1062.435 1000 50 0.6261009 +198 1066.3125 1070.19 1000 50 0.77387303 +199 1070.19 1074.0675 1000 50 0.79185224 +200 1077.945 1081.8225 1000 50 0.6829124 +201 1085.7 1089.5775 1000 50 0.7413608 +202 1089.5775 1093.4550000000002 1000 50 0.6389498 +203 1097.3325 1101.21 1000 50 0.6949711 +204 1101.21 1105.0875 1000 50 0.83822256 +205 1112.8425 1116.72 1000 50 0.60549355 +206 1116.72 1120.5975 1000 50 0.79297864 +207 1124.475 1128.3525 1000 50 0.7135914 +208 1128.3525 1132.23 1000 50 0.54000396 +209 1132.23 1136.1075 1000 50 0.67062813 +210 1136.1075 1139.9850000000001 1000 50 0.5815535 +211 1139.985 1143.8625 1000 50 0.9772191 +212 1159.3725 1163.25 1000 50 0.8456413 +213 1174.8825 1178.76 1000 50 0.9954573 +214 1178.76 1182.6375 1000 50 0.5399652 +215 1190.3925 1194.27 1000 50 0.99606824 +216 1202.025 1205.9025000000001 1000 50 0.87041473 +217 1205.9025 1209.78 1000 50 0.98018163 +218 1221.4125 1225.29 1000 50 0.8487827 +219 1225.29 1229.1675 1000 50 0.6902085 +220 1233.045 1236.9225000000001 1000 50 0.55021447 +221 1236.9225 1240.8 1000 50 0.97042525 +222 1244.6775 1248.555 1000 50 0.6757192 +223 1248.555 1252.4325000000001 1000 50 0.99989367 +224 1256.31 1260.1875 1000 50 0.7128684 +225 1260.1875 1264.065 1000 50 0.99999976 +226 1264.065 1267.9425 1000 50 0.9999993 +227 1267.9425 1271.8200000000002 1000 50 0.7768166 +228 1271.82 1275.6975 1000 50 0.90759015 +229 1275.6975 1279.575 1000 50 1.0 +230 1283.4525 1287.3300000000002 1000 50 0.99822396 +231 1287.33 1291.2075 1000 50 0.99912983 +232 1291.2075 1295.085 1000 50 0.74607915 +233 1295.085 1298.9625 1000 50 0.99679357 +234 1298.9625 1302.8400000000001 1000 50 0.89484394 +235 1302.84 1306.7175 1000 50 0.9201498 +236 1314.4725 1318.3500000000001 1000 50 0.91282034 +237 1322.2275 1326.105 1000 50 0.66195434 +238 1326.105 1329.9825 1000 50 0.99574596 +239 1333.86 1337.7375 1000 50 0.9949116 +240 1337.7375 1341.615 1000 50 0.8552806 +241 1341.615 1345.4925 1000 50 0.99960274 +242 1345.4925 1349.3700000000001 1000 50 0.7384364 +243 1349.37 1353.2475 1000 50 0.98997724 +244 1353.2475 1357.125 1000 50 0.5410077 +245 1361.0025 1364.88 1000 50 0.728541 +246 1364.88 1368.7575000000002 1000 50 0.9766236 +247 1368.7575 1372.635 1000 50 0.8619657 +248 1376.5125 1380.39 1000 50 0.9361142 +249 1380.39 1384.2675000000002 1000 50 0.8109515 +250 1384.2675 1388.145 1000 50 0.9999877 +251 1388.145 1392.0225 1000 50 0.99675095 +252 1392.0225 1395.9 1000 50 0.9999378 +253 1395.9 1399.7775000000001 1000 50 0.9999914 +254 1403.655 1407.5325 1000 50 0.99890935 +255 1407.5325 1411.41 1000 50 0.927035 +256 1411.41 1415.2875000000001 1000 50 0.99866676 +257 1423.0425 1426.92 1000 50 0.94087887 +258 1426.92 1430.7975000000001 1000 50 0.9311346 +259 1430.7975 1434.675 1000 50 0.9737047 +260 1446.3075 1450.185 1000 50 0.9961843 +261 1450.185 1454.0625 1000 50 0.9999417 +262 1454.0625 1457.94 1000 50 0.9771792 +263 1457.94 1461.8175 1000 50 0.8380776 +264 1461.8175 1465.6950000000002 1000 50 0.99937016 +265 1465.695 1469.5725 1000 50 0.99734676 +266 1469.5725 1473.45 1000 50 0.9997149 +267 1473.45 1477.3275 1000 50 0.9629353 +268 1477.3275 1481.2050000000002 1000 50 0.6796315 +269 1481.205 1485.0825 1000 50 0.99842 +270 1485.0825 1488.96 1000 50 0.5653532 +271 1488.96 1492.8375 1000 50 0.9823232 +272 1492.8375 1496.7150000000001 1000 50 0.9996024 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_14-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_14-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..7d51d815f16cd5615575dbe40c090c8904aded16 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_14-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,17 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.7001811 +2 3.8775 7.755 1000 50 0.89772063 +3 11.6325 15.51 1000 50 0.90723765 +4 15.51 19.3875 1000 50 0.99886525 +5 19.3875 23.265 1000 50 0.99898857 +6 23.265 27.142500000000002 1000 50 0.99993503 +7 27.1425 31.02 1000 50 0.99996626 +8 31.02 34.8975 1000 50 0.8556661 +9 34.8975 38.775 1000 50 0.9105208 +10 38.775 42.652499999999996 1000 50 0.99836963 +11 42.6525 46.53 1000 50 0.763411 +12 46.53 50.4075 1000 50 0.99976414 +13 50.4075 54.285 1000 50 0.89216036 +14 54.285 58.162499999999994 1000 50 0.9998926 +15 58.1625 62.04 1000 50 0.83108944 +16 62.04 65.9175 1000 50 0.93748736 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_14-06-32_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_14-06-32_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..38ac1e7172c0091edb3fe2c19599350264d6a3f9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_14-06-32_annot_2022-11-30_01.txt @@ -0,0 +1,258 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99921143 +2 3.8775 7.755 1000 50 0.970611 +3 7.755 11.6325 1000 50 0.93849677 +4 11.6325 15.51 1000 50 0.9076027 +5 19.3875 23.265 1000 50 0.51723826 +6 23.265 27.142500000000002 1000 50 0.65186054 +7 27.1425 31.02 1000 50 0.787434 +8 42.6525 46.53 1000 50 0.95169955 +9 46.53 50.4075 1000 50 0.98070794 +10 54.285 58.162499999999994 1000 50 0.916814 +11 62.04 65.9175 1000 50 0.9981957 +12 69.795 73.6725 1000 50 0.998774 +13 73.6725 77.55 1000 50 0.9115061 +14 77.55 81.4275 1000 50 0.64489514 +15 81.4275 85.30499999999999 1000 50 0.9777645 +16 85.305 89.1825 1000 50 0.6292805 +17 89.1825 93.06 1000 50 0.8569526 +18 93.06 96.9375 1000 50 0.9999949 +19 96.9375 100.815 1000 50 0.6429775 +20 100.815 104.6925 1000 50 0.99980575 +21 104.6925 108.57 1000 50 0.9689039 +22 108.57 112.44749999999999 1000 50 0.99700934 +23 112.4475 116.325 1000 50 0.7428192 +24 116.325 120.2025 1000 50 0.9999726 +25 120.2025 124.08 1000 50 0.94867605 +26 124.08 127.9575 1000 50 0.99832255 +27 127.9575 131.835 1000 50 0.98272014 +28 131.835 135.7125 1000 50 0.99588424 +29 135.7125 139.59 1000 50 0.9998746 +30 139.59 143.4675 1000 50 0.9994134 +31 143.4675 147.345 1000 50 0.99997616 +32 147.345 151.2225 1000 50 0.9999871 +33 151.2225 155.1 1000 50 0.99999726 +34 155.1 158.9775 1000 50 0.99997187 +35 158.9775 162.855 1000 50 0.99905413 +36 162.855 166.7325 1000 50 0.99997175 +37 166.7325 170.60999999999999 1000 50 0.9999852 +38 170.61 174.4875 1000 50 0.99998343 +39 174.4875 178.365 1000 50 0.99997663 +40 178.365 182.2425 1000 50 0.99999976 +41 182.2425 186.12 1000 50 0.9907645 +42 186.12 189.9975 1000 50 0.9996965 +43 189.9975 193.875 1000 50 0.9999995 +44 193.875 197.7525 1000 50 0.80129 +45 197.7525 201.63 1000 50 0.9994093 +46 201.63 205.5075 1000 50 0.9167557 +47 205.5075 209.385 1000 50 0.9844758 +48 209.385 213.2625 1000 50 0.99671376 +49 213.2625 217.14 1000 50 0.5496261 +50 217.14 221.01749999999998 1000 50 0.77484655 +51 221.0175 224.895 1000 50 0.99999607 +52 228.7725 232.65 1000 50 0.9975293 +53 232.65 236.5275 1000 50 0.9736311 +54 240.405 244.2825 1000 50 0.9999999 +55 244.2825 248.16 1000 50 0.9996588 +56 248.16 252.0375 1000 50 0.99919933 +57 252.0375 255.915 1000 50 0.9998018 +58 255.915 259.7925 1000 50 0.98598653 +59 259.7925 263.67 1000 50 0.9999993 +60 263.67 267.5475 1000 50 0.89870983 +61 267.5475 271.425 1000 50 0.9921618 +62 271.425 275.3025 1000 50 0.99999905 +63 275.3025 279.18 1000 50 0.94319165 +64 279.18 283.0575 1000 50 0.999984 +65 283.0575 286.935 1000 50 0.9996724 +66 286.935 290.8125 1000 50 0.99694484 +67 290.8125 294.69 1000 50 0.99903846 +68 294.69 298.5675 1000 50 0.99391645 +69 298.5675 302.445 1000 50 0.9992901 +70 302.445 306.3225 1000 50 0.9991204 +71 306.3225 310.2 1000 50 0.99925035 +72 314.0775 317.955 1000 50 0.9967644 +73 321.8325 325.71 1000 50 0.9993968 +74 325.71 329.5875 1000 50 0.9999957 +75 329.5875 333.465 1000 50 0.9994803 +76 333.465 337.3425 1000 50 0.99998903 +77 337.3425 341.21999999999997 1000 50 0.9997476 +78 341.22 345.0975 1000 50 0.9999372 +79 345.0975 348.975 1000 50 0.99990356 +80 348.975 352.8525 1000 50 0.999944 +81 352.8525 356.73 1000 50 0.9883046 +82 360.6075 364.485 1000 50 0.9607492 +83 364.485 368.3625 1000 50 0.9497239 +84 368.3625 372.24 1000 50 0.99895144 +85 372.24 376.1175 1000 50 0.98102874 +86 376.1175 379.995 1000 50 0.9997359 +87 379.995 383.8725 1000 50 0.97539425 +88 383.8725 387.75 1000 50 0.9076357 +89 391.6275 395.505 1000 50 0.99973947 +90 395.505 399.3825 1000 50 0.99610883 +91 399.3825 403.26 1000 50 0.9867062 +92 403.26 407.1375 1000 50 0.687549 +93 407.1375 411.015 1000 50 0.9999392 +94 411.015 414.8925 1000 50 0.99999833 +95 414.8925 418.77 1000 50 0.9952018 +96 418.77 422.6475 1000 50 0.9995345 +97 422.6475 426.525 1000 50 0.9202616 +98 426.525 430.4025 1000 50 0.9951278 +99 430.4025 434.28 1000 50 0.99984145 +100 434.28 438.15749999999997 1000 50 0.9840088 +101 438.1575 442.035 1000 50 0.61482203 +102 442.035 445.9125 1000 50 0.9998005 +103 445.9125 449.79 1000 50 0.99981254 +104 449.79 453.6675 1000 50 0.9997805 +105 453.6675 457.545 1000 50 0.9993723 +106 457.545 461.4225 1000 50 0.99759173 +107 461.4225 465.3 1000 50 0.9998479 +108 465.3 469.1775 1000 50 0.9998839 +109 469.1775 473.055 1000 50 0.998336 +110 473.055 476.9325 1000 50 0.7626852 +111 480.81 484.6875 1000 50 0.98946905 +112 484.6875 488.565 1000 50 0.9997625 +113 492.4425 496.32 1000 50 0.55187243 +114 496.32 500.1975 1000 50 0.99590516 +115 504.075 507.9525 1000 50 0.9380042 +116 507.9525 511.83 1000 50 0.9993806 +117 511.83 515.7075 1000 50 0.97376716 +118 519.585 523.4625000000001 1000 50 0.99707234 +119 523.4625 527.34 1000 50 0.9220309 +120 527.34 531.2175000000001 1000 50 0.9998841 +121 531.2175 535.095 1000 50 0.8146426 +122 538.9725 542.85 1000 50 0.99997973 +123 546.7275 550.605 1000 50 0.99210477 +124 550.605 554.4825000000001 1000 50 0.8045535 +125 554.4825 558.36 1000 50 0.9987643 +126 558.36 562.2375000000001 1000 50 0.77317023 +127 562.2375 566.115 1000 50 0.9942731 +128 566.115 569.9925000000001 1000 50 0.99962103 +129 577.7475 581.625 1000 50 0.99989724 +130 585.5025 589.3800000000001 1000 50 0.99999034 +131 589.38 593.2575 1000 50 0.99997187 +132 597.135 601.0125 1000 50 0.9999989 +133 601.0125 604.8900000000001 1000 50 0.9999683 +134 604.89 608.7675 1000 50 0.93023574 +135 608.7675 612.6450000000001 1000 50 0.9997538 +136 616.5225 620.4000000000001 1000 50 0.7633343 +137 620.4 624.2775 1000 50 0.9993812 +138 624.2775 628.1550000000001 1000 50 0.9997538 +139 628.155 632.0325 1000 50 0.9999981 +140 632.0325 635.9100000000001 1000 50 0.9986603 +141 635.91 639.7875 1000 50 0.9993205 +142 639.7875 643.6650000000001 1000 50 0.9982147 +143 643.665 647.5425 1000 50 0.99999833 +144 647.5425 651.4200000000001 1000 50 0.99976677 +145 651.42 655.2975 1000 50 0.99985385 +146 655.2975 659.1750000000001 1000 50 0.9994923 +147 659.175 663.0525 1000 50 0.999998 +148 663.0525 666.9300000000001 1000 50 0.9923822 +149 666.93 670.8075 1000 50 0.99938977 +150 670.8075 674.6850000000001 1000 50 0.99999964 +151 674.685 678.5625 1000 50 0.99999964 +152 678.5625 682.44 1000 50 0.99787486 +153 682.44 686.3175000000001 1000 50 0.9953837 +154 686.3175 690.195 1000 50 0.9905005 +155 690.195 694.0725000000001 1000 50 0.99999654 +156 694.0725 697.95 1000 50 0.9941637 +157 697.95 701.8275000000001 1000 50 0.9999945 +158 701.8275 705.705 1000 50 0.9011682 +159 705.705 709.5825000000001 1000 50 0.9999999 +160 709.5825 713.46 1000 50 0.9991554 +161 713.46 717.3375000000001 1000 50 0.99762434 +162 717.3375 721.215 1000 50 0.99981886 +163 721.215 725.0925000000001 1000 50 0.74840343 +164 725.0925 728.97 1000 50 0.9999602 +165 728.97 732.8475000000001 1000 50 0.9999858 +166 732.8475 736.725 1000 50 0.9964588 +167 736.725 740.6025000000001 1000 50 0.9999999 +168 740.6025 744.48 1000 50 0.9919416 +169 744.48 748.3575000000001 1000 50 0.99979585 +170 748.3575 752.235 1000 50 0.9956619 +171 752.235 756.1125000000001 1000 50 0.9999851 +172 756.1125 759.99 1000 50 0.9998196 +173 759.99 763.8675000000001 1000 50 0.9888237 +174 763.8675 767.745 1000 50 0.99999213 +175 767.745 771.6225000000001 1000 50 0.9999689 +176 771.6225 775.5 1000 50 0.9826949 +177 775.5 779.3775 1000 50 0.9998029 +178 779.3775 783.2550000000001 1000 50 0.99999964 +179 783.255 787.1325 1000 50 0.99997914 +180 787.1325 791.0100000000001 1000 50 0.9999026 +181 791.01 794.8875 1000 50 0.9839563 +182 794.8875 798.7650000000001 1000 50 0.9999989 +183 798.765 802.6425 1000 50 0.93881136 +184 802.6425 806.5200000000001 1000 50 0.99991083 +185 806.52 810.3975 1000 50 0.99992967 +186 810.3975 814.2750000000001 1000 50 0.99999905 +187 814.275 818.1525 1000 50 0.99919766 +188 818.1525 822.0300000000001 1000 50 0.99953496 +189 822.03 825.9075 1000 50 0.99934596 +190 825.9075 829.7850000000001 1000 50 0.9999231 +191 829.785 833.6625 1000 50 0.97857463 +192 833.6625 837.5400000000001 1000 50 0.9991943 +193 837.54 841.4175 1000 50 0.99996626 +194 841.4175 845.2950000000001 1000 50 0.6379511 +195 845.295 849.1725 1000 50 0.9908428 +196 849.1725 853.0500000000001 1000 50 0.999941 +197 853.05 856.9275 1000 50 0.73317677 +198 856.9275 860.8050000000001 1000 50 0.98677397 +199 860.805 864.6825 1000 50 0.9999999 +200 864.6825 868.5600000000001 1000 50 0.9999151 +201 868.56 872.4375 1000 50 0.97899425 +202 872.4375 876.315 1000 50 0.9998379 +203 876.315 880.1925000000001 1000 50 0.99997973 +204 880.1925 884.07 1000 50 0.9999229 +205 884.07 887.9475000000001 1000 50 0.9999969 +206 887.9475 891.825 1000 50 0.9999652 +207 891.825 895.7025000000001 1000 50 0.9999645 +208 895.7025 899.58 1000 50 0.9997955 +209 899.58 903.4575000000001 1000 50 0.99926585 +210 903.4575 907.335 1000 50 0.9932047 +211 911.2125 915.09 1000 50 0.99999964 +212 915.09 918.9675000000001 1000 50 0.7263427 +213 918.9675 922.845 1000 50 0.99931157 +214 922.845 926.7225000000001 1000 50 0.9697692 +215 926.7225 930.6 1000 50 0.9811514 +216 930.6 934.4775000000001 1000 50 0.9999831 +217 934.4775 938.355 1000 50 0.99993193 +218 938.355 942.2325000000001 1000 50 1.0 +219 942.2325 946.11 1000 50 0.9995215 +220 946.11 949.9875000000001 1000 50 0.9999987 +221 949.9875 953.865 1000 50 0.9988213 +222 953.865 957.7425000000001 1000 50 0.99964845 +223 957.7425 961.62 1000 50 0.96677613 +224 961.62 965.4975000000001 1000 50 0.7405179 +225 965.4975 969.375 1000 50 0.9944289 +226 969.375 973.2525 1000 50 0.9984059 +227 973.2525 977.1300000000001 1000 50 0.56780833 +228 977.13 981.0075 1000 50 0.99985015 +229 981.0075 984.8850000000001 1000 50 0.94635737 +230 984.885 988.7625 1000 50 0.9963031 +231 988.7625 992.6400000000001 1000 50 0.9937676 +232 996.5175 1000.3950000000001 1000 50 0.99879444 +233 1000.395 1004.2725 1000 50 0.9997253 +234 1004.2725 1008.1500000000001 1000 50 0.99775994 +235 1008.15 1012.0275 1000 50 0.99999297 +236 1012.0275 1015.9050000000001 1000 50 0.62880534 +237 1015.905 1019.7825 1000 50 0.96410286 +238 1019.7825 1023.6600000000001 1000 50 0.9575753 +239 1023.66 1027.5375 1000 50 0.54798007 +240 1027.5375 1031.415 1000 50 0.99887866 +241 1031.415 1035.2925 1000 50 0.9580118 +242 1035.2925 1039.17 1000 50 0.9999988 +243 1039.17 1043.0475000000001 1000 50 0.97319716 +244 1046.925 1050.8025 1000 50 0.725548 +245 1050.8025 1054.68 1000 50 0.6170009 +246 1054.68 1058.5575000000001 1000 50 0.9974583 +247 1062.435 1066.3125 1000 50 0.72079533 +248 1066.3125 1070.19 1000 50 0.9748898 +249 1070.19 1074.0675 1000 50 0.5539131 +250 1074.0675 1077.9450000000002 1000 50 0.8854663 +251 1077.945 1081.8225 1000 50 0.99713045 +252 1081.8225 1085.7 1000 50 0.9995921 +253 1085.7 1089.5775 1000 50 0.9965521 +254 1093.455 1097.3325 1000 50 0.94069433 +255 1097.3325 1101.21 1000 50 0.99999964 +256 1101.21 1105.0875 1000 50 0.9768261 +257 1105.0875 1108.9650000000001 1000 50 0.6900115 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_15-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_15-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5bb61aec59e828b2ea83823f53cbc9ca16dc3fd0 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_15-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,94 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999168 +2 3.8775 7.755 1000 50 0.999764 +3 7.755 11.6325 1000 50 0.99980706 +4 11.6325 15.51 1000 50 0.99993 +5 15.51 19.3875 1000 50 0.999925 +6 19.3875 23.265 1000 50 0.9860389 +7 23.265 27.142500000000002 1000 50 0.999997 +8 27.1425 31.02 1000 50 0.9999478 +9 31.02 34.8975 1000 50 0.98642284 +10 34.8975 38.775 1000 50 0.9698916 +11 42.6525 46.53 1000 50 0.99709165 +12 50.4075 54.285 1000 50 0.9999951 +13 58.1625 62.04 1000 50 0.99995124 +14 62.04 65.9175 1000 50 0.9997508 +15 69.795 73.6725 1000 50 0.9505101 +16 73.6725 77.55 1000 50 0.9999237 +17 85.305 89.1825 1000 50 0.99978286 +18 104.6925 108.57 1000 50 0.9999138 +19 108.57 112.44749999999999 1000 50 0.9002731 +20 112.4475 116.325 1000 50 0.9998011 +21 116.325 120.2025 1000 50 0.99969304 +22 124.08 127.9575 1000 50 0.9998068 +23 127.9575 131.835 1000 50 0.9999254 +24 135.7125 139.59 1000 50 0.9999782 +25 143.4675 147.345 1000 50 0.9990645 +26 147.345 151.2225 1000 50 0.99480766 +27 151.2225 155.1 1000 50 0.9635996 +28 155.1 158.9775 1000 50 0.9999286 +29 158.9775 162.855 1000 50 0.9985863 +30 166.7325 170.60999999999999 1000 50 0.99940217 +31 170.61 174.4875 1000 50 0.95142764 +32 178.365 182.2425 1000 50 1.0 +33 186.12 189.9975 1000 50 0.99601835 +34 189.9975 193.875 1000 50 0.9779043 +35 193.875 197.7525 1000 50 0.99965835 +36 197.7525 201.63 1000 50 0.9999925 +37 201.63 205.5075 1000 50 0.9679842 +38 209.385 213.2625 1000 50 0.99949026 +39 221.0175 224.895 1000 50 0.9999989 +40 224.895 228.7725 1000 50 0.7935358 +41 228.7725 232.65 1000 50 0.99999404 +42 232.65 236.5275 1000 50 0.9999999 +43 240.405 244.2825 1000 50 0.9999908 +44 244.2825 248.16 1000 50 0.9999951 +45 252.0375 255.915 1000 50 0.9999995 +46 255.915 259.7925 1000 50 0.760608 +47 259.7925 263.67 1000 50 0.8882338 +48 263.67 267.5475 1000 50 0.9996051 +49 271.425 275.3025 1000 50 0.9999056 +50 275.3025 279.18 1000 50 0.9999999 +51 279.18 283.0575 1000 50 0.9666316 +52 283.0575 286.935 1000 50 0.99998116 +53 286.935 290.8125 1000 50 0.99948776 +54 294.69 298.5675 1000 50 0.9999999 +55 298.5675 302.445 1000 50 0.9919465 +56 302.445 306.3225 1000 50 0.9959329 +57 306.3225 310.2 1000 50 0.9996717 +58 310.2 314.0775 1000 50 0.9273163 +59 314.0775 317.955 1000 50 0.9997814 +60 317.955 321.8325 1000 50 0.9995209 +61 325.71 329.5875 1000 50 0.9999999 +62 329.5875 333.465 1000 50 0.9999665 +63 333.465 337.3425 1000 50 0.9989403 +64 337.3425 341.21999999999997 1000 50 0.99998784 +65 341.22 345.0975 1000 50 0.8753031 +66 345.0975 348.975 1000 50 0.9999846 +67 348.975 352.8525 1000 50 0.99970955 +68 352.8525 356.73 1000 50 0.9999974 +69 356.73 360.6075 1000 50 0.98138267 +70 360.6075 364.485 1000 50 0.9852647 +71 364.485 368.3625 1000 50 0.9997402 +72 368.3625 372.24 1000 50 0.9999107 +73 372.24 376.1175 1000 50 0.982327 +74 376.1175 379.995 1000 50 0.9999099 +75 379.995 383.8725 1000 50 0.9999944 +76 383.8725 387.75 1000 50 0.7987335 +77 387.75 391.6275 1000 50 0.99859375 +78 391.6275 395.505 1000 50 0.6445415 +79 395.505 399.3825 1000 50 0.7948998 +80 399.3825 403.26 1000 50 0.99298203 +81 407.1375 411.015 1000 50 0.99797875 +82 411.015 414.8925 1000 50 0.9999682 +83 414.8925 418.77 1000 50 0.9084355 +84 418.77 422.6475 1000 50 0.9912144 +85 430.4025 434.28 1000 50 0.9809349 +86 438.1575 442.035 1000 50 0.98758775 +87 442.035 445.9125 1000 50 0.99636924 +88 449.79 453.6675 1000 50 0.98160446 +89 461.4225 465.3 1000 50 0.9962096 +90 465.3 469.1775 1000 50 0.8537257 +91 469.1775 473.055 1000 50 0.60499704 +92 473.055 476.9325 1000 50 0.7905942 +93 480.81 484.6875 1000 50 0.57457036 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_15-11-45_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_15-11-45_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..11a9fcbe118a42616622ef199883b6b23083af02 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_15-11-45_annot_2022-11-30_01.txt @@ -0,0 +1,139 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999523 +2 3.8775 7.755 1000 50 0.85940206 +3 7.755 11.6325 1000 50 0.99092454 +4 11.6325 15.51 1000 50 0.686028 +5 15.51 19.3875 1000 50 0.9886234 +6 19.3875 23.265 1000 50 0.99972147 +7 23.265 27.142500000000002 1000 50 0.9870591 +8 27.1425 31.02 1000 50 0.8947172 +9 31.02 34.8975 1000 50 0.9924765 +10 34.8975 38.775 1000 50 0.9996331 +11 38.775 42.652499999999996 1000 50 0.9612858 +12 42.6525 46.53 1000 50 0.9999355 +13 50.4075 54.285 1000 50 0.99467885 +14 54.285 58.162499999999994 1000 50 0.99933785 +15 58.1625 62.04 1000 50 0.82092947 +16 62.04 65.9175 1000 50 0.9998586 +17 65.9175 69.795 1000 50 0.9995766 +18 69.795 73.6725 1000 50 0.98654085 +19 73.6725 77.55 1000 50 0.9951563 +20 77.55 81.4275 1000 50 0.9986381 +21 81.4275 85.30499999999999 1000 50 0.9983753 +22 85.305 89.1825 1000 50 0.9998528 +23 89.1825 93.06 1000 50 0.9997843 +24 96.9375 100.815 1000 50 0.7930426 +25 100.815 104.6925 1000 50 0.88212794 +26 104.6925 108.57 1000 50 0.74358886 +27 108.57 112.44749999999999 1000 50 0.9840262 +28 116.325 120.2025 1000 50 0.99989486 +29 124.08 127.9575 1000 50 0.9790192 +30 127.9575 131.835 1000 50 0.970161 +31 131.835 135.7125 1000 50 0.9796569 +32 143.4675 147.345 1000 50 0.99990344 +33 147.345 151.2225 1000 50 0.9871366 +34 151.2225 155.1 1000 50 0.55553967 +35 155.1 158.9775 1000 50 0.5417893 +36 158.9775 162.855 1000 50 0.8978363 +37 162.855 166.7325 1000 50 0.85330385 +38 166.7325 170.60999999999999 1000 50 0.92748415 +39 182.2425 186.12 1000 50 0.550488 +40 186.12 189.9975 1000 50 0.66472113 +41 205.5075 209.385 1000 50 0.74356097 +42 209.385 213.2625 1000 50 0.99854434 +43 224.895 228.7725 1000 50 0.6740255 +44 228.7725 232.65 1000 50 0.71072805 +45 240.405 244.2825 1000 50 0.60928 +46 244.2825 248.16 1000 50 0.6647615 +47 248.16 252.0375 1000 50 0.5424981 +48 252.0375 255.915 1000 50 0.8191552 +49 255.915 259.7925 1000 50 0.6105749 +50 263.67 267.5475 1000 50 0.8734482 +51 275.3025 279.18 1000 50 0.6515526 +52 283.0575 286.935 1000 50 0.98716104 +53 298.5675 302.445 1000 50 0.77691144 +54 306.3225 310.2 1000 50 0.99994576 +55 310.2 314.0775 1000 50 0.55116844 +56 314.0775 317.955 1000 50 0.9999989 +57 317.955 321.8325 1000 50 0.8896067 +58 321.8325 325.71 1000 50 0.9999033 +59 325.71 329.5875 1000 50 0.99972695 +60 329.5875 333.465 1000 50 0.99780124 +61 333.465 337.3425 1000 50 0.96831 +62 337.3425 341.21999999999997 1000 50 0.99398637 +63 341.22 345.0975 1000 50 0.99975985 +64 348.975 352.8525 1000 50 0.95879745 +65 352.8525 356.73 1000 50 0.9902069 +66 356.73 360.6075 1000 50 0.9800649 +67 364.485 368.3625 1000 50 0.7218376 +68 368.3625 372.24 1000 50 0.99894124 +69 372.24 376.1175 1000 50 0.9976767 +70 379.995 383.8725 1000 50 0.9998704 +71 383.8725 387.75 1000 50 0.9920793 +72 387.75 391.6275 1000 50 0.99722725 +73 391.6275 395.505 1000 50 0.98453414 +74 395.505 399.3825 1000 50 0.9972899 +75 399.3825 403.26 1000 50 0.9999999 +76 403.26 407.1375 1000 50 0.99255836 +77 411.015 414.8925 1000 50 0.99999976 +78 418.77 422.6475 1000 50 0.9703629 +79 422.6475 426.525 1000 50 0.99959725 +80 426.525 430.4025 1000 50 0.66438514 +81 430.4025 434.28 1000 50 0.9995136 +82 434.28 438.15749999999997 1000 50 0.98899275 +83 438.1575 442.035 1000 50 0.7767014 +84 442.035 445.9125 1000 50 0.7464683 +85 445.9125 449.79 1000 50 0.92519706 +86 453.6675 457.545 1000 50 0.5109513 +87 457.545 461.4225 1000 50 0.9974433 +88 461.4225 465.3 1000 50 0.9387499 +89 465.3 469.1775 1000 50 0.5176458 +90 469.1775 473.055 1000 50 0.9445413 +91 473.055 476.9325 1000 50 0.9983277 +92 476.9325 480.81 1000 50 0.9263708 +93 480.81 484.6875 1000 50 0.98794997 +94 484.6875 488.565 1000 50 0.98937035 +95 488.565 492.4425 1000 50 0.75989115 +96 492.4425 496.32 1000 50 0.99187756 +97 500.1975 504.075 1000 50 0.9998419 +98 504.075 507.9525 1000 50 0.96950644 +99 511.83 515.7075 1000 50 0.99985075 +100 515.7075 519.585 1000 50 0.99981254 +101 519.585 523.4625000000001 1000 50 0.9898115 +102 523.4625 527.34 1000 50 0.5299411 +103 527.34 531.2175000000001 1000 50 0.5258803 +104 531.2175 535.095 1000 50 0.999681 +105 535.095 538.9725000000001 1000 50 0.6908043 +106 538.9725 542.85 1000 50 0.6890508 +107 542.85 546.7275000000001 1000 50 0.95363635 +108 546.7275 550.605 1000 50 0.629428 +109 550.605 554.4825000000001 1000 50 0.643346 +110 554.4825 558.36 1000 50 0.81317204 +111 558.36 562.2375000000001 1000 50 0.9396133 +112 566.115 569.9925000000001 1000 50 0.9025625 +113 577.7475 581.625 1000 50 0.5060236 +114 581.625 585.5025 1000 50 0.70794535 +115 585.5025 589.3800000000001 1000 50 0.93352664 +116 589.38 593.2575 1000 50 0.99827635 +117 597.135 601.0125 1000 50 0.9980945 +118 601.0125 604.8900000000001 1000 50 0.91248226 +119 604.89 608.7675 1000 50 0.993755 +120 608.7675 612.6450000000001 1000 50 0.99894553 +121 612.645 616.5225 1000 50 0.91118866 +122 616.5225 620.4000000000001 1000 50 0.5070881 +123 632.0325 635.9100000000001 1000 50 0.51402193 +124 635.91 639.7875 1000 50 0.7386092 +125 643.665 647.5425 1000 50 0.9990409 +126 659.175 663.0525 1000 50 0.81162226 +127 666.93 670.8075 1000 50 0.6333436 +128 674.685 678.5625 1000 50 0.6984984 +129 690.195 694.0725000000001 1000 50 0.88269985 +130 705.705 709.5825000000001 1000 50 0.76319313 +131 717.3375 721.215 1000 50 0.8057909 +132 732.8475 736.725 1000 50 0.89654946 +133 736.725 740.6025000000001 1000 50 0.6839221 +134 744.48 748.3575000000001 1000 50 0.94929904 +135 748.3575 752.235 1000 50 0.5212194 +136 759.99 763.8675000000001 1000 50 0.9873384 +137 791.01 794.8875 1000 50 0.7264791 +138 794.8875 798.7650000000001 1000 50 0.56709045 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_16-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_16-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f443f87ff5a849cdeb852aa29af5afaaeb4720d5 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_16-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,130 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.8273785 +2 7.755 11.6325 1000 50 0.81743133 +3 11.6325 15.51 1000 50 0.96312124 +4 19.3875 23.265 1000 50 0.9194986 +5 27.1425 31.02 1000 50 0.7337661 +6 34.8975 38.775 1000 50 0.5616467 +7 42.6525 46.53 1000 50 0.9408716 +8 46.53 50.4075 1000 50 0.85407364 +9 58.1625 62.04 1000 50 0.5635107 +10 62.04 65.9175 1000 50 0.94386494 +11 65.9175 69.795 1000 50 0.93265593 +12 73.6725 77.55 1000 50 0.8183904 +13 77.55 81.4275 1000 50 0.9861097 +14 81.4275 85.30499999999999 1000 50 0.8441686 +15 85.305 89.1825 1000 50 0.6984482 +16 93.06 96.9375 1000 50 0.88343763 +17 104.6925 108.57 1000 50 0.9914881 +18 108.57 112.44749999999999 1000 50 0.9918069 +19 112.4475 116.325 1000 50 0.9995666 +20 116.325 120.2025 1000 50 0.9868482 +21 120.2025 124.08 1000 50 0.9894505 +22 127.9575 131.835 1000 50 0.98794997 +23 131.835 135.7125 1000 50 0.9863537 +24 135.7125 139.59 1000 50 0.9665014 +25 139.59 143.4675 1000 50 0.9999118 +26 143.4675 147.345 1000 50 0.99823976 +27 151.2225 155.1 1000 50 0.9949319 +28 155.1 158.9775 1000 50 0.64752555 +29 158.9775 162.855 1000 50 0.6989469 +30 162.855 166.7325 1000 50 0.90069145 +31 166.7325 170.60999999999999 1000 50 0.83463305 +32 178.365 182.2425 1000 50 0.66768444 +33 193.875 197.7525 1000 50 0.5807181 +34 197.7525 201.63 1000 50 0.79939604 +35 209.385 213.2625 1000 50 0.8441568 +36 213.2625 217.14 1000 50 0.579491 +37 221.0175 224.895 1000 50 0.9322431 +38 244.2825 248.16 1000 50 0.8232079 +39 248.16 252.0375 1000 50 0.9027999 +40 259.7925 263.67 1000 50 0.5859003 +41 263.67 267.5475 1000 50 0.7617818 +42 267.5475 271.425 1000 50 0.79553634 +43 271.425 275.3025 1000 50 0.9997186 +44 275.3025 279.18 1000 50 0.5333033 +45 286.935 290.8125 1000 50 0.999671 +46 290.8125 294.69 1000 50 0.9563749 +47 294.69 298.5675 1000 50 0.694593 +48 298.5675 302.445 1000 50 0.9967565 +49 302.445 306.3225 1000 50 0.7692868 +50 306.3225 310.2 1000 50 0.56223696 +51 310.2 314.0775 1000 50 0.9569576 +52 314.0775 317.955 1000 50 0.9521957 +53 317.955 321.8325 1000 50 0.75641775 +54 325.71 329.5875 1000 50 0.7805249 +55 329.5875 333.465 1000 50 0.783805 +56 341.22 345.0975 1000 50 0.711923 +57 348.975 352.8525 1000 50 0.99439716 +58 352.8525 356.73 1000 50 0.996792 +59 360.6075 364.485 1000 50 0.6477853 +60 368.3625 372.24 1000 50 0.8332449 +61 379.995 383.8725 1000 50 0.5622899 +62 383.8725 387.75 1000 50 0.60499126 +63 395.505 399.3825 1000 50 0.6739241 +64 399.3825 403.26 1000 50 0.92448276 +65 403.26 407.1375 1000 50 0.949634 +66 418.77 422.6475 1000 50 0.7972446 +67 430.4025 434.28 1000 50 0.5019237 +68 438.1575 442.035 1000 50 0.6662399 +69 442.035 445.9125 1000 50 0.9597282 +70 445.9125 449.79 1000 50 0.99619365 +71 449.79 453.6675 1000 50 0.9019062 +72 453.6675 457.545 1000 50 0.9044954 +73 457.545 461.4225 1000 50 0.6677083 +74 461.4225 465.3 1000 50 0.9631772 +75 469.1775 473.055 1000 50 0.99219596 +76 473.055 476.9325 1000 50 0.8069025 +77 476.9325 480.81 1000 50 0.8799821 +78 480.81 484.6875 1000 50 0.832214 +79 496.32 500.1975 1000 50 0.70594615 +80 511.83 515.7075 1000 50 0.7523845 +81 519.585 523.4625000000001 1000 50 0.89862144 +82 527.34 531.2175000000001 1000 50 0.9496156 +83 531.2175 535.095 1000 50 0.7627941 +84 535.095 538.9725000000001 1000 50 0.9902022 +85 546.7275 550.605 1000 50 0.5027535 +86 550.605 554.4825000000001 1000 50 0.92685604 +87 554.4825 558.36 1000 50 0.6007696 +88 558.36 562.2375000000001 1000 50 0.5553721 +89 562.2375 566.115 1000 50 0.7234444 +90 569.9925 573.87 1000 50 0.9941117 +91 577.7475 581.625 1000 50 0.99629515 +92 581.625 585.5025 1000 50 0.73142076 +93 585.5025 589.3800000000001 1000 50 0.7176588 +94 589.38 593.2575 1000 50 0.9095751 +95 593.2575 597.1350000000001 1000 50 0.951133 +96 601.0125 604.8900000000001 1000 50 0.9966378 +97 604.89 608.7675 1000 50 0.55370903 +98 608.7675 612.6450000000001 1000 50 0.5999824 +99 616.5225 620.4000000000001 1000 50 0.7705553 +100 620.4 624.2775 1000 50 0.63621527 +101 624.2775 628.1550000000001 1000 50 0.98197377 +102 628.155 632.0325 1000 50 0.9970885 +103 632.0325 635.9100000000001 1000 50 0.66033596 +104 635.91 639.7875 1000 50 0.66073245 +105 651.42 655.2975 1000 50 0.854719 +106 655.2975 659.1750000000001 1000 50 0.59918237 +107 659.175 663.0525 1000 50 0.9661627 +108 666.93 670.8075 1000 50 0.58916724 +109 670.8075 674.6850000000001 1000 50 0.88717943 +110 674.685 678.5625 1000 50 0.88952845 +111 682.44 686.3175000000001 1000 50 0.9153666 +112 686.3175 690.195 1000 50 0.85337526 +113 690.195 694.0725000000001 1000 50 0.998757 +114 694.0725 697.95 1000 50 0.92300284 +115 705.705 709.5825000000001 1000 50 0.95151097 +116 721.215 725.0925000000001 1000 50 0.8018221 +117 725.0925 728.97 1000 50 0.9999863 +118 740.6025 744.48 1000 50 0.6017395 +119 748.3575 752.235 1000 50 0.92507356 +120 756.1125 759.99 1000 50 0.7180293 +121 759.99 763.8675000000001 1000 50 0.52457416 +122 763.8675 767.745 1000 50 0.9468163 +123 775.5 779.3775 1000 50 0.96599346 +124 779.3775 783.2550000000001 1000 50 0.9835132 +125 783.255 787.1325 1000 50 0.9008501 +126 787.1325 791.0100000000001 1000 50 0.88983077 +127 791.01 794.8875 1000 50 0.5263686 +128 798.765 802.6425 1000 50 0.90139395 +129 802.6425 806.5200000000001 1000 50 0.9517005 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_16-17-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_16-17-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b87c02423edb27c717b3339687e6e255ed80cd02 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_16-17-05_annot_2022-11-30_01.txt @@ -0,0 +1,77 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.86964333 +2 15.51 19.3875 1000 50 0.6920553 +3 19.3875 23.265 1000 50 0.57855326 +4 23.265 27.142500000000002 1000 50 0.86113596 +5 27.1425 31.02 1000 50 0.6146626 +6 31.02 34.8975 1000 50 0.99397236 +7 42.6525 46.53 1000 50 0.72330815 +8 50.4075 54.285 1000 50 0.9951232 +9 62.04 65.9175 1000 50 0.61064947 +10 69.795 73.6725 1000 50 0.775945 +11 73.6725 77.55 1000 50 0.99927205 +12 81.4275 85.30499999999999 1000 50 0.7801451 +13 85.305 89.1825 1000 50 0.88764477 +14 89.1825 93.06 1000 50 0.97773564 +15 96.9375 100.815 1000 50 0.5339726 +16 108.57 112.44749999999999 1000 50 0.930352 +17 116.325 120.2025 1000 50 0.9999238 +18 131.835 135.7125 1000 50 0.90154505 +19 143.4675 147.345 1000 50 0.5550068 +20 147.345 151.2225 1000 50 0.60063595 +21 151.2225 155.1 1000 50 0.82886565 +22 155.1 158.9775 1000 50 0.9819241 +23 158.9775 162.855 1000 50 0.5077203 +24 162.855 166.7325 1000 50 0.80825907 +25 178.365 182.2425 1000 50 0.5409071 +26 186.12 189.9975 1000 50 0.7330533 +27 189.9975 193.875 1000 50 0.7545123 +28 193.875 197.7525 1000 50 0.5616895 +29 197.7525 201.63 1000 50 0.98074627 +30 201.63 205.5075 1000 50 0.85319805 +31 205.5075 209.385 1000 50 0.62960476 +32 209.385 213.2625 1000 50 0.7544872 +33 213.2625 217.14 1000 50 0.8742016 +34 217.14 221.01749999999998 1000 50 0.99431074 +35 221.0175 224.895 1000 50 0.6842348 +36 224.895 228.7725 1000 50 0.607383 +37 232.65 236.5275 1000 50 0.9704231 +38 236.5275 240.405 1000 50 0.83681846 +39 240.405 244.2825 1000 50 0.56091946 +40 252.0375 255.915 1000 50 0.5620816 +41 255.915 259.7925 1000 50 0.58565336 +42 271.425 275.3025 1000 50 0.85525185 +43 283.0575 286.935 1000 50 0.89931643 +44 286.935 290.8125 1000 50 0.8227055 +45 294.69 298.5675 1000 50 0.88764507 +46 302.445 306.3225 1000 50 0.7718625 +47 306.3225 310.2 1000 50 0.9922686 +48 310.2 314.0775 1000 50 0.9978362 +49 314.0775 317.955 1000 50 0.6466164 +50 317.955 321.8325 1000 50 0.51423365 +51 321.8325 325.71 1000 50 0.9968855 +52 329.5875 333.465 1000 50 0.9947127 +53 333.465 337.3425 1000 50 0.9983584 +54 345.0975 348.975 1000 50 0.9686735 +55 348.975 352.8525 1000 50 0.6922587 +56 356.73 360.6075 1000 50 0.9871634 +57 368.3625 372.24 1000 50 0.9961051 +58 372.24 376.1175 1000 50 0.7362672 +59 376.1175 379.995 1000 50 0.9553766 +60 383.8725 387.75 1000 50 0.95708674 +61 395.505 399.3825 1000 50 0.7286508 +62 399.3825 403.26 1000 50 0.7447178 +63 403.26 407.1375 1000 50 0.8351905 +64 407.1375 411.015 1000 50 0.7144084 +65 414.8925 418.77 1000 50 0.97918963 +66 418.77 422.6475 1000 50 0.5200571 +67 422.6475 426.525 1000 50 0.7892503 +68 426.525 430.4025 1000 50 0.91750634 +69 438.1575 442.035 1000 50 0.9507969 +70 442.035 445.9125 1000 50 0.64505166 +71 445.9125 449.79 1000 50 0.99973065 +72 449.79 453.6675 1000 50 0.88249236 +73 453.6675 457.545 1000 50 0.97833633 +74 457.545 461.4225 1000 50 0.74594843 +75 461.4225 465.3 1000 50 0.56836814 +76 469.1775 473.055 1000 50 0.8098799 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_17-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_17-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f802498710596db9eb678d665735b034db0e6ff5 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_17-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,236 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.9413294 +2 15.51 19.3875 1000 50 0.97987205 +3 19.3875 23.265 1000 50 0.54576546 +4 23.265 27.142500000000002 1000 50 0.99845827 +5 27.1425 31.02 1000 50 0.6706597 +6 42.6525 46.53 1000 50 0.7593638 +7 46.53 50.4075 1000 50 0.97411287 +8 54.285 58.162499999999994 1000 50 0.8609229 +9 58.1625 62.04 1000 50 0.8237994 +10 62.04 65.9175 1000 50 0.9999827 +11 65.9175 69.795 1000 50 0.87579566 +12 73.6725 77.55 1000 50 0.7971777 +13 77.55 81.4275 1000 50 0.6737136 +14 89.1825 93.06 1000 50 0.9827351 +15 93.06 96.9375 1000 50 0.84872967 +16 96.9375 100.815 1000 50 0.9998153 +17 100.815 104.6925 1000 50 0.553962 +18 104.6925 108.57 1000 50 0.84949136 +19 108.57 112.44749999999999 1000 50 0.99993205 +20 112.4475 116.325 1000 50 0.84451234 +21 116.325 120.2025 1000 50 0.9996859 +22 120.2025 124.08 1000 50 0.99986506 +23 124.08 127.9575 1000 50 0.8889204 +24 127.9575 131.835 1000 50 0.88975704 +25 131.835 135.7125 1000 50 0.9874182 +26 135.7125 139.59 1000 50 0.5135889 +27 139.59 143.4675 1000 50 0.96909285 +28 143.4675 147.345 1000 50 0.99698144 +29 147.345 151.2225 1000 50 0.9972174 +30 151.2225 155.1 1000 50 0.8737824 +31 155.1 158.9775 1000 50 0.9995683 +32 158.9775 162.855 1000 50 0.65649086 +33 162.855 166.7325 1000 50 0.999967 +34 166.7325 170.60999999999999 1000 50 0.9908082 +35 170.61 174.4875 1000 50 0.99913496 +36 174.4875 178.365 1000 50 0.9991861 +37 178.365 182.2425 1000 50 0.9522413 +38 182.2425 186.12 1000 50 0.9611193 +39 186.12 189.9975 1000 50 0.9999864 +40 189.9975 193.875 1000 50 0.99369836 +41 193.875 197.7525 1000 50 0.9999645 +42 197.7525 201.63 1000 50 0.9998658 +43 201.63 205.5075 1000 50 0.99902534 +44 205.5075 209.385 1000 50 0.9829979 +45 209.385 213.2625 1000 50 0.9991786 +46 213.2625 217.14 1000 50 0.9973954 +47 217.14 221.01749999999998 1000 50 0.73656666 +48 221.0175 224.895 1000 50 0.9998209 +49 224.895 228.7725 1000 50 0.9993894 +50 228.7725 232.65 1000 50 0.99992836 +51 232.65 236.5275 1000 50 0.9984927 +52 236.5275 240.405 1000 50 0.99978703 +53 240.405 244.2825 1000 50 1.0 +54 244.2825 248.16 1000 50 0.50193304 +55 248.16 252.0375 1000 50 0.99177694 +56 252.0375 255.915 1000 50 0.99892265 +57 255.915 259.7925 1000 50 0.9999697 +58 259.7925 263.67 1000 50 0.8466187 +59 263.67 267.5475 1000 50 0.841499 +60 267.5475 271.425 1000 50 0.99915934 +61 271.425 275.3025 1000 50 0.9943001 +62 275.3025 279.18 1000 50 0.9773522 +63 279.18 283.0575 1000 50 0.9905934 +64 283.0575 286.935 1000 50 0.9808214 +65 286.935 290.8125 1000 50 0.9999199 +66 290.8125 294.69 1000 50 0.99987936 +67 294.69 298.5675 1000 50 0.99897814 +68 298.5675 302.445 1000 50 0.9990283 +69 302.445 306.3225 1000 50 0.99991846 +70 306.3225 310.2 1000 50 0.9995542 +71 310.2 314.0775 1000 50 0.99654996 +72 314.0775 317.955 1000 50 0.99494755 +73 317.955 321.8325 1000 50 0.8497949 +74 325.71 329.5875 1000 50 0.9949098 +75 329.5875 333.465 1000 50 0.99564445 +76 333.465 337.3425 1000 50 0.83079207 +77 337.3425 341.21999999999997 1000 50 0.9710967 +78 341.22 345.0975 1000 50 0.9841151 +79 345.0975 348.975 1000 50 0.9333612 +80 348.975 352.8525 1000 50 0.969314 +81 352.8525 356.73 1000 50 0.96094835 +82 356.73 360.6075 1000 50 0.9481054 +83 364.485 368.3625 1000 50 0.9952909 +84 368.3625 372.24 1000 50 0.8969979 +85 372.24 376.1175 1000 50 0.61426544 +86 379.995 383.8725 1000 50 0.9487697 +87 391.6275 395.505 1000 50 0.9998393 +88 395.505 399.3825 1000 50 0.9998356 +89 399.3825 403.26 1000 50 0.9700143 +90 403.26 407.1375 1000 50 0.99631304 +91 407.1375 411.015 1000 50 0.84940135 +92 418.77 422.6475 1000 50 0.99901605 +93 422.6475 426.525 1000 50 0.9832251 +94 426.525 430.4025 1000 50 0.6843277 +95 430.4025 434.28 1000 50 0.9999939 +96 434.28 438.15749999999997 1000 50 0.9808131 +97 438.1575 442.035 1000 50 0.7520056 +98 449.79 453.6675 1000 50 0.9644118 +99 453.6675 457.545 1000 50 0.99588865 +100 461.4225 465.3 1000 50 0.9629294 +101 469.1775 473.055 1000 50 0.7948303 +102 473.055 476.9325 1000 50 0.95959204 +103 480.81 484.6875 1000 50 0.97449005 +104 484.6875 488.565 1000 50 0.956947 +105 488.565 492.4425 1000 50 0.9991854 +106 492.4425 496.32 1000 50 0.8595013 +107 504.075 507.9525 1000 50 0.9999815 +108 507.9525 511.83 1000 50 0.9150754 +109 511.83 515.7075 1000 50 0.98355526 +110 515.7075 519.585 1000 50 0.9999987 +111 519.585 523.4625000000001 1000 50 0.9996184 +112 523.4625 527.34 1000 50 0.7431619 +113 527.34 531.2175000000001 1000 50 0.9155628 +114 531.2175 535.095 1000 50 0.96879286 +115 535.095 538.9725000000001 1000 50 0.97514844 +116 542.85 546.7275000000001 1000 50 0.95254 +117 558.36 562.2375000000001 1000 50 0.7448319 +118 562.2375 566.115 1000 50 0.99841225 +119 573.87 577.7475000000001 1000 50 0.99829406 +120 577.7475 581.625 1000 50 0.8115475 +121 581.625 585.5025 1000 50 0.99527466 +122 585.5025 589.3800000000001 1000 50 0.97046226 +123 589.38 593.2575 1000 50 0.86196756 +124 593.2575 597.1350000000001 1000 50 0.7723289 +125 597.135 601.0125 1000 50 0.87071484 +126 601.0125 604.8900000000001 1000 50 0.99131304 +127 604.89 608.7675 1000 50 0.92666835 +128 608.7675 612.6450000000001 1000 50 0.99944896 +129 612.645 616.5225 1000 50 0.9994752 +130 616.5225 620.4000000000001 1000 50 0.6062443 +131 620.4 624.2775 1000 50 0.73388106 +132 624.2775 628.1550000000001 1000 50 0.8761693 +133 628.155 632.0325 1000 50 0.9999846 +134 635.91 639.7875 1000 50 0.89923084 +135 639.7875 643.6650000000001 1000 50 0.99949086 +136 647.5425 651.4200000000001 1000 50 0.9719554 +137 651.42 655.2975 1000 50 0.97481287 +138 655.2975 659.1750000000001 1000 50 0.52340114 +139 663.0525 666.9300000000001 1000 50 0.7630748 +140 666.93 670.8075 1000 50 0.6462254 +141 670.8075 674.6850000000001 1000 50 0.9973807 +142 674.685 678.5625 1000 50 0.84547573 +143 678.5625 682.44 1000 50 0.99970704 +144 686.3175 690.195 1000 50 0.99491125 +145 690.195 694.0725000000001 1000 50 0.61133075 +146 697.95 701.8275000000001 1000 50 0.7710634 +147 705.705 709.5825000000001 1000 50 0.9895202 +148 709.5825 713.46 1000 50 0.6030093 +149 717.3375 721.215 1000 50 0.9998833 +150 732.8475 736.725 1000 50 0.7669035 +151 736.725 740.6025000000001 1000 50 0.8681716 +152 744.48 748.3575000000001 1000 50 0.9483283 +153 756.1125 759.99 1000 50 0.99555415 +154 763.8675 767.745 1000 50 0.9379058 +155 767.745 771.6225000000001 1000 50 0.68095726 +156 771.6225 775.5 1000 50 0.9970282 +157 783.255 787.1325 1000 50 0.5723174 +158 787.1325 791.0100000000001 1000 50 0.68344057 +159 791.01 794.8875 1000 50 0.7817747 +160 794.8875 798.7650000000001 1000 50 0.85050505 +161 798.765 802.6425 1000 50 0.56755346 +162 802.6425 806.5200000000001 1000 50 0.9981688 +163 806.52 810.3975 1000 50 0.6031977 +164 818.1525 822.0300000000001 1000 50 0.5140169 +165 825.9075 829.7850000000001 1000 50 0.8420575 +166 829.785 833.6625 1000 50 0.9996512 +167 845.295 849.1725 1000 50 0.99502414 +168 849.1725 853.0500000000001 1000 50 0.5353838 +169 853.05 856.9275 1000 50 0.9908494 +170 856.9275 860.8050000000001 1000 50 0.9998103 +171 860.805 864.6825 1000 50 0.860871 +172 864.6825 868.5600000000001 1000 50 0.87650687 +173 868.56 872.4375 1000 50 0.9912834 +174 872.4375 876.315 1000 50 0.99998367 +175 876.315 880.1925000000001 1000 50 0.7627407 +176 880.1925 884.07 1000 50 0.9616583 +177 884.07 887.9475000000001 1000 50 0.9981517 +178 887.9475 891.825 1000 50 0.9992023 +179 891.825 895.7025000000001 1000 50 0.67978674 +180 895.7025 899.58 1000 50 0.99987996 +181 899.58 903.4575000000001 1000 50 0.9354045 +182 903.4575 907.335 1000 50 0.9999949 +183 907.335 911.2125000000001 1000 50 0.9677654 +184 911.2125 915.09 1000 50 0.9901086 +185 915.09 918.9675000000001 1000 50 0.9195692 +186 918.9675 922.845 1000 50 0.9974831 +187 922.845 926.7225000000001 1000 50 0.99996483 +188 926.7225 930.6 1000 50 0.99306375 +189 930.6 934.4775000000001 1000 50 0.99996793 +190 934.4775 938.355 1000 50 0.9951486 +191 938.355 942.2325000000001 1000 50 0.98625505 +192 942.2325 946.11 1000 50 0.98337525 +193 946.11 949.9875000000001 1000 50 0.9999968 +194 953.865 957.7425000000001 1000 50 0.99934405 +195 957.7425 961.62 1000 50 0.99956673 +196 961.62 965.4975000000001 1000 50 0.9875 +197 965.4975 969.375 1000 50 0.8689791 +198 969.375 973.2525 1000 50 0.9758699 +199 973.2525 977.1300000000001 1000 50 0.9993069 +200 977.13 981.0075 1000 50 0.9088599 +201 981.0075 984.8850000000001 1000 50 0.7193601 +202 984.885 988.7625 1000 50 0.9988123 +203 988.7625 992.6400000000001 1000 50 0.99612397 +204 992.64 996.5175 1000 50 0.97986037 +205 996.5175 1000.3950000000001 1000 50 0.9913584 +206 1004.2725 1008.1500000000001 1000 50 0.9643006 +207 1008.15 1012.0275 1000 50 0.8569873 +208 1012.0275 1015.9050000000001 1000 50 0.7195076 +209 1019.7825 1023.6600000000001 1000 50 0.98716694 +210 1023.66 1027.5375 1000 50 0.989174 +211 1027.5375 1031.415 1000 50 0.9979413 +212 1031.415 1035.2925 1000 50 0.99966574 +213 1035.2925 1039.17 1000 50 0.99606365 +214 1039.17 1043.0475000000001 1000 50 0.9999392 +215 1043.0475 1046.925 1000 50 0.99998844 +216 1046.925 1050.8025 1000 50 0.964328 +217 1050.8025 1054.68 1000 50 0.98278815 +218 1054.68 1058.5575000000001 1000 50 0.7167652 +219 1058.5575 1062.435 1000 50 0.99724376 +220 1062.435 1066.3125 1000 50 0.97679025 +221 1066.3125 1070.19 1000 50 0.9997161 +222 1070.19 1074.0675 1000 50 0.99963474 +223 1074.0675 1077.9450000000002 1000 50 0.99368507 +224 1077.945 1081.8225 1000 50 0.9988293 +225 1081.8225 1085.7 1000 50 0.5265336 +226 1085.7 1089.5775 1000 50 0.9244952 +227 1089.5775 1093.4550000000002 1000 50 0.99958295 +228 1093.455 1097.3325 1000 50 0.9987676 +229 1097.3325 1101.21 1000 50 0.9996475 +230 1101.21 1105.0875 1000 50 0.90941286 +231 1105.0875 1108.9650000000001 1000 50 0.9999596 +232 1108.965 1112.8425 1000 50 0.9997913 +233 1112.8425 1116.72 1000 50 0.97926986 +234 1116.72 1120.5975 1000 50 0.8883294 +235 1120.5975 1124.4750000000001 1000 50 0.95185333 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_17-22-24_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_17-22-24_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f0b69e825c880ffcd8fe6bea341c592161642e96 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_17-22-24_annot_2022-11-30_01.txt @@ -0,0 +1,35 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.5558746 +2 3.8775 7.755 1000 50 0.6926071 +3 11.6325 15.51 1000 50 0.9819587 +4 19.3875 23.265 1000 50 0.7275426 +5 23.265 27.142500000000002 1000 50 0.7374023 +6 27.1425 31.02 1000 50 0.550935 +7 31.02 34.8975 1000 50 0.8953211 +8 34.8975 38.775 1000 50 0.57071215 +9 38.775 42.652499999999996 1000 50 0.9520717 +10 46.53 50.4075 1000 50 0.8775441 +11 50.4075 54.285 1000 50 0.5835843 +12 54.285 58.162499999999994 1000 50 0.63242745 +13 58.1625 62.04 1000 50 0.96463627 +14 62.04 65.9175 1000 50 0.9799488 +15 65.9175 69.795 1000 50 0.9995184 +16 69.795 73.6725 1000 50 0.8157126 +17 73.6725 77.55 1000 50 0.8816374 +18 77.55 81.4275 1000 50 0.99991345 +19 89.1825 93.06 1000 50 0.99389476 +20 93.06 96.9375 1000 50 0.92832094 +21 96.9375 100.815 1000 50 0.9898419 +22 100.815 104.6925 1000 50 0.9998254 +23 104.6925 108.57 1000 50 0.6535938 +24 108.57 112.44749999999999 1000 50 0.8075991 +25 112.4475 116.325 1000 50 0.99773115 +26 116.325 120.2025 1000 50 0.9999943 +27 120.2025 124.08 1000 50 0.95929307 +28 127.9575 131.835 1000 50 0.7151809 +29 131.835 135.7125 1000 50 0.97192425 +30 135.7125 139.59 1000 50 0.71298236 +31 139.59 143.4675 1000 50 0.59458447 +32 147.345 151.2225 1000 50 0.9955194 +33 151.2225 155.1 1000 50 0.99959785 +34 155.1 158.9775 1000 50 0.89387554 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_18-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_18-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..3aeee397e603562765e8b5f2011ca19f6db70948 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_18-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,318 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99625057 +2 3.8775 7.755 1000 50 0.9932087 +3 7.755 11.6325 1000 50 0.99994016 +4 11.6325 15.51 1000 50 0.99824727 +5 15.51 19.3875 1000 50 0.99983525 +6 19.3875 23.265 1000 50 0.9999988 +7 23.265 27.142500000000002 1000 50 0.95762444 +8 27.1425 31.02 1000 50 0.99966824 +9 31.02 34.8975 1000 50 0.99999976 +10 38.775 42.652499999999996 1000 50 0.99988914 +11 42.6525 46.53 1000 50 0.99993086 +12 46.53 50.4075 1000 50 0.9999478 +13 50.4075 54.285 1000 50 0.9999987 +14 54.285 58.162499999999994 1000 50 0.9999994 +15 58.1625 62.04 1000 50 0.999951 +16 62.04 65.9175 1000 50 0.99971586 +17 65.9175 69.795 1000 50 0.9999995 +18 69.795 73.6725 1000 50 0.9999826 +19 73.6725 77.55 1000 50 1.0 +20 77.55 81.4275 1000 50 0.9994659 +21 81.4275 85.30499999999999 1000 50 0.9959039 +22 85.305 89.1825 1000 50 0.9993892 +23 89.1825 93.06 1000 50 0.99977916 +24 93.06 96.9375 1000 50 0.9999989 +25 96.9375 100.815 1000 50 0.99987817 +26 100.815 104.6925 1000 50 0.99999404 +27 104.6925 108.57 1000 50 0.9999995 +28 108.57 112.44749999999999 1000 50 0.99999833 +29 112.4475 116.325 1000 50 0.9998852 +30 116.325 120.2025 1000 50 0.9999604 +31 120.2025 124.08 1000 50 1.0 +32 124.08 127.9575 1000 50 0.99997926 +33 127.9575 131.835 1000 50 0.9426696 +34 131.835 135.7125 1000 50 0.9999391 +35 135.7125 139.59 1000 50 0.88721997 +36 139.59 143.4675 1000 50 0.9998661 +37 143.4675 147.345 1000 50 0.9952631 +38 147.345 151.2225 1000 50 0.9964361 +39 151.2225 155.1 1000 50 0.99998605 +40 155.1 158.9775 1000 50 0.99952614 +41 158.9775 162.855 1000 50 0.99998224 +42 162.855 166.7325 1000 50 0.9985998 +43 166.7325 170.60999999999999 1000 50 0.9999893 +44 170.61 174.4875 1000 50 0.99763584 +45 174.4875 178.365 1000 50 0.996108 +46 178.365 182.2425 1000 50 0.9970066 +47 182.2425 186.12 1000 50 0.9952991 +48 186.12 189.9975 1000 50 0.9991691 +49 193.875 197.7525 1000 50 0.9808687 +50 197.7525 201.63 1000 50 0.8611952 +51 201.63 205.5075 1000 50 0.97009486 +52 205.5075 209.385 1000 50 0.6433671 +53 209.385 213.2625 1000 50 0.98231035 +54 217.14 221.01749999999998 1000 50 0.9993942 +55 224.895 228.7725 1000 50 0.9847438 +56 228.7725 232.65 1000 50 0.7226684 +57 232.65 236.5275 1000 50 0.99994624 +58 240.405 244.2825 1000 50 0.99081564 +59 244.2825 248.16 1000 50 0.644145 +60 252.0375 255.915 1000 50 0.85931367 +61 255.915 259.7925 1000 50 0.77512586 +62 263.67 267.5475 1000 50 0.9806486 +63 267.5475 271.425 1000 50 0.6741196 +64 275.3025 279.18 1000 50 0.6823299 +65 283.0575 286.935 1000 50 0.9996736 +66 290.8125 294.69 1000 50 0.5929622 +67 302.445 306.3225 1000 50 0.9196474 +68 306.3225 310.2 1000 50 0.9932098 +69 310.2 314.0775 1000 50 0.5882884 +70 314.0775 317.955 1000 50 0.6802821 +71 317.955 321.8325 1000 50 0.9980147 +72 325.71 329.5875 1000 50 0.931435 +73 329.5875 333.465 1000 50 0.67334104 +74 337.3425 341.21999999999997 1000 50 0.74340785 +75 341.22 345.0975 1000 50 0.9629681 +76 345.0975 348.975 1000 50 0.94020283 +77 356.73 360.6075 1000 50 0.5494897 +78 360.6075 364.485 1000 50 0.99745363 +79 364.485 368.3625 1000 50 0.9701091 +80 376.1175 379.995 1000 50 0.99776006 +81 387.75 391.6275 1000 50 0.998744 +82 391.6275 395.505 1000 50 0.7027104 +83 395.505 399.3825 1000 50 0.709501 +84 403.26 407.1375 1000 50 0.84709364 +85 407.1375 411.015 1000 50 0.85115737 +86 411.015 414.8925 1000 50 0.8678591 +87 414.8925 418.77 1000 50 0.54619443 +88 422.6475 426.525 1000 50 0.8712893 +89 426.525 430.4025 1000 50 0.7134264 +90 430.4025 434.28 1000 50 0.5511553 +91 434.28 438.15749999999997 1000 50 0.51591104 +92 438.1575 442.035 1000 50 0.9834216 +93 442.035 445.9125 1000 50 0.8742305 +94 445.9125 449.79 1000 50 0.9609427 +95 449.79 453.6675 1000 50 0.8019901 +96 453.6675 457.545 1000 50 0.8042064 +97 457.545 461.4225 1000 50 0.8446193 +98 461.4225 465.3 1000 50 0.999944 +99 465.3 469.1775 1000 50 0.9932581 +100 469.1775 473.055 1000 50 0.9398373 +101 473.055 476.9325 1000 50 0.99726677 +102 476.9325 480.81 1000 50 0.9998784 +103 484.6875 488.565 1000 50 0.9964539 +104 488.565 492.4425 1000 50 0.98725003 +105 492.4425 496.32 1000 50 0.75278825 +106 496.32 500.1975 1000 50 0.9926351 +107 500.1975 504.075 1000 50 0.5999029 +108 507.9525 511.83 1000 50 0.9978745 +109 515.7075 519.585 1000 50 0.98548955 +110 519.585 523.4625000000001 1000 50 1.0 +111 523.4625 527.34 1000 50 0.901035 +112 527.34 531.2175000000001 1000 50 0.9995834 +113 531.2175 535.095 1000 50 0.99966705 +114 535.095 538.9725000000001 1000 50 0.9995976 +115 538.9725 542.85 1000 50 0.6795027 +116 542.85 546.7275000000001 1000 50 0.99995947 +117 546.7275 550.605 1000 50 0.9890961 +118 550.605 554.4825000000001 1000 50 0.95872164 +119 554.4825 558.36 1000 50 0.9999974 +120 558.36 562.2375000000001 1000 50 0.999752 +121 562.2375 566.115 1000 50 0.99387544 +122 566.115 569.9925000000001 1000 50 0.9996891 +123 569.9925 573.87 1000 50 0.9910307 +124 573.87 577.7475000000001 1000 50 0.50710523 +125 577.7475 581.625 1000 50 0.99845195 +126 581.625 585.5025 1000 50 0.9902563 +127 585.5025 589.3800000000001 1000 50 0.96926796 +128 589.38 593.2575 1000 50 0.8818772 +129 593.2575 597.1350000000001 1000 50 0.9993637 +130 597.135 601.0125 1000 50 0.8431447 +131 601.0125 604.8900000000001 1000 50 0.99999905 +132 604.89 608.7675 1000 50 0.99684983 +133 608.7675 612.6450000000001 1000 50 0.9999404 +134 612.645 616.5225 1000 50 1.0 +135 620.4 624.2775 1000 50 0.79425627 +136 624.2775 628.1550000000001 1000 50 0.99977976 +137 628.155 632.0325 1000 50 0.99985695 +138 632.0325 635.9100000000001 1000 50 0.9968622 +139 635.91 639.7875 1000 50 0.99997234 +140 639.7875 643.6650000000001 1000 50 0.9999069 +141 643.665 647.5425 1000 50 0.99999297 +142 647.5425 651.4200000000001 1000 50 0.99999905 +143 651.42 655.2975 1000 50 0.9998715 +144 655.2975 659.1750000000001 1000 50 1.0 +145 659.175 663.0525 1000 50 0.99972147 +146 663.0525 666.9300000000001 1000 50 0.9888286 +147 666.93 670.8075 1000 50 0.9999615 +148 670.8075 674.6850000000001 1000 50 0.9997085 +149 674.685 678.5625 1000 50 0.99962544 +150 678.5625 682.44 1000 50 0.9998429 +151 682.44 686.3175000000001 1000 50 0.9954652 +152 686.3175 690.195 1000 50 0.9999993 +153 690.195 694.0725000000001 1000 50 0.9999491 +154 694.0725 697.95 1000 50 0.9998989 +155 697.95 701.8275000000001 1000 50 0.9998454 +156 701.8275 705.705 1000 50 0.999521 +157 705.705 709.5825000000001 1000 50 0.99331796 +158 709.5825 713.46 1000 50 0.99957806 +159 713.46 717.3375000000001 1000 50 0.9909356 +160 717.3375 721.215 1000 50 0.9992698 +161 721.215 725.0925000000001 1000 50 0.9999989 +162 725.0925 728.97 1000 50 0.99992526 +163 728.97 732.8475000000001 1000 50 0.99997306 +164 732.8475 736.725 1000 50 0.9916564 +165 736.725 740.6025000000001 1000 50 0.9955935 +166 740.6025 744.48 1000 50 0.9928686 +167 744.48 748.3575000000001 1000 50 0.9998487 +168 748.3575 752.235 1000 50 0.99934536 +169 752.235 756.1125000000001 1000 50 0.6102168 +170 756.1125 759.99 1000 50 0.9961273 +171 759.99 763.8675000000001 1000 50 0.9996612 +172 763.8675 767.745 1000 50 0.99371135 +173 767.745 771.6225000000001 1000 50 0.999134 +174 771.6225 775.5 1000 50 0.99998236 +175 775.5 779.3775 1000 50 0.99966025 +176 779.3775 783.2550000000001 1000 50 0.99988663 +177 783.255 787.1325 1000 50 0.9999993 +178 787.1325 791.0100000000001 1000 50 0.9991479 +179 791.01 794.8875 1000 50 0.9935254 +180 794.8875 798.7650000000001 1000 50 0.9993456 +181 798.765 802.6425 1000 50 0.9999311 +182 802.6425 806.5200000000001 1000 50 0.9994998 +183 806.52 810.3975 1000 50 0.99905115 +184 810.3975 814.2750000000001 1000 50 0.9463614 +185 814.275 818.1525 1000 50 0.9999981 +186 818.1525 822.0300000000001 1000 50 0.69520724 +187 822.03 825.9075 1000 50 0.9984003 +188 825.9075 829.7850000000001 1000 50 0.9999989 +189 829.785 833.6625 1000 50 0.9999907 +190 833.6625 837.5400000000001 1000 50 0.99905163 +191 837.54 841.4175 1000 50 0.5263413 +192 841.4175 845.2950000000001 1000 50 0.9985423 +193 845.295 849.1725 1000 50 0.9999957 +194 849.1725 853.0500000000001 1000 50 0.9999 +195 853.05 856.9275 1000 50 0.99989486 +196 856.9275 860.8050000000001 1000 50 0.9999999 +197 860.805 864.6825 1000 50 0.999511 +198 864.6825 868.5600000000001 1000 50 0.9992874 +199 868.56 872.4375 1000 50 0.9638582 +200 872.4375 876.315 1000 50 0.99937564 +201 876.315 880.1925000000001 1000 50 0.9999913 +202 880.1925 884.07 1000 50 0.9999404 +203 884.07 887.9475000000001 1000 50 0.94446695 +204 887.9475 891.825 1000 50 0.9973393 +205 891.825 895.7025000000001 1000 50 0.9997919 +206 895.7025 899.58 1000 50 1.0 +207 899.58 903.4575000000001 1000 50 0.9983563 +208 903.4575 907.335 1000 50 0.99505806 +209 907.335 911.2125000000001 1000 50 0.99959236 +210 915.09 918.9675000000001 1000 50 0.9999213 +211 918.9675 922.845 1000 50 0.99949026 +212 922.845 926.7225000000001 1000 50 0.8495417 +213 926.7225 930.6 1000 50 0.67422986 +214 930.6 934.4775000000001 1000 50 0.995246 +215 934.4775 938.355 1000 50 0.9999925 +216 942.2325 946.11 1000 50 0.9933443 +217 946.11 949.9875000000001 1000 50 0.9986828 +218 949.9875 953.865 1000 50 0.99348116 +219 953.865 957.7425000000001 1000 50 0.9981273 +220 957.7425 961.62 1000 50 0.99987245 +221 961.62 965.4975000000001 1000 50 0.997546 +222 965.4975 969.375 1000 50 0.9999894 +223 969.375 973.2525 1000 50 0.9918657 +224 977.13 981.0075 1000 50 0.98946047 +225 992.64 996.5175 1000 50 0.6805435 +226 1000.395 1004.2725 1000 50 0.9995535 +227 1004.2725 1008.1500000000001 1000 50 0.9820576 +228 1012.0275 1015.9050000000001 1000 50 0.95547456 +229 1023.66 1027.5375 1000 50 0.70853865 +230 1031.415 1035.2925 1000 50 0.97764206 +231 1035.2925 1039.17 1000 50 0.5966358 +232 1039.17 1043.0475000000001 1000 50 0.9962219 +233 1043.0475 1046.925 1000 50 0.9891332 +234 1046.925 1050.8025 1000 50 0.9266043 +235 1058.5575 1062.435 1000 50 0.95386463 +236 1066.3125 1070.19 1000 50 0.9999578 +237 1074.0675 1077.9450000000002 1000 50 0.7391442 +238 1077.945 1081.8225 1000 50 0.9985942 +239 1081.8225 1085.7 1000 50 0.57481855 +240 1085.7 1089.5775 1000 50 0.9999294 +241 1089.5775 1093.4550000000002 1000 50 0.95939034 +242 1093.455 1097.3325 1000 50 0.96928924 +243 1097.3325 1101.21 1000 50 0.9377497 +244 1101.21 1105.0875 1000 50 0.7847352 +245 1120.5975 1124.4750000000001 1000 50 0.98978907 +246 1124.475 1128.3525 1000 50 0.60971797 +247 1128.3525 1132.23 1000 50 0.5408547 +248 1132.23 1136.1075 1000 50 0.9020122 +249 1136.1075 1139.9850000000001 1000 50 0.9603406 +250 1139.985 1143.8625 1000 50 0.8680907 +251 1143.8625 1147.74 1000 50 0.965869 +252 1155.495 1159.3725 1000 50 0.9999411 +253 1159.3725 1163.25 1000 50 0.9821552 +254 1163.25 1167.1275 1000 50 0.5258069 +255 1167.1275 1171.005 1000 50 0.99999726 +256 1171.005 1174.8825000000002 1000 50 0.6349691 +257 1174.8825 1178.76 1000 50 0.97602797 +258 1178.76 1182.6375 1000 50 0.9993368 +259 1182.6375 1186.515 1000 50 0.9933555 +260 1186.515 1190.3925000000002 1000 50 0.99974686 +261 1190.3925 1194.27 1000 50 0.9026955 +262 1194.27 1198.1475 1000 50 0.577884 +263 1198.1475 1202.025 1000 50 0.9997998 +264 1202.025 1205.9025000000001 1000 50 0.57884675 +265 1209.78 1213.6575 1000 50 0.99977356 +266 1213.6575 1217.535 1000 50 0.98701847 +267 1221.4125 1225.29 1000 50 0.99914575 +268 1225.29 1229.1675 1000 50 0.99289304 +269 1229.1675 1233.045 1000 50 0.93589807 +270 1233.045 1236.9225000000001 1000 50 0.9972356 +271 1236.9225 1240.8 1000 50 0.99987566 +272 1240.8 1244.6775 1000 50 0.70056623 +273 1244.6775 1248.555 1000 50 0.99997854 +274 1248.555 1252.4325000000001 1000 50 0.99994195 +275 1252.4325 1256.31 1000 50 0.99994516 +276 1256.31 1260.1875 1000 50 0.99999475 +277 1260.1875 1264.065 1000 50 0.9975073 +278 1264.065 1267.9425 1000 50 0.9999943 +279 1267.9425 1271.8200000000002 1000 50 0.99982846 +280 1271.82 1275.6975 1000 50 0.99952006 +281 1275.6975 1279.575 1000 50 0.97037685 +282 1279.575 1283.4525 1000 50 0.9999486 +283 1283.4525 1287.3300000000002 1000 50 0.99959844 +284 1287.33 1291.2075 1000 50 0.9999732 +285 1291.2075 1295.085 1000 50 0.85812503 +286 1295.085 1298.9625 1000 50 0.99997187 +287 1298.9625 1302.8400000000001 1000 50 0.98951566 +288 1302.84 1306.7175 1000 50 0.9999856 +289 1306.7175 1310.595 1000 50 0.99999714 +290 1310.595 1314.4725 1000 50 0.91172224 +291 1314.4725 1318.3500000000001 1000 50 0.9925964 +292 1318.35 1322.2275 1000 50 0.9971973 +293 1326.105 1329.9825 1000 50 0.9999999 +294 1329.9825 1333.8600000000001 1000 50 0.9999937 +295 1337.7375 1341.615 1000 50 0.9925292 +296 1341.615 1345.4925 1000 50 0.99683195 +297 1349.37 1353.2475 1000 50 0.99779236 +298 1357.125 1361.0025 1000 50 0.8773905 +299 1361.0025 1364.88 1000 50 0.99743587 +300 1364.88 1368.7575000000002 1000 50 0.99326575 +301 1376.5125 1380.39 1000 50 0.99932253 +302 1380.39 1384.2675000000002 1000 50 0.99467176 +303 1388.145 1392.0225 1000 50 0.9796005 +304 1392.0225 1395.9 1000 50 0.99962807 +305 1395.9 1399.7775000000001 1000 50 0.7076375 +306 1399.7775 1403.655 1000 50 0.8449272 +307 1403.655 1407.5325 1000 50 0.9999608 +308 1407.5325 1411.41 1000 50 0.9999232 +309 1411.41 1415.2875000000001 1000 50 0.9999931 +310 1415.2875 1419.165 1000 50 0.9994031 +311 1419.165 1423.0425 1000 50 0.99999666 +312 1423.0425 1426.92 1000 50 0.9984628 +313 1426.92 1430.7975000000001 1000 50 0.99168664 +314 1430.7975 1434.675 1000 50 0.9991774 +315 1434.675 1438.5525 1000 50 0.5595429 +316 1438.5525 1442.43 1000 50 0.5500866 +317 1442.43 1446.3075000000001 1000 50 0.9985923 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_19-01-54_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_19-01-54_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..54c57ae7d99ad4d0ea1ac156294221520800ac41 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_19-01-54_annot_2022-11-30_01.txt @@ -0,0 +1,274 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99998987 +2 3.8775 7.755 1000 50 0.5564268 +3 7.755 11.6325 1000 50 0.9999875 +4 11.6325 15.51 1000 50 0.9994836 +5 15.51 19.3875 1000 50 0.71647537 +6 19.3875 23.265 1000 50 0.9999957 +7 23.265 27.142500000000002 1000 50 0.99998295 +8 27.1425 31.02 1000 50 0.9702783 +9 31.02 34.8975 1000 50 1.0 +10 34.8975 38.775 1000 50 0.999985 +11 42.6525 46.53 1000 50 0.99981076 +12 46.53 50.4075 1000 50 0.9999232 +13 50.4075 54.285 1000 50 0.97092134 +14 54.285 58.162499999999994 1000 50 0.99886286 +15 58.1625 62.04 1000 50 0.99997795 +16 65.9175 69.795 1000 50 0.99999607 +17 69.795 73.6725 1000 50 0.9621966 +18 73.6725 77.55 1000 50 0.8978056 +19 77.55 81.4275 1000 50 0.9999994 +20 81.4275 85.30499999999999 1000 50 0.9999541 +21 85.305 89.1825 1000 50 0.97964454 +22 89.1825 93.06 1000 50 0.9999957 +23 93.06 96.9375 1000 50 0.9999095 +24 96.9375 100.815 1000 50 0.99930227 +25 100.815 104.6925 1000 50 0.9998566 +26 104.6925 108.57 1000 50 0.9999914 +27 108.57 112.44749999999999 1000 50 0.78687114 +28 112.4475 116.325 1000 50 0.9999902 +29 116.325 120.2025 1000 50 0.9999896 +30 124.08 127.9575 1000 50 0.99823964 +31 127.9575 131.835 1000 50 0.9971734 +32 131.835 135.7125 1000 50 0.68575144 +33 135.7125 139.59 1000 50 0.999998 +34 139.59 143.4675 1000 50 0.8667438 +35 143.4675 147.345 1000 50 0.88164675 +36 147.345 151.2225 1000 50 0.9998908 +37 151.2225 155.1 1000 50 0.9872903 +38 155.1 158.9775 1000 50 0.99991584 +39 158.9775 162.855 1000 50 0.9999999 +40 162.855 166.7325 1000 50 0.999974 +41 166.7325 170.60999999999999 1000 50 0.99982446 +42 170.61 174.4875 1000 50 0.9712564 +43 178.365 182.2425 1000 50 0.99995613 +44 182.2425 186.12 1000 50 0.5344807 +45 186.12 189.9975 1000 50 0.88711226 +46 189.9975 193.875 1000 50 0.92727077 +47 193.875 197.7525 1000 50 0.6902156 +48 197.7525 201.63 1000 50 0.9882564 +49 201.63 205.5075 1000 50 0.9205868 +50 205.5075 209.385 1000 50 0.9971903 +51 209.385 213.2625 1000 50 0.99974245 +52 213.2625 217.14 1000 50 0.67716026 +53 217.14 221.01749999999998 1000 50 0.94923747 +54 221.0175 224.895 1000 50 0.6540641 +55 224.895 228.7725 1000 50 0.99999964 +56 228.7725 232.65 1000 50 0.9999963 +57 232.65 236.5275 1000 50 0.99967575 +58 236.5275 240.405 1000 50 0.98657113 +59 240.405 244.2825 1000 50 0.99999535 +60 248.16 252.0375 1000 50 0.9997056 +61 252.0375 255.915 1000 50 0.9999031 +62 255.915 259.7925 1000 50 0.99999964 +63 259.7925 263.67 1000 50 0.9999765 +64 263.67 267.5475 1000 50 0.56511474 +65 267.5475 271.425 1000 50 0.87634104 +66 271.425 275.3025 1000 50 0.9931379 +67 275.3025 279.18 1000 50 0.89326775 +68 279.18 283.0575 1000 50 0.7283199 +69 283.0575 286.935 1000 50 0.99028075 +70 286.935 290.8125 1000 50 0.8811365 +71 294.69 298.5675 1000 50 0.97221833 +72 298.5675 302.445 1000 50 0.6132795 +73 302.445 306.3225 1000 50 0.5496339 +74 306.3225 310.2 1000 50 0.98947746 +75 310.2 314.0775 1000 50 0.93589514 +76 317.955 321.8325 1000 50 0.9898011 +77 321.8325 325.71 1000 50 0.8424727 +78 329.5875 333.465 1000 50 0.9379404 +79 333.465 337.3425 1000 50 0.69053125 +80 337.3425 341.21999999999997 1000 50 0.6317627 +81 345.0975 348.975 1000 50 0.99459934 +82 348.975 352.8525 1000 50 0.9915342 +83 352.8525 356.73 1000 50 0.73067224 +84 356.73 360.6075 1000 50 0.9821914 +85 360.6075 364.485 1000 50 0.9964959 +86 364.485 368.3625 1000 50 0.819487 +87 372.24 376.1175 1000 50 0.9955113 +88 376.1175 379.995 1000 50 0.9975816 +89 387.75 391.6275 1000 50 0.7002451 +90 391.6275 395.505 1000 50 0.6417607 +91 399.3825 403.26 1000 50 0.9445234 +92 407.1375 411.015 1000 50 0.62195474 +93 411.015 414.8925 1000 50 0.5832283 +94 422.6475 426.525 1000 50 0.66123515 +95 426.525 430.4025 1000 50 0.75089794 +96 438.1575 442.035 1000 50 0.5371037 +97 442.035 445.9125 1000 50 0.7715302 +98 457.545 461.4225 1000 50 0.6327968 +99 469.1775 473.055 1000 50 0.994898 +100 484.6875 488.565 1000 50 0.5428949 +101 492.4425 496.32 1000 50 0.56515306 +102 500.1975 504.075 1000 50 0.6657966 +103 504.075 507.9525 1000 50 0.5591976 +104 511.83 515.7075 1000 50 0.77655315 +105 535.095 538.9725000000001 1000 50 0.9900476 +106 538.9725 542.85 1000 50 0.62308156 +107 542.85 546.7275000000001 1000 50 0.9985353 +108 546.7275 550.605 1000 50 0.80117863 +109 550.605 554.4825000000001 1000 50 0.6246745 +110 554.4825 558.36 1000 50 0.98699725 +111 562.2375 566.115 1000 50 0.99999714 +112 569.9925 573.87 1000 50 0.99995565 +113 573.87 577.7475000000001 1000 50 0.5814358 +114 581.625 585.5025 1000 50 0.9999999 +115 585.5025 589.3800000000001 1000 50 0.5504086 +116 589.38 593.2575 1000 50 0.51693875 +117 593.2575 597.1350000000001 1000 50 0.99136275 +118 604.89 608.7675 1000 50 0.9929449 +119 612.645 616.5225 1000 50 0.8933001 +120 616.5225 620.4000000000001 1000 50 0.9965643 +121 620.4 624.2775 1000 50 0.9996315 +122 624.2775 628.1550000000001 1000 50 0.99997556 +123 628.155 632.0325 1000 50 0.99999213 +124 632.0325 635.9100000000001 1000 50 0.9983222 +125 635.91 639.7875 1000 50 0.8551572 +126 639.7875 643.6650000000001 1000 50 0.99685884 +127 643.665 647.5425 1000 50 0.94196236 +128 647.5425 651.4200000000001 1000 50 0.9815695 +129 651.42 655.2975 1000 50 1.0 +130 655.2975 659.1750000000001 1000 50 0.8581215 +131 659.175 663.0525 1000 50 0.9484335 +132 663.0525 666.9300000000001 1000 50 0.9999957 +133 666.93 670.8075 1000 50 0.60592663 +134 670.8075 674.6850000000001 1000 50 0.6309054 +135 674.685 678.5625 1000 50 0.9980203 +136 678.5625 682.44 1000 50 0.84230244 +137 682.44 686.3175000000001 1000 50 0.99889827 +138 686.3175 690.195 1000 50 0.9999269 +139 690.195 694.0725000000001 1000 50 0.9962831 +140 697.95 701.8275000000001 1000 50 0.99589527 +141 701.8275 705.705 1000 50 0.9993144 +142 705.705 709.5825000000001 1000 50 0.9993349 +143 709.5825 713.46 1000 50 0.99999356 +144 713.46 717.3375000000001 1000 50 0.9151797 +145 721.215 725.0925000000001 1000 50 0.9908483 +146 732.8475 736.725 1000 50 0.9139689 +147 740.6025 744.48 1000 50 0.9984816 +148 748.3575 752.235 1000 50 0.7289697 +149 752.235 756.1125000000001 1000 50 0.9760946 +150 756.1125 759.99 1000 50 0.53306466 +151 759.99 763.8675000000001 1000 50 0.9910787 +152 763.8675 767.745 1000 50 0.9650123 +153 771.6225 775.5 1000 50 0.9999999 +154 779.3775 783.2550000000001 1000 50 0.9988199 +155 783.255 787.1325 1000 50 0.9959384 +156 787.1325 791.0100000000001 1000 50 0.9532363 +157 791.01 794.8875 1000 50 0.9647427 +158 794.8875 798.7650000000001 1000 50 0.76881814 +159 798.765 802.6425 1000 50 0.99661297 +160 802.6425 806.5200000000001 1000 50 0.99999917 +161 806.52 810.3975 1000 50 0.98022836 +162 810.3975 814.2750000000001 1000 50 0.9999918 +163 814.275 818.1525 1000 50 0.99692744 +164 818.1525 822.0300000000001 1000 50 0.9535141 +165 822.03 825.9075 1000 50 0.98572206 +166 825.9075 829.7850000000001 1000 50 0.98993087 +167 829.785 833.6625 1000 50 0.9998553 +168 833.6625 837.5400000000001 1000 50 0.9160048 +169 837.54 841.4175 1000 50 0.78312325 +170 841.4175 845.2950000000001 1000 50 0.99837816 +171 845.295 849.1725 1000 50 0.99203485 +172 849.1725 853.0500000000001 1000 50 0.99979955 +173 853.05 856.9275 1000 50 0.9945345 +174 856.9275 860.8050000000001 1000 50 0.9980521 +175 860.805 864.6825 1000 50 0.59159446 +176 864.6825 868.5600000000001 1000 50 0.99963105 +177 868.56 872.4375 1000 50 0.99898595 +178 872.4375 876.315 1000 50 0.999944 +179 876.315 880.1925000000001 1000 50 0.5814522 +180 880.1925 884.07 1000 50 0.9244642 +181 884.07 887.9475000000001 1000 50 0.8352343 +182 887.9475 891.825 1000 50 0.98936635 +183 895.7025 899.58 1000 50 0.9977997 +184 907.335 911.2125000000001 1000 50 0.9957585 +185 918.9675 922.845 1000 50 0.9365366 +186 922.845 926.7225000000001 1000 50 0.95621157 +187 926.7225 930.6 1000 50 0.8600792 +188 930.6 934.4775000000001 1000 50 0.99372745 +189 934.4775 938.355 1000 50 0.99842036 +190 938.355 942.2325000000001 1000 50 0.9999794 +191 942.2325 946.11 1000 50 0.9882366 +192 949.9875 953.865 1000 50 0.96293765 +193 953.865 957.7425000000001 1000 50 0.8199796 +194 957.7425 961.62 1000 50 0.68697095 +195 969.375 973.2525 1000 50 0.9949168 +196 973.2525 977.1300000000001 1000 50 0.99760544 +197 977.13 981.0075 1000 50 0.552597 +198 984.885 988.7625 1000 50 0.5698449 +199 988.7625 992.6400000000001 1000 50 0.92933285 +200 992.64 996.5175 1000 50 0.90769416 +201 1000.395 1004.2725 1000 50 0.92190033 +202 1004.2725 1008.1500000000001 1000 50 0.9994287 +203 1012.0275 1015.9050000000001 1000 50 0.99783915 +204 1015.905 1019.7825 1000 50 0.5437305 +205 1019.7825 1023.6600000000001 1000 50 0.5485719 +206 1031.415 1035.2925 1000 50 0.83277977 +207 1039.17 1043.0475000000001 1000 50 0.5186269 +208 1043.0475 1046.925 1000 50 0.76234174 +209 1046.925 1050.8025 1000 50 0.8059965 +210 1050.8025 1054.68 1000 50 0.99403197 +211 1062.435 1066.3125 1000 50 0.949139 +212 1070.19 1074.0675 1000 50 0.99999166 +213 1081.8225 1085.7 1000 50 0.9997305 +214 1089.5775 1093.4550000000002 1000 50 0.7893297 +215 1093.455 1097.3325 1000 50 0.97978127 +216 1097.3325 1101.21 1000 50 0.8527509 +217 1101.21 1105.0875 1000 50 0.8094307 +218 1105.0875 1108.9650000000001 1000 50 0.8740679 +219 1108.965 1112.8425 1000 50 0.8515774 +220 1116.72 1120.5975 1000 50 0.51228213 +221 1120.5975 1124.4750000000001 1000 50 0.9791549 +222 1124.475 1128.3525 1000 50 0.99817085 +223 1132.23 1136.1075 1000 50 0.9736119 +224 1139.985 1143.8625 1000 50 0.9998085 +225 1143.8625 1147.74 1000 50 0.9906217 +226 1147.74 1151.6175 1000 50 0.99970585 +227 1159.3725 1163.25 1000 50 0.88521725 +228 1163.25 1167.1275 1000 50 0.82323766 +229 1167.1275 1171.005 1000 50 0.99998 +230 1171.005 1174.8825000000002 1000 50 0.97109693 +231 1174.8825 1178.76 1000 50 0.9999862 +232 1178.76 1182.6375 1000 50 0.9947207 +233 1182.6375 1186.515 1000 50 0.98300683 +234 1186.515 1190.3925000000002 1000 50 0.7641436 +235 1190.3925 1194.27 1000 50 0.86473507 +236 1194.27 1198.1475 1000 50 0.99899226 +237 1198.1475 1202.025 1000 50 0.9772166 +238 1205.9025 1209.78 1000 50 0.9903688 +239 1209.78 1213.6575 1000 50 0.9982443 +240 1213.6575 1217.535 1000 50 0.9931745 +241 1217.535 1221.4125000000001 1000 50 0.9998586 +242 1221.4125 1225.29 1000 50 0.5380775 +243 1225.29 1229.1675 1000 50 0.99741495 +244 1229.1675 1233.045 1000 50 0.998577 +245 1233.045 1236.9225000000001 1000 50 0.9999951 +246 1236.9225 1240.8 1000 50 0.99877137 +247 1240.8 1244.6775 1000 50 0.96942544 +248 1244.6775 1248.555 1000 50 0.95821613 +249 1248.555 1252.4325000000001 1000 50 0.99822634 +250 1252.4325 1256.31 1000 50 0.95264477 +251 1256.31 1260.1875 1000 50 0.93201005 +252 1260.1875 1264.065 1000 50 0.850125 +253 1264.065 1267.9425 1000 50 0.9710551 +254 1267.9425 1271.8200000000002 1000 50 0.56468046 +255 1271.82 1275.6975 1000 50 0.553067 +256 1279.575 1283.4525 1000 50 0.88004625 +257 1291.2075 1295.085 1000 50 0.9928676 +258 1295.085 1298.9625 1000 50 0.53469247 +259 1302.84 1306.7175 1000 50 0.9270754 +260 1314.4725 1318.3500000000001 1000 50 0.9907693 +261 1318.35 1322.2275 1000 50 0.93287075 +262 1322.2275 1326.105 1000 50 0.9044382 +263 1326.105 1329.9825 1000 50 0.68484145 +264 1329.9825 1333.8600000000001 1000 50 0.96020067 +265 1341.615 1345.4925 1000 50 0.7516566 +266 1345.4925 1349.3700000000001 1000 50 0.9507913 +267 1353.2475 1357.125 1000 50 0.9273075 +268 1357.125 1361.0025 1000 50 0.55960304 +269 1368.7575 1372.635 1000 50 0.99829286 +270 1372.635 1376.5125 1000 50 0.7979024 +271 1376.5125 1380.39 1000 50 0.9480771 +272 1380.39 1384.2675000000002 1000 50 0.7586626 +273 1384.2675 1388.145 1000 50 0.7503321 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_20-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_20-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..73e8a606680f44c992b35f87661406e5ab6acc41 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_20-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,46 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.68346775 +2 3.8775 7.755 1000 50 0.99900335 +3 11.6325 15.51 1000 50 0.99989665 +4 15.51 19.3875 1000 50 0.9997893 +5 19.3875 23.265 1000 50 0.99388003 +6 23.265 27.142500000000002 1000 50 0.99798596 +7 27.1425 31.02 1000 50 0.9912258 +8 31.02 34.8975 1000 50 0.99822944 +9 34.8975 38.775 1000 50 0.88005245 +10 42.6525 46.53 1000 50 0.99231476 +11 46.53 50.4075 1000 50 0.98665905 +12 54.285 58.162499999999994 1000 50 0.70463705 +13 58.1625 62.04 1000 50 0.99989533 +14 65.9175 69.795 1000 50 0.99579275 +15 69.795 73.6725 1000 50 0.95814604 +16 77.55 81.4275 1000 50 0.9992448 +17 81.4275 85.30499999999999 1000 50 0.99999523 +18 85.305 89.1825 1000 50 0.9959676 +19 89.1825 93.06 1000 50 0.99638015 +20 93.06 96.9375 1000 50 0.99970394 +21 96.9375 100.815 1000 50 0.999059 +22 104.6925 108.57 1000 50 0.90905815 +23 108.57 112.44749999999999 1000 50 0.9969199 +24 112.4475 116.325 1000 50 0.9737475 +25 116.325 120.2025 1000 50 0.9850277 +26 120.2025 124.08 1000 50 0.9873411 +27 124.08 127.9575 1000 50 0.96245694 +28 127.9575 131.835 1000 50 0.73788935 +29 135.7125 139.59 1000 50 0.92637414 +30 139.59 143.4675 1000 50 0.96616435 +31 143.4675 147.345 1000 50 0.9638305 +32 147.345 151.2225 1000 50 0.9073052 +33 151.2225 155.1 1000 50 0.68057865 +34 158.9775 162.855 1000 50 0.9479016 +35 162.855 166.7325 1000 50 0.99934965 +36 166.7325 170.60999999999999 1000 50 0.73291355 +37 170.61 174.4875 1000 50 0.65030694 +38 174.4875 178.365 1000 50 0.80153567 +39 178.365 182.2425 1000 50 0.8509255 +40 182.2425 186.12 1000 50 0.9361596 +41 189.9975 193.875 1000 50 0.99810946 +42 193.875 197.7525 1000 50 0.7394879 +43 197.7525 201.63 1000 50 0.9916847 +44 201.63 205.5075 1000 50 0.5160241 +45 205.5075 209.385 1000 50 0.9503854 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_20-07-07_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_20-07-07_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ca59e901380bbd7c7f9119586eccfa71396e929e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_20-07-07_annot_2022-11-30_01.txt @@ -0,0 +1,250 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9998623 +2 7.755 11.6325 1000 50 0.99976355 +3 11.6325 15.51 1000 50 0.99295527 +4 15.51 19.3875 1000 50 0.99913365 +5 19.3875 23.265 1000 50 0.9999391 +6 23.265 27.142500000000002 1000 50 0.68538207 +7 27.1425 31.02 1000 50 0.84395 +8 31.02 34.8975 1000 50 0.9999448 +9 34.8975 38.775 1000 50 0.6211342 +10 38.775 42.652499999999996 1000 50 0.9999695 +11 42.6525 46.53 1000 50 0.9992435 +12 46.53 50.4075 1000 50 0.99951184 +13 50.4075 54.285 1000 50 0.99996734 +14 54.285 58.162499999999994 1000 50 0.99942845 +15 58.1625 62.04 1000 50 0.97725827 +16 62.04 65.9175 1000 50 0.9984559 +17 69.795 73.6725 1000 50 0.99999666 +18 73.6725 77.55 1000 50 0.7095556 +19 77.55 81.4275 1000 50 0.8019483 +20 81.4275 85.30499999999999 1000 50 0.984496 +21 85.305 89.1825 1000 50 0.9994179 +22 89.1825 93.06 1000 50 0.9998179 +23 93.06 96.9375 1000 50 0.9001004 +24 96.9375 100.815 1000 50 0.92628413 +25 100.815 104.6925 1000 50 0.79586107 +26 104.6925 108.57 1000 50 0.9920805 +27 108.57 112.44749999999999 1000 50 0.96112645 +28 112.4475 116.325 1000 50 0.98691016 +29 116.325 120.2025 1000 50 0.99646556 +30 120.2025 124.08 1000 50 0.99897015 +31 124.08 127.9575 1000 50 0.99993205 +32 127.9575 131.835 1000 50 0.99997306 +33 131.835 135.7125 1000 50 0.99993694 +34 135.7125 139.59 1000 50 0.988014 +35 139.59 143.4675 1000 50 0.9951315 +36 143.4675 147.345 1000 50 0.99938893 +37 147.345 151.2225 1000 50 0.79617167 +38 151.2225 155.1 1000 50 0.9996344 +39 155.1 158.9775 1000 50 0.95516634 +40 162.855 166.7325 1000 50 0.9999827 +41 166.7325 170.60999999999999 1000 50 0.9874139 +42 170.61 174.4875 1000 50 0.9984351 +43 174.4875 178.365 1000 50 0.95821744 +44 178.365 182.2425 1000 50 0.96129245 +45 182.2425 186.12 1000 50 0.6438397 +46 186.12 189.9975 1000 50 0.9999441 +47 189.9975 193.875 1000 50 0.9985903 +48 193.875 197.7525 1000 50 0.91693056 +49 197.7525 201.63 1000 50 0.9949432 +50 201.63 205.5075 1000 50 0.52066284 +51 205.5075 209.385 1000 50 0.99942905 +52 209.385 213.2625 1000 50 0.95837015 +53 217.14 221.01749999999998 1000 50 0.6109425 +54 221.0175 224.895 1000 50 0.97212696 +55 224.895 228.7725 1000 50 0.9865037 +56 228.7725 232.65 1000 50 0.99964833 +57 232.65 236.5275 1000 50 0.9933635 +58 240.405 244.2825 1000 50 0.92428917 +59 244.2825 248.16 1000 50 0.9996357 +60 248.16 252.0375 1000 50 0.9933942 +61 252.0375 255.915 1000 50 0.99992514 +62 259.7925 263.67 1000 50 0.84612846 +63 263.67 267.5475 1000 50 0.99349785 +64 267.5475 271.425 1000 50 0.7266439 +65 271.425 275.3025 1000 50 0.9496625 +66 279.18 283.0575 1000 50 0.9825263 +67 283.0575 286.935 1000 50 0.91698647 +68 286.935 290.8125 1000 50 0.9986695 +69 290.8125 294.69 1000 50 0.97998 +70 294.69 298.5675 1000 50 0.8705423 +71 302.445 306.3225 1000 50 0.8895499 +72 306.3225 310.2 1000 50 0.9995509 +73 310.2 314.0775 1000 50 0.99456936 +74 314.0775 317.955 1000 50 0.8211083 +75 317.955 321.8325 1000 50 0.5777833 +76 321.8325 325.71 1000 50 0.99989843 +77 325.71 329.5875 1000 50 0.9999509 +78 329.5875 333.465 1000 50 0.83397794 +79 333.465 337.3425 1000 50 0.99979204 +80 337.3425 341.21999999999997 1000 50 0.9999442 +81 341.22 345.0975 1000 50 0.99984825 +82 345.0975 348.975 1000 50 0.8001904 +83 348.975 352.8525 1000 50 0.9998041 +84 352.8525 356.73 1000 50 0.99973327 +85 356.73 360.6075 1000 50 0.9824289 +86 360.6075 364.485 1000 50 0.9999989 +87 364.485 368.3625 1000 50 0.56597054 +88 368.3625 372.24 1000 50 0.9999517 +89 372.24 376.1175 1000 50 0.86511093 +90 376.1175 379.995 1000 50 0.94716203 +91 379.995 383.8725 1000 50 0.99996364 +92 383.8725 387.75 1000 50 0.9997309 +93 387.75 391.6275 1000 50 0.92030495 +94 391.6275 395.505 1000 50 0.9915575 +95 395.505 399.3825 1000 50 0.9999951 +96 403.26 407.1375 1000 50 0.9996294 +97 407.1375 411.015 1000 50 0.996265 +98 414.8925 418.77 1000 50 0.9993686 +99 418.77 422.6475 1000 50 0.9999962 +100 422.6475 426.525 1000 50 0.6227468 +101 426.525 430.4025 1000 50 0.9988207 +102 430.4025 434.28 1000 50 0.9766392 +103 434.28 438.15749999999997 1000 50 0.999997 +104 438.1575 442.035 1000 50 0.9999912 +105 442.035 445.9125 1000 50 0.99934155 +106 445.9125 449.79 1000 50 0.9991775 +107 449.79 453.6675 1000 50 0.9999995 +108 453.6675 457.545 1000 50 0.999959 +109 457.545 461.4225 1000 50 0.9883618 +110 461.4225 465.3 1000 50 0.99953127 +111 465.3 469.1775 1000 50 0.55588573 +112 469.1775 473.055 1000 50 0.9965976 +113 473.055 476.9325 1000 50 0.97123647 +114 476.9325 480.81 1000 50 0.98871976 +115 480.81 484.6875 1000 50 0.80473804 +116 484.6875 488.565 1000 50 0.82146156 +117 488.565 492.4425 1000 50 0.902613 +118 492.4425 496.32 1000 50 0.9989943 +119 500.1975 504.075 1000 50 0.5598078 +120 504.075 507.9525 1000 50 0.99471843 +121 511.83 515.7075 1000 50 0.9999981 +122 515.7075 519.585 1000 50 0.7803496 +123 519.585 523.4625000000001 1000 50 0.99995077 +124 523.4625 527.34 1000 50 0.9999825 +125 527.34 531.2175000000001 1000 50 0.6172246 +126 531.2175 535.095 1000 50 0.74645317 +127 535.095 538.9725000000001 1000 50 0.9377538 +128 538.9725 542.85 1000 50 0.99405473 +129 546.7275 550.605 1000 50 0.98878366 +130 550.605 554.4825000000001 1000 50 0.985783 +131 554.4825 558.36 1000 50 0.50237954 +132 558.36 562.2375000000001 1000 50 0.837902 +133 562.2375 566.115 1000 50 0.9708118 +134 566.115 569.9925000000001 1000 50 0.8144374 +135 569.9925 573.87 1000 50 0.9987852 +136 573.87 577.7475000000001 1000 50 0.9980654 +137 577.7475 581.625 1000 50 0.9915802 +138 581.625 585.5025 1000 50 0.8666237 +139 589.38 593.2575 1000 50 0.9998907 +140 597.135 601.0125 1000 50 0.99790347 +141 601.0125 604.8900000000001 1000 50 0.5203389 +142 604.89 608.7675 1000 50 0.9988034 +143 612.645 616.5225 1000 50 0.5788279 +144 616.5225 620.4000000000001 1000 50 0.93016165 +145 620.4 624.2775 1000 50 0.857355 +146 624.2775 628.1550000000001 1000 50 0.995145 +147 628.155 632.0325 1000 50 0.9908104 +148 632.0325 635.9100000000001 1000 50 0.70648795 +149 639.7875 643.6650000000001 1000 50 0.9728281 +150 643.665 647.5425 1000 50 0.71161604 +151 647.5425 651.4200000000001 1000 50 0.68077457 +152 651.42 655.2975 1000 50 0.9581857 +153 655.2975 659.1750000000001 1000 50 0.8557954 +154 659.175 663.0525 1000 50 0.99929595 +155 663.0525 666.9300000000001 1000 50 0.8983179 +156 666.93 670.8075 1000 50 0.77340966 +157 670.8075 674.6850000000001 1000 50 0.68107295 +158 674.685 678.5625 1000 50 0.97520417 +159 678.5625 682.44 1000 50 0.99827254 +160 682.44 686.3175000000001 1000 50 0.9954894 +161 686.3175 690.195 1000 50 0.99999785 +162 690.195 694.0725000000001 1000 50 0.9788438 +163 694.0725 697.95 1000 50 0.94010675 +164 697.95 701.8275000000001 1000 50 0.9713269 +165 705.705 709.5825000000001 1000 50 0.9999918 +166 709.5825 713.46 1000 50 0.9959384 +167 713.46 717.3375000000001 1000 50 0.94078505 +168 717.3375 721.215 1000 50 0.6064009 +169 721.215 725.0925000000001 1000 50 0.7718962 +170 725.0925 728.97 1000 50 0.99976045 +171 728.97 732.8475000000001 1000 50 0.61239815 +172 732.8475 736.725 1000 50 0.53222823 +173 736.725 740.6025000000001 1000 50 0.9946089 +174 744.48 748.3575000000001 1000 50 0.9384593 +175 748.3575 752.235 1000 50 0.99997747 +176 752.235 756.1125000000001 1000 50 0.9999956 +177 756.1125 759.99 1000 50 0.9955959 +178 763.8675 767.745 1000 50 0.94889504 +179 767.745 771.6225000000001 1000 50 0.72412056 +180 771.6225 775.5 1000 50 0.9992993 +181 775.5 779.3775 1000 50 0.9988379 +182 779.3775 783.2550000000001 1000 50 0.9999291 +183 783.255 787.1325 1000 50 0.99636936 +184 787.1325 791.0100000000001 1000 50 0.9985195 +185 794.8875 798.7650000000001 1000 50 0.99987245 +186 798.765 802.6425 1000 50 0.9986193 +187 802.6425 806.5200000000001 1000 50 0.9063121 +188 806.52 810.3975 1000 50 0.9999994 +189 810.3975 814.2750000000001 1000 50 0.9998573 +190 814.275 818.1525 1000 50 0.9999652 +191 818.1525 822.0300000000001 1000 50 0.9999802 +192 822.03 825.9075 1000 50 0.9999037 +193 825.9075 829.7850000000001 1000 50 0.99965954 +194 833.6625 837.5400000000001 1000 50 0.9999987 +195 837.54 841.4175 1000 50 0.999295 +196 841.4175 845.2950000000001 1000 50 0.9972301 +197 845.295 849.1725 1000 50 0.99294794 +198 849.1725 853.0500000000001 1000 50 0.97970665 +199 853.05 856.9275 1000 50 0.871467 +200 856.9275 860.8050000000001 1000 50 0.9999535 +201 860.805 864.6825 1000 50 0.9999099 +202 864.6825 868.5600000000001 1000 50 0.9999968 +203 868.56 872.4375 1000 50 0.8346905 +204 872.4375 876.315 1000 50 0.9992974 +205 876.315 880.1925000000001 1000 50 0.9981919 +206 880.1925 884.07 1000 50 0.7950115 +207 884.07 887.9475000000001 1000 50 0.99993956 +208 887.9475 891.825 1000 50 1.0 +209 891.825 895.7025000000001 1000 50 0.9997664 +210 895.7025 899.58 1000 50 0.99982184 +211 899.58 903.4575000000001 1000 50 0.99999917 +212 903.4575 907.335 1000 50 0.9999074 +213 907.335 911.2125000000001 1000 50 0.9999249 +214 911.2125 915.09 1000 50 0.99999607 +215 915.09 918.9675000000001 1000 50 0.9882322 +216 918.9675 922.845 1000 50 0.9996401 +217 922.845 926.7225000000001 1000 50 0.99999976 +218 926.7225 930.6 1000 50 0.9797427 +219 930.6 934.4775000000001 1000 50 0.99944013 +220 934.4775 938.355 1000 50 0.9249231 +221 938.355 942.2325000000001 1000 50 0.67924654 +222 942.2325 946.11 1000 50 0.9216798 +223 946.11 949.9875000000001 1000 50 0.9550119 +224 953.865 957.7425000000001 1000 50 0.6954403 +225 957.7425 961.62 1000 50 0.9287669 +226 961.62 965.4975000000001 1000 50 0.9238871 +227 965.4975 969.375 1000 50 0.9708919 +228 977.13 981.0075 1000 50 0.99940085 +229 984.885 988.7625 1000 50 0.9980787 +230 988.7625 992.6400000000001 1000 50 0.99738425 +231 996.5175 1000.3950000000001 1000 50 0.9999776 +232 1000.395 1004.2725 1000 50 0.98867875 +233 1008.15 1012.0275 1000 50 0.9967637 +234 1012.0275 1015.9050000000001 1000 50 0.99502724 +235 1015.905 1019.7825 1000 50 0.9992435 +236 1019.7825 1023.6600000000001 1000 50 0.81942767 +237 1023.66 1027.5375 1000 50 0.82560253 +238 1027.5375 1031.415 1000 50 0.9982722 +239 1031.415 1035.2925 1000 50 0.99167013 +240 1035.2925 1039.17 1000 50 0.9221038 +241 1039.17 1043.0475000000001 1000 50 0.7655676 +242 1043.0475 1046.925 1000 50 0.5368389 +243 1046.925 1050.8025 1000 50 0.6792483 +244 1054.68 1058.5575000000001 1000 50 0.9922996 +245 1058.5575 1062.435 1000 50 0.9829177 +246 1062.435 1066.3125 1000 50 0.9979213 +247 1066.3125 1070.19 1000 50 0.99878997 +248 1070.19 1074.0675 1000 50 0.7267431 +249 1074.0675 1077.9450000000002 1000 50 0.9999924 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_21-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_21-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ce1fec40a3839187cecffe14bd2c14021effd9d2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_21-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,125 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.95969045 +2 3.8775 7.755 1000 50 0.9972121 +3 7.755 11.6325 1000 50 0.99425054 +4 15.51 19.3875 1000 50 0.9946689 +5 19.3875 23.265 1000 50 0.9718588 +6 27.1425 31.02 1000 50 0.9999095 +7 31.02 34.8975 1000 50 0.8132757 +8 38.775 42.652499999999996 1000 50 0.85859793 +9 42.6525 46.53 1000 50 0.8738299 +10 46.53 50.4075 1000 50 0.9998031 +11 50.4075 54.285 1000 50 0.9995734 +12 54.285 58.162499999999994 1000 50 0.99440706 +13 58.1625 62.04 1000 50 0.71592224 +14 62.04 65.9175 1000 50 0.9959558 +15 65.9175 69.795 1000 50 0.9998975 +16 69.795 73.6725 1000 50 0.9683129 +17 73.6725 77.55 1000 50 0.99420184 +18 77.55 81.4275 1000 50 0.99990666 +19 81.4275 85.30499999999999 1000 50 0.99997103 +20 85.305 89.1825 1000 50 0.9596837 +21 89.1825 93.06 1000 50 0.6721241 +22 93.06 96.9375 1000 50 0.9997588 +23 96.9375 100.815 1000 50 0.9603283 +24 100.815 104.6925 1000 50 0.9835579 +25 104.6925 108.57 1000 50 0.99640864 +26 108.57 112.44749999999999 1000 50 0.9997844 +27 112.4475 116.325 1000 50 0.999263 +28 116.325 120.2025 1000 50 0.99996555 +29 120.2025 124.08 1000 50 0.9990753 +30 124.08 127.9575 1000 50 0.9997811 +31 127.9575 131.835 1000 50 0.98393863 +32 131.835 135.7125 1000 50 0.9999578 +33 135.7125 139.59 1000 50 0.9996012 +34 139.59 143.4675 1000 50 0.9999341 +35 143.4675 147.345 1000 50 0.9999981 +36 147.345 151.2225 1000 50 0.99994314 +37 151.2225 155.1 1000 50 0.9934012 +38 155.1 158.9775 1000 50 0.99963284 +39 158.9775 162.855 1000 50 0.5496015 +40 162.855 166.7325 1000 50 0.9991725 +41 166.7325 170.60999999999999 1000 50 0.66276807 +42 170.61 174.4875 1000 50 0.998319 +43 174.4875 178.365 1000 50 0.99878174 +44 178.365 182.2425 1000 50 0.7310485 +45 182.2425 186.12 1000 50 0.9803853 +46 186.12 189.9975 1000 50 0.9998603 +47 189.9975 193.875 1000 50 0.8635785 +48 193.875 197.7525 1000 50 0.9993154 +49 197.7525 201.63 1000 50 0.9999852 +50 201.63 205.5075 1000 50 0.98563576 +51 205.5075 209.385 1000 50 0.96855587 +52 209.385 213.2625 1000 50 0.99324715 +53 213.2625 217.14 1000 50 0.98861796 +54 217.14 221.01749999999998 1000 50 0.9966163 +55 224.895 228.7725 1000 50 0.97447246 +56 228.7725 232.65 1000 50 0.999711 +57 232.65 236.5275 1000 50 0.9996891 +58 236.5275 240.405 1000 50 0.9998234 +59 240.405 244.2825 1000 50 0.9905573 +60 244.2825 248.16 1000 50 0.9999895 +61 248.16 252.0375 1000 50 0.99964094 +62 252.0375 255.915 1000 50 0.9985275 +63 255.915 259.7925 1000 50 0.9947514 +64 259.7925 263.67 1000 50 0.7081619 +65 263.67 267.5475 1000 50 0.9942017 +66 267.5475 271.425 1000 50 0.98779535 +67 271.425 275.3025 1000 50 0.99966097 +68 275.3025 279.18 1000 50 0.99998784 +69 279.18 283.0575 1000 50 0.83194095 +70 283.0575 286.935 1000 50 0.9991339 +71 286.935 290.8125 1000 50 0.9484358 +72 290.8125 294.69 1000 50 0.99999785 +73 294.69 298.5675 1000 50 0.9823501 +74 298.5675 302.445 1000 50 1.0 +75 302.445 306.3225 1000 50 0.9994956 +76 306.3225 310.2 1000 50 0.85363793 +77 310.2 314.0775 1000 50 0.88573307 +78 314.0775 317.955 1000 50 0.92595285 +79 317.955 321.8325 1000 50 0.9971155 +80 321.8325 325.71 1000 50 0.989298 +81 325.71 329.5875 1000 50 0.8395544 +82 329.5875 333.465 1000 50 0.9996269 +83 333.465 337.3425 1000 50 1.0 +84 337.3425 341.21999999999997 1000 50 0.99989367 +85 341.22 345.0975 1000 50 0.99997914 +86 345.0975 348.975 1000 50 0.9997583 +87 348.975 352.8525 1000 50 0.9815497 +88 352.8525 356.73 1000 50 0.99792504 +89 356.73 360.6075 1000 50 0.9998481 +90 360.6075 364.485 1000 50 0.99994206 +91 364.485 368.3625 1000 50 0.5729176 +92 368.3625 372.24 1000 50 0.9999995 +93 372.24 376.1175 1000 50 0.9999752 +94 376.1175 379.995 1000 50 0.9815128 +95 379.995 383.8725 1000 50 0.9781205 +96 383.8725 387.75 1000 50 0.85880536 +97 387.75 391.6275 1000 50 0.9964007 +98 391.6275 395.505 1000 50 0.9983242 +99 395.505 399.3825 1000 50 0.98621154 +100 399.3825 403.26 1000 50 0.994835 +101 403.26 407.1375 1000 50 0.99446553 +102 407.1375 411.015 1000 50 0.96401536 +103 411.015 414.8925 1000 50 0.9990978 +104 414.8925 418.77 1000 50 0.9738747 +105 418.77 422.6475 1000 50 0.99957055 +106 422.6475 426.525 1000 50 0.53643745 +107 426.525 430.4025 1000 50 0.99573356 +108 434.28 438.15749999999997 1000 50 0.87134564 +109 438.1575 442.035 1000 50 0.95725495 +110 442.035 445.9125 1000 50 0.9980692 +111 445.9125 449.79 1000 50 0.88180494 +112 449.79 453.6675 1000 50 0.9977964 +113 453.6675 457.545 1000 50 0.90199584 +114 457.545 461.4225 1000 50 0.98944515 +115 465.3 469.1775 1000 50 0.649885 +116 469.1775 473.055 1000 50 0.99898356 +117 473.055 476.9325 1000 50 0.60789365 +118 476.9325 480.81 1000 50 0.948224 +119 480.81 484.6875 1000 50 0.57545114 +120 484.6875 488.565 1000 50 0.66202456 +121 492.4425 496.32 1000 50 0.6230409 +122 500.1975 504.075 1000 50 0.9884497 +123 504.075 507.9525 1000 50 0.9968008 +124 511.83 515.7075 1000 50 0.99059707 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_21-12-15_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_21-12-15_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1e9eb23f1f1ac7fe9e42f7a03b9653c51e1aac2d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_21-12-15_annot_2022-11-30_01.txt @@ -0,0 +1,194 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9835158 +2 3.8775 7.755 1000 50 0.9999989 +3 7.755 11.6325 1000 50 0.9999982 +4 11.6325 15.51 1000 50 0.9982705 +5 15.51 19.3875 1000 50 0.87563264 +6 19.3875 23.265 1000 50 0.99997795 +7 23.265 27.142500000000002 1000 50 0.99999976 +8 27.1425 31.02 1000 50 0.9995765 +9 31.02 34.8975 1000 50 0.99999976 +10 34.8975 38.775 1000 50 0.98214865 +11 38.775 42.652499999999996 1000 50 0.9076379 +12 42.6525 46.53 1000 50 0.99984527 +13 46.53 50.4075 1000 50 0.9578602 +14 54.285 58.162499999999994 1000 50 0.9936785 +15 58.1625 62.04 1000 50 0.9993075 +16 62.04 65.9175 1000 50 0.9999424 +17 65.9175 69.795 1000 50 0.9999999 +18 69.795 73.6725 1000 50 0.97617096 +19 73.6725 77.55 1000 50 0.99919254 +20 77.55 81.4275 1000 50 0.9997477 +21 81.4275 85.30499999999999 1000 50 0.9993648 +22 85.305 89.1825 1000 50 0.99984455 +23 89.1825 93.06 1000 50 0.9993037 +24 93.06 96.9375 1000 50 0.887655 +25 96.9375 100.815 1000 50 0.99996173 +26 100.815 104.6925 1000 50 0.980249 +27 104.6925 108.57 1000 50 0.9999794 +28 108.57 112.44749999999999 1000 50 0.9436164 +29 112.4475 116.325 1000 50 0.99822503 +30 116.325 120.2025 1000 50 0.99999106 +31 120.2025 124.08 1000 50 0.9988637 +32 124.08 127.9575 1000 50 0.99999905 +33 127.9575 131.835 1000 50 0.9999881 +34 131.835 135.7125 1000 50 0.9991037 +35 135.7125 139.59 1000 50 0.99669814 +36 139.59 143.4675 1000 50 0.9697006 +37 143.4675 147.345 1000 50 0.9999882 +38 147.345 151.2225 1000 50 0.99924254 +39 151.2225 155.1 1000 50 0.98707515 +40 155.1 158.9775 1000 50 0.9596725 +41 158.9775 162.855 1000 50 0.9999869 +42 162.855 166.7325 1000 50 0.99993885 +43 166.7325 170.60999999999999 1000 50 0.99999654 +44 170.61 174.4875 1000 50 0.9999938 +45 174.4875 178.365 1000 50 0.9996511 +46 178.365 182.2425 1000 50 0.9999995 +47 182.2425 186.12 1000 50 0.9999987 +48 186.12 189.9975 1000 50 0.9835535 +49 189.9975 193.875 1000 50 0.9999994 +50 193.875 197.7525 1000 50 0.99990976 +51 197.7525 201.63 1000 50 0.9999999 +52 201.63 205.5075 1000 50 0.99999654 +53 205.5075 209.385 1000 50 0.998934 +54 209.385 213.2625 1000 50 0.9992963 +55 213.2625 217.14 1000 50 0.9988624 +56 217.14 221.01749999999998 1000 50 0.6728135 +57 221.0175 224.895 1000 50 0.99997735 +58 224.895 228.7725 1000 50 0.9999889 +59 228.7725 232.65 1000 50 1.0 +60 232.65 236.5275 1000 50 0.99662066 +61 236.5275 240.405 1000 50 0.99990714 +62 240.405 244.2825 1000 50 0.9958152 +63 244.2825 248.16 1000 50 0.99999976 +64 248.16 252.0375 1000 50 0.9913685 +65 252.0375 255.915 1000 50 0.99996936 +66 255.915 259.7925 1000 50 0.99980456 +67 259.7925 263.67 1000 50 0.9999976 +68 263.67 267.5475 1000 50 0.9999275 +69 267.5475 271.425 1000 50 0.9998286 +70 271.425 275.3025 1000 50 0.9968809 +71 275.3025 279.18 1000 50 0.9998592 +72 279.18 283.0575 1000 50 0.9998184 +73 283.0575 286.935 1000 50 0.62904423 +74 286.935 290.8125 1000 50 1.0 +75 290.8125 294.69 1000 50 0.99542326 +76 294.69 298.5675 1000 50 0.9957039 +77 298.5675 302.445 1000 50 0.99839216 +78 302.445 306.3225 1000 50 0.99756765 +79 310.2 314.0775 1000 50 0.99950373 +80 314.0775 317.955 1000 50 0.9998331 +81 317.955 321.8325 1000 50 0.9975573 +82 321.8325 325.71 1000 50 0.99988365 +83 325.71 329.5875 1000 50 0.8921577 +84 329.5875 333.465 1000 50 0.95614326 +85 333.465 337.3425 1000 50 0.88148934 +86 337.3425 341.21999999999997 1000 50 0.6711975 +87 341.22 345.0975 1000 50 0.9986065 +88 345.0975 348.975 1000 50 0.9996892 +89 348.975 352.8525 1000 50 0.99960357 +90 352.8525 356.73 1000 50 0.99997926 +91 356.73 360.6075 1000 50 0.999987 +92 360.6075 364.485 1000 50 0.99594563 +93 364.485 368.3625 1000 50 0.9765143 +94 368.3625 372.24 1000 50 0.9959551 +95 372.24 376.1175 1000 50 0.9999728 +96 376.1175 379.995 1000 50 0.9966606 +97 379.995 383.8725 1000 50 0.9999192 +98 383.8725 387.75 1000 50 0.9977094 +99 387.75 391.6275 1000 50 0.9999149 +100 391.6275 395.505 1000 50 0.99998343 +101 395.505 399.3825 1000 50 0.99999964 +102 399.3825 403.26 1000 50 0.9978452 +103 403.26 407.1375 1000 50 0.9999467 +104 407.1375 411.015 1000 50 0.9990049 +105 411.015 414.8925 1000 50 0.9994123 +106 414.8925 418.77 1000 50 0.7424497 +107 418.77 422.6475 1000 50 0.88715297 +108 422.6475 426.525 1000 50 0.98233944 +109 426.525 430.4025 1000 50 0.98530096 +110 430.4025 434.28 1000 50 0.99971133 +111 434.28 438.15749999999997 1000 50 0.78842777 +112 438.1575 442.035 1000 50 0.9936132 +113 442.035 445.9125 1000 50 0.9992085 +114 445.9125 449.79 1000 50 0.9994856 +115 449.79 453.6675 1000 50 0.9757717 +116 453.6675 457.545 1000 50 0.99997044 +117 457.545 461.4225 1000 50 0.60099113 +118 461.4225 465.3 1000 50 0.98104745 +119 465.3 469.1775 1000 50 0.9980725 +120 473.055 476.9325 1000 50 0.99991035 +121 476.9325 480.81 1000 50 0.58834434 +122 480.81 484.6875 1000 50 0.99442685 +123 484.6875 488.565 1000 50 0.79037094 +124 488.565 492.4425 1000 50 0.8158976 +125 492.4425 496.32 1000 50 0.9463759 +126 496.32 500.1975 1000 50 0.99853194 +127 504.075 507.9525 1000 50 0.7385247 +128 507.9525 511.83 1000 50 0.99843997 +129 511.83 515.7075 1000 50 0.69145817 +130 515.7075 519.585 1000 50 0.9420921 +131 519.585 523.4625000000001 1000 50 0.99847347 +132 523.4625 527.34 1000 50 0.9935905 +133 527.34 531.2175000000001 1000 50 0.99905473 +134 531.2175 535.095 1000 50 0.9881911 +135 535.095 538.9725000000001 1000 50 0.9993356 +136 538.9725 542.85 1000 50 0.97589546 +137 542.85 546.7275000000001 1000 50 0.99926394 +138 546.7275 550.605 1000 50 0.9999999 +139 550.605 554.4825000000001 1000 50 0.99995434 +140 554.4825 558.36 1000 50 0.9999869 +141 558.36 562.2375000000001 1000 50 0.99784636 +142 562.2375 566.115 1000 50 0.99970466 +143 566.115 569.9925000000001 1000 50 0.99822325 +144 569.9925 573.87 1000 50 0.99962103 +145 573.87 577.7475000000001 1000 50 0.9997085 +146 577.7475 581.625 1000 50 0.9999753 +147 581.625 585.5025 1000 50 0.9999585 +148 585.5025 589.3800000000001 1000 50 0.9999958 +149 589.38 593.2575 1000 50 0.99919003 +150 593.2575 597.1350000000001 1000 50 0.99999166 +151 597.135 601.0125 1000 50 0.99999976 +152 601.0125 604.8900000000001 1000 50 0.9999938 +153 604.89 608.7675 1000 50 0.99988997 +154 608.7675 612.6450000000001 1000 50 0.9893189 +155 612.645 616.5225 1000 50 0.999915 +156 616.5225 620.4000000000001 1000 50 0.99902153 +157 620.4 624.2775 1000 50 0.9784172 +158 624.2775 628.1550000000001 1000 50 0.99395317 +159 628.155 632.0325 1000 50 0.9997292 +160 632.0325 635.9100000000001 1000 50 0.9891445 +161 635.91 639.7875 1000 50 0.99999917 +162 639.7875 643.6650000000001 1000 50 0.99999976 +163 643.665 647.5425 1000 50 0.997889 +164 647.5425 651.4200000000001 1000 50 0.99673957 +165 651.42 655.2975 1000 50 0.9999864 +166 655.2975 659.1750000000001 1000 50 0.9949473 +167 659.175 663.0525 1000 50 0.9996014 +168 663.0525 666.9300000000001 1000 50 0.99972373 +169 666.93 670.8075 1000 50 0.9999753 +170 670.8075 674.6850000000001 1000 50 0.99995315 +171 674.685 678.5625 1000 50 0.9983419 +172 678.5625 682.44 1000 50 0.54207027 +173 682.44 686.3175000000001 1000 50 0.9022008 +174 686.3175 690.195 1000 50 0.9999949 +175 690.195 694.0725000000001 1000 50 0.93892527 +176 694.0725 697.95 1000 50 0.99999774 +177 697.95 701.8275000000001 1000 50 0.9999217 +178 705.705 709.5825000000001 1000 50 0.99891126 +179 709.5825 713.46 1000 50 0.9999994 +180 713.46 717.3375000000001 1000 50 0.6568794 +181 717.3375 721.215 1000 50 0.9916824 +182 721.215 725.0925000000001 1000 50 0.99999976 +183 725.0925 728.97 1000 50 0.9749409 +184 728.97 732.8475000000001 1000 50 0.9999608 +185 732.8475 736.725 1000 50 0.9995696 +186 736.725 740.6025000000001 1000 50 0.9937145 +187 740.6025 744.48 1000 50 0.9999114 +188 744.48 748.3575000000001 1000 50 0.9995946 +189 752.235 756.1125000000001 1000 50 0.99993503 +190 756.1125 759.99 1000 50 0.99949396 +191 759.99 763.8675000000001 1000 50 0.9568588 +192 763.8675 767.745 1000 50 0.8559135 +193 767.745 771.6225000000001 1000 50 0.9981589 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_22-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_22-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..7d180a1e632d1645aecda663a7edb97a6da4e4b9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_22-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,191 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.8511979 +2 3.8775 7.755 1000 50 0.99619734 +3 7.755 11.6325 1000 50 0.99989367 +4 11.6325 15.51 1000 50 0.9993266 +5 15.51 19.3875 1000 50 0.9999411 +6 19.3875 23.265 1000 50 0.6785624 +7 23.265 27.142500000000002 1000 50 1.0 +8 27.1425 31.02 1000 50 0.99988306 +9 31.02 34.8975 1000 50 0.99977225 +10 34.8975 38.775 1000 50 0.99998546 +11 38.775 42.652499999999996 1000 50 0.9998016 +12 42.6525 46.53 1000 50 0.9963727 +13 46.53 50.4075 1000 50 0.96973383 +14 50.4075 54.285 1000 50 0.99016774 +15 54.285 58.162499999999994 1000 50 0.7973297 +16 58.1625 62.04 1000 50 0.999974 +17 62.04 65.9175 1000 50 0.9854962 +18 65.9175 69.795 1000 50 0.90312326 +19 69.795 73.6725 1000 50 0.9999933 +20 73.6725 77.55 1000 50 0.99998736 +21 81.4275 85.30499999999999 1000 50 0.99999976 +22 89.1825 93.06 1000 50 0.7146385 +23 93.06 96.9375 1000 50 1.0 +24 96.9375 100.815 1000 50 0.9996289 +25 104.6925 108.57 1000 50 0.99929416 +26 112.4475 116.325 1000 50 0.9999851 +27 116.325 120.2025 1000 50 0.9999994 +28 120.2025 124.08 1000 50 0.999972 +29 124.08 127.9575 1000 50 0.9998642 +30 127.9575 131.835 1000 50 0.99998987 +31 131.835 135.7125 1000 50 0.9906923 +32 135.7125 139.59 1000 50 0.9986105 +33 139.59 143.4675 1000 50 0.99993324 +34 143.4675 147.345 1000 50 0.55592597 +35 147.345 151.2225 1000 50 0.9999976 +36 151.2225 155.1 1000 50 1.0 +37 155.1 158.9775 1000 50 0.96751034 +38 158.9775 162.855 1000 50 0.9666236 +39 166.7325 170.60999999999999 1000 50 0.7607401 +40 170.61 174.4875 1000 50 0.9999989 +41 174.4875 178.365 1000 50 0.99452883 +42 178.365 182.2425 1000 50 0.9251602 +43 182.2425 186.12 1000 50 0.99999976 +44 186.12 189.9975 1000 50 0.99999297 +45 189.9975 193.875 1000 50 0.97421414 +46 193.875 197.7525 1000 50 0.99919456 +47 197.7525 201.63 1000 50 0.9999807 +48 201.63 205.5075 1000 50 0.98995656 +49 205.5075 209.385 1000 50 0.81635195 +50 209.385 213.2625 1000 50 0.9999864 +51 213.2625 217.14 1000 50 0.9997807 +52 217.14 221.01749999999998 1000 50 0.66024137 +53 221.0175 224.895 1000 50 0.9998473 +54 228.7725 232.65 1000 50 0.99357295 +55 232.65 236.5275 1000 50 0.9999795 +56 236.5275 240.405 1000 50 0.9982766 +57 240.405 244.2825 1000 50 0.99999285 +58 244.2825 248.16 1000 50 0.99727327 +59 248.16 252.0375 1000 50 0.99999857 +60 252.0375 255.915 1000 50 0.9996767 +61 255.915 259.7925 1000 50 0.999995 +62 259.7925 263.67 1000 50 0.9998692 +63 263.67 267.5475 1000 50 0.99999785 +64 267.5475 271.425 1000 50 0.95313066 +65 271.425 275.3025 1000 50 0.9999683 +66 275.3025 279.18 1000 50 0.99997556 +67 279.18 283.0575 1000 50 0.9999031 +68 283.0575 286.935 1000 50 0.9991641 +69 286.935 290.8125 1000 50 0.9997459 +70 290.8125 294.69 1000 50 0.9998839 +71 294.69 298.5675 1000 50 0.9999999 +72 298.5675 302.445 1000 50 0.999972 +73 302.445 306.3225 1000 50 0.99975675 +74 306.3225 310.2 1000 50 0.9997845 +75 310.2 314.0775 1000 50 0.99815387 +76 314.0775 317.955 1000 50 0.9999759 +77 317.955 321.8325 1000 50 0.97670484 +78 321.8325 325.71 1000 50 0.99989176 +79 325.71 329.5875 1000 50 0.9992157 +80 329.5875 333.465 1000 50 0.99995697 +81 333.465 337.3425 1000 50 0.99872476 +82 337.3425 341.21999999999997 1000 50 0.9995407 +83 341.22 345.0975 1000 50 0.9996463 +84 345.0975 348.975 1000 50 0.99999976 +85 348.975 352.8525 1000 50 0.999962 +86 352.8525 356.73 1000 50 1.0 +87 356.73 360.6075 1000 50 0.99999964 +88 360.6075 364.485 1000 50 0.999956 +89 364.485 368.3625 1000 50 1.0 +90 368.3625 372.24 1000 50 0.9999212 +91 372.24 376.1175 1000 50 0.99953437 +92 376.1175 379.995 1000 50 0.99907446 +93 379.995 383.8725 1000 50 0.999912 +94 383.8725 387.75 1000 50 0.99999416 +95 387.75 391.6275 1000 50 0.9999993 +96 391.6275 395.505 1000 50 0.948104 +97 395.505 399.3825 1000 50 0.9995535 +98 399.3825 403.26 1000 50 0.98836887 +99 403.26 407.1375 1000 50 0.99999654 +100 407.1375 411.015 1000 50 0.99983966 +101 411.015 414.8925 1000 50 0.99999964 +102 414.8925 418.77 1000 50 0.98668844 +103 418.77 422.6475 1000 50 1.0 +104 422.6475 426.525 1000 50 0.99792874 +105 426.525 430.4025 1000 50 0.9649195 +106 430.4025 434.28 1000 50 0.9950406 +107 434.28 438.15749999999997 1000 50 0.91728944 +108 438.1575 442.035 1000 50 0.8859712 +109 442.035 445.9125 1000 50 0.9846466 +110 445.9125 449.79 1000 50 0.9400968 +111 449.79 453.6675 1000 50 0.9032268 +112 453.6675 457.545 1000 50 0.98848456 +113 457.545 461.4225 1000 50 0.82655627 +114 461.4225 465.3 1000 50 0.9999989 +115 465.3 469.1775 1000 50 0.9999926 +116 469.1775 473.055 1000 50 0.56490123 +117 473.055 476.9325 1000 50 0.9964042 +118 476.9325 480.81 1000 50 0.9999995 +119 480.81 484.6875 1000 50 0.99991286 +120 484.6875 488.565 1000 50 0.9999846 +121 488.565 492.4425 1000 50 0.9999988 +122 492.4425 496.32 1000 50 0.99983084 +123 496.32 500.1975 1000 50 0.9993988 +124 500.1975 504.075 1000 50 0.99944216 +125 504.075 507.9525 1000 50 0.99999964 +126 507.9525 511.83 1000 50 0.9999956 +127 511.83 515.7075 1000 50 0.9999987 +128 515.7075 519.585 1000 50 0.99694437 +129 519.585 523.4625000000001 1000 50 0.7431297 +130 523.4625 527.34 1000 50 1.0 +131 527.34 531.2175000000001 1000 50 0.99990296 +132 531.2175 535.095 1000 50 0.9999993 +133 535.095 538.9725000000001 1000 50 0.9998349 +134 538.9725 542.85 1000 50 0.99997365 +135 542.85 546.7275000000001 1000 50 0.9882791 +136 546.7275 550.605 1000 50 0.999471 +137 550.605 554.4825000000001 1000 50 0.999961 +138 554.4825 558.36 1000 50 0.9613775 +139 558.36 562.2375000000001 1000 50 0.99758637 +140 562.2375 566.115 1000 50 0.9535112 +141 566.115 569.9925000000001 1000 50 0.9724823 +142 569.9925 573.87 1000 50 0.9900299 +143 573.87 577.7475000000001 1000 50 0.97931045 +144 577.7475 581.625 1000 50 0.6245964 +145 581.625 585.5025 1000 50 0.9762225 +146 585.5025 589.3800000000001 1000 50 0.58192366 +147 589.38 593.2575 1000 50 0.91277754 +148 593.2575 597.1350000000001 1000 50 0.9494119 +149 597.135 601.0125 1000 50 0.9963393 +150 601.0125 604.8900000000001 1000 50 0.90598327 +151 604.89 608.7675 1000 50 0.77894294 +152 612.645 616.5225 1000 50 0.7007419 +153 616.5225 620.4000000000001 1000 50 0.9997094 +154 624.2775 628.1550000000001 1000 50 0.7654767 +155 628.155 632.0325 1000 50 0.81619173 +156 632.0325 635.9100000000001 1000 50 0.8924578 +157 639.7875 643.6650000000001 1000 50 0.5748488 +158 643.665 647.5425 1000 50 0.63808584 +159 647.5425 651.4200000000001 1000 50 0.74537617 +160 659.175 663.0525 1000 50 0.62165135 +161 682.44 686.3175000000001 1000 50 0.51797533 +162 690.195 694.0725000000001 1000 50 0.99841213 +163 694.0725 697.95 1000 50 0.59655 +164 697.95 701.8275000000001 1000 50 0.8982552 +165 701.8275 705.705 1000 50 0.60035086 +166 705.705 709.5825000000001 1000 50 0.9987226 +167 709.5825 713.46 1000 50 0.9851317 +168 713.46 717.3375000000001 1000 50 0.99999905 +169 721.215 725.0925000000001 1000 50 0.99999833 +170 725.0925 728.97 1000 50 0.9992908 +171 728.97 732.8475000000001 1000 50 0.99537647 +172 732.8475 736.725 1000 50 0.9991345 +173 736.725 740.6025000000001 1000 50 0.9984652 +174 740.6025 744.48 1000 50 0.99999976 +175 744.48 748.3575000000001 1000 50 0.9971675 +176 756.1125 759.99 1000 50 0.99997807 +177 759.99 763.8675000000001 1000 50 0.99816257 +178 763.8675 767.745 1000 50 0.9987041 +179 767.745 771.6225000000001 1000 50 0.96871555 +180 771.6225 775.5 1000 50 0.88331944 +181 775.5 779.3775 1000 50 0.90718657 +182 779.3775 783.2550000000001 1000 50 0.9761161 +183 787.1325 791.0100000000001 1000 50 0.7414638 +184 791.01 794.8875 1000 50 0.9972505 +185 794.8875 798.7650000000001 1000 50 0.99938667 +186 798.765 802.6425 1000 50 0.7072035 +187 802.6425 806.5200000000001 1000 50 0.9986879 +188 806.52 810.3975 1000 50 0.9998318 +189 810.3975 814.2750000000001 1000 50 0.7347681 +190 814.275 818.1525 1000 50 0.99980754 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_22-17-15_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_22-17-15_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..bebbf7d023209f0ba0eb4c1eb45bf9d6a83e344a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_22-17-15_annot_2022-11-30_01.txt @@ -0,0 +1,112 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99898916 +2 3.8775 7.755 1000 50 0.9999331 +3 7.755 11.6325 1000 50 0.99999774 +4 15.51 19.3875 1000 50 0.999987 +5 19.3875 23.265 1000 50 0.9986902 +6 23.265 27.142500000000002 1000 50 0.9998518 +7 27.1425 31.02 1000 50 0.96901727 +8 31.02 34.8975 1000 50 0.99993706 +9 34.8975 38.775 1000 50 0.9999553 +10 38.775 42.652499999999996 1000 50 0.9981117 +11 42.6525 46.53 1000 50 0.54305255 +12 46.53 50.4075 1000 50 0.82536006 +13 50.4075 54.285 1000 50 0.9999057 +14 54.285 58.162499999999994 1000 50 0.9987072 +15 58.1625 62.04 1000 50 0.9978333 +16 62.04 65.9175 1000 50 0.98025036 +17 65.9175 69.795 1000 50 0.9999994 +18 69.795 73.6725 1000 50 0.7761906 +19 73.6725 77.55 1000 50 0.9999999 +20 77.55 81.4275 1000 50 0.9993766 +21 81.4275 85.30499999999999 1000 50 0.99842775 +22 85.305 89.1825 1000 50 0.99986553 +23 89.1825 93.06 1000 50 0.95107955 +24 93.06 96.9375 1000 50 0.98656946 +25 96.9375 100.815 1000 50 0.9977239 +26 100.815 104.6925 1000 50 0.9975401 +27 108.57 112.44749999999999 1000 50 0.73162436 +28 112.4475 116.325 1000 50 0.9984382 +29 116.325 120.2025 1000 50 0.99973696 +30 120.2025 124.08 1000 50 0.99652326 +31 124.08 127.9575 1000 50 0.9999856 +32 127.9575 131.835 1000 50 0.9978484 +33 131.835 135.7125 1000 50 0.73364884 +34 135.7125 139.59 1000 50 0.9999894 +35 139.59 143.4675 1000 50 0.99574333 +36 143.4675 147.345 1000 50 0.99800354 +37 147.345 151.2225 1000 50 0.9998722 +38 151.2225 155.1 1000 50 0.99998975 +39 155.1 158.9775 1000 50 0.99997437 +40 158.9775 162.855 1000 50 0.9999684 +41 162.855 166.7325 1000 50 0.9999565 +42 166.7325 170.60999999999999 1000 50 0.94255674 +43 170.61 174.4875 1000 50 0.99983037 +44 174.4875 178.365 1000 50 0.99626005 +45 182.2425 186.12 1000 50 0.9984529 +46 186.12 189.9975 1000 50 0.9440126 +47 189.9975 193.875 1000 50 0.8015737 +48 193.875 197.7525 1000 50 0.536017 +49 197.7525 201.63 1000 50 0.99502593 +50 201.63 205.5075 1000 50 0.9995566 +51 205.5075 209.385 1000 50 0.99999475 +52 209.385 213.2625 1000 50 0.9977623 +53 213.2625 217.14 1000 50 0.9994893 +54 217.14 221.01749999999998 1000 50 0.99992514 +55 221.0175 224.895 1000 50 0.71308625 +56 224.895 228.7725 1000 50 0.99857676 +57 228.7725 232.65 1000 50 0.94304544 +58 232.65 236.5275 1000 50 0.99029166 +59 236.5275 240.405 1000 50 0.9999846 +60 240.405 244.2825 1000 50 0.996256 +61 244.2825 248.16 1000 50 0.99994814 +62 248.16 252.0375 1000 50 0.99477744 +63 252.0375 255.915 1000 50 0.9921847 +64 255.915 259.7925 1000 50 0.9845324 +65 259.7925 263.67 1000 50 0.94974655 +66 263.67 267.5475 1000 50 0.9532661 +67 267.5475 271.425 1000 50 0.97814107 +68 271.425 275.3025 1000 50 0.9612253 +69 275.3025 279.18 1000 50 0.86955327 +70 279.18 283.0575 1000 50 0.99978083 +71 283.0575 286.935 1000 50 0.99864656 +72 286.935 290.8125 1000 50 0.9937171 +73 290.8125 294.69 1000 50 0.99909294 +74 294.69 298.5675 1000 50 0.98765093 +75 298.5675 302.445 1000 50 0.9795888 +76 302.445 306.3225 1000 50 0.9999937 +77 306.3225 310.2 1000 50 0.9901804 +78 310.2 314.0775 1000 50 0.99966073 +79 314.0775 317.955 1000 50 0.99896514 +80 317.955 321.8325 1000 50 0.99934524 +81 321.8325 325.71 1000 50 0.99783045 +82 325.71 329.5875 1000 50 0.9997805 +83 329.5875 333.465 1000 50 0.8146401 +84 333.465 337.3425 1000 50 0.92545223 +85 337.3425 341.21999999999997 1000 50 0.9989066 +86 341.22 345.0975 1000 50 0.7095547 +87 345.0975 348.975 1000 50 0.96744394 +88 348.975 352.8525 1000 50 0.99999774 +89 352.8525 356.73 1000 50 0.99996257 +90 356.73 360.6075 1000 50 0.9300678 +91 360.6075 364.485 1000 50 0.9999994 +92 364.485 368.3625 1000 50 0.9751443 +93 368.3625 372.24 1000 50 0.99995375 +94 372.24 376.1175 1000 50 0.99872905 +95 379.995 383.8725 1000 50 0.99054646 +96 383.8725 387.75 1000 50 0.99997663 +97 391.6275 395.505 1000 50 0.9996877 +98 395.505 399.3825 1000 50 0.7306394 +99 399.3825 403.26 1000 50 0.9977623 +100 403.26 407.1375 1000 50 0.9984345 +101 411.015 414.8925 1000 50 0.9991787 +102 414.8925 418.77 1000 50 0.9955585 +103 422.6475 426.525 1000 50 0.99999976 +104 426.525 430.4025 1000 50 0.9978064 +105 430.4025 434.28 1000 50 1.0 +106 438.1575 442.035 1000 50 0.68063545 +107 442.035 445.9125 1000 50 0.9998054 +108 449.79 453.6675 1000 50 0.9993217 +109 457.545 461.4225 1000 50 0.6754372 +110 461.4225 465.3 1000 50 0.99965155 +111 465.3 469.1775 1000 50 0.9765128 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_23-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_23-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..cd518869554ae184351f9342b4e4a8b0fa3ff80e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_23-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,225 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.97822 +2 7.755 11.6325 1000 50 0.6947207 +3 15.51 19.3875 1000 50 0.7052687 +4 19.3875 23.265 1000 50 0.96658695 +5 23.265 27.142500000000002 1000 50 0.98195165 +6 27.1425 31.02 1000 50 0.9665205 +7 31.02 34.8975 1000 50 0.9999999 +8 34.8975 38.775 1000 50 0.5896837 +9 42.6525 46.53 1000 50 0.9986179 +10 46.53 50.4075 1000 50 0.9228367 +11 50.4075 54.285 1000 50 0.98695415 +12 54.285 58.162499999999994 1000 50 0.9999546 +13 58.1625 62.04 1000 50 0.9457241 +14 62.04 65.9175 1000 50 0.9999962 +15 65.9175 69.795 1000 50 0.98084384 +16 73.6725 77.55 1000 50 0.99841595 +17 77.55 81.4275 1000 50 0.9965031 +18 81.4275 85.30499999999999 1000 50 0.9714794 +19 85.305 89.1825 1000 50 0.9999814 +20 89.1825 93.06 1000 50 0.94056 +21 93.06 96.9375 1000 50 0.7930079 +22 96.9375 100.815 1000 50 0.9723068 +23 100.815 104.6925 1000 50 0.9788043 +24 104.6925 108.57 1000 50 0.8660155 +25 108.57 112.44749999999999 1000 50 0.99937075 +26 116.325 120.2025 1000 50 0.998911 +27 124.08 127.9575 1000 50 0.9913935 +28 127.9575 131.835 1000 50 0.96211374 +29 131.835 135.7125 1000 50 0.99789053 +30 139.59 143.4675 1000 50 0.9999231 +31 143.4675 147.345 1000 50 0.78337 +32 147.345 151.2225 1000 50 0.98227054 +33 151.2225 155.1 1000 50 0.9999999 +34 155.1 158.9775 1000 50 0.9805304 +35 158.9775 162.855 1000 50 0.9530183 +36 162.855 166.7325 1000 50 0.9995864 +37 166.7325 170.60999999999999 1000 50 0.6900735 +38 170.61 174.4875 1000 50 0.99993813 +39 174.4875 178.365 1000 50 0.99881727 +40 182.2425 186.12 1000 50 0.9999149 +41 189.9975 193.875 1000 50 0.9999682 +42 193.875 197.7525 1000 50 0.9999974 +43 197.7525 201.63 1000 50 0.99684745 +44 201.63 205.5075 1000 50 0.99988306 +45 205.5075 209.385 1000 50 0.99963415 +46 209.385 213.2625 1000 50 0.9478154 +47 213.2625 217.14 1000 50 0.9945793 +48 221.0175 224.895 1000 50 0.9999945 +49 224.895 228.7725 1000 50 0.979047 +50 232.65 236.5275 1000 50 0.62950087 +51 236.5275 240.405 1000 50 1.0 +52 240.405 244.2825 1000 50 0.68611616 +53 244.2825 248.16 1000 50 0.90526754 +54 248.16 252.0375 1000 50 0.999474 +55 252.0375 255.915 1000 50 0.9992736 +56 255.915 259.7925 1000 50 0.9997464 +57 259.7925 263.67 1000 50 0.97645116 +58 263.67 267.5475 1000 50 0.8451116 +59 267.5475 271.425 1000 50 0.99974805 +60 271.425 275.3025 1000 50 0.9994686 +61 279.18 283.0575 1000 50 0.99520016 +62 286.935 290.8125 1000 50 0.944142 +63 290.8125 294.69 1000 50 0.9795432 +64 294.69 298.5675 1000 50 0.77145535 +65 298.5675 302.445 1000 50 0.99678683 +66 302.445 306.3225 1000 50 0.9328613 +67 306.3225 310.2 1000 50 0.85029143 +68 310.2 314.0775 1000 50 0.9999263 +69 314.0775 317.955 1000 50 0.9096149 +70 317.955 321.8325 1000 50 0.9979527 +71 321.8325 325.71 1000 50 0.9983651 +72 325.71 329.5875 1000 50 0.9828803 +73 329.5875 333.465 1000 50 0.9958526 +74 333.465 337.3425 1000 50 0.9752381 +75 337.3425 341.21999999999997 1000 50 0.9946878 +76 341.22 345.0975 1000 50 0.9986772 +77 345.0975 348.975 1000 50 0.9994017 +78 348.975 352.8525 1000 50 0.91563815 +79 352.8525 356.73 1000 50 0.9923624 +80 356.73 360.6075 1000 50 0.9292444 +81 360.6075 364.485 1000 50 0.9876859 +82 364.485 368.3625 1000 50 0.999998 +83 372.24 376.1175 1000 50 0.9999901 +84 376.1175 379.995 1000 50 0.9846198 +85 379.995 383.8725 1000 50 0.9995222 +86 383.8725 387.75 1000 50 0.99124265 +87 387.75 391.6275 1000 50 0.8745466 +88 391.6275 395.505 1000 50 0.76246864 +89 395.505 399.3825 1000 50 0.99176556 +90 411.015 414.8925 1000 50 0.93749374 +91 414.8925 418.77 1000 50 0.9991805 +92 422.6475 426.525 1000 50 0.99925107 +93 426.525 430.4025 1000 50 0.9980495 +94 430.4025 434.28 1000 50 0.73719645 +95 434.28 438.15749999999997 1000 50 0.93825084 +96 442.035 445.9125 1000 50 0.999923 +97 445.9125 449.79 1000 50 0.99404967 +98 449.79 453.6675 1000 50 0.9718264 +99 453.6675 457.545 1000 50 0.9475016 +100 457.545 461.4225 1000 50 0.9974795 +101 465.3 469.1775 1000 50 0.9291097 +102 469.1775 473.055 1000 50 0.75260884 +103 473.055 476.9325 1000 50 0.9999101 +104 476.9325 480.81 1000 50 0.78878945 +105 480.81 484.6875 1000 50 0.845286 +106 488.565 492.4425 1000 50 0.94255304 +107 492.4425 496.32 1000 50 0.9621994 +108 496.32 500.1975 1000 50 0.99803895 +109 500.1975 504.075 1000 50 0.9772727 +110 504.075 507.9525 1000 50 0.7555633 +111 511.83 515.7075 1000 50 0.99896526 +112 515.7075 519.585 1000 50 0.97542745 +113 523.4625 527.34 1000 50 0.99999964 +114 527.34 531.2175000000001 1000 50 0.69219446 +115 531.2175 535.095 1000 50 0.99971694 +116 535.095 538.9725000000001 1000 50 0.99255085 +117 542.85 546.7275000000001 1000 50 0.9999392 +118 546.7275 550.605 1000 50 0.9619031 +119 550.605 554.4825000000001 1000 50 0.9899705 +120 554.4825 558.36 1000 50 0.9999844 +121 562.2375 566.115 1000 50 0.9999999 +122 566.115 569.9925000000001 1000 50 0.9955056 +123 569.9925 573.87 1000 50 0.9985305 +124 573.87 577.7475000000001 1000 50 0.9992681 +125 577.7475 581.625 1000 50 0.92069066 +126 581.625 585.5025 1000 50 0.9998919 +127 585.5025 589.3800000000001 1000 50 0.9996012 +128 589.38 593.2575 1000 50 0.9837945 +129 593.2575 597.1350000000001 1000 50 0.6926553 +130 597.135 601.0125 1000 50 0.99966776 +131 601.0125 604.8900000000001 1000 50 0.99853194 +132 604.89 608.7675 1000 50 0.929944 +133 608.7675 612.6450000000001 1000 50 0.9716699 +134 616.5225 620.4000000000001 1000 50 0.94839543 +135 620.4 624.2775 1000 50 0.99999774 +136 628.155 632.0325 1000 50 0.9412486 +137 632.0325 635.9100000000001 1000 50 0.84330934 +138 666.93 670.8075 1000 50 0.9588462 +139 697.95 701.8275000000001 1000 50 0.81606 +140 701.8275 705.705 1000 50 0.99985886 +141 705.705 709.5825000000001 1000 50 0.99979085 +142 709.5825 713.46 1000 50 0.9998541 +143 728.97 732.8475000000001 1000 50 0.99915993 +144 732.8475 736.725 1000 50 0.6776919 +145 736.725 740.6025000000001 1000 50 0.90640175 +146 740.6025 744.48 1000 50 0.6126506 +147 744.48 748.3575000000001 1000 50 0.9917814 +148 748.3575 752.235 1000 50 0.73227125 +149 752.235 756.1125000000001 1000 50 0.9999496 +150 756.1125 759.99 1000 50 0.9999305 +151 759.99 763.8675000000001 1000 50 0.99913365 +152 763.8675 767.745 1000 50 0.9991115 +153 767.745 771.6225000000001 1000 50 0.54255176 +154 771.6225 775.5 1000 50 0.9990145 +155 779.3775 783.2550000000001 1000 50 0.9860314 +156 783.255 787.1325 1000 50 0.9966097 +157 787.1325 791.0100000000001 1000 50 0.98218197 +158 791.01 794.8875 1000 50 0.9995511 +159 798.765 802.6425 1000 50 0.99735403 +160 802.6425 806.5200000000001 1000 50 0.6238381 +161 806.52 810.3975 1000 50 0.9998789 +162 810.3975 814.2750000000001 1000 50 0.99967575 +163 814.275 818.1525 1000 50 0.8014385 +164 818.1525 822.0300000000001 1000 50 0.96127063 +165 822.03 825.9075 1000 50 0.97984844 +166 829.785 833.6625 1000 50 0.93444175 +167 833.6625 837.5400000000001 1000 50 0.9941829 +168 837.54 841.4175 1000 50 0.9964585 +169 841.4175 845.2950000000001 1000 50 0.99989605 +170 845.295 849.1725 1000 50 0.9668687 +171 849.1725 853.0500000000001 1000 50 0.99489486 +172 853.05 856.9275 1000 50 0.9996625 +173 856.9275 860.8050000000001 1000 50 0.99165386 +174 860.805 864.6825 1000 50 0.59333396 +175 864.6825 868.5600000000001 1000 50 0.9651439 +176 868.56 872.4375 1000 50 0.9954999 +177 872.4375 876.315 1000 50 0.9975018 +178 876.315 880.1925000000001 1000 50 0.9999912 +179 880.1925 884.07 1000 50 0.99998355 +180 884.07 887.9475000000001 1000 50 0.9989103 +181 887.9475 891.825 1000 50 0.9999292 +182 891.825 895.7025000000001 1000 50 0.9980572 +183 895.7025 899.58 1000 50 0.9998276 +184 899.58 903.4575000000001 1000 50 0.9999988 +185 903.4575 907.335 1000 50 0.9990959 +186 907.335 911.2125000000001 1000 50 0.99749786 +187 911.2125 915.09 1000 50 0.99945563 +188 922.845 926.7225000000001 1000 50 0.99962676 +189 926.7225 930.6 1000 50 0.99961543 +190 938.355 942.2325000000001 1000 50 0.99823195 +191 942.2325 946.11 1000 50 0.506699 +192 946.11 949.9875000000001 1000 50 0.99961853 +193 949.9875 953.865 1000 50 0.55513906 +194 957.7425 961.62 1000 50 0.99999964 +195 965.4975 969.375 1000 50 0.9324058 +196 969.375 973.2525 1000 50 0.98999 +197 973.2525 977.1300000000001 1000 50 0.6410775 +198 984.885 988.7625 1000 50 0.79101586 +199 988.7625 992.6400000000001 1000 50 0.9661282 +200 996.5175 1000.3950000000001 1000 50 0.9524023 +201 1000.395 1004.2725 1000 50 0.5386348 +202 1008.15 1012.0275 1000 50 0.8824391 +203 1012.0275 1015.9050000000001 1000 50 0.9983076 +204 1019.7825 1023.6600000000001 1000 50 0.99997115 +205 1027.5375 1031.415 1000 50 0.9996151 +206 1031.415 1035.2925 1000 50 0.99148375 +207 1035.2925 1039.17 1000 50 0.9795681 +208 1039.17 1043.0475000000001 1000 50 0.9746801 +209 1043.0475 1046.925 1000 50 0.999907 +210 1050.8025 1054.68 1000 50 0.9880625 +211 1054.68 1058.5575000000001 1000 50 0.9941245 +212 1058.5575 1062.435 1000 50 0.9450942 +213 1062.435 1066.3125 1000 50 0.9999863 +214 1066.3125 1070.19 1000 50 0.74056107 +215 1070.19 1074.0675 1000 50 0.9825593 +216 1074.0675 1077.9450000000002 1000 50 0.9889993 +217 1077.945 1081.8225 1000 50 0.99999845 +218 1081.8225 1085.7 1000 50 0.7342982 +219 1085.7 1089.5775 1000 50 0.9999999 +220 1089.5775 1093.4550000000002 1000 50 0.99998605 +221 1097.3325 1101.21 1000 50 0.99993837 +222 1101.21 1105.0875 1000 50 0.9922478 +223 1105.0875 1108.9650000000001 1000 50 0.6990585 +224 1108.965 1112.8425 1000 50 0.8183912 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_23-22-09_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_23-22-09_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0065dce9fae8c2653215043823ac35770775e0c2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-14_2kHz/channelA_2021-03-14_23-22-09_annot_2022-11-30_01.txt @@ -0,0 +1,37 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.92957 +2 3.8775 7.755 1000 50 0.9769573 +3 7.755 11.6325 1000 50 0.71819484 +4 11.6325 15.51 1000 50 0.99395907 +5 15.51 19.3875 1000 50 0.9990915 +6 27.1425 31.02 1000 50 0.9999733 +7 34.8975 38.775 1000 50 0.9011893 +8 42.6525 46.53 1000 50 0.7931042 +9 46.53 50.4075 1000 50 0.9617132 +10 54.285 58.162499999999994 1000 50 0.90098923 +11 58.1625 62.04 1000 50 0.9999312 +12 62.04 65.9175 1000 50 0.99923897 +13 65.9175 69.795 1000 50 0.98533744 +14 69.795 73.6725 1000 50 0.9944213 +15 73.6725 77.55 1000 50 0.6116506 +16 77.55 81.4275 1000 50 0.9968581 +17 81.4275 85.30499999999999 1000 50 0.83630264 +18 85.305 89.1825 1000 50 0.99753064 +19 89.1825 93.06 1000 50 0.90919346 +20 93.06 96.9375 1000 50 0.9954334 +21 100.815 104.6925 1000 50 0.9655935 +22 104.6925 108.57 1000 50 0.99924916 +23 108.57 112.44749999999999 1000 50 0.99374133 +24 112.4475 116.325 1000 50 0.8343484 +25 116.325 120.2025 1000 50 0.98403835 +26 120.2025 124.08 1000 50 0.99761885 +27 124.08 127.9575 1000 50 0.996579 +28 135.7125 139.59 1000 50 0.86512417 +29 139.59 143.4675 1000 50 0.9890069 +30 143.4675 147.345 1000 50 0.5739231 +31 151.2225 155.1 1000 50 0.7441627 +32 155.1 158.9775 1000 50 0.8421839 +33 158.9775 162.855 1000 50 0.9634977 +34 162.855 166.7325 1000 50 0.92070746 +35 166.7325 170.60999999999999 1000 50 0.99195474 +36 170.61 174.4875 1000 50 0.9053485 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_00-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_00-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..938223cdc8edbef871bdf588691a3b11d60332b2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_00-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,272 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99989676 +2 3.8775 7.755 1000 50 0.9969932 +3 7.755 11.6325 1000 50 0.9999399 +4 11.6325 15.51 1000 50 0.99983144 +5 15.51 19.3875 1000 50 0.9999491 +6 19.3875 23.265 1000 50 0.9999324 +7 23.265 27.142500000000002 1000 50 0.9991146 +8 27.1425 31.02 1000 50 0.9999976 +9 31.02 34.8975 1000 50 0.9349249 +10 34.8975 38.775 1000 50 0.99997866 +11 42.6525 46.53 1000 50 0.9955715 +12 46.53 50.4075 1000 50 0.7564699 +13 50.4075 54.285 1000 50 0.9989993 +14 54.285 58.162499999999994 1000 50 0.99952626 +15 58.1625 62.04 1000 50 0.9919974 +16 62.04 65.9175 1000 50 0.9843316 +17 65.9175 69.795 1000 50 0.9999653 +18 69.795 73.6725 1000 50 0.9881732 +19 73.6725 77.55 1000 50 0.9999628 +20 77.55 81.4275 1000 50 0.99259627 +21 81.4275 85.30499999999999 1000 50 0.998781 +22 85.305 89.1825 1000 50 0.99901354 +23 89.1825 93.06 1000 50 0.9958377 +24 93.06 96.9375 1000 50 0.9999851 +25 96.9375 100.815 1000 50 0.9900771 +26 100.815 104.6925 1000 50 0.9989029 +27 104.6925 108.57 1000 50 0.9982444 +28 108.57 112.44749999999999 1000 50 0.9999888 +29 112.4475 116.325 1000 50 0.6446839 +30 120.2025 124.08 1000 50 0.86199176 +31 124.08 127.9575 1000 50 0.90419847 +32 127.9575 131.835 1000 50 0.5824907 +33 131.835 135.7125 1000 50 0.999642 +34 135.7125 139.59 1000 50 0.9349004 +35 143.4675 147.345 1000 50 0.98782676 +36 151.2225 155.1 1000 50 0.5314458 +37 158.9775 162.855 1000 50 0.8293867 +38 166.7325 170.60999999999999 1000 50 0.9982632 +39 170.61 174.4875 1000 50 0.54121 +40 174.4875 178.365 1000 50 0.53277254 +41 186.12 189.9975 1000 50 0.654816 +42 189.9975 193.875 1000 50 0.7200815 +43 193.875 197.7525 1000 50 0.7750351 +44 201.63 205.5075 1000 50 0.84596294 +45 205.5075 209.385 1000 50 0.8074823 +46 213.2625 217.14 1000 50 0.98841375 +47 217.14 221.01749999999998 1000 50 0.99053615 +48 236.5275 240.405 1000 50 0.99380976 +49 244.2825 248.16 1000 50 0.9606242 +50 248.16 252.0375 1000 50 0.94560015 +51 252.0375 255.915 1000 50 0.92899895 +52 255.915 259.7925 1000 50 0.6827684 +53 259.7925 263.67 1000 50 0.7687283 +54 263.67 267.5475 1000 50 0.9819774 +55 267.5475 271.425 1000 50 0.9999877 +56 271.425 275.3025 1000 50 0.99999774 +57 275.3025 279.18 1000 50 0.84747523 +58 279.18 283.0575 1000 50 0.501136 +59 283.0575 286.935 1000 50 0.8862717 +60 286.935 290.8125 1000 50 0.997601 +61 290.8125 294.69 1000 50 0.99112004 +62 298.5675 302.445 1000 50 0.98439515 +63 302.445 306.3225 1000 50 0.8208444 +64 310.2 314.0775 1000 50 0.6594941 +65 317.955 321.8325 1000 50 0.80206496 +66 321.8325 325.71 1000 50 0.9988576 +67 333.465 337.3425 1000 50 0.9930916 +68 337.3425 341.21999999999997 1000 50 0.9422329 +69 341.22 345.0975 1000 50 0.876597 +70 352.8525 356.73 1000 50 0.9995524 +71 356.73 360.6075 1000 50 0.8492541 +72 364.485 368.3625 1000 50 0.99594903 +73 368.3625 372.24 1000 50 0.6897309 +74 379.995 383.8725 1000 50 0.99512357 +75 383.8725 387.75 1000 50 0.9741942 +76 387.75 391.6275 1000 50 0.9999099 +77 391.6275 395.505 1000 50 0.9387606 +78 403.26 407.1375 1000 50 0.98895735 +79 414.8925 418.77 1000 50 0.9725458 +80 418.77 422.6475 1000 50 0.9980075 +81 422.6475 426.525 1000 50 0.7550578 +82 426.525 430.4025 1000 50 0.9818986 +83 434.28 438.15749999999997 1000 50 0.986387 +84 438.1575 442.035 1000 50 0.7506808 +85 449.79 453.6675 1000 50 0.5247685 +86 457.545 461.4225 1000 50 0.8948893 +87 461.4225 465.3 1000 50 0.9981766 +88 469.1775 473.055 1000 50 0.9999529 +89 473.055 476.9325 1000 50 0.6332806 +90 476.9325 480.81 1000 50 0.9999502 +91 480.81 484.6875 1000 50 0.9996973 +92 488.565 492.4425 1000 50 0.999928 +93 492.4425 496.32 1000 50 0.7293785 +94 500.1975 504.075 1000 50 0.991139 +95 504.075 507.9525 1000 50 0.9986053 +96 507.9525 511.83 1000 50 0.9999435 +97 515.7075 519.585 1000 50 0.79575264 +98 519.585 523.4625000000001 1000 50 0.9708307 +99 527.34 531.2175000000001 1000 50 0.9982595 +100 531.2175 535.095 1000 50 0.9999988 +101 535.095 538.9725000000001 1000 50 0.7826895 +102 538.9725 542.85 1000 50 0.898418 +103 542.85 546.7275000000001 1000 50 0.9989073 +104 546.7275 550.605 1000 50 0.99968076 +105 550.605 554.4825000000001 1000 50 0.99534553 +106 554.4825 558.36 1000 50 0.999423 +107 558.36 562.2375000000001 1000 50 0.99996126 +108 566.115 569.9925000000001 1000 50 0.9976815 +109 573.87 577.7475000000001 1000 50 0.78403586 +110 577.7475 581.625 1000 50 0.651817 +111 585.5025 589.3800000000001 1000 50 0.9974016 +112 593.2575 597.1350000000001 1000 50 0.9274907 +113 601.0125 604.8900000000001 1000 50 0.9921629 +114 608.7675 612.6450000000001 1000 50 0.9995472 +115 616.5225 620.4000000000001 1000 50 0.9655805 +116 620.4 624.2775 1000 50 0.90424824 +117 628.155 632.0325 1000 50 0.998517 +118 632.0325 635.9100000000001 1000 50 0.91159874 +119 635.91 639.7875 1000 50 0.7281079 +120 639.7875 643.6650000000001 1000 50 0.9824539 +121 643.665 647.5425 1000 50 0.94422764 +122 647.5425 651.4200000000001 1000 50 0.91369545 +123 651.42 655.2975 1000 50 0.6215466 +124 655.2975 659.1750000000001 1000 50 0.90316576 +125 659.175 663.0525 1000 50 0.9710081 +126 663.0525 666.9300000000001 1000 50 0.9926528 +127 670.8075 674.6850000000001 1000 50 0.99666154 +128 674.685 678.5625 1000 50 0.99870396 +129 678.5625 682.44 1000 50 0.95650464 +130 682.44 686.3175000000001 1000 50 0.98729545 +131 686.3175 690.195 1000 50 0.9993425 +132 694.0725 697.95 1000 50 0.99976045 +133 697.95 701.8275000000001 1000 50 0.71115386 +134 701.8275 705.705 1000 50 0.7187134 +135 705.705 709.5825000000001 1000 50 0.99998236 +136 709.5825 713.46 1000 50 0.9917602 +137 713.46 717.3375000000001 1000 50 0.9993218 +138 717.3375 721.215 1000 50 0.9996586 +139 721.215 725.0925000000001 1000 50 0.7544066 +140 725.0925 728.97 1000 50 0.99999905 +141 728.97 732.8475000000001 1000 50 0.9973085 +142 732.8475 736.725 1000 50 0.9998907 +143 736.725 740.6025000000001 1000 50 0.99999976 +144 744.48 748.3575000000001 1000 50 0.9994655 +145 748.3575 752.235 1000 50 0.99882966 +146 752.235 756.1125000000001 1000 50 0.6156342 +147 756.1125 759.99 1000 50 0.71648896 +148 763.8675 767.745 1000 50 0.92961884 +149 767.745 771.6225000000001 1000 50 0.67218596 +150 771.6225 775.5 1000 50 0.9649747 +151 775.5 779.3775 1000 50 0.9545559 +152 779.3775 783.2550000000001 1000 50 0.9363565 +153 783.255 787.1325 1000 50 0.9652906 +154 791.01 794.8875 1000 50 0.9999567 +155 794.8875 798.7650000000001 1000 50 0.82206213 +156 798.765 802.6425 1000 50 0.74661565 +157 810.3975 814.2750000000001 1000 50 0.9035278 +158 822.03 825.9075 1000 50 0.9772084 +159 829.785 833.6625 1000 50 0.7233811 +160 833.6625 837.5400000000001 1000 50 0.62062675 +161 845.295 849.1725 1000 50 0.6883406 +162 864.6825 868.5600000000001 1000 50 0.55521005 +163 868.56 872.4375 1000 50 0.9651061 +164 872.4375 876.315 1000 50 0.6894586 +165 876.315 880.1925000000001 1000 50 0.8820302 +166 880.1925 884.07 1000 50 0.9282847 +167 884.07 887.9475000000001 1000 50 0.9999926 +168 891.825 895.7025000000001 1000 50 0.9981945 +169 895.7025 899.58 1000 50 0.9804028 +170 899.58 903.4575000000001 1000 50 0.76193976 +171 903.4575 907.335 1000 50 0.99989796 +172 911.2125 915.09 1000 50 0.8327917 +173 915.09 918.9675000000001 1000 50 0.9928324 +174 922.845 926.7225000000001 1000 50 0.9966929 +175 926.7225 930.6 1000 50 0.62721944 +176 930.6 934.4775000000001 1000 50 0.6848099 +177 934.4775 938.355 1000 50 0.954969 +178 938.355 942.2325000000001 1000 50 0.99586487 +179 942.2325 946.11 1000 50 0.7430325 +180 946.11 949.9875000000001 1000 50 0.98674446 +181 949.9875 953.865 1000 50 0.9995752 +182 953.865 957.7425000000001 1000 50 0.9992611 +183 965.4975 969.375 1000 50 0.8587664 +184 973.2525 977.1300000000001 1000 50 0.6999273 +185 981.0075 984.8850000000001 1000 50 0.600012 +186 984.885 988.7625 1000 50 0.9999713 +187 992.64 996.5175 1000 50 0.83853704 +188 996.5175 1000.3950000000001 1000 50 0.9973596 +189 1004.2725 1008.1500000000001 1000 50 0.990167 +190 1008.15 1012.0275 1000 50 0.98912525 +191 1012.0275 1015.9050000000001 1000 50 0.9992249 +192 1019.7825 1023.6600000000001 1000 50 0.9959252 +193 1023.66 1027.5375 1000 50 0.80205137 +194 1031.415 1035.2925 1000 50 0.9997009 +195 1035.2925 1039.17 1000 50 0.80758435 +196 1039.17 1043.0475000000001 1000 50 0.86093366 +197 1043.0475 1046.925 1000 50 0.97610414 +198 1046.925 1050.8025 1000 50 0.99892503 +199 1050.8025 1054.68 1000 50 0.98975617 +200 1054.68 1058.5575000000001 1000 50 0.99882096 +201 1058.5575 1062.435 1000 50 0.5157594 +202 1062.435 1066.3125 1000 50 0.6301943 +203 1070.19 1074.0675 1000 50 0.9555945 +204 1074.0675 1077.9450000000002 1000 50 0.7915118 +205 1077.945 1081.8225 1000 50 0.89326787 +206 1081.8225 1085.7 1000 50 0.95980614 +207 1085.7 1089.5775 1000 50 0.9809163 +208 1093.455 1097.3325 1000 50 0.6741405 +209 1105.0875 1108.9650000000001 1000 50 0.63225996 +210 1112.8425 1116.72 1000 50 0.76285416 +211 1116.72 1120.5975 1000 50 0.8322221 +212 1136.1075 1139.9850000000001 1000 50 0.9989729 +213 1143.8625 1147.74 1000 50 0.50212246 +214 1151.6175 1155.4950000000001 1000 50 0.9059695 +215 1155.495 1159.3725 1000 50 0.9993548 +216 1159.3725 1163.25 1000 50 0.9189213 +217 1163.25 1167.1275 1000 50 0.510079 +218 1167.1275 1171.005 1000 50 0.6760995 +219 1171.005 1174.8825000000002 1000 50 0.9901659 +220 1174.8825 1178.76 1000 50 0.98754495 +221 1178.76 1182.6375 1000 50 0.9316897 +222 1182.6375 1186.515 1000 50 0.9998709 +223 1186.515 1190.3925000000002 1000 50 0.9748208 +224 1190.3925 1194.27 1000 50 0.89367115 +225 1194.27 1198.1475 1000 50 0.6686648 +226 1198.1475 1202.025 1000 50 0.9807209 +227 1202.025 1205.9025000000001 1000 50 0.9995921 +228 1209.78 1213.6575 1000 50 0.99991465 +229 1217.535 1221.4125000000001 1000 50 0.98419446 +230 1221.4125 1225.29 1000 50 0.89647216 +231 1225.29 1229.1675 1000 50 0.6847708 +232 1229.1675 1233.045 1000 50 0.9999958 +233 1233.045 1236.9225000000001 1000 50 0.82879776 +234 1240.8 1244.6775 1000 50 0.9511232 +235 1244.6775 1248.555 1000 50 0.9999813 +236 1248.555 1252.4325000000001 1000 50 0.71703964 +237 1252.4325 1256.31 1000 50 0.9999975 +238 1260.1875 1264.065 1000 50 0.9995987 +239 1264.065 1267.9425 1000 50 0.99944705 +240 1267.9425 1271.8200000000002 1000 50 0.9851007 +241 1283.4525 1287.3300000000002 1000 50 0.99985564 +242 1287.33 1291.2075 1000 50 0.9851424 +243 1295.085 1298.9625 1000 50 0.9955825 +244 1298.9625 1302.8400000000001 1000 50 0.9734793 +245 1302.84 1306.7175 1000 50 0.70866704 +246 1306.7175 1310.595 1000 50 0.9988269 +247 1310.595 1314.4725 1000 50 0.9980774 +248 1322.2275 1326.105 1000 50 0.99902904 +249 1326.105 1329.9825 1000 50 0.99241793 +250 1329.9825 1333.8600000000001 1000 50 0.9993968 +251 1333.86 1337.7375 1000 50 0.9999968 +252 1337.7375 1341.615 1000 50 0.99892944 +253 1345.4925 1349.3700000000001 1000 50 0.99471337 +254 1349.37 1353.2475 1000 50 0.9662031 +255 1353.2475 1357.125 1000 50 0.9827843 +256 1357.125 1361.0025 1000 50 0.7569266 +257 1361.0025 1364.88 1000 50 0.9999603 +258 1364.88 1368.7575000000002 1000 50 0.50024223 +259 1368.7575 1372.635 1000 50 0.5720616 +260 1376.5125 1380.39 1000 50 0.99419904 +261 1380.39 1384.2675000000002 1000 50 0.74398553 +262 1388.145 1392.0225 1000 50 0.71417254 +263 1392.0225 1395.9 1000 50 0.99830484 +264 1395.9 1399.7775000000001 1000 50 0.9334034 +265 1399.7775 1403.655 1000 50 0.9997745 +266 1403.655 1407.5325 1000 50 0.99783427 +267 1407.5325 1411.41 1000 50 0.5796848 +268 1411.41 1415.2875000000001 1000 50 0.993407 +269 1415.2875 1419.165 1000 50 0.9923786 +270 1419.165 1423.0425 1000 50 0.9145321 +271 1423.0425 1426.92 1000 50 0.9969818 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_01-01-53_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_01-01-53_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a4bc29d4d8d847d533b089e0b7020f4d495b72ae --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_01-01-53_annot_2022-11-30_01.txt @@ -0,0 +1,236 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.94713426 +2 3.8775 7.755 1000 50 0.9957066 +3 7.755 11.6325 1000 50 0.67002314 +4 11.6325 15.51 1000 50 0.99996686 +5 15.51 19.3875 1000 50 0.5247485 +6 23.265 27.142500000000002 1000 50 0.9999838 +7 27.1425 31.02 1000 50 0.99995863 +8 31.02 34.8975 1000 50 0.9999565 +9 34.8975 38.775 1000 50 0.98909575 +10 38.775 42.652499999999996 1000 50 0.6438497 +11 42.6525 46.53 1000 50 0.99999905 +12 50.4075 54.285 1000 50 0.9998006 +13 54.285 58.162499999999994 1000 50 0.99125427 +14 62.04 65.9175 1000 50 0.99997056 +15 65.9175 69.795 1000 50 0.6240656 +16 73.6725 77.55 1000 50 0.9898241 +17 77.55 81.4275 1000 50 0.9658691 +18 81.4275 85.30499999999999 1000 50 0.9599471 +19 85.305 89.1825 1000 50 0.60853165 +20 93.06 96.9375 1000 50 0.7268659 +21 96.9375 100.815 1000 50 0.550625 +22 100.815 104.6925 1000 50 0.99947125 +23 104.6925 108.57 1000 50 0.9987897 +24 112.4475 116.325 1000 50 0.99930155 +25 116.325 120.2025 1000 50 0.99187225 +26 124.08 127.9575 1000 50 0.9994954 +27 127.9575 131.835 1000 50 0.92037654 +28 135.7125 139.59 1000 50 0.9950498 +29 143.4675 147.345 1000 50 0.61010456 +30 151.2225 155.1 1000 50 0.76514584 +31 155.1 158.9775 1000 50 0.98911566 +32 166.7325 170.60999999999999 1000 50 0.9893239 +33 174.4875 178.365 1000 50 0.7285805 +34 178.365 182.2425 1000 50 0.54632187 +35 182.2425 186.12 1000 50 0.81240135 +36 193.875 197.7525 1000 50 0.9884447 +37 197.7525 201.63 1000 50 0.6921743 +38 205.5075 209.385 1000 50 0.99960655 +39 209.385 213.2625 1000 50 0.5942022 +40 213.2625 217.14 1000 50 0.92470455 +41 217.14 221.01749999999998 1000 50 0.9830887 +42 221.0175 224.895 1000 50 0.79724735 +43 224.895 228.7725 1000 50 0.99428576 +44 228.7725 232.65 1000 50 0.9941451 +45 236.5275 240.405 1000 50 0.98256665 +46 240.405 244.2825 1000 50 0.9985341 +47 244.2825 248.16 1000 50 0.9891689 +48 248.16 252.0375 1000 50 0.9999889 +49 255.915 259.7925 1000 50 0.9448164 +50 259.7925 263.67 1000 50 0.99887425 +51 263.67 267.5475 1000 50 0.80407816 +52 267.5475 271.425 1000 50 0.99992955 +53 271.425 275.3025 1000 50 0.99996054 +54 275.3025 279.18 1000 50 0.9026509 +55 279.18 283.0575 1000 50 0.9994505 +56 290.8125 294.69 1000 50 0.99195063 +57 294.69 298.5675 1000 50 0.54582363 +58 298.5675 302.445 1000 50 0.9980869 +59 302.445 306.3225 1000 50 0.99911994 +60 310.2 314.0775 1000 50 0.99984646 +61 314.0775 317.955 1000 50 0.9900553 +62 321.8325 325.71 1000 50 0.9999435 +63 329.5875 333.465 1000 50 0.999696 +64 333.465 337.3425 1000 50 0.9990872 +65 337.3425 341.21999999999997 1000 50 0.9890975 +66 341.22 345.0975 1000 50 0.99955124 +67 345.0975 348.975 1000 50 0.9986854 +68 348.975 352.8525 1000 50 0.89177763 +69 352.8525 356.73 1000 50 0.972057 +70 360.6075 364.485 1000 50 0.9929125 +71 364.485 368.3625 1000 50 0.99977976 +72 372.24 376.1175 1000 50 0.78533715 +73 376.1175 379.995 1000 50 0.9997671 +74 379.995 383.8725 1000 50 0.8077179 +75 383.8725 387.75 1000 50 0.54378754 +76 387.75 391.6275 1000 50 0.9616767 +77 395.505 399.3825 1000 50 0.9992194 +78 403.26 407.1375 1000 50 0.81978744 +79 407.1375 411.015 1000 50 0.95311075 +80 414.8925 418.77 1000 50 0.9960485 +81 418.77 422.6475 1000 50 0.9951669 +82 422.6475 426.525 1000 50 0.9804719 +83 434.28 438.15749999999997 1000 50 0.6667044 +84 438.1575 442.035 1000 50 0.9756704 +85 445.9125 449.79 1000 50 0.5217988 +86 449.79 453.6675 1000 50 0.9982327 +87 453.6675 457.545 1000 50 0.7612958 +88 457.545 461.4225 1000 50 0.9985682 +89 465.3 469.1775 1000 50 0.92115676 +90 469.1775 473.055 1000 50 0.99849546 +91 473.055 476.9325 1000 50 0.9845005 +92 480.81 484.6875 1000 50 0.99991167 +93 484.6875 488.565 1000 50 0.7766646 +94 488.565 492.4425 1000 50 0.8993343 +95 492.4425 496.32 1000 50 0.9817281 +96 496.32 500.1975 1000 50 0.77586824 +97 500.1975 504.075 1000 50 0.57522345 +98 504.075 507.9525 1000 50 0.99998677 +99 507.9525 511.83 1000 50 0.99402183 +100 511.83 515.7075 1000 50 0.9999956 +101 515.7075 519.585 1000 50 0.9755402 +102 519.585 523.4625000000001 1000 50 0.9819342 +103 523.4625 527.34 1000 50 0.9971693 +104 527.34 531.2175000000001 1000 50 0.95875907 +105 531.2175 535.095 1000 50 0.8949231 +106 542.85 546.7275000000001 1000 50 0.6487034 +107 546.7275 550.605 1000 50 0.97931015 +108 550.605 554.4825000000001 1000 50 0.8624287 +109 554.4825 558.36 1000 50 0.9999968 +110 558.36 562.2375000000001 1000 50 0.9717571 +111 569.9925 573.87 1000 50 0.9172871 +112 573.87 577.7475000000001 1000 50 0.7341767 +113 577.7475 581.625 1000 50 0.8705214 +114 581.625 585.5025 1000 50 0.9989459 +115 585.5025 589.3800000000001 1000 50 0.64426166 +116 589.38 593.2575 1000 50 0.8671699 +117 597.135 601.0125 1000 50 0.5643468 +118 601.0125 604.8900000000001 1000 50 0.99584866 +119 604.89 608.7675 1000 50 0.7842522 +120 612.645 616.5225 1000 50 0.85954374 +121 620.4 624.2775 1000 50 0.9227881 +122 624.2775 628.1550000000001 1000 50 0.97674334 +123 628.155 632.0325 1000 50 0.50969464 +124 632.0325 635.9100000000001 1000 50 0.8568119 +125 635.91 639.7875 1000 50 0.91937155 +126 643.665 647.5425 1000 50 0.89363223 +127 647.5425 651.4200000000001 1000 50 0.99461293 +128 655.2975 659.1750000000001 1000 50 0.97611505 +129 663.0525 666.9300000000001 1000 50 0.8323073 +130 678.5625 682.44 1000 50 0.5394394 +131 682.44 686.3175000000001 1000 50 0.6782088 +132 686.3175 690.195 1000 50 0.85826784 +133 690.195 694.0725000000001 1000 50 0.9431128 +134 694.0725 697.95 1000 50 0.5807975 +135 697.95 701.8275000000001 1000 50 0.9198841 +136 705.705 709.5825000000001 1000 50 0.5976591 +137 713.46 717.3375000000001 1000 50 0.5379002 +138 717.3375 721.215 1000 50 0.6328891 +139 721.215 725.0925000000001 1000 50 0.7370444 +140 725.0925 728.97 1000 50 0.72737324 +141 728.97 732.8475000000001 1000 50 0.9990802 +142 732.8475 736.725 1000 50 0.9947179 +143 736.725 740.6025000000001 1000 50 0.9978471 +144 744.48 748.3575000000001 1000 50 0.7288592 +145 748.3575 752.235 1000 50 0.99869424 +146 763.8675 767.745 1000 50 0.99931633 +147 767.745 771.6225000000001 1000 50 0.7074696 +148 771.6225 775.5 1000 50 0.7133266 +149 779.3775 783.2550000000001 1000 50 0.99451894 +150 783.255 787.1325 1000 50 0.97347623 +151 787.1325 791.0100000000001 1000 50 0.9996308 +152 791.01 794.8875 1000 50 0.5078831 +153 794.8875 798.7650000000001 1000 50 0.9399644 +154 798.765 802.6425 1000 50 0.9415856 +155 802.6425 806.5200000000001 1000 50 0.7586182 +156 806.52 810.3975 1000 50 0.86338633 +157 814.275 818.1525 1000 50 0.97304934 +158 818.1525 822.0300000000001 1000 50 0.9223977 +159 822.03 825.9075 1000 50 0.71032643 +160 829.785 833.6625 1000 50 0.9916221 +161 841.4175 845.2950000000001 1000 50 0.90146697 +162 845.295 849.1725 1000 50 0.88488096 +163 856.9275 860.8050000000001 1000 50 0.8567525 +164 860.805 864.6825 1000 50 0.6193279 +165 864.6825 868.5600000000001 1000 50 0.7713424 +166 868.56 872.4375 1000 50 0.6004795 +167 876.315 880.1925000000001 1000 50 0.9474674 +168 884.07 887.9475000000001 1000 50 0.7564426 +169 887.9475 891.825 1000 50 0.9974572 +170 891.825 895.7025000000001 1000 50 0.62024456 +171 903.4575 907.335 1000 50 0.68336654 +172 911.2125 915.09 1000 50 0.70925206 +173 915.09 918.9675000000001 1000 50 0.6429253 +174 922.845 926.7225000000001 1000 50 0.9818392 +175 930.6 934.4775000000001 1000 50 0.9996977 +176 934.4775 938.355 1000 50 0.7249497 +177 942.2325 946.11 1000 50 0.9952114 +178 949.9875 953.865 1000 50 0.52151465 +179 953.865 957.7425000000001 1000 50 0.7809242 +180 957.7425 961.62 1000 50 0.86554974 +181 961.62 965.4975000000001 1000 50 0.71639913 +182 965.4975 969.375 1000 50 0.6039185 +183 973.2525 977.1300000000001 1000 50 0.9877791 +184 977.13 981.0075 1000 50 0.8985747 +185 1008.15 1012.0275 1000 50 0.94112587 +186 1012.0275 1015.9050000000001 1000 50 0.88537943 +187 1015.905 1019.7825 1000 50 0.75673914 +188 1019.7825 1023.6600000000001 1000 50 0.56653184 +189 1027.5375 1031.415 1000 50 0.9774351 +190 1035.2925 1039.17 1000 50 0.67002654 +191 1050.8025 1054.68 1000 50 0.6977846 +192 1054.68 1058.5575000000001 1000 50 0.8750506 +193 1058.5575 1062.435 1000 50 0.66375655 +194 1066.3125 1070.19 1000 50 0.7002328 +195 1074.0675 1077.9450000000002 1000 50 0.97112435 +196 1077.945 1081.8225 1000 50 0.86345136 +197 1081.8225 1085.7 1000 50 0.8731565 +198 1089.5775 1093.4550000000002 1000 50 0.5196853 +199 1101.21 1105.0875 1000 50 0.9486022 +200 1108.965 1112.8425 1000 50 0.9954581 +201 1116.72 1120.5975 1000 50 0.5587777 +202 1120.5975 1124.4750000000001 1000 50 0.84942424 +203 1124.475 1128.3525 1000 50 0.8060154 +204 1139.985 1143.8625 1000 50 0.575677 +205 1159.3725 1163.25 1000 50 0.51333916 +206 1167.1275 1171.005 1000 50 0.9976063 +207 1174.8825 1178.76 1000 50 0.8775149 +208 1182.6375 1186.515 1000 50 0.5494727 +209 1190.3925 1194.27 1000 50 0.9212971 +210 1198.1475 1202.025 1000 50 0.9821034 +211 1209.78 1213.6575 1000 50 0.99710745 +212 1217.535 1221.4125000000001 1000 50 0.8549664 +213 1221.4125 1225.29 1000 50 0.7662241 +214 1225.29 1229.1675 1000 50 0.62542343 +215 1236.9225 1240.8 1000 50 0.9951822 +216 1240.8 1244.6775 1000 50 0.74249774 +217 1248.555 1252.4325000000001 1000 50 0.6647796 +218 1252.4325 1256.31 1000 50 0.50837886 +219 1256.31 1260.1875 1000 50 0.84385586 +220 1260.1875 1264.065 1000 50 0.8194149 +221 1271.82 1275.6975 1000 50 0.9966588 +222 1287.33 1291.2075 1000 50 0.88668543 +223 1295.085 1298.9625 1000 50 0.90368354 +224 1298.9625 1302.8400000000001 1000 50 0.9976578 +225 1302.84 1306.7175 1000 50 0.9670826 +226 1306.7175 1310.595 1000 50 0.86333436 +227 1310.595 1314.4725 1000 50 0.6926671 +228 1314.4725 1318.3500000000001 1000 50 0.96175146 +229 1322.2275 1326.105 1000 50 0.6296218 +230 1329.9825 1333.8600000000001 1000 50 0.8987884 +231 1333.86 1337.7375 1000 50 0.8994307 +232 1357.125 1361.0025 1000 50 0.6798915 +233 1364.88 1368.7575000000002 1000 50 0.9242012 +234 1372.635 1376.5125 1000 50 0.7256216 +235 1388.145 1392.0225 1000 50 0.9251153 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_02-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_02-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..891dfc839d56ea28b44c8178984f598e30b86629 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_02-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,37 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9900619 +2 7.755 11.6325 1000 50 0.9998235 +3 11.6325 15.51 1000 50 0.7788072 +4 15.51 19.3875 1000 50 0.9798226 +5 19.3875 23.265 1000 50 0.6604588 +6 27.1425 31.02 1000 50 0.99977905 +7 31.02 34.8975 1000 50 0.9677681 +8 34.8975 38.775 1000 50 0.8885701 +9 38.775 42.652499999999996 1000 50 0.9919397 +10 42.6525 46.53 1000 50 0.57956433 +11 46.53 50.4075 1000 50 0.9852497 +12 50.4075 54.285 1000 50 0.9470781 +13 58.1625 62.04 1000 50 0.9434243 +14 62.04 65.9175 1000 50 0.9142285 +15 69.795 73.6725 1000 50 0.9995913 +16 73.6725 77.55 1000 50 0.9998115 +17 77.55 81.4275 1000 50 0.59685266 +18 81.4275 85.30499999999999 1000 50 0.9992613 +19 85.305 89.1825 1000 50 0.667422 +20 89.1825 93.06 1000 50 0.9836981 +21 93.06 96.9375 1000 50 0.9999988 +22 96.9375 100.815 1000 50 0.854341 +23 104.6925 108.57 1000 50 0.99607027 +24 112.4475 116.325 1000 50 0.9759938 +25 116.325 120.2025 1000 50 0.8019429 +26 135.7125 139.59 1000 50 0.79307187 +27 143.4675 147.345 1000 50 0.70557064 +28 147.345 151.2225 1000 50 0.9640202 +29 158.9775 162.855 1000 50 0.8815995 +30 166.7325 170.60999999999999 1000 50 0.99722385 +31 170.61 174.4875 1000 50 0.8819395 +32 174.4875 178.365 1000 50 0.6823735 +33 178.365 182.2425 1000 50 0.9987105 +34 182.2425 186.12 1000 50 0.99619067 +35 197.7525 201.63 1000 50 0.6366434 +36 209.385 213.2625 1000 50 0.8849184 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_02-07-10_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_02-07-10_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..18f5b22c56b082988abfe088ec307f29a78dfea1 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_02-07-10_annot_2022-11-30_01.txt @@ -0,0 +1,161 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.78540325 +2 3.8775 7.755 1000 50 0.8741165 +3 11.6325 15.51 1000 50 0.9999894 +4 15.51 19.3875 1000 50 0.9995111 +5 27.1425 31.02 1000 50 0.9980787 +6 31.02 34.8975 1000 50 0.999003 +7 38.775 42.652499999999996 1000 50 0.9767099 +8 42.6525 46.53 1000 50 0.9577554 +9 46.53 50.4075 1000 50 0.65102875 +10 50.4075 54.285 1000 50 0.9957125 +11 62.04 65.9175 1000 50 0.9997552 +12 65.9175 69.795 1000 50 0.99360704 +13 69.795 73.6725 1000 50 0.61707497 +14 85.305 89.1825 1000 50 0.9347053 +15 89.1825 93.06 1000 50 0.6526767 +16 104.6925 108.57 1000 50 0.7967372 +17 108.57 112.44749999999999 1000 50 0.67533463 +18 112.4475 116.325 1000 50 0.899602 +19 124.08 127.9575 1000 50 0.74662447 +20 127.9575 131.835 1000 50 0.80619514 +21 135.7125 139.59 1000 50 0.97715306 +22 143.4675 147.345 1000 50 0.7013849 +23 155.1 158.9775 1000 50 0.9983719 +24 166.7325 170.60999999999999 1000 50 0.9616413 +25 182.2425 186.12 1000 50 0.9382082 +26 189.9975 193.875 1000 50 0.745185 +27 193.875 197.7525 1000 50 0.7336252 +28 201.63 205.5075 1000 50 0.98916656 +29 205.5075 209.385 1000 50 0.517966 +30 209.385 213.2625 1000 50 0.8258214 +31 213.2625 217.14 1000 50 0.9641538 +32 224.895 228.7725 1000 50 0.58778363 +33 228.7725 232.65 1000 50 0.8197298 +34 236.5275 240.405 1000 50 0.7753506 +35 248.16 252.0375 1000 50 0.62228036 +36 267.5475 271.425 1000 50 0.615395 +37 271.425 275.3025 1000 50 0.61918956 +38 275.3025 279.18 1000 50 0.94561785 +39 286.935 290.8125 1000 50 0.98839754 +40 298.5675 302.445 1000 50 0.97152936 +41 317.955 321.8325 1000 50 0.9573448 +42 341.22 345.0975 1000 50 0.6219313 +43 348.975 352.8525 1000 50 0.9999788 +44 352.8525 356.73 1000 50 0.849663 +45 360.6075 364.485 1000 50 0.75078 +46 368.3625 372.24 1000 50 0.7645241 +47 379.995 383.8725 1000 50 0.69983995 +48 383.8725 387.75 1000 50 0.5021114 +49 395.505 399.3825 1000 50 0.99819946 +50 399.3825 403.26 1000 50 0.5548972 +51 403.26 407.1375 1000 50 0.92786145 +52 407.1375 411.015 1000 50 0.5728389 +53 414.8925 418.77 1000 50 0.978308 +54 422.6475 426.525 1000 50 0.76832616 +55 426.525 430.4025 1000 50 0.99903345 +56 430.4025 434.28 1000 50 0.94821554 +57 438.1575 442.035 1000 50 0.9999994 +58 445.9125 449.79 1000 50 0.9999318 +59 457.545 461.4225 1000 50 0.6514535 +60 461.4225 465.3 1000 50 0.72803193 +61 465.3 469.1775 1000 50 0.9999999 +62 469.1775 473.055 1000 50 0.9951905 +63 473.055 476.9325 1000 50 0.545539 +64 476.9325 480.81 1000 50 0.9446995 +65 480.81 484.6875 1000 50 0.9999937 +66 484.6875 488.565 1000 50 0.5362509 +67 488.565 492.4425 1000 50 0.99181235 +68 492.4425 496.32 1000 50 0.9907342 +69 500.1975 504.075 1000 50 0.9883068 +70 504.075 507.9525 1000 50 0.9883151 +71 507.9525 511.83 1000 50 0.8764389 +72 515.7075 519.585 1000 50 0.78792596 +73 519.585 523.4625000000001 1000 50 0.96557504 +74 523.4625 527.34 1000 50 0.7511334 +75 527.34 531.2175000000001 1000 50 0.75428003 +76 535.095 538.9725000000001 1000 50 0.99814177 +77 538.9725 542.85 1000 50 0.99416804 +78 546.7275 550.605 1000 50 0.97985816 +79 550.605 554.4825000000001 1000 50 0.9991053 +80 558.36 562.2375000000001 1000 50 0.99997675 +81 562.2375 566.115 1000 50 0.99801505 +82 566.115 569.9925000000001 1000 50 0.9996586 +83 569.9925 573.87 1000 50 0.9999789 +84 573.87 577.7475000000001 1000 50 0.84502417 +85 581.625 585.5025 1000 50 0.9972248 +86 585.5025 589.3800000000001 1000 50 0.99971944 +87 589.38 593.2575 1000 50 0.7039881 +88 593.2575 597.1350000000001 1000 50 0.99990475 +89 601.0125 604.8900000000001 1000 50 0.9864391 +90 604.89 608.7675 1000 50 0.9898712 +91 608.7675 612.6450000000001 1000 50 0.9994942 +92 616.5225 620.4000000000001 1000 50 0.9999169 +93 620.4 624.2775 1000 50 0.998114 +94 628.155 632.0325 1000 50 0.9992625 +95 632.0325 635.9100000000001 1000 50 0.999992 +96 635.91 639.7875 1000 50 0.798961 +97 651.42 655.2975 1000 50 0.8243786 +98 655.2975 659.1750000000001 1000 50 0.98031265 +99 663.0525 666.9300000000001 1000 50 0.999803 +100 670.8075 674.6850000000001 1000 50 0.9944951 +101 678.5625 682.44 1000 50 0.95316947 +102 682.44 686.3175000000001 1000 50 0.87419015 +103 690.195 694.0725000000001 1000 50 0.7214324 +104 694.0725 697.95 1000 50 0.8336455 +105 697.95 701.8275000000001 1000 50 0.8312452 +106 701.8275 705.705 1000 50 0.98213905 +107 705.705 709.5825000000001 1000 50 0.890585 +108 709.5825 713.46 1000 50 0.8679746 +109 713.46 717.3375000000001 1000 50 0.732482 +110 721.215 725.0925000000001 1000 50 0.9675501 +111 732.8475 736.725 1000 50 0.97394854 +112 736.725 740.6025000000001 1000 50 0.52946556 +113 759.99 763.8675000000001 1000 50 0.98046875 +114 771.6225 775.5 1000 50 0.63237685 +115 779.3775 783.2550000000001 1000 50 0.86752826 +116 783.255 787.1325 1000 50 0.8886304 +117 787.1325 791.0100000000001 1000 50 0.63917446 +118 791.01 794.8875 1000 50 0.76086456 +119 802.6425 806.5200000000001 1000 50 0.9871515 +120 806.52 810.3975 1000 50 0.99097276 +121 810.3975 814.2750000000001 1000 50 0.6719302 +122 814.275 818.1525 1000 50 0.56378615 +123 818.1525 822.0300000000001 1000 50 0.51555246 +124 822.03 825.9075 1000 50 0.961374 +125 825.9075 829.7850000000001 1000 50 0.99161434 +126 829.785 833.6625 1000 50 0.98767394 +127 837.54 841.4175 1000 50 0.99936754 +128 841.4175 845.2950000000001 1000 50 0.53710145 +129 849.1725 853.0500000000001 1000 50 0.97663975 +130 853.05 856.9275 1000 50 0.8275802 +131 856.9275 860.8050000000001 1000 50 0.5866619 +132 872.4375 876.315 1000 50 0.97089595 +133 876.315 880.1925000000001 1000 50 0.6447718 +134 884.07 887.9475000000001 1000 50 0.9539816 +135 903.4575 907.335 1000 50 0.6122817 +136 907.335 911.2125000000001 1000 50 0.90076566 +137 918.9675 922.845 1000 50 0.5338108 +138 942.2325 946.11 1000 50 0.9657917 +139 946.11 949.9875000000001 1000 50 0.5081534 +140 949.9875 953.865 1000 50 0.99378467 +141 953.865 957.7425000000001 1000 50 0.9537651 +142 957.7425 961.62 1000 50 0.99957365 +143 961.62 965.4975000000001 1000 50 0.99993503 +144 965.4975 969.375 1000 50 0.9784638 +145 973.2525 977.1300000000001 1000 50 0.6125175 +146 981.0075 984.8850000000001 1000 50 0.82909834 +147 984.885 988.7625 1000 50 0.9337747 +148 992.64 996.5175 1000 50 0.5214979 +149 996.5175 1000.3950000000001 1000 50 0.79750663 +150 1004.2725 1008.1500000000001 1000 50 0.6526975 +151 1008.15 1012.0275 1000 50 0.99799997 +152 1012.0275 1015.9050000000001 1000 50 0.65558916 +153 1019.7825 1023.6600000000001 1000 50 0.9889066 +154 1023.66 1027.5375 1000 50 0.6215292 +155 1027.5375 1031.415 1000 50 0.98108554 +156 1035.2925 1039.17 1000 50 0.999548 +157 1046.925 1050.8025 1000 50 0.9999999 +158 1058.5575 1062.435 1000 50 0.8437018 +159 1066.3125 1070.19 1000 50 0.99902487 +160 1070.19 1074.0675 1000 50 0.9423492 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_03-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_03-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..225fc9bf1f495a37aac79da26906a5bfc8d54553 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_03-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,80 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.82656246 +2 7.755 11.6325 1000 50 0.9685353 +3 15.51 19.3875 1000 50 0.8253857 +4 19.3875 23.265 1000 50 0.6522929 +5 27.1425 31.02 1000 50 0.99999 +6 31.02 34.8975 1000 50 0.98927313 +7 34.8975 38.775 1000 50 0.60812545 +8 38.775 42.652499999999996 1000 50 0.99137175 +9 42.6525 46.53 1000 50 0.8651423 +10 50.4075 54.285 1000 50 0.99999714 +11 54.285 58.162499999999994 1000 50 0.99632275 +12 62.04 65.9175 1000 50 0.99079704 +13 65.9175 69.795 1000 50 0.87153417 +14 77.55 81.4275 1000 50 0.96256757 +15 81.4275 85.30499999999999 1000 50 0.8054379 +16 85.305 89.1825 1000 50 0.9999751 +17 89.1825 93.06 1000 50 0.99985516 +18 93.06 96.9375 1000 50 0.9981336 +19 96.9375 100.815 1000 50 0.98719376 +20 100.815 104.6925 1000 50 0.99998534 +21 104.6925 108.57 1000 50 0.9998418 +22 108.57 112.44749999999999 1000 50 0.98084587 +23 112.4475 116.325 1000 50 0.99989367 +24 116.325 120.2025 1000 50 0.99938965 +25 120.2025 124.08 1000 50 0.9999951 +26 124.08 127.9575 1000 50 0.9866981 +27 127.9575 131.835 1000 50 0.9991258 +28 131.835 135.7125 1000 50 0.9993618 +29 135.7125 139.59 1000 50 0.9790703 +30 139.59 143.4675 1000 50 0.9957319 +31 143.4675 147.345 1000 50 0.90678596 +32 147.345 151.2225 1000 50 0.9996352 +33 151.2225 155.1 1000 50 0.97860307 +34 155.1 158.9775 1000 50 0.9989502 +35 158.9775 162.855 1000 50 0.9938176 +36 162.855 166.7325 1000 50 0.9994609 +37 166.7325 170.60999999999999 1000 50 0.99313414 +38 170.61 174.4875 1000 50 0.9902401 +39 174.4875 178.365 1000 50 0.64934474 +40 178.365 182.2425 1000 50 0.96914667 +41 182.2425 186.12 1000 50 0.9999639 +42 186.12 189.9975 1000 50 0.9743872 +43 189.9975 193.875 1000 50 0.5057145 +44 193.875 197.7525 1000 50 0.99749386 +45 197.7525 201.63 1000 50 0.99202967 +46 201.63 205.5075 1000 50 0.9915047 +47 205.5075 209.385 1000 50 0.9327969 +48 209.385 213.2625 1000 50 0.99768186 +49 213.2625 217.14 1000 50 0.9984635 +50 217.14 221.01749999999998 1000 50 0.83882815 +51 224.895 228.7725 1000 50 0.9534386 +52 228.7725 232.65 1000 50 0.9998116 +53 232.65 236.5275 1000 50 0.9976693 +54 236.5275 240.405 1000 50 0.9778592 +55 240.405 244.2825 1000 50 0.99999774 +56 244.2825 248.16 1000 50 0.5977408 +57 252.0375 255.915 1000 50 0.99999285 +58 255.915 259.7925 1000 50 0.9666316 +59 263.67 267.5475 1000 50 0.9344367 +60 267.5475 271.425 1000 50 0.96819746 +61 271.425 275.3025 1000 50 0.9932413 +62 275.3025 279.18 1000 50 0.51411545 +63 279.18 283.0575 1000 50 0.9529199 +64 283.0575 286.935 1000 50 0.65230244 +65 290.8125 294.69 1000 50 0.9071016 +66 314.0775 317.955 1000 50 0.92316395 +67 333.465 337.3425 1000 50 0.68576217 +68 345.0975 348.975 1000 50 0.8872495 +69 364.485 368.3625 1000 50 0.56652933 +70 387.75 391.6275 1000 50 0.9450414 +71 391.6275 395.505 1000 50 0.94132686 +72 407.1375 411.015 1000 50 0.53119415 +73 414.8925 418.77 1000 50 0.68134344 +74 422.6475 426.525 1000 50 0.64865226 +75 426.525 430.4025 1000 50 0.522036 +76 434.28 438.15749999999997 1000 50 0.9927597 +77 449.79 453.6675 1000 50 0.69029677 +78 461.4225 465.3 1000 50 0.7334711 +79 511.83 515.7075 1000 50 0.783505 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_03-12-28_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_03-12-28_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..50cbd2fcec7c4f8cf634729cb39843d2ad74db65 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_03-12-28_annot_2022-11-30_01.txt @@ -0,0 +1,117 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9994456 +2 7.755 11.6325 1000 50 0.9997259 +3 11.6325 15.51 1000 50 0.9999926 +4 15.51 19.3875 1000 50 0.999228 +5 19.3875 23.265 1000 50 0.95914817 +6 23.265 27.142500000000002 1000 50 0.9999821 +7 27.1425 31.02 1000 50 0.9999206 +8 31.02 34.8975 1000 50 0.9980611 +9 34.8975 38.775 1000 50 0.9999999 +10 38.775 42.652499999999996 1000 50 0.9997378 +11 42.6525 46.53 1000 50 0.96137714 +12 46.53 50.4075 1000 50 0.9979479 +13 50.4075 54.285 1000 50 0.9717316 +14 54.285 58.162499999999994 1000 50 0.94955456 +15 58.1625 62.04 1000 50 0.9995478 +16 62.04 65.9175 1000 50 0.99637526 +17 65.9175 69.795 1000 50 0.9587981 +18 69.795 73.6725 1000 50 0.9996773 +19 73.6725 77.55 1000 50 0.9997807 +20 77.55 81.4275 1000 50 0.9781432 +21 81.4275 85.30499999999999 1000 50 0.9808069 +22 85.305 89.1825 1000 50 0.9983468 +23 89.1825 93.06 1000 50 0.99452484 +24 93.06 96.9375 1000 50 0.97790706 +25 96.9375 100.815 1000 50 0.9823746 +26 104.6925 108.57 1000 50 0.9647884 +27 108.57 112.44749999999999 1000 50 0.81666064 +28 112.4475 116.325 1000 50 0.97904336 +29 116.325 120.2025 1000 50 0.99548006 +30 120.2025 124.08 1000 50 0.9978886 +31 124.08 127.9575 1000 50 0.89432895 +32 127.9575 131.835 1000 50 0.8025989 +33 131.835 135.7125 1000 50 0.74625593 +34 135.7125 139.59 1000 50 0.9777453 +35 139.59 143.4675 1000 50 0.9407891 +36 143.4675 147.345 1000 50 0.9958925 +37 147.345 151.2225 1000 50 0.992769 +38 151.2225 155.1 1000 50 0.618369 +39 155.1 158.9775 1000 50 0.99969447 +40 158.9775 162.855 1000 50 0.9972682 +41 162.855 166.7325 1000 50 0.9860686 +42 166.7325 170.60999999999999 1000 50 0.7580952 +43 178.365 182.2425 1000 50 0.83423495 +44 189.9975 193.875 1000 50 0.99689996 +45 197.7525 201.63 1000 50 0.7053697 +46 201.63 205.5075 1000 50 0.53722537 +47 209.385 213.2625 1000 50 0.97298276 +48 213.2625 217.14 1000 50 0.7335213 +49 240.405 244.2825 1000 50 0.9722438 +50 248.16 252.0375 1000 50 0.7927675 +51 255.915 259.7925 1000 50 0.674797 +52 259.7925 263.67 1000 50 0.82198256 +53 263.67 267.5475 1000 50 0.5696816 +54 267.5475 271.425 1000 50 0.5971964 +55 271.425 275.3025 1000 50 0.82144845 +56 275.3025 279.18 1000 50 0.93303365 +57 279.18 283.0575 1000 50 0.6230826 +58 298.5675 302.445 1000 50 0.5268185 +59 302.445 306.3225 1000 50 0.671203 +60 310.2 314.0775 1000 50 0.9815238 +61 317.955 321.8325 1000 50 0.69077957 +62 325.71 329.5875 1000 50 0.67332464 +63 329.5875 333.465 1000 50 0.61648333 +64 333.465 337.3425 1000 50 0.6331635 +65 348.975 352.8525 1000 50 0.56462306 +66 368.3625 372.24 1000 50 0.7329832 +67 383.8725 387.75 1000 50 0.9359435 +68 399.3825 403.26 1000 50 0.5180639 +69 411.015 414.8925 1000 50 0.8269467 +70 418.77 422.6475 1000 50 0.6290668 +71 430.4025 434.28 1000 50 0.5149862 +72 442.035 445.9125 1000 50 0.71209216 +73 449.79 453.6675 1000 50 0.8566215 +74 473.055 476.9325 1000 50 0.7209859 +75 484.6875 488.565 1000 50 0.7462429 +76 488.565 492.4425 1000 50 0.9902727 +77 492.4425 496.32 1000 50 0.75626177 +78 500.1975 504.075 1000 50 0.52487 +79 504.075 507.9525 1000 50 0.9926594 +80 507.9525 511.83 1000 50 0.947623 +81 515.7075 519.585 1000 50 0.71053237 +82 519.585 523.4625000000001 1000 50 0.8639409 +83 527.34 531.2175000000001 1000 50 0.5161439 +84 531.2175 535.095 1000 50 0.6771401 +85 535.095 538.9725000000001 1000 50 0.73135424 +86 538.9725 542.85 1000 50 0.5461815 +87 546.7275 550.605 1000 50 0.89545804 +88 558.36 562.2375000000001 1000 50 0.91037524 +89 573.87 577.7475000000001 1000 50 0.5920333 +90 577.7475 581.625 1000 50 0.60530585 +91 585.5025 589.3800000000001 1000 50 0.99956733 +92 589.38 593.2575 1000 50 0.9970413 +93 593.2575 597.1350000000001 1000 50 0.52303404 +94 597.135 601.0125 1000 50 0.99975485 +95 601.0125 604.8900000000001 1000 50 0.9999311 +96 604.89 608.7675 1000 50 0.9964091 +97 608.7675 612.6450000000001 1000 50 0.9911259 +98 616.5225 620.4000000000001 1000 50 0.9998721 +99 620.4 624.2775 1000 50 0.77944684 +100 624.2775 628.1550000000001 1000 50 0.9996351 +101 635.91 639.7875 1000 50 0.99904615 +102 639.7875 643.6650000000001 1000 50 0.66987294 +103 643.665 647.5425 1000 50 0.99798465 +104 647.5425 651.4200000000001 1000 50 0.99998426 +105 651.42 655.2975 1000 50 0.85675114 +106 663.0525 666.9300000000001 1000 50 0.98030794 +107 666.93 670.8075 1000 50 0.57564205 +108 678.5625 682.44 1000 50 0.9616236 +109 682.44 686.3175000000001 1000 50 0.80288196 +110 686.3175 690.195 1000 50 0.8558805 +111 717.3375 721.215 1000 50 0.9696227 +112 721.215 725.0925000000001 1000 50 0.5150539 +113 732.8475 736.725 1000 50 0.78921485 +114 744.48 748.3575000000001 1000 50 0.85455734 +115 748.3575 752.235 1000 50 0.87390983 +116 752.235 756.1125000000001 1000 50 0.9968731 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_04-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_04-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..494db3d57f6981449f8102fbca6098934ebafdf1 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_04-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,114 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9415052 +2 3.8775 7.755 1000 50 0.89391404 +3 11.6325 15.51 1000 50 0.54563814 +4 15.51 19.3875 1000 50 0.6424733 +5 27.1425 31.02 1000 50 0.7518098 +6 31.02 34.8975 1000 50 0.9374547 +7 38.775 42.652499999999996 1000 50 0.86683524 +8 42.6525 46.53 1000 50 0.55833507 +9 54.285 58.162499999999994 1000 50 0.7644798 +10 58.1625 62.04 1000 50 0.82056963 +11 62.04 65.9175 1000 50 0.5916203 +12 65.9175 69.795 1000 50 0.6444242 +13 73.6725 77.55 1000 50 0.73788434 +14 85.305 89.1825 1000 50 0.94399315 +15 89.1825 93.06 1000 50 0.64068 +16 93.06 96.9375 1000 50 0.63804257 +17 100.815 104.6925 1000 50 0.58834434 +18 108.57 112.44749999999999 1000 50 0.9235498 +19 112.4475 116.325 1000 50 0.602584 +20 131.835 135.7125 1000 50 0.78856045 +21 147.345 151.2225 1000 50 0.725684 +22 151.2225 155.1 1000 50 0.5269496 +23 155.1 158.9775 1000 50 0.5055857 +24 182.2425 186.12 1000 50 0.76696587 +25 197.7525 201.63 1000 50 0.52803296 +26 201.63 205.5075 1000 50 0.580235 +27 205.5075 209.385 1000 50 0.98437226 +28 209.385 213.2625 1000 50 0.9999021 +29 213.2625 217.14 1000 50 0.9951061 +30 217.14 221.01749999999998 1000 50 0.60439 +31 221.0175 224.895 1000 50 0.9999064 +32 224.895 228.7725 1000 50 0.5487257 +33 248.16 252.0375 1000 50 0.5361656 +34 252.0375 255.915 1000 50 0.9065179 +35 255.915 259.7925 1000 50 0.5581697 +36 259.7925 263.67 1000 50 0.6058815 +37 267.5475 271.425 1000 50 0.67513293 +38 271.425 275.3025 1000 50 0.5010722 +39 275.3025 279.18 1000 50 0.9700075 +40 279.18 283.0575 1000 50 0.95189476 +41 286.935 290.8125 1000 50 0.99653804 +42 294.69 298.5675 1000 50 0.98315144 +43 298.5675 302.445 1000 50 0.7936846 +44 302.445 306.3225 1000 50 0.7272022 +45 310.2 314.0775 1000 50 0.68771046 +46 314.0775 317.955 1000 50 0.6557201 +47 321.8325 325.71 1000 50 0.6047018 +48 325.71 329.5875 1000 50 0.9887594 +49 329.5875 333.465 1000 50 0.997707 +50 337.3425 341.21999999999997 1000 50 0.79252636 +51 341.22 345.0975 1000 50 0.6896292 +52 352.8525 356.73 1000 50 0.7949498 +53 364.485 368.3625 1000 50 0.54695237 +54 376.1175 379.995 1000 50 0.55652565 +55 391.6275 395.505 1000 50 0.99057883 +56 395.505 399.3825 1000 50 0.82606107 +57 403.26 407.1375 1000 50 0.97709924 +58 414.8925 418.77 1000 50 0.54103446 +59 418.77 422.6475 1000 50 0.9645496 +60 426.525 430.4025 1000 50 0.6846027 +61 430.4025 434.28 1000 50 0.99057007 +62 434.28 438.15749999999997 1000 50 0.53324676 +63 438.1575 442.035 1000 50 0.5876325 +64 449.79 453.6675 1000 50 0.80075455 +65 461.4225 465.3 1000 50 0.6836096 +66 465.3 469.1775 1000 50 0.58407164 +67 473.055 476.9325 1000 50 0.6433356 +68 480.81 484.6875 1000 50 0.98403984 +69 484.6875 488.565 1000 50 0.8322271 +70 507.9525 511.83 1000 50 0.9848875 +71 511.83 515.7075 1000 50 0.72596604 +72 531.2175 535.095 1000 50 0.9582193 +73 538.9725 542.85 1000 50 0.84996474 +74 542.85 546.7275000000001 1000 50 0.6686818 +75 550.605 554.4825000000001 1000 50 0.78053486 +76 562.2375 566.115 1000 50 0.7462427 +77 573.87 577.7475000000001 1000 50 0.72381663 +78 581.625 585.5025 1000 50 0.90682673 +79 585.5025 589.3800000000001 1000 50 0.5306642 +80 593.2575 597.1350000000001 1000 50 0.9756934 +81 597.135 601.0125 1000 50 0.6615944 +82 608.7675 612.6450000000001 1000 50 0.75946605 +83 612.645 616.5225 1000 50 0.50474375 +84 616.5225 620.4000000000001 1000 50 0.7458806 +85 624.2775 628.1550000000001 1000 50 0.71214813 +86 628.155 632.0325 1000 50 0.71567214 +87 655.2975 659.1750000000001 1000 50 0.6061154 +88 663.0525 666.9300000000001 1000 50 0.98970515 +89 666.93 670.8075 1000 50 0.82188123 +90 670.8075 674.6850000000001 1000 50 0.75055677 +91 678.5625 682.44 1000 50 0.98999375 +92 686.3175 690.195 1000 50 0.6306948 +93 690.195 694.0725000000001 1000 50 0.96175754 +94 694.0725 697.95 1000 50 0.9667891 +95 705.705 709.5825000000001 1000 50 0.99806386 +96 709.5825 713.46 1000 50 0.79343253 +97 725.0925 728.97 1000 50 0.97371507 +98 736.725 740.6025000000001 1000 50 0.9999851 +99 740.6025 744.48 1000 50 0.9790989 +100 752.235 756.1125000000001 1000 50 0.9579826 +101 771.6225 775.5 1000 50 0.90612686 +102 779.3775 783.2550000000001 1000 50 0.64645934 +103 783.255 787.1325 1000 50 0.9727294 +104 791.01 794.8875 1000 50 0.8395554 +105 798.765 802.6425 1000 50 0.95813775 +106 802.6425 806.5200000000001 1000 50 0.9609358 +107 810.3975 814.2750000000001 1000 50 0.99680305 +108 814.275 818.1525 1000 50 0.9951084 +109 822.03 825.9075 1000 50 0.9998536 +110 825.9075 829.7850000000001 1000 50 0.5030125 +111 833.6625 837.5400000000001 1000 50 0.989939 +112 837.54 841.4175 1000 50 0.99914277 +113 845.295 849.1725 1000 50 0.90386105 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_04-19-37_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_04-19-37_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d748688b975050dffc9a64928ad503248c007d16 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_04-19-37_annot_2022-11-30_01.txt @@ -0,0 +1,47 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9100696 +2 3.8775 7.755 1000 50 0.9440281 +3 7.755 11.6325 1000 50 0.99532795 +4 11.6325 15.51 1000 50 0.99736446 +5 38.775 42.652499999999996 1000 50 0.517603 +6 46.53 50.4075 1000 50 0.9993148 +7 50.4075 54.285 1000 50 0.68061006 +8 54.285 58.162499999999994 1000 50 0.9986777 +9 58.1625 62.04 1000 50 0.93380696 +10 62.04 65.9175 1000 50 0.8255486 +11 77.55 81.4275 1000 50 0.88293606 +12 89.1825 93.06 1000 50 0.9927199 +13 96.9375 100.815 1000 50 0.53008825 +14 112.4475 116.325 1000 50 0.53723264 +15 120.2025 124.08 1000 50 0.67565006 +16 124.08 127.9575 1000 50 0.96169186 +17 127.9575 131.835 1000 50 0.65318024 +18 131.835 135.7125 1000 50 0.50275517 +19 147.345 151.2225 1000 50 0.9910651 +20 155.1 158.9775 1000 50 0.98756325 +21 162.855 166.7325 1000 50 0.54734886 +22 166.7325 170.60999999999999 1000 50 0.9234272 +23 178.365 182.2425 1000 50 0.90860724 +24 189.9975 193.875 1000 50 0.78667456 +25 193.875 197.7525 1000 50 0.7739133 +26 205.5075 209.385 1000 50 0.67654496 +27 221.0175 224.895 1000 50 0.63744265 +28 232.65 236.5275 1000 50 0.9996915 +29 240.405 244.2825 1000 50 0.7804332 +30 244.2825 248.16 1000 50 0.8215113 +31 248.16 252.0375 1000 50 0.7799876 +32 252.0375 255.915 1000 50 0.99808973 +33 255.915 259.7925 1000 50 0.98588204 +34 259.7925 263.67 1000 50 0.8676827 +35 267.5475 271.425 1000 50 0.98260134 +36 275.3025 279.18 1000 50 0.9999225 +37 279.18 283.0575 1000 50 0.9983382 +38 286.935 290.8125 1000 50 0.99984837 +39 290.8125 294.69 1000 50 0.8703474 +40 294.69 298.5675 1000 50 0.9999956 +41 298.5675 302.445 1000 50 0.9859379 +42 306.3225 310.2 1000 50 0.99453 +43 310.2 314.0775 1000 50 0.99917173 +44 314.0775 317.955 1000 50 0.5066707 +45 317.955 321.8325 1000 50 0.998552 +46 321.8325 325.71 1000 50 0.99903935 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_05-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_05-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f73dde30f3c4e0e80cbce350415bbd16ca86e27b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_05-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,158 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.75502986 +2 23.265 27.142500000000002 1000 50 0.5263624 +3 27.1425 31.02 1000 50 0.9392747 +4 31.02 34.8975 1000 50 0.9981768 +5 65.9175 69.795 1000 50 0.66572225 +6 93.06 96.9375 1000 50 0.70893115 +7 100.815 104.6925 1000 50 0.6210433 +8 104.6925 108.57 1000 50 0.53148425 +9 108.57 112.44749999999999 1000 50 0.5655499 +10 112.4475 116.325 1000 50 0.97835994 +11 116.325 120.2025 1000 50 0.75554115 +12 124.08 127.9575 1000 50 0.7139033 +13 127.9575 131.835 1000 50 0.70576125 +14 147.345 151.2225 1000 50 0.54136825 +15 151.2225 155.1 1000 50 0.9999274 +16 158.9775 162.855 1000 50 0.5611538 +17 162.855 166.7325 1000 50 0.7125817 +18 166.7325 170.60999999999999 1000 50 0.5783617 +19 170.61 174.4875 1000 50 0.62240785 +20 174.4875 178.365 1000 50 0.8805096 +21 182.2425 186.12 1000 50 0.9501758 +22 189.9975 193.875 1000 50 0.98575425 +23 193.875 197.7525 1000 50 0.9730768 +24 197.7525 201.63 1000 50 0.75302625 +25 205.5075 209.385 1000 50 0.82234436 +26 213.2625 217.14 1000 50 0.9891862 +27 217.14 221.01749999999998 1000 50 0.9630087 +28 221.0175 224.895 1000 50 0.9623009 +29 228.7725 232.65 1000 50 0.9564705 +30 232.65 236.5275 1000 50 0.99964964 +31 244.2825 248.16 1000 50 0.8215002 +32 248.16 252.0375 1000 50 0.5728214 +33 252.0375 255.915 1000 50 0.5716932 +34 255.915 259.7925 1000 50 0.9154656 +35 267.5475 271.425 1000 50 0.77382237 +36 271.425 275.3025 1000 50 0.8396427 +37 275.3025 279.18 1000 50 0.84410685 +38 279.18 283.0575 1000 50 0.9986688 +39 306.3225 310.2 1000 50 0.8435893 +40 310.2 314.0775 1000 50 0.9286154 +41 314.0775 317.955 1000 50 0.91209084 +42 317.955 321.8325 1000 50 0.78917557 +43 321.8325 325.71 1000 50 0.59942675 +44 329.5875 333.465 1000 50 0.80746907 +45 337.3425 341.21999999999997 1000 50 0.5441019 +46 352.8525 356.73 1000 50 0.90416384 +47 364.485 368.3625 1000 50 0.9018836 +48 368.3625 372.24 1000 50 0.9985329 +49 379.995 383.8725 1000 50 0.998716 +50 391.6275 395.505 1000 50 0.9981674 +51 395.505 399.3825 1000 50 0.9910595 +52 403.26 407.1375 1000 50 0.96656114 +53 407.1375 411.015 1000 50 0.9982128 +54 411.015 414.8925 1000 50 0.9870235 +55 414.8925 418.77 1000 50 0.99775416 +56 422.6475 426.525 1000 50 0.79398304 +57 426.525 430.4025 1000 50 0.7320229 +58 430.4025 434.28 1000 50 0.9740968 +59 438.1575 442.035 1000 50 0.99867946 +60 445.9125 449.79 1000 50 0.9392318 +61 449.79 453.6675 1000 50 0.99715185 +62 453.6675 457.545 1000 50 0.97561854 +63 457.545 461.4225 1000 50 0.99996495 +64 476.9325 480.81 1000 50 0.672843 +65 480.81 484.6875 1000 50 0.92507654 +66 492.4425 496.32 1000 50 0.7281955 +67 500.1975 504.075 1000 50 0.63973284 +68 523.4625 527.34 1000 50 0.60715723 +69 527.34 531.2175000000001 1000 50 0.65323436 +70 535.095 538.9725000000001 1000 50 0.64112735 +71 546.7275 550.605 1000 50 0.5809378 +72 550.605 554.4825000000001 1000 50 0.6081625 +73 554.4825 558.36 1000 50 0.99997115 +74 558.36 562.2375000000001 1000 50 0.8874747 +75 562.2375 566.115 1000 50 0.75507575 +76 566.115 569.9925000000001 1000 50 0.73560834 +77 569.9925 573.87 1000 50 0.5224795 +78 577.7475 581.625 1000 50 0.6036206 +79 581.625 585.5025 1000 50 0.9051047 +80 589.38 593.2575 1000 50 0.99866796 +81 597.135 601.0125 1000 50 0.81656456 +82 608.7675 612.6450000000001 1000 50 0.9612615 +83 612.645 616.5225 1000 50 0.96666735 +84 620.4 624.2775 1000 50 0.95389587 +85 624.2775 628.1550000000001 1000 50 0.9598322 +86 628.155 632.0325 1000 50 0.6730908 +87 635.91 639.7875 1000 50 0.99997425 +88 639.7875 643.6650000000001 1000 50 0.9932881 +89 643.665 647.5425 1000 50 0.84530014 +90 655.2975 659.1750000000001 1000 50 0.9936028 +91 659.175 663.0525 1000 50 0.7817881 +92 663.0525 666.9300000000001 1000 50 0.8213612 +93 666.93 670.8075 1000 50 0.6093372 +94 670.8075 674.6850000000001 1000 50 0.98877174 +95 674.685 678.5625 1000 50 0.82438624 +96 682.44 686.3175000000001 1000 50 0.74948794 +97 709.5825 713.46 1000 50 0.6992853 +98 721.215 725.0925000000001 1000 50 0.7844124 +99 728.97 732.8475000000001 1000 50 0.7557209 +100 740.6025 744.48 1000 50 0.9954845 +101 783.255 787.1325 1000 50 0.7019618 +102 798.765 802.6425 1000 50 0.5600538 +103 810.3975 814.2750000000001 1000 50 0.93822324 +104 814.275 818.1525 1000 50 0.8770242 +105 818.1525 822.0300000000001 1000 50 0.5263108 +106 822.03 825.9075 1000 50 0.7464765 +107 829.785 833.6625 1000 50 0.9164285 +108 837.54 841.4175 1000 50 0.7655354 +109 841.4175 845.2950000000001 1000 50 0.9485975 +110 845.295 849.1725 1000 50 0.99910694 +111 849.1725 853.0500000000001 1000 50 0.80982363 +112 853.05 856.9275 1000 50 0.6090575 +113 864.6825 868.5600000000001 1000 50 0.53064376 +114 872.4375 876.315 1000 50 0.72476923 +115 876.315 880.1925000000001 1000 50 0.99308866 +116 884.07 887.9475000000001 1000 50 0.56991583 +117 887.9475 891.825 1000 50 0.5176084 +118 899.58 903.4575000000001 1000 50 0.95809066 +119 903.4575 907.335 1000 50 0.575484 +120 918.9675 922.845 1000 50 0.89899105 +121 926.7225 930.6 1000 50 0.7648927 +122 949.9875 953.865 1000 50 0.85218585 +123 953.865 957.7425000000001 1000 50 0.75211203 +124 957.7425 961.62 1000 50 0.9204212 +125 961.62 965.4975000000001 1000 50 0.98587984 +126 965.4975 969.375 1000 50 0.86708796 +127 969.375 973.2525 1000 50 0.55833787 +128 973.2525 977.1300000000001 1000 50 0.99143124 +129 984.885 988.7625 1000 50 0.9766871 +130 996.5175 1000.3950000000001 1000 50 0.9503078 +131 1008.15 1012.0275 1000 50 0.99981195 +132 1012.0275 1015.9050000000001 1000 50 0.60687745 +133 1015.905 1019.7825 1000 50 0.8418533 +134 1023.66 1027.5375 1000 50 0.99991107 +135 1027.5375 1031.415 1000 50 0.7482454 +136 1043.0475 1046.925 1000 50 0.5936575 +137 1050.8025 1054.68 1000 50 0.54176337 +138 1062.435 1066.3125 1000 50 0.5762337 +139 1066.3125 1070.19 1000 50 0.62618303 +140 1070.19 1074.0675 1000 50 0.5503155 +141 1077.945 1081.8225 1000 50 0.98232275 +142 1081.8225 1085.7 1000 50 0.69144654 +143 1089.5775 1093.4550000000002 1000 50 0.5938094 +144 1101.21 1105.0875 1000 50 0.99013954 +145 1105.0875 1108.9650000000001 1000 50 0.7929785 +146 1120.5975 1124.4750000000001 1000 50 0.53011674 +147 1124.475 1128.3525 1000 50 0.67179346 +148 1128.3525 1132.23 1000 50 0.79732877 +149 1136.1075 1139.9850000000001 1000 50 0.88681227 +150 1167.1275 1171.005 1000 50 0.9721505 +151 1174.8825 1178.76 1000 50 0.6306968 +152 1186.515 1190.3925000000002 1000 50 0.5009721 +153 1205.9025 1209.78 1000 50 0.605209 +154 1209.78 1213.6575 1000 50 0.81798404 +155 1233.045 1236.9225000000001 1000 50 0.9954209 +156 1236.9225 1240.8 1000 50 0.5751553 +157 1240.8 1244.6775 1000 50 0.97835267 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_05-24-24_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_05-24-24_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1b02cbae71030fad26899688a420da24d267228f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_05-24-24_annot_2022-11-30_01.txt @@ -0,0 +1,7 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9282657 +2 11.6325 15.51 1000 50 0.6061487 +3 23.265 27.142500000000002 1000 50 0.9513363 +4 31.02 34.8975 1000 50 0.6425657 +5 34.8975 38.775 1000 50 0.91269994 +6 38.775 42.652499999999996 1000 50 0.5940258 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_06-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_06-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..2e1133b77a7bef99ee6051ad1b1c427a704fc46a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_06-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,264 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9980075 +2 7.755 11.6325 1000 50 0.95268863 +3 15.51 19.3875 1000 50 0.9996308 +4 19.3875 23.265 1000 50 0.9999782 +5 23.265 27.142500000000002 1000 50 0.96279716 +6 31.02 34.8975 1000 50 0.96721953 +7 34.8975 38.775 1000 50 0.99997544 +8 38.775 42.652499999999996 1000 50 0.89101094 +9 42.6525 46.53 1000 50 0.9998678 +10 46.53 50.4075 1000 50 0.9646913 +11 50.4075 54.285 1000 50 0.80647355 +12 54.285 58.162499999999994 1000 50 0.9994199 +13 58.1625 62.04 1000 50 0.99822026 +14 65.9175 69.795 1000 50 0.99989283 +15 69.795 73.6725 1000 50 0.9971361 +16 73.6725 77.55 1000 50 0.991314 +17 77.55 81.4275 1000 50 0.9719739 +18 85.305 89.1825 1000 50 0.5907305 +19 89.1825 93.06 1000 50 0.9922616 +20 93.06 96.9375 1000 50 0.5111908 +21 100.815 104.6925 1000 50 0.9677205 +22 108.57 112.44749999999999 1000 50 0.93003 +23 112.4475 116.325 1000 50 0.9934189 +24 116.325 120.2025 1000 50 0.5985135 +25 120.2025 124.08 1000 50 0.98459595 +26 124.08 127.9575 1000 50 0.9998097 +27 131.835 135.7125 1000 50 0.6695241 +28 135.7125 139.59 1000 50 0.99999845 +29 139.59 143.4675 1000 50 0.99675816 +30 143.4675 147.345 1000 50 0.9999709 +31 147.345 151.2225 1000 50 0.9999801 +32 151.2225 155.1 1000 50 0.9973151 +33 155.1 158.9775 1000 50 0.8794803 +34 158.9775 162.855 1000 50 0.8276914 +35 162.855 166.7325 1000 50 0.99775237 +36 170.61 174.4875 1000 50 0.9999733 +37 174.4875 178.365 1000 50 0.99989307 +38 178.365 182.2425 1000 50 0.66631883 +39 182.2425 186.12 1000 50 0.9998623 +40 186.12 189.9975 1000 50 0.99362624 +41 189.9975 193.875 1000 50 0.9953856 +42 197.7525 201.63 1000 50 0.987305 +43 201.63 205.5075 1000 50 0.99997437 +44 205.5075 209.385 1000 50 0.6751378 +45 209.385 213.2625 1000 50 0.9910547 +46 213.2625 217.14 1000 50 0.57280844 +47 217.14 221.01749999999998 1000 50 0.8237665 +48 228.7725 232.65 1000 50 0.9983613 +49 232.65 236.5275 1000 50 0.930812 +50 236.5275 240.405 1000 50 0.5214143 +51 240.405 244.2825 1000 50 0.9964579 +52 244.2825 248.16 1000 50 0.9404418 +53 248.16 252.0375 1000 50 0.99955696 +54 252.0375 255.915 1000 50 0.9636088 +55 255.915 259.7925 1000 50 0.8323492 +56 259.7925 263.67 1000 50 0.99957424 +57 263.67 267.5475 1000 50 0.99927014 +58 271.425 275.3025 1000 50 0.99955386 +59 275.3025 279.18 1000 50 0.9864369 +60 279.18 283.0575 1000 50 0.85279286 +61 283.0575 286.935 1000 50 0.99952424 +62 286.935 290.8125 1000 50 0.9731876 +63 290.8125 294.69 1000 50 0.9796087 +64 294.69 298.5675 1000 50 0.7943293 +65 298.5675 302.445 1000 50 0.5315401 +66 302.445 306.3225 1000 50 0.98535025 +67 306.3225 310.2 1000 50 0.99808025 +68 310.2 314.0775 1000 50 0.5720783 +69 314.0775 317.955 1000 50 0.9999747 +70 317.955 321.8325 1000 50 0.9967884 +71 321.8325 325.71 1000 50 0.99088556 +72 325.71 329.5875 1000 50 0.9998759 +73 329.5875 333.465 1000 50 0.99989176 +74 333.465 337.3425 1000 50 0.5807116 +75 337.3425 341.21999999999997 1000 50 0.99999 +76 341.22 345.0975 1000 50 0.9995233 +77 345.0975 348.975 1000 50 0.68223315 +78 348.975 352.8525 1000 50 0.84390396 +79 356.73 360.6075 1000 50 0.65212053 +80 360.6075 364.485 1000 50 0.85462946 +81 368.3625 372.24 1000 50 0.85831565 +82 376.1175 379.995 1000 50 0.94687617 +83 379.995 383.8725 1000 50 0.86515474 +84 383.8725 387.75 1000 50 0.9189853 +85 391.6275 395.505 1000 50 0.8053604 +86 407.1375 411.015 1000 50 0.65065163 +87 414.8925 418.77 1000 50 0.5486972 +88 418.77 422.6475 1000 50 0.9910943 +89 442.035 445.9125 1000 50 0.5288534 +90 461.4225 465.3 1000 50 0.74180967 +91 476.9325 480.81 1000 50 0.6583829 +92 480.81 484.6875 1000 50 0.89411706 +93 484.6875 488.565 1000 50 0.9664993 +94 507.9525 511.83 1000 50 0.99880517 +95 511.83 515.7075 1000 50 0.9724191 +96 515.7075 519.585 1000 50 0.52412933 +97 523.4625 527.34 1000 50 0.9468457 +98 531.2175 535.095 1000 50 0.5729725 +99 542.85 546.7275000000001 1000 50 0.6727366 +100 546.7275 550.605 1000 50 0.91352385 +101 550.605 554.4825000000001 1000 50 0.9999411 +102 554.4825 558.36 1000 50 0.99555004 +103 558.36 562.2375000000001 1000 50 0.55420977 +104 562.2375 566.115 1000 50 0.99999106 +105 566.115 569.9925000000001 1000 50 0.98632044 +106 569.9925 573.87 1000 50 0.98486245 +107 573.87 577.7475000000001 1000 50 0.99995255 +108 577.7475 581.625 1000 50 0.998923 +109 581.625 585.5025 1000 50 0.5797569 +110 589.38 593.2575 1000 50 0.9999405 +111 593.2575 597.1350000000001 1000 50 0.76130915 +112 601.0125 604.8900000000001 1000 50 0.9753228 +113 608.7675 612.6450000000001 1000 50 0.6403399 +114 612.645 616.5225 1000 50 0.99995446 +115 616.5225 620.4000000000001 1000 50 0.9997665 +116 620.4 624.2775 1000 50 0.9998685 +117 624.2775 628.1550000000001 1000 50 0.985941 +118 628.155 632.0325 1000 50 0.8408875 +119 635.91 639.7875 1000 50 0.9228722 +120 639.7875 643.6650000000001 1000 50 0.6689857 +121 643.665 647.5425 1000 50 0.5774492 +122 647.5425 651.4200000000001 1000 50 0.82312626 +123 655.2975 659.1750000000001 1000 50 0.606389 +124 659.175 663.0525 1000 50 0.7122756 +125 670.8075 674.6850000000001 1000 50 0.8817553 +126 682.44 686.3175000000001 1000 50 0.6090671 +127 686.3175 690.195 1000 50 0.99583226 +128 694.0725 697.95 1000 50 0.999866 +129 697.95 701.8275000000001 1000 50 0.92838115 +130 701.8275 705.705 1000 50 0.68261254 +131 713.46 717.3375000000001 1000 50 0.9989718 +132 717.3375 721.215 1000 50 0.9211881 +133 721.215 725.0925000000001 1000 50 0.92644906 +134 728.97 732.8475000000001 1000 50 0.7922916 +135 732.8475 736.725 1000 50 0.98277056 +136 748.3575 752.235 1000 50 0.927674 +137 752.235 756.1125000000001 1000 50 0.99814856 +138 756.1125 759.99 1000 50 0.8318236 +139 759.99 763.8675000000001 1000 50 0.989935 +140 767.745 771.6225000000001 1000 50 0.7568555 +141 771.6225 775.5 1000 50 0.99216837 +142 775.5 779.3775 1000 50 0.99998343 +143 783.255 787.1325 1000 50 0.99977547 +144 787.1325 791.0100000000001 1000 50 0.9993849 +145 794.8875 798.7650000000001 1000 50 0.99995553 +146 798.765 802.6425 1000 50 0.9831139 +147 802.6425 806.5200000000001 1000 50 0.98967665 +148 806.52 810.3975 1000 50 0.99978024 +149 818.1525 822.0300000000001 1000 50 0.9995654 +150 829.785 833.6625 1000 50 0.96970314 +151 833.6625 837.5400000000001 1000 50 0.9022599 +152 841.4175 845.2950000000001 1000 50 0.99946123 +153 845.295 849.1725 1000 50 0.95840925 +154 849.1725 853.0500000000001 1000 50 0.5532085 +155 853.05 856.9275 1000 50 0.9999877 +156 860.805 864.6825 1000 50 0.5858734 +157 864.6825 868.5600000000001 1000 50 0.953886 +158 868.56 872.4375 1000 50 0.99982315 +159 872.4375 876.315 1000 50 0.9991351 +160 876.315 880.1925000000001 1000 50 0.9986051 +161 880.1925 884.07 1000 50 0.81814903 +162 884.07 887.9475000000001 1000 50 0.9871923 +163 887.9475 891.825 1000 50 0.9997875 +164 891.825 895.7025000000001 1000 50 0.99923563 +165 895.7025 899.58 1000 50 0.9997813 +166 899.58 903.4575000000001 1000 50 0.9823414 +167 907.335 911.2125000000001 1000 50 0.99917644 +168 911.2125 915.09 1000 50 0.8247835 +169 915.09 918.9675000000001 1000 50 0.6800645 +170 918.9675 922.845 1000 50 0.9999994 +171 922.845 926.7225000000001 1000 50 0.96707 +172 926.7225 930.6 1000 50 0.8902074 +173 930.6 934.4775000000001 1000 50 0.9999831 +174 934.4775 938.355 1000 50 0.997148 +175 938.355 942.2325000000001 1000 50 0.9910698 +176 942.2325 946.11 1000 50 0.9999999 +177 949.9875 953.865 1000 50 0.9996735 +178 953.865 957.7425000000001 1000 50 0.99999297 +179 961.62 965.4975000000001 1000 50 0.9963368 +180 965.4975 969.375 1000 50 0.99991083 +181 973.2525 977.1300000000001 1000 50 0.9999999 +182 981.0075 984.8850000000001 1000 50 0.9394203 +183 984.885 988.7625 1000 50 0.6933694 +184 992.64 996.5175 1000 50 0.8621761 +185 996.5175 1000.3950000000001 1000 50 0.7495488 +186 1004.2725 1008.1500000000001 1000 50 0.91127133 +187 1008.15 1012.0275 1000 50 0.9620304 +188 1019.7825 1023.6600000000001 1000 50 0.82610184 +189 1035.2925 1039.17 1000 50 0.82831085 +190 1043.0475 1046.925 1000 50 0.9814371 +191 1066.3125 1070.19 1000 50 0.5247219 +192 1081.8225 1085.7 1000 50 0.8449709 +193 1101.21 1105.0875 1000 50 0.6381617 +194 1112.8425 1116.72 1000 50 0.8438045 +195 1132.23 1136.1075 1000 50 0.6775651 +196 1136.1075 1139.9850000000001 1000 50 0.9779809 +197 1139.985 1143.8625 1000 50 0.7544264 +198 1143.8625 1147.74 1000 50 0.5419308 +199 1147.74 1151.6175 1000 50 0.99876547 +200 1159.3725 1163.25 1000 50 0.8097696 +201 1167.1275 1171.005 1000 50 0.9882698 +202 1171.005 1174.8825000000002 1000 50 0.9864172 +203 1174.8825 1178.76 1000 50 0.9855386 +204 1182.6375 1186.515 1000 50 0.9994499 +205 1186.515 1190.3925000000002 1000 50 0.99843496 +206 1190.3925 1194.27 1000 50 0.9975262 +207 1198.1475 1202.025 1000 50 0.99433786 +208 1202.025 1205.9025000000001 1000 50 0.9996625 +209 1205.9025 1209.78 1000 50 0.77457345 +210 1209.78 1213.6575 1000 50 0.97239393 +211 1213.6575 1217.535 1000 50 0.74525577 +212 1217.535 1221.4125000000001 1000 50 0.999859 +213 1221.4125 1225.29 1000 50 0.9788936 +214 1229.1675 1233.045 1000 50 0.9981205 +215 1233.045 1236.9225000000001 1000 50 0.99985266 +216 1240.8 1244.6775 1000 50 0.9988894 +217 1252.4325 1256.31 1000 50 0.9771698 +218 1256.31 1260.1875 1000 50 0.96118516 +219 1264.065 1267.9425 1000 50 0.99552274 +220 1275.6975 1279.575 1000 50 0.9668989 +221 1283.4525 1287.3300000000002 1000 50 0.99418527 +222 1287.33 1291.2075 1000 50 0.9565651 +223 1295.085 1298.9625 1000 50 0.99998164 +224 1298.9625 1302.8400000000001 1000 50 0.9958936 +225 1306.7175 1310.595 1000 50 0.99974674 +226 1314.4725 1318.3500000000001 1000 50 0.9364905 +227 1318.35 1322.2275 1000 50 0.54991484 +228 1322.2275 1326.105 1000 50 0.6431647 +229 1329.9825 1333.8600000000001 1000 50 0.9996445 +230 1333.86 1337.7375 1000 50 0.97030085 +231 1337.7375 1341.615 1000 50 0.94699013 +232 1341.615 1345.4925 1000 50 0.9999033 +233 1345.4925 1349.3700000000001 1000 50 0.9245275 +234 1349.37 1353.2475 1000 50 0.72010046 +235 1353.2475 1357.125 1000 50 0.9999106 +236 1364.88 1368.7575000000002 1000 50 0.99992776 +237 1368.7575 1372.635 1000 50 0.9316587 +238 1372.635 1376.5125 1000 50 0.9823957 +239 1376.5125 1380.39 1000 50 0.99691415 +240 1380.39 1384.2675000000002 1000 50 0.9967128 +241 1384.2675 1388.145 1000 50 0.7572983 +242 1388.145 1392.0225 1000 50 0.93943673 +243 1392.0225 1395.9 1000 50 0.989705 +244 1395.9 1399.7775000000001 1000 50 0.8237858 +245 1399.7775 1403.655 1000 50 0.9998061 +246 1403.655 1407.5325 1000 50 0.99900633 +247 1407.5325 1411.41 1000 50 0.99086493 +248 1411.41 1415.2875000000001 1000 50 0.999933 +249 1415.2875 1419.165 1000 50 0.96827996 +250 1419.165 1423.0425 1000 50 0.99998605 +251 1423.0425 1426.92 1000 50 0.9998286 +252 1430.7975 1434.675 1000 50 0.99910444 +253 1434.675 1438.5525 1000 50 0.99985754 +254 1442.43 1446.3075000000001 1000 50 0.9992537 +255 1446.3075 1450.185 1000 50 0.51717514 +256 1450.185 1454.0625 1000 50 0.9979765 +257 1457.94 1461.8175 1000 50 0.8144705 +258 1461.8175 1465.6950000000002 1000 50 0.5945204 +259 1477.3275 1481.2050000000002 1000 50 0.99954957 +260 1481.205 1485.0825 1000 50 0.999892 +261 1488.96 1492.8375 1000 50 0.7756149 +262 1492.8375 1496.7150000000001 1000 50 0.95340085 +263 1496.715 1500.5925 1000 50 0.64955103 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_07-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_07-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f2120a58b861aadeae171c3cf6217f2fb15e15f4 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_07-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,9 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999999 +2 3.8775 7.755 1000 50 0.99940455 +3 7.755 11.6325 1000 50 0.99999976 +4 11.6325 15.51 1000 50 0.95222425 +5 15.51 19.3875 1000 50 0.8484278 +6 19.3875 23.265 1000 50 0.99998415 +7 23.265 27.142500000000002 1000 50 0.99015945 +8 27.1425 31.02 1000 50 0.66773325 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_07-04-08_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_07-04-08_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b4aac0fbf22c63a594a0db6b61d3c173f7ef10b5 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_07-04-08_annot_2022-11-30_01.txt @@ -0,0 +1,252 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999919 +2 3.8775 7.755 1000 50 0.99999845 +3 7.755 11.6325 1000 50 0.9511908 +4 11.6325 15.51 1000 50 0.999451 +5 15.51 19.3875 1000 50 0.9998666 +6 19.3875 23.265 1000 50 0.99865735 +7 23.265 27.142500000000002 1000 50 0.9999999 +8 27.1425 31.02 1000 50 0.8763517 +9 31.02 34.8975 1000 50 0.99999785 +10 34.8975 38.775 1000 50 0.9999938 +11 38.775 42.652499999999996 1000 50 0.7945321 +12 42.6525 46.53 1000 50 0.9411175 +13 46.53 50.4075 1000 50 0.9975102 +14 50.4075 54.285 1000 50 0.99787235 +15 54.285 58.162499999999994 1000 50 0.998705 +16 58.1625 62.04 1000 50 0.99885833 +17 62.04 65.9175 1000 50 0.9502491 +18 65.9175 69.795 1000 50 0.9999865 +19 69.795 73.6725 1000 50 0.99990416 +20 77.55 81.4275 1000 50 0.999944 +21 81.4275 85.30499999999999 1000 50 0.9997634 +22 85.305 89.1825 1000 50 0.9961565 +23 89.1825 93.06 1000 50 0.9920561 +24 93.06 96.9375 1000 50 0.9914408 +25 96.9375 100.815 1000 50 0.9146824 +26 100.815 104.6925 1000 50 0.5007172 +27 104.6925 108.57 1000 50 0.9222868 +28 108.57 112.44749999999999 1000 50 0.9349027 +29 112.4475 116.325 1000 50 0.966141 +30 116.325 120.2025 1000 50 0.9995171 +31 120.2025 124.08 1000 50 0.9991418 +32 124.08 127.9575 1000 50 0.98354024 +33 127.9575 131.835 1000 50 0.99888164 +34 131.835 135.7125 1000 50 0.9816412 +35 135.7125 139.59 1000 50 0.999936 +36 139.59 143.4675 1000 50 0.99999666 +37 143.4675 147.345 1000 50 0.9999474 +38 147.345 151.2225 1000 50 0.9802116 +39 151.2225 155.1 1000 50 0.99948907 +40 155.1 158.9775 1000 50 0.99991846 +41 158.9775 162.855 1000 50 0.99883527 +42 162.855 166.7325 1000 50 0.9982968 +43 170.61 174.4875 1000 50 0.8010698 +44 174.4875 178.365 1000 50 0.7618599 +45 178.365 182.2425 1000 50 0.51318663 +46 182.2425 186.12 1000 50 0.96803546 +47 189.9975 193.875 1000 50 0.99793434 +48 193.875 197.7525 1000 50 0.70186824 +49 197.7525 201.63 1000 50 0.9801831 +50 201.63 205.5075 1000 50 0.947986 +51 205.5075 209.385 1000 50 0.99999905 +52 209.385 213.2625 1000 50 0.9529921 +53 213.2625 217.14 1000 50 0.9998665 +54 217.14 221.01749999999998 1000 50 0.81134063 +55 228.7725 232.65 1000 50 0.750135 +56 232.65 236.5275 1000 50 0.9967608 +57 240.405 244.2825 1000 50 0.7296268 +58 248.16 252.0375 1000 50 0.6057082 +59 252.0375 255.915 1000 50 0.8048397 +60 255.915 259.7925 1000 50 0.9979564 +61 259.7925 263.67 1000 50 0.8067236 +62 263.67 267.5475 1000 50 0.7470356 +63 267.5475 271.425 1000 50 0.85652065 +64 271.425 275.3025 1000 50 0.95430094 +65 275.3025 279.18 1000 50 0.95859486 +66 279.18 283.0575 1000 50 0.89247507 +67 283.0575 286.935 1000 50 0.997738 +68 286.935 290.8125 1000 50 0.53078055 +69 294.69 298.5675 1000 50 0.99928254 +70 302.445 306.3225 1000 50 0.98290986 +71 306.3225 310.2 1000 50 0.99411434 +72 310.2 314.0775 1000 50 0.5683106 +73 314.0775 317.955 1000 50 0.61714405 +74 321.8325 325.71 1000 50 0.92229855 +75 325.71 329.5875 1000 50 0.56253225 +76 333.465 337.3425 1000 50 0.9903116 +77 337.3425 341.21999999999997 1000 50 0.9853805 +78 345.0975 348.975 1000 50 0.9900753 +79 348.975 352.8525 1000 50 0.9999317 +80 356.73 360.6075 1000 50 0.56983435 +81 360.6075 364.485 1000 50 0.8813756 +82 364.485 368.3625 1000 50 0.92642826 +83 372.24 376.1175 1000 50 0.94174886 +84 376.1175 379.995 1000 50 0.6175631 +85 379.995 383.8725 1000 50 0.6794163 +86 383.8725 387.75 1000 50 0.99872977 +87 387.75 391.6275 1000 50 0.999879 +88 391.6275 395.505 1000 50 0.9987394 +89 399.3825 403.26 1000 50 0.99967897 +90 407.1375 411.015 1000 50 0.99041045 +91 411.015 414.8925 1000 50 0.71032983 +92 414.8925 418.77 1000 50 0.9933641 +93 418.77 422.6475 1000 50 0.5900015 +94 422.6475 426.525 1000 50 0.918558 +95 426.525 430.4025 1000 50 0.9798901 +96 430.4025 434.28 1000 50 0.9954269 +97 434.28 438.15749999999997 1000 50 0.924972 +98 438.1575 442.035 1000 50 0.8769862 +99 442.035 445.9125 1000 50 0.90425295 +100 445.9125 449.79 1000 50 0.65565586 +101 449.79 453.6675 1000 50 0.9930248 +102 453.6675 457.545 1000 50 0.8179243 +103 457.545 461.4225 1000 50 0.86704516 +104 465.3 469.1775 1000 50 0.9536832 +105 473.055 476.9325 1000 50 0.8296717 +106 476.9325 480.81 1000 50 0.99688786 +107 480.81 484.6875 1000 50 0.98570514 +108 488.565 492.4425 1000 50 0.96186197 +109 492.4425 496.32 1000 50 0.98231375 +110 496.32 500.1975 1000 50 0.8472138 +111 500.1975 504.075 1000 50 0.985285 +112 504.075 507.9525 1000 50 0.97971946 +113 507.9525 511.83 1000 50 0.97955793 +114 511.83 515.7075 1000 50 0.9287706 +115 523.4625 527.34 1000 50 0.97636944 +116 531.2175 535.095 1000 50 0.9688824 +117 535.095 538.9725000000001 1000 50 0.6403449 +118 538.9725 542.85 1000 50 0.7391677 +119 542.85 546.7275000000001 1000 50 0.87902963 +120 546.7275 550.605 1000 50 0.99930346 +121 550.605 554.4825000000001 1000 50 0.9999547 +122 554.4825 558.36 1000 50 0.9998615 +123 558.36 562.2375000000001 1000 50 0.90688926 +124 566.115 569.9925000000001 1000 50 0.99996305 +125 569.9925 573.87 1000 50 0.6192506 +126 577.7475 581.625 1000 50 0.9639853 +127 589.38 593.2575 1000 50 0.9905282 +128 601.0125 604.8900000000001 1000 50 0.85099447 +129 604.89 608.7675 1000 50 0.999892 +130 608.7675 612.6450000000001 1000 50 0.9884884 +131 612.645 616.5225 1000 50 0.91809595 +132 616.5225 620.4000000000001 1000 50 0.9982633 +133 620.4 624.2775 1000 50 0.99923694 +134 624.2775 628.1550000000001 1000 50 0.9997416 +135 628.155 632.0325 1000 50 0.99998105 +136 632.0325 635.9100000000001 1000 50 0.9999869 +137 639.7875 643.6650000000001 1000 50 0.9999032 +138 643.665 647.5425 1000 50 0.98901296 +139 647.5425 651.4200000000001 1000 50 0.5837878 +140 651.42 655.2975 1000 50 0.999956 +141 655.2975 659.1750000000001 1000 50 0.99983764 +142 659.175 663.0525 1000 50 0.9999695 +143 663.0525 666.9300000000001 1000 50 0.9994679 +144 670.8075 674.6850000000001 1000 50 0.99273694 +145 674.685 678.5625 1000 50 0.99998856 +146 678.5625 682.44 1000 50 0.99987066 +147 682.44 686.3175000000001 1000 50 0.9999944 +148 686.3175 690.195 1000 50 0.99497706 +149 690.195 694.0725000000001 1000 50 0.99984944 +150 694.0725 697.95 1000 50 0.89713806 +151 697.95 701.8275000000001 1000 50 0.9999993 +152 701.8275 705.705 1000 50 0.9999995 +153 705.705 709.5825000000001 1000 50 0.96083486 +154 709.5825 713.46 1000 50 0.9998344 +155 713.46 717.3375000000001 1000 50 0.9893337 +156 717.3375 721.215 1000 50 0.9999881 +157 721.215 725.0925000000001 1000 50 0.99974805 +158 725.0925 728.97 1000 50 0.99986994 +159 728.97 732.8475000000001 1000 50 0.9999422 +160 732.8475 736.725 1000 50 0.9999932 +161 736.725 740.6025000000001 1000 50 0.971753 +162 740.6025 744.48 1000 50 0.9999021 +163 744.48 748.3575000000001 1000 50 0.98912585 +164 748.3575 752.235 1000 50 0.9611831 +165 752.235 756.1125000000001 1000 50 0.9821162 +166 756.1125 759.99 1000 50 0.9997805 +167 763.8675 767.745 1000 50 0.97911 +168 767.745 771.6225000000001 1000 50 0.72476935 +169 771.6225 775.5 1000 50 0.91090053 +170 775.5 779.3775 1000 50 0.9999814 +171 779.3775 783.2550000000001 1000 50 0.97140324 +172 783.255 787.1325 1000 50 0.9603233 +173 787.1325 791.0100000000001 1000 50 0.9932215 +174 794.8875 798.7650000000001 1000 50 0.9991103 +175 802.6425 806.5200000000001 1000 50 0.9972404 +176 806.52 810.3975 1000 50 0.88432735 +177 810.3975 814.2750000000001 1000 50 0.85630304 +178 814.275 818.1525 1000 50 0.98680115 +179 818.1525 822.0300000000001 1000 50 0.9974636 +180 829.785 833.6625 1000 50 0.9958794 +181 833.6625 837.5400000000001 1000 50 0.99993825 +182 841.4175 845.2950000000001 1000 50 0.96267796 +183 845.295 849.1725 1000 50 0.99813783 +184 849.1725 853.0500000000001 1000 50 0.93196595 +185 853.05 856.9275 1000 50 0.9991516 +186 856.9275 860.8050000000001 1000 50 0.9970252 +187 860.805 864.6825 1000 50 0.9916197 +188 864.6825 868.5600000000001 1000 50 0.98243916 +189 872.4375 876.315 1000 50 0.6413333 +190 876.315 880.1925000000001 1000 50 0.98473203 +191 880.1925 884.07 1000 50 0.85227555 +192 884.07 887.9475000000001 1000 50 0.9221632 +193 887.9475 891.825 1000 50 0.9096874 +194 891.825 895.7025000000001 1000 50 0.9992362 +195 895.7025 899.58 1000 50 0.9957634 +196 899.58 903.4575000000001 1000 50 0.8962516 +197 903.4575 907.335 1000 50 0.9995592 +198 907.335 911.2125000000001 1000 50 0.98789704 +199 911.2125 915.09 1000 50 0.9771714 +200 918.9675 922.845 1000 50 0.99811614 +201 922.845 926.7225000000001 1000 50 0.74004346 +202 926.7225 930.6 1000 50 0.89929676 +203 930.6 934.4775000000001 1000 50 0.9999547 +204 934.4775 938.355 1000 50 0.98775566 +205 938.355 942.2325000000001 1000 50 0.65557 +206 981.0075 984.8850000000001 1000 50 0.6706129 +207 996.5175 1000.3950000000001 1000 50 0.73345196 +208 1000.395 1004.2725 1000 50 0.51697487 +209 1019.7825 1023.6600000000001 1000 50 0.5933736 +210 1031.415 1035.2925 1000 50 0.8580131 +211 1039.17 1043.0475000000001 1000 50 0.52495104 +212 1046.925 1050.8025 1000 50 0.9343145 +213 1054.68 1058.5575000000001 1000 50 0.96148634 +214 1058.5575 1062.435 1000 50 0.61558044 +215 1062.435 1066.3125 1000 50 0.99976903 +216 1066.3125 1070.19 1000 50 0.65287465 +217 1070.19 1074.0675 1000 50 0.973079 +218 1077.945 1081.8225 1000 50 0.76628953 +219 1081.8225 1085.7 1000 50 0.8727594 +220 1085.7 1089.5775 1000 50 0.97737974 +221 1093.455 1097.3325 1000 50 0.61708236 +222 1097.3325 1101.21 1000 50 0.9973105 +223 1101.21 1105.0875 1000 50 0.8552861 +224 1108.965 1112.8425 1000 50 0.9627324 +225 1120.5975 1124.4750000000001 1000 50 0.6749553 +226 1124.475 1128.3525 1000 50 0.73862284 +227 1128.3525 1132.23 1000 50 0.84412587 +228 1136.1075 1139.9850000000001 1000 50 0.7931791 +229 1143.8625 1147.74 1000 50 0.75381595 +230 1151.6175 1155.4950000000001 1000 50 0.8080483 +231 1155.495 1159.3725 1000 50 0.9627444 +232 1171.005 1174.8825000000002 1000 50 0.5173363 +233 1182.6375 1186.515 1000 50 0.77815413 +234 1186.515 1190.3925000000002 1000 50 0.68812996 +235 1190.3925 1194.27 1000 50 0.84296757 +236 1194.27 1198.1475 1000 50 0.9996928 +237 1202.025 1205.9025000000001 1000 50 0.70955396 +238 1205.9025 1209.78 1000 50 0.99999976 +239 1209.78 1213.6575 1000 50 0.7868835 +240 1213.6575 1217.535 1000 50 0.99726164 +241 1217.535 1221.4125000000001 1000 50 0.9716529 +242 1221.4125 1225.29 1000 50 0.97126096 +243 1225.29 1229.1675 1000 50 0.8423299 +244 1229.1675 1233.045 1000 50 0.99638534 +245 1233.045 1236.9225000000001 1000 50 0.9993711 +246 1236.9225 1240.8 1000 50 0.9999199 +247 1240.8 1244.6775 1000 50 0.9981659 +248 1244.6775 1248.555 1000 50 0.99547786 +249 1248.555 1252.4325000000001 1000 50 0.99876225 +250 1252.4325 1256.31 1000 50 0.56417215 +251 1256.31 1260.1875 1000 50 0.78042483 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_08-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_08-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..87f0c68975e773a829eca16a10c57f20887a95dd --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_08-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,77 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.6590412 +2 3.8775 7.755 1000 50 0.9999999 +3 7.755 11.6325 1000 50 0.9212116 +4 11.6325 15.51 1000 50 0.999549 +5 15.51 19.3875 1000 50 0.99999917 +6 19.3875 23.265 1000 50 0.5788177 +7 23.265 27.142500000000002 1000 50 0.99899846 +8 27.1425 31.02 1000 50 0.9893863 +9 31.02 34.8975 1000 50 0.9600137 +10 34.8975 38.775 1000 50 0.99331915 +11 38.775 42.652499999999996 1000 50 0.99998915 +12 42.6525 46.53 1000 50 0.9998822 +13 46.53 50.4075 1000 50 0.999509 +14 50.4075 54.285 1000 50 0.99999666 +15 54.285 58.162499999999994 1000 50 0.999946 +16 58.1625 62.04 1000 50 0.94539714 +17 62.04 65.9175 1000 50 0.99999976 +18 65.9175 69.795 1000 50 0.9993581 +19 69.795 73.6725 1000 50 0.99589217 +20 73.6725 77.55 1000 50 0.9138392 +21 77.55 81.4275 1000 50 0.99585694 +22 81.4275 85.30499999999999 1000 50 0.9999875 +23 85.305 89.1825 1000 50 0.99788445 +24 89.1825 93.06 1000 50 0.9983205 +25 93.06 96.9375 1000 50 0.9271753 +26 100.815 104.6925 1000 50 0.9961326 +27 104.6925 108.57 1000 50 0.857071 +28 108.57 112.44749999999999 1000 50 0.9993237 +29 112.4475 116.325 1000 50 0.9999858 +30 116.325 120.2025 1000 50 0.96637726 +31 120.2025 124.08 1000 50 0.54856426 +32 124.08 127.9575 1000 50 0.988526 +33 127.9575 131.835 1000 50 0.9999658 +34 131.835 135.7125 1000 50 0.73608303 +35 135.7125 139.59 1000 50 0.7804192 +36 139.59 143.4675 1000 50 0.99997354 +37 143.4675 147.345 1000 50 0.96251476 +38 147.345 151.2225 1000 50 0.94491166 +39 151.2225 155.1 1000 50 0.97779226 +40 155.1 158.9775 1000 50 0.99979335 +41 158.9775 162.855 1000 50 0.9984754 +42 162.855 166.7325 1000 50 0.97951686 +43 166.7325 170.60999999999999 1000 50 0.9983438 +44 170.61 174.4875 1000 50 0.9978422 +45 174.4875 178.365 1000 50 0.99737215 +46 178.365 182.2425 1000 50 0.9999864 +47 182.2425 186.12 1000 50 0.99997914 +48 186.12 189.9975 1000 50 0.9998417 +49 189.9975 193.875 1000 50 0.8907533 +50 193.875 197.7525 1000 50 0.9998795 +51 197.7525 201.63 1000 50 0.9981846 +52 201.63 205.5075 1000 50 0.99987125 +53 205.5075 209.385 1000 50 0.99956983 +54 209.385 213.2625 1000 50 0.99957496 +55 213.2625 217.14 1000 50 0.99149984 +56 217.14 221.01749999999998 1000 50 0.9796536 +57 221.0175 224.895 1000 50 0.9649244 +58 224.895 228.7725 1000 50 0.75758797 +59 228.7725 232.65 1000 50 0.9999951 +60 232.65 236.5275 1000 50 0.9354731 +61 236.5275 240.405 1000 50 0.9971698 +62 240.405 244.2825 1000 50 0.9978515 +63 244.2825 248.16 1000 50 0.9425393 +64 248.16 252.0375 1000 50 0.9917891 +65 252.0375 255.915 1000 50 0.6385674 +66 259.7925 263.67 1000 50 0.97331345 +67 275.3025 279.18 1000 50 0.9999188 +68 279.18 283.0575 1000 50 0.97155106 +69 283.0575 286.935 1000 50 0.92795473 +70 286.935 290.8125 1000 50 0.99956745 +71 290.8125 294.69 1000 50 0.97880596 +72 294.69 298.5675 1000 50 0.52046657 +73 298.5675 302.445 1000 50 0.9450858 +74 302.445 306.3225 1000 50 0.76713777 +75 310.2 314.0775 1000 50 0.5088616 +76 314.0775 317.955 1000 50 0.57391673 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_08-08-57_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_08-08-57_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..fd70109e4972adce40785c26aad8475dad8432b8 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_08-08-57_annot_2022-11-30_01.txt @@ -0,0 +1,217 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9708976 +2 3.8775 7.755 1000 50 0.99648947 +3 7.755 11.6325 1000 50 0.9995316 +4 11.6325 15.51 1000 50 0.9999006 +5 19.3875 23.265 1000 50 0.9999542 +6 23.265 27.142500000000002 1000 50 0.9952549 +7 27.1425 31.02 1000 50 0.9608113 +8 31.02 34.8975 1000 50 0.8921128 +9 34.8975 38.775 1000 50 0.9876875 +10 38.775 42.652499999999996 1000 50 0.999106 +11 42.6525 46.53 1000 50 0.98831755 +12 50.4075 54.285 1000 50 0.99615073 +13 58.1625 62.04 1000 50 0.70720077 +14 65.9175 69.795 1000 50 0.608594 +15 69.795 73.6725 1000 50 0.72444105 +16 77.55 81.4275 1000 50 0.95754355 +17 81.4275 85.30499999999999 1000 50 0.9333561 +18 85.305 89.1825 1000 50 0.8896321 +19 93.06 96.9375 1000 50 0.57400554 +20 96.9375 100.815 1000 50 0.9188253 +21 100.815 104.6925 1000 50 0.9998437 +22 104.6925 108.57 1000 50 0.85942566 +23 108.57 112.44749999999999 1000 50 0.9684705 +24 112.4475 116.325 1000 50 0.9913049 +25 116.325 120.2025 1000 50 0.997387 +26 120.2025 124.08 1000 50 0.8894527 +27 124.08 127.9575 1000 50 0.95965374 +28 127.9575 131.835 1000 50 0.9948166 +29 131.835 135.7125 1000 50 0.989935 +30 135.7125 139.59 1000 50 0.9881373 +31 139.59 143.4675 1000 50 0.95672196 +32 151.2225 155.1 1000 50 0.9305017 +33 155.1 158.9775 1000 50 0.6886378 +34 158.9775 162.855 1000 50 0.9989225 +35 162.855 166.7325 1000 50 0.5979885 +36 166.7325 170.60999999999999 1000 50 0.96558106 +37 170.61 174.4875 1000 50 0.72586524 +38 174.4875 178.365 1000 50 0.9000961 +39 178.365 182.2425 1000 50 0.96502644 +40 182.2425 186.12 1000 50 0.99999475 +41 186.12 189.9975 1000 50 0.9974421 +42 189.9975 193.875 1000 50 0.9309023 +43 193.875 197.7525 1000 50 0.99396086 +44 201.63 205.5075 1000 50 0.6511713 +45 209.385 213.2625 1000 50 0.9974203 +46 213.2625 217.14 1000 50 0.9060834 +47 217.14 221.01749999999998 1000 50 0.99473864 +48 221.0175 224.895 1000 50 0.9937355 +49 224.895 228.7725 1000 50 0.99999094 +50 228.7725 232.65 1000 50 0.98537594 +51 232.65 236.5275 1000 50 0.99999225 +52 236.5275 240.405 1000 50 0.99999475 +53 240.405 244.2825 1000 50 0.68286395 +54 244.2825 248.16 1000 50 0.99953246 +55 248.16 252.0375 1000 50 0.988364 +56 252.0375 255.915 1000 50 0.76968193 +57 255.915 259.7925 1000 50 0.9975981 +58 259.7925 263.67 1000 50 0.99999416 +59 263.67 267.5475 1000 50 0.9999863 +60 267.5475 271.425 1000 50 0.9967313 +61 271.425 275.3025 1000 50 0.99955755 +62 275.3025 279.18 1000 50 0.9898555 +63 279.18 283.0575 1000 50 0.9816564 +64 283.0575 286.935 1000 50 0.992581 +65 286.935 290.8125 1000 50 0.7279177 +66 290.8125 294.69 1000 50 0.99803835 +67 294.69 298.5675 1000 50 0.99995923 +68 298.5675 302.445 1000 50 0.9937238 +69 302.445 306.3225 1000 50 0.98451406 +70 306.3225 310.2 1000 50 0.98981863 +71 310.2 314.0775 1000 50 0.98762244 +72 314.0775 317.955 1000 50 0.9999925 +73 317.955 321.8325 1000 50 0.9730728 +74 321.8325 325.71 1000 50 0.99933594 +75 325.71 329.5875 1000 50 0.99903214 +76 329.5875 333.465 1000 50 0.99939287 +77 337.3425 341.21999999999997 1000 50 0.9174733 +78 341.22 345.0975 1000 50 0.9989309 +79 345.0975 348.975 1000 50 0.99968183 +80 348.975 352.8525 1000 50 0.9999819 +81 352.8525 356.73 1000 50 0.9999937 +82 356.73 360.6075 1000 50 0.9992304 +83 360.6075 364.485 1000 50 0.99998605 +84 364.485 368.3625 1000 50 0.9842114 +85 368.3625 372.24 1000 50 0.99998534 +86 372.24 376.1175 1000 50 0.9997646 +87 376.1175 379.995 1000 50 0.999987 +88 379.995 383.8725 1000 50 0.9999999 +89 383.8725 387.75 1000 50 0.998345 +90 387.75 391.6275 1000 50 0.9999999 +91 391.6275 395.505 1000 50 0.99748504 +92 395.505 399.3825 1000 50 0.99999976 +93 399.3825 403.26 1000 50 0.96274763 +94 403.26 407.1375 1000 50 0.99187523 +95 407.1375 411.015 1000 50 0.82206994 +96 411.015 414.8925 1000 50 0.9985453 +97 414.8925 418.77 1000 50 0.9810775 +98 418.77 422.6475 1000 50 0.99998736 +99 422.6475 426.525 1000 50 0.9999279 +100 426.525 430.4025 1000 50 0.9986986 +101 430.4025 434.28 1000 50 0.99741447 +102 434.28 438.15749999999997 1000 50 0.99900645 +103 438.1575 442.035 1000 50 0.99977905 +104 442.035 445.9125 1000 50 0.94436294 +105 445.9125 449.79 1000 50 0.944496 +106 449.79 453.6675 1000 50 0.99452037 +107 453.6675 457.545 1000 50 0.9991547 +108 457.545 461.4225 1000 50 0.9541185 +109 461.4225 465.3 1000 50 0.99958163 +110 465.3 469.1775 1000 50 0.99999344 +111 469.1775 473.055 1000 50 0.99822825 +112 473.055 476.9325 1000 50 0.7846306 +113 476.9325 480.81 1000 50 0.99874496 +114 480.81 484.6875 1000 50 0.99940526 +115 484.6875 488.565 1000 50 0.9929624 +116 488.565 492.4425 1000 50 0.95634043 +117 492.4425 496.32 1000 50 0.99874675 +118 496.32 500.1975 1000 50 0.99956936 +119 500.1975 504.075 1000 50 0.9468097 +120 504.075 507.9525 1000 50 0.90583205 +121 507.9525 511.83 1000 50 0.998161 +122 511.83 515.7075 1000 50 0.99994814 +123 515.7075 519.585 1000 50 0.91720706 +124 523.4625 527.34 1000 50 0.9991379 +125 527.34 531.2175000000001 1000 50 0.9999374 +126 531.2175 535.095 1000 50 0.8472034 +127 535.095 538.9725000000001 1000 50 0.9074483 +128 538.9725 542.85 1000 50 0.9822536 +129 542.85 546.7275000000001 1000 50 0.91914904 +130 546.7275 550.605 1000 50 0.5568236 +131 550.605 554.4825000000001 1000 50 0.9867966 +132 554.4825 558.36 1000 50 0.87156 +133 558.36 562.2375000000001 1000 50 0.99291366 +134 562.2375 566.115 1000 50 0.9998436 +135 566.115 569.9925000000001 1000 50 0.8608551 +136 573.87 577.7475000000001 1000 50 0.9144698 +137 577.7475 581.625 1000 50 0.5909678 +138 581.625 585.5025 1000 50 0.9809652 +139 585.5025 589.3800000000001 1000 50 0.9969037 +140 593.2575 597.1350000000001 1000 50 0.9075179 +141 597.135 601.0125 1000 50 0.8172309 +142 604.89 608.7675 1000 50 0.9608072 +143 608.7675 612.6450000000001 1000 50 0.99013186 +144 612.645 616.5225 1000 50 0.55844486 +145 616.5225 620.4000000000001 1000 50 0.88765866 +146 620.4 624.2775 1000 50 0.962929 +147 628.155 632.0325 1000 50 0.91825134 +148 635.91 639.7875 1000 50 0.9997764 +149 639.7875 643.6650000000001 1000 50 0.99973303 +150 643.665 647.5425 1000 50 0.72534925 +151 647.5425 651.4200000000001 1000 50 0.60911334 +152 651.42 655.2975 1000 50 0.9869285 +153 655.2975 659.1750000000001 1000 50 0.7175142 +154 659.175 663.0525 1000 50 0.6710357 +155 663.0525 666.9300000000001 1000 50 0.9946085 +156 670.8075 674.6850000000001 1000 50 0.99911004 +157 674.685 678.5625 1000 50 0.99872583 +158 678.5625 682.44 1000 50 0.80693406 +159 682.44 686.3175000000001 1000 50 0.9863723 +160 686.3175 690.195 1000 50 0.99996567 +161 694.0725 697.95 1000 50 0.9996051 +162 705.705 709.5825000000001 1000 50 0.99999845 +163 709.5825 713.46 1000 50 0.82927847 +164 717.3375 721.215 1000 50 0.99435693 +165 725.0925 728.97 1000 50 0.90611774 +166 732.8475 736.725 1000 50 0.9183392 +167 740.6025 744.48 1000 50 0.5983999 +168 748.3575 752.235 1000 50 0.9814789 +169 752.235 756.1125000000001 1000 50 0.9673072 +170 763.8675 767.745 1000 50 0.7515901 +171 767.745 771.6225000000001 1000 50 0.63730145 +172 771.6225 775.5 1000 50 0.7451712 +173 775.5 779.3775 1000 50 0.96049404 +174 779.3775 783.2550000000001 1000 50 0.9942199 +175 783.255 787.1325 1000 50 0.9833149 +176 791.01 794.8875 1000 50 0.8499246 +177 794.8875 798.7650000000001 1000 50 0.9993617 +178 798.765 802.6425 1000 50 0.9994591 +179 806.52 810.3975 1000 50 0.8975632 +180 810.3975 814.2750000000001 1000 50 0.9967257 +181 818.1525 822.0300000000001 1000 50 0.9251703 +182 822.03 825.9075 1000 50 0.9744518 +183 825.9075 829.7850000000001 1000 50 0.99999 +184 829.785 833.6625 1000 50 0.9996828 +185 833.6625 837.5400000000001 1000 50 0.9732466 +186 837.54 841.4175 1000 50 0.9993591 +187 841.4175 845.2950000000001 1000 50 0.9999136 +188 845.295 849.1725 1000 50 0.99511164 +189 849.1725 853.0500000000001 1000 50 0.9995078 +190 853.05 856.9275 1000 50 0.99563295 +191 856.9275 860.8050000000001 1000 50 0.9998141 +192 860.805 864.6825 1000 50 0.9897138 +193 864.6825 868.5600000000001 1000 50 0.9995716 +194 872.4375 876.315 1000 50 0.9394531 +195 876.315 880.1925000000001 1000 50 0.94399697 +196 880.1925 884.07 1000 50 0.99933785 +197 884.07 887.9475000000001 1000 50 0.96916604 +198 887.9475 891.825 1000 50 0.97421527 +199 891.825 895.7025000000001 1000 50 0.99976844 +200 895.7025 899.58 1000 50 0.8590524 +201 899.58 903.4575000000001 1000 50 0.998464 +202 903.4575 907.335 1000 50 0.99192226 +203 907.335 911.2125000000001 1000 50 0.99097764 +204 915.09 918.9675000000001 1000 50 0.99659437 +205 922.845 926.7225000000001 1000 50 0.99980825 +206 926.7225 930.6 1000 50 0.9754832 +207 930.6 934.4775000000001 1000 50 0.99804425 +208 934.4775 938.355 1000 50 0.8758955 +209 938.355 942.2325000000001 1000 50 0.93547183 +210 942.2325 946.11 1000 50 0.9999982 +211 946.11 949.9875000000001 1000 50 0.9998822 +212 949.9875 953.865 1000 50 0.98067117 +213 953.865 957.7425000000001 1000 50 0.999987 +214 957.7425 961.62 1000 50 0.9171829 +215 961.62 965.4975000000001 1000 50 0.9964135 +216 965.4975 969.375 1000 50 0.99973077 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_09-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_09-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..97c008a52d1941ef29e246ad9bfd25028a2d7c45 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_09-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,99 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.7282886 +2 15.51 19.3875 1000 50 0.6932154 +3 23.265 27.142500000000002 1000 50 0.77499896 +4 34.8975 38.775 1000 50 0.9116565 +5 46.53 50.4075 1000 50 0.9779912 +6 65.9175 69.795 1000 50 0.9541293 +7 69.795 73.6725 1000 50 0.6434013 +8 77.55 81.4275 1000 50 0.9994313 +9 81.4275 85.30499999999999 1000 50 0.76764345 +10 85.305 89.1825 1000 50 0.99820256 +11 89.1825 93.06 1000 50 0.99858737 +12 93.06 96.9375 1000 50 0.9679167 +13 96.9375 100.815 1000 50 0.9254073 +14 108.57 112.44749999999999 1000 50 0.682234 +15 112.4475 116.325 1000 50 0.5477272 +16 116.325 120.2025 1000 50 0.99999905 +17 120.2025 124.08 1000 50 0.9972395 +18 124.08 127.9575 1000 50 0.91259265 +19 127.9575 131.835 1000 50 0.99871933 +20 131.835 135.7125 1000 50 0.98610884 +21 139.59 143.4675 1000 50 0.82168674 +22 143.4675 147.345 1000 50 0.98931015 +23 147.345 151.2225 1000 50 0.6721493 +24 151.2225 155.1 1000 50 0.9999001 +25 155.1 158.9775 1000 50 0.6083094 +26 158.9775 162.855 1000 50 0.9667945 +27 162.855 166.7325 1000 50 0.99990284 +28 170.61 174.4875 1000 50 0.9708906 +29 174.4875 178.365 1000 50 0.9983468 +30 182.2425 186.12 1000 50 0.96219075 +31 186.12 189.9975 1000 50 0.9997507 +32 189.9975 193.875 1000 50 0.7379778 +33 197.7525 201.63 1000 50 0.9912286 +34 205.5075 209.385 1000 50 0.678414 +35 209.385 213.2625 1000 50 0.9995554 +36 213.2625 217.14 1000 50 0.5845559 +37 217.14 221.01749999999998 1000 50 0.9999393 +38 221.0175 224.895 1000 50 0.99708086 +39 224.895 228.7725 1000 50 0.7889526 +40 228.7725 232.65 1000 50 0.99334574 +41 232.65 236.5275 1000 50 0.7561603 +42 236.5275 240.405 1000 50 0.9953963 +43 240.405 244.2825 1000 50 0.8672749 +44 248.16 252.0375 1000 50 0.6510148 +45 252.0375 255.915 1000 50 0.9911045 +46 255.915 259.7925 1000 50 0.7673355 +47 259.7925 263.67 1000 50 0.846432 +48 263.67 267.5475 1000 50 0.9997919 +49 271.425 275.3025 1000 50 0.9998548 +50 275.3025 279.18 1000 50 0.999933 +51 283.0575 286.935 1000 50 0.9990662 +52 286.935 290.8125 1000 50 0.87080336 +53 290.8125 294.69 1000 50 0.9897585 +54 294.69 298.5675 1000 50 0.95930535 +55 298.5675 302.445 1000 50 0.9999677 +56 302.445 306.3225 1000 50 0.89107704 +57 306.3225 310.2 1000 50 0.98882943 +58 310.2 314.0775 1000 50 0.79290724 +59 317.955 321.8325 1000 50 0.97964054 +60 329.5875 333.465 1000 50 0.68841064 +61 333.465 337.3425 1000 50 0.84244186 +62 345.0975 348.975 1000 50 0.6283396 +63 348.975 352.8525 1000 50 0.9579766 +64 352.8525 356.73 1000 50 0.505622 +65 356.73 360.6075 1000 50 0.968617 +66 360.6075 364.485 1000 50 0.9855804 +67 364.485 368.3625 1000 50 0.9999403 +68 368.3625 372.24 1000 50 0.9874007 +69 372.24 376.1175 1000 50 0.9654296 +70 395.505 399.3825 1000 50 0.5792231 +71 403.26 407.1375 1000 50 0.8487866 +72 407.1375 411.015 1000 50 0.99991477 +73 411.015 414.8925 1000 50 0.59546596 +74 418.77 422.6475 1000 50 0.96335566 +75 422.6475 426.525 1000 50 0.9552153 +76 430.4025 434.28 1000 50 0.99781126 +77 438.1575 442.035 1000 50 0.8355151 +78 442.035 445.9125 1000 50 0.9401355 +79 453.6675 457.545 1000 50 0.94658375 +80 457.545 461.4225 1000 50 0.5616618 +81 461.4225 465.3 1000 50 0.59124476 +82 469.1775 473.055 1000 50 0.9177646 +83 473.055 476.9325 1000 50 0.8382911 +84 476.9325 480.81 1000 50 0.6454896 +85 480.81 484.6875 1000 50 0.9988166 +86 492.4425 496.32 1000 50 0.969505 +87 496.32 500.1975 1000 50 0.8745454 +88 504.075 507.9525 1000 50 0.98991865 +89 507.9525 511.83 1000 50 0.7389718 +90 511.83 515.7075 1000 50 0.6880785 +91 515.7075 519.585 1000 50 0.5424649 +92 523.4625 527.34 1000 50 0.8006882 +93 535.095 538.9725000000001 1000 50 0.9974105 +94 538.9725 542.85 1000 50 0.8991391 +95 546.7275 550.605 1000 50 0.8825401 +96 554.4825 558.36 1000 50 0.96500975 +97 558.36 562.2375000000001 1000 50 0.54566336 +98 573.87 577.7475000000001 1000 50 0.65294594 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_09-13-53_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_09-13-53_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..802067002c47ef770bfa5ec2cfb3e902319dd914 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_09-13-53_annot_2022-11-30_01.txt @@ -0,0 +1,88 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.8449398 +2 34.8975 38.775 1000 50 0.63855875 +3 42.6525 46.53 1000 50 0.592522 +4 46.53 50.4075 1000 50 0.8788946 +5 54.285 58.162499999999994 1000 50 0.511187 +6 58.1625 62.04 1000 50 0.557145 +7 62.04 65.9175 1000 50 0.7466808 +8 65.9175 69.795 1000 50 0.6502013 +9 69.795 73.6725 1000 50 0.99086106 +10 73.6725 77.55 1000 50 0.9874884 +11 81.4275 85.30499999999999 1000 50 0.9996743 +12 85.305 89.1825 1000 50 0.91254866 +13 93.06 96.9375 1000 50 0.9941765 +14 96.9375 100.815 1000 50 0.99159074 +15 100.815 104.6925 1000 50 0.908346 +16 104.6925 108.57 1000 50 0.99997926 +17 108.57 112.44749999999999 1000 50 0.8494713 +18 112.4475 116.325 1000 50 0.5663355 +19 116.325 120.2025 1000 50 0.9981541 +20 124.08 127.9575 1000 50 0.985691 +21 127.9575 131.835 1000 50 0.99186796 +22 131.835 135.7125 1000 50 0.9728783 +23 135.7125 139.59 1000 50 0.6879823 +24 139.59 143.4675 1000 50 0.8123277 +25 147.345 151.2225 1000 50 0.999984 +26 151.2225 155.1 1000 50 0.9966035 +27 155.1 158.9775 1000 50 0.9482197 +28 158.9775 162.855 1000 50 0.9942503 +29 162.855 166.7325 1000 50 0.995053 +30 170.61 174.4875 1000 50 0.99994516 +31 174.4875 178.365 1000 50 0.9910295 +32 178.365 182.2425 1000 50 0.8385896 +33 182.2425 186.12 1000 50 0.9994153 +34 186.12 189.9975 1000 50 0.8718081 +35 189.9975 193.875 1000 50 0.61768156 +36 193.875 197.7525 1000 50 0.9954821 +37 209.385 213.2625 1000 50 0.96992797 +38 217.14 221.01749999999998 1000 50 0.99855274 +39 224.895 228.7725 1000 50 0.9904907 +40 228.7725 232.65 1000 50 0.9436652 +41 232.65 236.5275 1000 50 0.58635765 +42 244.2825 248.16 1000 50 0.79865307 +43 255.915 259.7925 1000 50 0.7363417 +44 286.935 290.8125 1000 50 0.7409493 +45 298.5675 302.445 1000 50 0.89882904 +46 310.2 314.0775 1000 50 0.62342244 +47 317.955 321.8325 1000 50 0.9597095 +48 325.71 329.5875 1000 50 0.9953052 +49 329.5875 333.465 1000 50 0.9997111 +50 333.465 337.3425 1000 50 0.9938689 +51 341.22 345.0975 1000 50 0.8009215 +52 356.73 360.6075 1000 50 0.632504 +53 360.6075 364.485 1000 50 0.50841373 +54 364.485 368.3625 1000 50 0.5186349 +55 368.3625 372.24 1000 50 0.63543165 +56 391.6275 395.505 1000 50 0.7343995 +57 403.26 407.1375 1000 50 0.6904614 +58 411.015 414.8925 1000 50 0.9737395 +59 449.79 453.6675 1000 50 0.9190268 +60 457.545 461.4225 1000 50 0.7749865 +61 465.3 469.1775 1000 50 0.6869633 +62 484.6875 488.565 1000 50 0.5407782 +63 492.4425 496.32 1000 50 0.8427458 +64 504.075 507.9525 1000 50 0.99965906 +65 507.9525 511.83 1000 50 0.50983834 +66 515.7075 519.585 1000 50 0.9829679 +67 527.34 531.2175000000001 1000 50 0.9951757 +68 535.095 538.9725000000001 1000 50 0.9994271 +69 538.9725 542.85 1000 50 0.9804151 +70 546.7275 550.605 1000 50 0.997546 +71 550.605 554.4825000000001 1000 50 0.67686987 +72 554.4825 558.36 1000 50 0.9999393 +73 558.36 562.2375000000001 1000 50 0.99993634 +74 562.2375 566.115 1000 50 0.52961725 +75 566.115 569.9925000000001 1000 50 0.7342069 +76 573.87 577.7475000000001 1000 50 0.9995726 +77 581.625 585.5025 1000 50 0.7835909 +78 585.5025 589.3800000000001 1000 50 0.87251854 +79 601.0125 604.8900000000001 1000 50 0.5259678 +80 604.89 608.7675 1000 50 0.5320547 +81 608.7675 612.6450000000001 1000 50 0.725141 +82 612.645 616.5225 1000 50 0.7715776 +83 616.5225 620.4000000000001 1000 50 0.8509034 +84 628.155 632.0325 1000 50 0.9485657 +85 643.665 647.5425 1000 50 0.74767095 +86 647.5425 651.4200000000001 1000 50 0.8935388 +87 666.93 670.8075 1000 50 0.9699065 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_10-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_10-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..81bbf5787f5e057c31f19bdcb94eb5bef7fb788a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_10-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,141 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99551266 +2 3.8775 7.755 1000 50 0.75266755 +3 7.755 11.6325 1000 50 0.97813225 +4 11.6325 15.51 1000 50 0.9958223 +5 15.51 19.3875 1000 50 0.7157648 +6 19.3875 23.265 1000 50 0.635868 +7 23.265 27.142500000000002 1000 50 0.99987507 +8 31.02 34.8975 1000 50 0.90167344 +9 38.775 42.652499999999996 1000 50 0.79121083 +10 42.6525 46.53 1000 50 0.96422267 +11 46.53 50.4075 1000 50 0.93147594 +12 50.4075 54.285 1000 50 0.747073 +13 54.285 58.162499999999994 1000 50 0.94241476 +14 58.1625 62.04 1000 50 0.9899754 +15 65.9175 69.795 1000 50 0.99968445 +16 69.795 73.6725 1000 50 0.99088216 +17 73.6725 77.55 1000 50 0.5292555 +18 77.55 81.4275 1000 50 0.9998857 +19 81.4275 85.30499999999999 1000 50 0.9989673 +20 89.1825 93.06 1000 50 0.99999523 +21 93.06 96.9375 1000 50 0.61462647 +22 100.815 104.6925 1000 50 0.6753018 +23 104.6925 108.57 1000 50 0.9370255 +24 108.57 112.44749999999999 1000 50 0.9948264 +25 112.4475 116.325 1000 50 0.994478 +26 120.2025 124.08 1000 50 0.9908887 +27 124.08 127.9575 1000 50 0.9982804 +28 131.835 135.7125 1000 50 0.99957496 +29 135.7125 139.59 1000 50 0.9065317 +30 143.4675 147.345 1000 50 0.9547442 +31 147.345 151.2225 1000 50 0.9964469 +32 151.2225 155.1 1000 50 0.8519017 +33 155.1 158.9775 1000 50 0.9971445 +34 158.9775 162.855 1000 50 0.9998227 +35 166.7325 170.60999999999999 1000 50 0.9993624 +36 170.61 174.4875 1000 50 0.9921807 +37 178.365 182.2425 1000 50 0.9964367 +38 182.2425 186.12 1000 50 0.7425774 +39 186.12 189.9975 1000 50 0.9950917 +40 189.9975 193.875 1000 50 0.99999666 +41 197.7525 201.63 1000 50 0.9998147 +42 201.63 205.5075 1000 50 0.99460524 +43 209.385 213.2625 1000 50 0.98068786 +44 213.2625 217.14 1000 50 0.9985184 +45 217.14 221.01749999999998 1000 50 0.89265656 +46 221.0175 224.895 1000 50 0.99836046 +47 224.895 228.7725 1000 50 0.9850213 +48 232.65 236.5275 1000 50 0.999969 +49 236.5275 240.405 1000 50 0.9975171 +50 240.405 244.2825 1000 50 0.9175246 +51 244.2825 248.16 1000 50 0.9998342 +52 248.16 252.0375 1000 50 0.9211717 +53 255.915 259.7925 1000 50 0.99569607 +54 271.425 275.3025 1000 50 0.59158903 +55 275.3025 279.18 1000 50 0.9885787 +56 279.18 283.0575 1000 50 0.9445603 +57 310.2 314.0775 1000 50 0.5961566 +58 314.0775 317.955 1000 50 0.91607594 +59 317.955 321.8325 1000 50 0.6641191 +60 321.8325 325.71 1000 50 0.73330194 +61 325.71 329.5875 1000 50 0.55184394 +62 337.3425 341.21999999999997 1000 50 0.64521825 +63 341.22 345.0975 1000 50 0.6549163 +64 348.975 352.8525 1000 50 0.62664837 +65 368.3625 372.24 1000 50 0.93923014 +66 372.24 376.1175 1000 50 0.77073264 +67 383.8725 387.75 1000 50 0.5076489 +68 387.75 391.6275 1000 50 0.8377287 +69 407.1375 411.015 1000 50 0.84188604 +70 411.015 414.8925 1000 50 0.98351914 +71 414.8925 418.77 1000 50 0.69434756 +72 438.1575 442.035 1000 50 0.87239486 +73 442.035 445.9125 1000 50 0.64837444 +74 445.9125 449.79 1000 50 0.9480565 +75 449.79 453.6675 1000 50 0.58230275 +76 457.545 461.4225 1000 50 0.9342291 +77 476.9325 480.81 1000 50 0.6118625 +78 496.32 500.1975 1000 50 0.79972345 +79 504.075 507.9525 1000 50 0.70531833 +80 507.9525 511.83 1000 50 0.8806335 +81 511.83 515.7075 1000 50 0.54135907 +82 535.095 538.9725000000001 1000 50 0.98992455 +83 538.9725 542.85 1000 50 0.7534266 +84 546.7275 550.605 1000 50 0.93533814 +85 550.605 554.4825000000001 1000 50 0.85626584 +86 558.36 562.2375000000001 1000 50 0.99999475 +87 562.2375 566.115 1000 50 0.9027339 +88 566.115 569.9925000000001 1000 50 0.99534154 +89 569.9925 573.87 1000 50 0.8251821 +90 573.87 577.7475000000001 1000 50 0.99060845 +91 577.7475 581.625 1000 50 0.9995146 +92 581.625 585.5025 1000 50 0.7898056 +93 589.38 593.2575 1000 50 0.727745 +94 601.0125 604.8900000000001 1000 50 0.8111355 +95 604.89 608.7675 1000 50 0.957155 +96 608.7675 612.6450000000001 1000 50 0.8794238 +97 612.645 616.5225 1000 50 0.55614704 +98 620.4 624.2775 1000 50 0.5076819 +99 632.0325 635.9100000000001 1000 50 0.78222 +100 635.91 639.7875 1000 50 0.50002176 +101 643.665 647.5425 1000 50 0.79331696 +102 651.42 655.2975 1000 50 0.97059375 +103 655.2975 659.1750000000001 1000 50 0.9792254 +104 663.0525 666.9300000000001 1000 50 0.87690705 +105 666.93 670.8075 1000 50 0.998638 +106 670.8075 674.6850000000001 1000 50 0.9933536 +107 674.685 678.5625 1000 50 0.6160891 +108 678.5625 682.44 1000 50 0.91465276 +109 682.44 686.3175000000001 1000 50 0.5798105 +110 690.195 694.0725000000001 1000 50 0.9932053 +111 701.8275 705.705 1000 50 0.99940825 +112 709.5825 713.46 1000 50 0.8617322 +113 721.215 725.0925000000001 1000 50 0.99656796 +114 752.235 756.1125000000001 1000 50 0.99435556 +115 756.1125 759.99 1000 50 0.67884356 +116 759.99 763.8675000000001 1000 50 0.9988852 +117 763.8675 767.745 1000 50 0.8742122 +118 767.745 771.6225000000001 1000 50 0.8334193 +119 771.6225 775.5 1000 50 0.7942216 +120 779.3775 783.2550000000001 1000 50 0.6926392 +121 783.255 787.1325 1000 50 0.5882485 +122 787.1325 791.0100000000001 1000 50 0.7895324 +123 794.8875 798.7650000000001 1000 50 0.98685163 +124 806.52 810.3975 1000 50 0.99754804 +125 814.275 818.1525 1000 50 0.7326493 +126 822.03 825.9075 1000 50 0.9886226 +127 825.9075 829.7850000000001 1000 50 0.58295006 +128 833.6625 837.5400000000001 1000 50 0.8959472 +129 837.54 841.4175 1000 50 0.8174609 +130 849.1725 853.0500000000001 1000 50 0.94276184 +131 860.805 864.6825 1000 50 0.9981012 +132 864.6825 868.5600000000001 1000 50 0.9876494 +133 872.4375 876.315 1000 50 0.9974554 +134 884.07 887.9475000000001 1000 50 0.93907315 +135 887.9475 891.825 1000 50 0.92838794 +136 891.825 895.7025000000001 1000 50 0.85882443 +137 895.7025 899.58 1000 50 0.9959202 +138 903.4575 907.335 1000 50 0.99844724 +139 907.335 911.2125000000001 1000 50 0.67238736 +140 915.09 918.9675000000001 1000 50 0.90604013 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_10-18-56_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_10-18-56_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f5ec8d8004ad22b161c9a822be0ffef74a689ae0 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_10-18-56_annot_2022-11-30_01.txt @@ -0,0 +1,55 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.6732459 +2 23.265 27.142500000000002 1000 50 0.9491646 +3 27.1425 31.02 1000 50 0.9779278 +4 31.02 34.8975 1000 50 0.98854536 +5 34.8975 38.775 1000 50 0.9927263 +6 42.6525 46.53 1000 50 0.98536366 +7 46.53 50.4075 1000 50 0.72403187 +8 50.4075 54.285 1000 50 0.9941638 +9 54.285 58.162499999999994 1000 50 0.6755128 +10 58.1625 62.04 1000 50 0.9131415 +11 65.9175 69.795 1000 50 0.7547559 +12 69.795 73.6725 1000 50 0.9711845 +13 73.6725 77.55 1000 50 0.7371169 +14 77.55 81.4275 1000 50 0.8213537 +15 81.4275 85.30499999999999 1000 50 0.99146116 +16 93.06 96.9375 1000 50 0.945248 +17 96.9375 100.815 1000 50 0.9834155 +18 100.815 104.6925 1000 50 0.6200072 +19 104.6925 108.57 1000 50 0.96669835 +20 108.57 112.44749999999999 1000 50 0.96374536 +21 120.2025 124.08 1000 50 0.9859536 +22 124.08 127.9575 1000 50 0.79329646 +23 127.9575 131.835 1000 50 0.56264323 +24 131.835 135.7125 1000 50 0.51714176 +25 151.2225 155.1 1000 50 0.68620205 +26 155.1 158.9775 1000 50 0.7886247 +27 158.9775 162.855 1000 50 0.75225747 +28 170.61 174.4875 1000 50 0.8573545 +29 182.2425 186.12 1000 50 0.80971247 +30 186.12 189.9975 1000 50 0.79716367 +31 209.385 213.2625 1000 50 0.5539601 +32 217.14 221.01749999999998 1000 50 0.9878362 +33 221.0175 224.895 1000 50 0.78983855 +34 224.895 228.7725 1000 50 0.99584913 +35 240.405 244.2825 1000 50 0.932719 +36 248.16 252.0375 1000 50 0.81476575 +37 252.0375 255.915 1000 50 0.7857523 +38 255.915 259.7925 1000 50 0.999821 +39 275.3025 279.18 1000 50 0.8589367 +40 279.18 283.0575 1000 50 0.5815256 +41 294.69 298.5675 1000 50 0.76904285 +42 306.3225 310.2 1000 50 0.95900375 +43 310.2 314.0775 1000 50 0.7112709 +44 314.0775 317.955 1000 50 0.89612 +45 317.955 321.8325 1000 50 0.99989176 +46 321.8325 325.71 1000 50 0.93878627 +47 325.71 329.5875 1000 50 0.7607924 +48 329.5875 333.465 1000 50 0.9934448 +49 337.3425 341.21999999999997 1000 50 0.8564142 +50 341.22 345.0975 1000 50 0.97181106 +51 348.975 352.8525 1000 50 0.9955978 +52 352.8525 356.73 1000 50 0.617392 +53 360.6075 364.485 1000 50 0.5951445 +54 364.485 368.3625 1000 50 0.91112137 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_11-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_11-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..96e126e0019639f48133ee7a8821894b24bf5ea0 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_11-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,193 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.94097084 +2 3.8775 7.755 1000 50 0.99623847 +3 11.6325 15.51 1000 50 0.99992144 +4 19.3875 23.265 1000 50 0.9988004 +5 23.265 27.142500000000002 1000 50 0.9844677 +6 27.1425 31.02 1000 50 0.9963225 +7 34.8975 38.775 1000 50 0.81480646 +8 38.775 42.652499999999996 1000 50 0.9970925 +9 42.6525 46.53 1000 50 0.733497 +10 50.4075 54.285 1000 50 0.9562321 +11 54.285 58.162499999999994 1000 50 0.9719685 +12 62.04 65.9175 1000 50 0.9574231 +13 65.9175 69.795 1000 50 0.9992834 +14 69.795 73.6725 1000 50 0.75814027 +15 73.6725 77.55 1000 50 0.8623541 +16 77.55 81.4275 1000 50 0.852156 +17 81.4275 85.30499999999999 1000 50 0.95808566 +18 85.305 89.1825 1000 50 0.8333189 +19 89.1825 93.06 1000 50 0.96006346 +20 96.9375 100.815 1000 50 0.97391576 +21 104.6925 108.57 1000 50 0.9997441 +22 108.57 112.44749999999999 1000 50 0.9603656 +23 112.4475 116.325 1000 50 0.95637065 +24 116.325 120.2025 1000 50 0.9998878 +25 120.2025 124.08 1000 50 0.99201775 +26 124.08 127.9575 1000 50 0.99939144 +27 127.9575 131.835 1000 50 0.99845684 +28 135.7125 139.59 1000 50 0.97588307 +29 139.59 143.4675 1000 50 0.6951906 +30 147.345 151.2225 1000 50 0.9999496 +31 151.2225 155.1 1000 50 0.6443655 +32 158.9775 162.855 1000 50 0.892673 +33 162.855 166.7325 1000 50 0.9852202 +34 166.7325 170.60999999999999 1000 50 0.84736776 +35 170.61 174.4875 1000 50 0.97563326 +36 178.365 182.2425 1000 50 0.93690187 +37 182.2425 186.12 1000 50 0.9561243 +38 193.875 197.7525 1000 50 0.95087934 +39 201.63 205.5075 1000 50 0.9927637 +40 205.5075 209.385 1000 50 0.87196225 +41 213.2625 217.14 1000 50 0.9991622 +42 217.14 221.01749999999998 1000 50 0.95058346 +43 224.895 228.7725 1000 50 0.9994042 +44 236.5275 240.405 1000 50 0.999923 +45 240.405 244.2825 1000 50 0.8561921 +46 244.2825 248.16 1000 50 0.7140711 +47 248.16 252.0375 1000 50 0.99980325 +48 252.0375 255.915 1000 50 0.8944059 +49 255.915 259.7925 1000 50 0.98653865 +50 259.7925 263.67 1000 50 0.99937123 +51 267.5475 271.425 1000 50 0.99999595 +52 271.425 275.3025 1000 50 0.98298925 +53 279.18 283.0575 1000 50 0.975014 +54 283.0575 286.935 1000 50 0.97916436 +55 286.935 290.8125 1000 50 0.65695363 +56 290.8125 294.69 1000 50 0.83985376 +57 302.445 306.3225 1000 50 0.53847295 +58 310.2 314.0775 1000 50 0.70988965 +59 317.955 321.8325 1000 50 0.8011034 +60 329.5875 333.465 1000 50 0.6838865 +61 333.465 337.3425 1000 50 0.9973974 +62 345.0975 348.975 1000 50 0.8775392 +63 352.8525 356.73 1000 50 0.87756187 +64 372.24 376.1175 1000 50 0.5493533 +65 387.75 391.6275 1000 50 0.5516425 +66 414.8925 418.77 1000 50 0.52465266 +67 453.6675 457.545 1000 50 0.5456901 +68 465.3 469.1775 1000 50 0.81235826 +69 500.1975 504.075 1000 50 0.6038418 +70 511.83 515.7075 1000 50 0.75143224 +71 515.7075 519.585 1000 50 0.6518264 +72 523.4625 527.34 1000 50 0.97108847 +73 527.34 531.2175000000001 1000 50 0.96332026 +74 531.2175 535.095 1000 50 0.9832554 +75 535.095 538.9725000000001 1000 50 0.9998723 +76 538.9725 542.85 1000 50 0.97993773 +77 542.85 546.7275000000001 1000 50 0.9957279 +78 546.7275 550.605 1000 50 0.99969554 +79 550.605 554.4825000000001 1000 50 0.5382986 +80 558.36 562.2375000000001 1000 50 0.82528096 +81 562.2375 566.115 1000 50 0.7008267 +82 566.115 569.9925000000001 1000 50 0.77198076 +83 573.87 577.7475000000001 1000 50 0.87448466 +84 577.7475 581.625 1000 50 0.9985096 +85 581.625 585.5025 1000 50 0.9417147 +86 585.5025 589.3800000000001 1000 50 0.9999994 +87 589.38 593.2575 1000 50 0.87624484 +88 597.135 601.0125 1000 50 0.99999523 +89 604.89 608.7675 1000 50 0.7563749 +90 608.7675 612.6450000000001 1000 50 0.9262053 +91 612.645 616.5225 1000 50 0.8883653 +92 616.5225 620.4000000000001 1000 50 0.73075664 +93 620.4 624.2775 1000 50 0.98070896 +94 624.2775 628.1550000000001 1000 50 0.70171964 +95 632.0325 635.9100000000001 1000 50 0.68509984 +96 643.665 647.5425 1000 50 0.7770425 +97 651.42 655.2975 1000 50 0.95913106 +98 655.2975 659.1750000000001 1000 50 0.67648476 +99 659.175 663.0525 1000 50 0.58477783 +100 666.93 670.8075 1000 50 0.86625814 +101 670.8075 674.6850000000001 1000 50 0.9962096 +102 674.685 678.5625 1000 50 0.91909164 +103 682.44 686.3175000000001 1000 50 0.91554064 +104 686.3175 690.195 1000 50 0.5327064 +105 690.195 694.0725000000001 1000 50 0.9964181 +106 694.0725 697.95 1000 50 0.8572866 +107 697.95 701.8275000000001 1000 50 0.9584204 +108 701.8275 705.705 1000 50 0.99761665 +109 705.705 709.5825000000001 1000 50 0.9935533 +110 713.46 717.3375000000001 1000 50 0.9994567 +111 717.3375 721.215 1000 50 0.9940607 +112 721.215 725.0925000000001 1000 50 0.78684485 +113 725.0925 728.97 1000 50 0.99990284 +114 728.97 732.8475000000001 1000 50 0.90392876 +115 732.8475 736.725 1000 50 0.99725395 +116 736.725 740.6025000000001 1000 50 0.97425246 +117 740.6025 744.48 1000 50 0.990717 +118 744.48 748.3575000000001 1000 50 0.9654807 +119 748.3575 752.235 1000 50 0.9971475 +120 752.235 756.1125000000001 1000 50 0.99887687 +121 756.1125 759.99 1000 50 0.9523789 +122 767.745 771.6225000000001 1000 50 0.743944 +123 771.6225 775.5 1000 50 0.999778 +124 775.5 779.3775 1000 50 0.8540456 +125 779.3775 783.2550000000001 1000 50 0.998329 +126 783.255 787.1325 1000 50 0.9999758 +127 787.1325 791.0100000000001 1000 50 0.9997857 +128 791.01 794.8875 1000 50 0.98263043 +129 794.8875 798.7650000000001 1000 50 0.9715649 +130 798.765 802.6425 1000 50 0.7787237 +131 802.6425 806.5200000000001 1000 50 0.99950385 +132 806.52 810.3975 1000 50 0.9999758 +133 810.3975 814.2750000000001 1000 50 0.999899 +134 814.275 818.1525 1000 50 0.95658046 +135 822.03 825.9075 1000 50 0.80008835 +136 825.9075 829.7850000000001 1000 50 0.5599905 +137 829.785 833.6625 1000 50 0.9538935 +138 833.6625 837.5400000000001 1000 50 0.9994764 +139 841.4175 845.2950000000001 1000 50 0.999355 +140 845.295 849.1725 1000 50 0.8623212 +141 849.1725 853.0500000000001 1000 50 0.98980546 +142 860.805 864.6825 1000 50 0.6460591 +143 864.6825 868.5600000000001 1000 50 0.9998684 +144 872.4375 876.315 1000 50 0.60913026 +145 876.315 880.1925000000001 1000 50 0.99743986 +146 880.1925 884.07 1000 50 0.7857659 +147 884.07 887.9475000000001 1000 50 0.9926475 +148 887.9475 891.825 1000 50 0.99811125 +149 891.825 895.7025000000001 1000 50 0.9992392 +150 895.7025 899.58 1000 50 0.9908833 +151 899.58 903.4575000000001 1000 50 0.9972505 +152 903.4575 907.335 1000 50 0.99573046 +153 911.2125 915.09 1000 50 0.7230053 +154 918.9675 922.845 1000 50 0.63623846 +155 930.6 934.4775000000001 1000 50 0.8003855 +156 934.4775 938.355 1000 50 0.69300556 +157 938.355 942.2325000000001 1000 50 0.764601 +158 957.7425 961.62 1000 50 0.98912877 +159 965.4975 969.375 1000 50 0.8306824 +160 969.375 973.2525 1000 50 0.9991678 +161 973.2525 977.1300000000001 1000 50 0.65917635 +162 977.13 981.0075 1000 50 0.6623713 +163 981.0075 984.8850000000001 1000 50 0.9929223 +164 988.7625 992.6400000000001 1000 50 0.5309585 +165 1000.395 1004.2725 1000 50 0.90151066 +166 1015.905 1019.7825 1000 50 0.52587086 +167 1019.7825 1023.6600000000001 1000 50 0.83523893 +168 1043.0475 1046.925 1000 50 0.6437932 +169 1046.925 1050.8025 1000 50 0.940912 +170 1050.8025 1054.68 1000 50 0.7547134 +171 1062.435 1066.3125 1000 50 0.66403055 +172 1066.3125 1070.19 1000 50 0.6073292 +173 1077.945 1081.8225 1000 50 0.85817486 +174 1089.5775 1093.4550000000002 1000 50 0.5322485 +175 1093.455 1097.3325 1000 50 0.83734554 +176 1105.0875 1108.9650000000001 1000 50 0.91629463 +177 1132.23 1136.1075 1000 50 0.5750708 +178 1151.6175 1155.4950000000001 1000 50 0.55169606 +179 1159.3725 1163.25 1000 50 0.55305636 +180 1163.25 1167.1275 1000 50 0.8119821 +181 1167.1275 1171.005 1000 50 0.99953115 +182 1171.005 1174.8825000000002 1000 50 0.84842014 +183 1178.76 1182.6375 1000 50 0.99979836 +184 1186.515 1190.3925000000002 1000 50 0.9999962 +185 1190.3925 1194.27 1000 50 0.99911755 +186 1194.27 1198.1475 1000 50 0.99807537 +187 1198.1475 1202.025 1000 50 0.5902748 +188 1202.025 1205.9025000000001 1000 50 0.95748365 +189 1205.9025 1209.78 1000 50 0.99999595 +190 1209.78 1213.6575 1000 50 0.9988738 +191 1213.6575 1217.535 1000 50 0.5715439 +192 1217.535 1221.4125000000001 1000 50 0.9725194 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_11-24-06_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_11-24-06_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..381110b5c475938ea561c353074086020c85cc59 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_11-24-06_annot_2022-11-30_01.txt @@ -0,0 +1,6 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.6435595 +2 34.8975 38.775 1000 50 0.73698395 +3 38.775 42.652499999999996 1000 50 0.63513696 +4 42.6525 46.53 1000 50 0.97797924 +5 50.4075 54.285 1000 50 0.6641885 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_12-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_12-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d24ac844a32053123a2692d24ff8fadc5320aaa1 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_12-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,225 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.53964204 +2 11.6325 15.51 1000 50 0.999803 +3 15.51 19.3875 1000 50 0.9378055 +4 27.1425 31.02 1000 50 0.9116947 +5 31.02 34.8975 1000 50 0.96045333 +6 34.8975 38.775 1000 50 0.83653283 +7 42.6525 46.53 1000 50 0.88657355 +8 46.53 50.4075 1000 50 0.7557894 +9 50.4075 54.285 1000 50 0.67422193 +10 58.1625 62.04 1000 50 0.9979724 +11 62.04 65.9175 1000 50 0.52250594 +12 69.795 73.6725 1000 50 0.99578744 +13 73.6725 77.55 1000 50 0.6899809 +14 81.4275 85.30499999999999 1000 50 0.9990933 +15 89.1825 93.06 1000 50 0.6085696 +16 93.06 96.9375 1000 50 0.96063185 +17 96.9375 100.815 1000 50 0.9662702 +18 100.815 104.6925 1000 50 0.7204496 +19 108.57 112.44749999999999 1000 50 0.9779855 +20 116.325 120.2025 1000 50 0.7240337 +21 120.2025 124.08 1000 50 0.66216624 +22 127.9575 131.835 1000 50 0.7858981 +23 131.835 135.7125 1000 50 0.96836543 +24 139.59 143.4675 1000 50 0.99513775 +25 151.2225 155.1 1000 50 0.9997807 +26 155.1 158.9775 1000 50 0.8269124 +27 166.7325 170.60999999999999 1000 50 0.8675384 +28 170.61 174.4875 1000 50 0.84393513 +29 178.365 182.2425 1000 50 0.9994931 +30 182.2425 186.12 1000 50 0.8140084 +31 186.12 189.9975 1000 50 0.60123 +32 189.9975 193.875 1000 50 0.6940034 +33 197.7525 201.63 1000 50 0.82655317 +34 201.63 205.5075 1000 50 0.99830234 +35 217.14 221.01749999999998 1000 50 0.899272 +36 221.0175 224.895 1000 50 0.7157972 +37 232.65 236.5275 1000 50 0.8767829 +38 236.5275 240.405 1000 50 0.7691957 +39 240.405 244.2825 1000 50 0.7149854 +40 244.2825 248.16 1000 50 0.7263198 +41 252.0375 255.915 1000 50 0.99475914 +42 259.7925 263.67 1000 50 0.9800009 +43 263.67 267.5475 1000 50 0.704611 +44 267.5475 271.425 1000 50 0.72276825 +45 290.8125 294.69 1000 50 0.8552749 +46 294.69 298.5675 1000 50 0.8868669 +47 298.5675 302.445 1000 50 0.58265764 +48 306.3225 310.2 1000 50 0.88733965 +49 310.2 314.0775 1000 50 0.9891768 +50 314.0775 317.955 1000 50 0.7570991 +51 317.955 321.8325 1000 50 0.9817259 +52 321.8325 325.71 1000 50 0.95061284 +53 329.5875 333.465 1000 50 0.8196257 +54 337.3425 341.21999999999997 1000 50 0.99022967 +55 341.22 345.0975 1000 50 0.99304116 +56 348.975 352.8525 1000 50 0.72094786 +57 352.8525 356.73 1000 50 0.6607046 +58 356.73 360.6075 1000 50 0.9621139 +59 368.3625 372.24 1000 50 0.83142906 +60 372.24 376.1175 1000 50 0.9335428 +61 379.995 383.8725 1000 50 0.75718915 +62 383.8725 387.75 1000 50 0.9968503 +63 387.75 391.6275 1000 50 0.98819786 +64 391.6275 395.505 1000 50 0.86045486 +65 395.505 399.3825 1000 50 0.9809552 +66 403.26 407.1375 1000 50 0.9780573 +67 407.1375 411.015 1000 50 0.95366186 +68 411.015 414.8925 1000 50 0.60510314 +69 418.77 422.6475 1000 50 0.53996795 +70 422.6475 426.525 1000 50 0.74538636 +71 426.525 430.4025 1000 50 0.993525 +72 430.4025 434.28 1000 50 0.7740957 +73 434.28 438.15749999999997 1000 50 0.53250206 +74 438.1575 442.035 1000 50 0.99998736 +75 442.035 445.9125 1000 50 0.9991788 +76 445.9125 449.79 1000 50 0.55807936 +77 449.79 453.6675 1000 50 0.8606437 +78 453.6675 457.545 1000 50 0.9962256 +79 461.4225 465.3 1000 50 0.95724654 +80 465.3 469.1775 1000 50 0.91506314 +81 473.055 476.9325 1000 50 0.9801087 +82 476.9325 480.81 1000 50 0.73991656 +83 480.81 484.6875 1000 50 0.81729466 +84 492.4425 496.32 1000 50 0.87545323 +85 500.1975 504.075 1000 50 0.98963904 +86 507.9525 511.83 1000 50 0.76334506 +87 511.83 515.7075 1000 50 0.9995579 +88 519.585 523.4625000000001 1000 50 0.7621004 +89 527.34 531.2175000000001 1000 50 0.6466087 +90 538.9725 542.85 1000 50 0.5129962 +91 542.85 546.7275000000001 1000 50 0.79953504 +92 546.7275 550.605 1000 50 0.6937434 +93 550.605 554.4825000000001 1000 50 0.9984365 +94 562.2375 566.115 1000 50 0.77836835 +95 577.7475 581.625 1000 50 0.5879489 +96 581.625 585.5025 1000 50 0.8508308 +97 589.38 593.2575 1000 50 0.88547 +98 593.2575 597.1350000000001 1000 50 0.9435597 +99 601.0125 604.8900000000001 1000 50 0.90826803 +100 604.89 608.7675 1000 50 0.64542305 +101 612.645 616.5225 1000 50 0.69728816 +102 616.5225 620.4000000000001 1000 50 0.9622558 +103 620.4 624.2775 1000 50 0.6469719 +104 635.91 639.7875 1000 50 0.9998884 +105 639.7875 643.6650000000001 1000 50 0.9577108 +106 643.665 647.5425 1000 50 0.98596996 +107 651.42 655.2975 1000 50 0.98055136 +108 655.2975 659.1750000000001 1000 50 0.5437323 +109 670.8075 674.6850000000001 1000 50 0.91345596 +110 678.5625 682.44 1000 50 0.8374729 +111 686.3175 690.195 1000 50 0.8756259 +112 690.195 694.0725000000001 1000 50 0.7237855 +113 694.0725 697.95 1000 50 0.6789353 +114 705.705 709.5825000000001 1000 50 0.99707913 +115 721.215 725.0925000000001 1000 50 0.7625434 +116 728.97 732.8475000000001 1000 50 0.9730959 +117 748.3575 752.235 1000 50 0.63221604 +118 759.99 763.8675000000001 1000 50 0.83573204 +119 763.8675 767.745 1000 50 0.6344317 +120 771.6225 775.5 1000 50 0.9996661 +121 775.5 779.3775 1000 50 0.5718886 +122 783.255 787.1325 1000 50 0.54510015 +123 787.1325 791.0100000000001 1000 50 0.5610181 +124 794.8875 798.7650000000001 1000 50 0.8909486 +125 798.765 802.6425 1000 50 0.504523 +126 806.52 810.3975 1000 50 0.7296574 +127 814.275 818.1525 1000 50 0.57490873 +128 825.9075 829.7850000000001 1000 50 0.7931339 +129 833.6625 837.5400000000001 1000 50 0.5912941 +130 841.4175 845.2950000000001 1000 50 0.9850583 +131 849.1725 853.0500000000001 1000 50 0.73994404 +132 853.05 856.9275 1000 50 0.98909163 +133 864.6825 868.5600000000001 1000 50 0.9715316 +134 868.56 872.4375 1000 50 0.9848106 +135 884.07 887.9475000000001 1000 50 0.92234534 +136 895.7025 899.58 1000 50 0.7694199 +137 899.58 903.4575000000001 1000 50 0.7520173 +138 903.4575 907.335 1000 50 0.75809044 +139 907.335 911.2125000000001 1000 50 0.9060563 +140 911.2125 915.09 1000 50 0.5621143 +141 922.845 926.7225000000001 1000 50 0.73752016 +142 938.355 942.2325000000001 1000 50 0.9873946 +143 946.11 949.9875000000001 1000 50 0.58016413 +144 949.9875 953.865 1000 50 0.8724935 +145 957.7425 961.62 1000 50 0.6721827 +146 961.62 965.4975000000001 1000 50 0.7840459 +147 969.375 973.2525 1000 50 0.7880493 +148 973.2525 977.1300000000001 1000 50 0.6246924 +149 981.0075 984.8850000000001 1000 50 0.547348 +150 984.885 988.7625 1000 50 0.979086 +151 1008.15 1012.0275 1000 50 0.9976108 +152 1019.7825 1023.6600000000001 1000 50 0.9991117 +153 1031.415 1035.2925 1000 50 0.80299056 +154 1043.0475 1046.925 1000 50 0.9969459 +155 1050.8025 1054.68 1000 50 0.852041 +156 1054.68 1058.5575000000001 1000 50 0.9995277 +157 1058.5575 1062.435 1000 50 0.5902957 +158 1062.435 1066.3125 1000 50 0.8012492 +159 1066.3125 1070.19 1000 50 0.81047225 +160 1077.945 1081.8225 1000 50 0.9932146 +161 1085.7 1089.5775 1000 50 0.72379833 +162 1093.455 1097.3325 1000 50 0.9994203 +163 1097.3325 1101.21 1000 50 0.90831405 +164 1105.0875 1108.9650000000001 1000 50 0.6013284 +165 1108.965 1112.8425 1000 50 0.8837394 +166 1136.1075 1139.9850000000001 1000 50 0.51533 +167 1139.985 1143.8625 1000 50 0.5667614 +168 1143.8625 1147.74 1000 50 0.60162276 +169 1147.74 1151.6175 1000 50 0.9923226 +170 1159.3725 1163.25 1000 50 0.52461696 +171 1171.005 1174.8825000000002 1000 50 0.5453466 +172 1174.8825 1178.76 1000 50 0.8775417 +173 1182.6375 1186.515 1000 50 0.7064777 +174 1186.515 1190.3925000000002 1000 50 0.73483807 +175 1194.27 1198.1475 1000 50 0.81635773 +176 1198.1475 1202.025 1000 50 0.6419035 +177 1209.78 1213.6575 1000 50 0.6018815 +178 1213.6575 1217.535 1000 50 0.7220511 +179 1229.1675 1233.045 1000 50 0.5418016 +180 1244.6775 1248.555 1000 50 0.58648735 +181 1248.555 1252.4325000000001 1000 50 0.56453633 +182 1252.4325 1256.31 1000 50 0.6437326 +183 1264.065 1267.9425 1000 50 0.5698221 +184 1267.9425 1271.8200000000002 1000 50 0.5572931 +185 1302.84 1306.7175 1000 50 0.5598307 +186 1310.595 1314.4725 1000 50 0.7427867 +187 1314.4725 1318.3500000000001 1000 50 0.8585507 +188 1322.2275 1326.105 1000 50 0.7265574 +189 1326.105 1329.9825 1000 50 0.9065037 +190 1329.9825 1333.8600000000001 1000 50 0.99998164 +191 1337.7375 1341.615 1000 50 0.9999397 +192 1341.615 1345.4925 1000 50 0.9899594 +193 1349.37 1353.2475 1000 50 0.99991083 +194 1353.2475 1357.125 1000 50 0.98504454 +195 1364.88 1368.7575000000002 1000 50 0.67577076 +196 1368.7575 1372.635 1000 50 0.908181 +197 1376.5125 1380.39 1000 50 0.7132542 +198 1384.2675 1388.145 1000 50 0.8834479 +199 1388.145 1392.0225 1000 50 0.6888653 +200 1399.7775 1403.655 1000 50 0.9965449 +201 1407.5325 1411.41 1000 50 0.6195277 +202 1411.41 1415.2875000000001 1000 50 0.9993406 +203 1415.2875 1419.165 1000 50 0.5753688 +204 1419.165 1423.0425 1000 50 0.9995327 +205 1423.0425 1426.92 1000 50 0.99998915 +206 1426.92 1430.7975000000001 1000 50 0.99590474 +207 1430.7975 1434.675 1000 50 0.89419293 +208 1434.675 1438.5525 1000 50 0.9999994 +209 1438.5525 1442.43 1000 50 0.95444894 +210 1442.43 1446.3075000000001 1000 50 0.9103921 +211 1446.3075 1450.185 1000 50 0.9995332 +212 1450.185 1454.0625 1000 50 0.8264092 +213 1454.0625 1457.94 1000 50 0.9947018 +214 1457.94 1461.8175 1000 50 0.99941576 +215 1461.8175 1465.6950000000002 1000 50 0.6446888 +216 1465.695 1469.5725 1000 50 0.99784684 +217 1469.5725 1473.45 1000 50 0.9999944 +218 1473.45 1477.3275 1000 50 0.5042953 +219 1477.3275 1481.2050000000002 1000 50 0.98711514 +220 1481.205 1485.0825 1000 50 0.9541819 +221 1485.0825 1488.96 1000 50 0.5377564 +222 1488.96 1492.8375 1000 50 0.7662028 +223 1492.8375 1496.7150000000001 1000 50 0.7521459 +224 1496.715 1500.5925 1000 50 0.99955744 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_13-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_13-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..3abc1e09df39332fbfb9727ca280dc6bb5849f1c --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_13-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,10 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.82033676 +2 3.8775 7.755 1000 50 0.7600022 +3 11.6325 15.51 1000 50 0.66212356 +4 15.51 19.3875 1000 50 0.96951205 +5 19.3875 23.265 1000 50 0.9914112 +6 23.265 27.142500000000002 1000 50 0.8026878 +7 27.1425 31.02 1000 50 0.8467063 +8 31.02 34.8975 1000 50 0.99794453 +9 38.775 42.652499999999996 1000 50 0.6184597 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_13-04-22_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_13-04-22_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..eec448da021a33cb6274673c0f6f01106b8ef2a2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_13-04-22_annot_2022-11-30_01.txt @@ -0,0 +1,243 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999875 +2 3.8775 7.755 1000 50 0.7005531 +3 7.755 11.6325 1000 50 0.9953151 +4 11.6325 15.51 1000 50 0.99369544 +5 15.51 19.3875 1000 50 0.99837375 +6 19.3875 23.265 1000 50 0.9992717 +7 23.265 27.142500000000002 1000 50 0.99872464 +8 27.1425 31.02 1000 50 0.94244874 +9 31.02 34.8975 1000 50 0.9996469 +10 38.775 42.652499999999996 1000 50 0.99916184 +11 42.6525 46.53 1000 50 0.99946433 +12 46.53 50.4075 1000 50 0.9486375 +13 50.4075 54.285 1000 50 0.99833184 +14 54.285 58.162499999999994 1000 50 0.99914086 +15 58.1625 62.04 1000 50 0.8568835 +16 62.04 65.9175 1000 50 0.6441775 +17 65.9175 69.795 1000 50 0.82125837 +18 69.795 73.6725 1000 50 0.940567 +19 73.6725 77.55 1000 50 0.9963605 +20 77.55 81.4275 1000 50 0.9645596 +21 81.4275 85.30499999999999 1000 50 0.9898907 +22 85.305 89.1825 1000 50 0.9931185 +23 89.1825 93.06 1000 50 0.9807896 +24 93.06 96.9375 1000 50 0.9646819 +25 96.9375 100.815 1000 50 0.9449045 +26 108.57 112.44749999999999 1000 50 0.9998553 +27 112.4475 116.325 1000 50 0.65266263 +28 116.325 120.2025 1000 50 0.90611315 +29 120.2025 124.08 1000 50 0.80734587 +30 124.08 127.9575 1000 50 0.57420915 +31 127.9575 131.835 1000 50 0.9855524 +32 131.835 135.7125 1000 50 0.9961965 +33 135.7125 139.59 1000 50 0.9989191 +34 139.59 143.4675 1000 50 0.98141116 +35 147.345 151.2225 1000 50 0.7461513 +36 155.1 158.9775 1000 50 0.5228298 +37 162.855 166.7325 1000 50 0.71612924 +38 166.7325 170.60999999999999 1000 50 0.71418834 +39 170.61 174.4875 1000 50 0.9784279 +40 174.4875 178.365 1000 50 0.69174945 +41 182.2425 186.12 1000 50 0.9406953 +42 186.12 189.9975 1000 50 0.9998498 +43 189.9975 193.875 1000 50 0.80783594 +44 201.63 205.5075 1000 50 0.6989547 +45 205.5075 209.385 1000 50 0.9675721 +46 209.385 213.2625 1000 50 0.9981719 +47 213.2625 217.14 1000 50 0.601625 +48 217.14 221.01749999999998 1000 50 0.99895394 +49 221.0175 224.895 1000 50 0.86921346 +50 224.895 228.7725 1000 50 0.89299715 +51 228.7725 232.65 1000 50 0.6779458 +52 232.65 236.5275 1000 50 0.9854248 +53 236.5275 240.405 1000 50 0.9557638 +54 240.405 244.2825 1000 50 0.99745136 +55 248.16 252.0375 1000 50 0.9941204 +56 252.0375 255.915 1000 50 0.7448118 +57 255.915 259.7925 1000 50 0.91147816 +58 259.7925 263.67 1000 50 0.56254977 +59 263.67 267.5475 1000 50 0.6609162 +60 267.5475 271.425 1000 50 0.98862153 +61 275.3025 279.18 1000 50 0.9876686 +62 279.18 283.0575 1000 50 0.8094924 +63 283.0575 286.935 1000 50 0.585713 +64 310.2 314.0775 1000 50 0.8337109 +65 314.0775 317.955 1000 50 0.72517157 +66 317.955 321.8325 1000 50 0.65624636 +67 325.71 329.5875 1000 50 0.78827894 +68 337.3425 341.21999999999997 1000 50 0.802895 +69 341.22 345.0975 1000 50 0.6843606 +70 345.0975 348.975 1000 50 0.52644634 +71 348.975 352.8525 1000 50 0.9562953 +72 356.73 360.6075 1000 50 0.69797796 +73 360.6075 364.485 1000 50 0.9155788 +74 368.3625 372.24 1000 50 0.6210008 +75 372.24 376.1175 1000 50 0.9707746 +76 376.1175 379.995 1000 50 0.5274591 +77 379.995 383.8725 1000 50 0.95741415 +78 383.8725 387.75 1000 50 0.770364 +79 391.6275 395.505 1000 50 0.57093436 +80 395.505 399.3825 1000 50 0.97542506 +81 399.3825 403.26 1000 50 0.99666554 +82 407.1375 411.015 1000 50 0.9624839 +83 411.015 414.8925 1000 50 0.92120206 +84 414.8925 418.77 1000 50 0.8372217 +85 418.77 422.6475 1000 50 0.98948365 +86 422.6475 426.525 1000 50 0.8918234 +87 430.4025 434.28 1000 50 0.696982 +88 438.1575 442.035 1000 50 0.9060032 +89 442.035 445.9125 1000 50 0.99913776 +90 445.9125 449.79 1000 50 0.9999914 +91 449.79 453.6675 1000 50 0.9817925 +92 457.545 461.4225 1000 50 0.9878341 +93 461.4225 465.3 1000 50 0.9897059 +94 465.3 469.1775 1000 50 0.91983455 +95 469.1775 473.055 1000 50 0.97528094 +96 473.055 476.9325 1000 50 0.9998733 +97 476.9325 480.81 1000 50 0.99974304 +98 480.81 484.6875 1000 50 0.88467664 +99 484.6875 488.565 1000 50 0.9968466 +100 488.565 492.4425 1000 50 0.9980743 +101 492.4425 496.32 1000 50 0.9994295 +102 496.32 500.1975 1000 50 0.9999634 +103 504.075 507.9525 1000 50 0.97693 +104 507.9525 511.83 1000 50 0.99978167 +105 511.83 515.7075 1000 50 0.9390222 +106 515.7075 519.585 1000 50 0.99302626 +107 519.585 523.4625000000001 1000 50 0.9816513 +108 523.4625 527.34 1000 50 0.8228864 +109 527.34 531.2175000000001 1000 50 0.9802106 +110 531.2175 535.095 1000 50 0.6109425 +111 535.095 538.9725000000001 1000 50 0.99256516 +112 538.9725 542.85 1000 50 0.50581527 +113 542.85 546.7275000000001 1000 50 0.9999155 +114 550.605 554.4825000000001 1000 50 0.9996972 +115 554.4825 558.36 1000 50 0.99976915 +116 558.36 562.2375000000001 1000 50 0.88427466 +117 562.2375 566.115 1000 50 0.9994216 +118 566.115 569.9925000000001 1000 50 0.9663126 +119 569.9925 573.87 1000 50 0.72722757 +120 573.87 577.7475000000001 1000 50 0.9998343 +121 577.7475 581.625 1000 50 0.96401626 +122 581.625 585.5025 1000 50 0.9854805 +123 585.5025 589.3800000000001 1000 50 0.99999964 +124 589.38 593.2575 1000 50 0.9784386 +125 593.2575 597.1350000000001 1000 50 0.87929446 +126 597.135 601.0125 1000 50 0.98780113 +127 608.7675 612.6450000000001 1000 50 0.55731785 +128 612.645 616.5225 1000 50 0.97942185 +129 620.4 624.2775 1000 50 0.9999546 +130 624.2775 628.1550000000001 1000 50 0.9997651 +131 632.0325 635.9100000000001 1000 50 0.6127123 +132 635.91 639.7875 1000 50 0.8018397 +133 643.665 647.5425 1000 50 0.9937649 +134 647.5425 651.4200000000001 1000 50 0.65480465 +135 651.42 655.2975 1000 50 0.9202983 +136 655.2975 659.1750000000001 1000 50 0.93021125 +137 659.175 663.0525 1000 50 0.8748077 +138 663.0525 666.9300000000001 1000 50 0.6419235 +139 666.93 670.8075 1000 50 0.91139024 +140 674.685 678.5625 1000 50 0.95107317 +141 678.5625 682.44 1000 50 0.9781179 +142 697.95 701.8275000000001 1000 50 0.90528864 +143 709.5825 713.46 1000 50 0.99867994 +144 721.215 725.0925000000001 1000 50 0.72730374 +145 725.0925 728.97 1000 50 0.59385395 +146 728.97 732.8475000000001 1000 50 0.9979809 +147 736.725 740.6025000000001 1000 50 0.99240416 +148 744.48 748.3575000000001 1000 50 0.9085311 +149 748.3575 752.235 1000 50 0.99641836 +150 752.235 756.1125000000001 1000 50 0.9924736 +151 759.99 763.8675000000001 1000 50 0.7625264 +152 767.745 771.6225000000001 1000 50 0.62319726 +153 771.6225 775.5 1000 50 0.8005928 +154 779.3775 783.2550000000001 1000 50 0.8534775 +155 783.255 787.1325 1000 50 0.99984956 +156 794.8875 798.7650000000001 1000 50 0.9356555 +157 798.765 802.6425 1000 50 0.7836203 +158 802.6425 806.5200000000001 1000 50 0.5337868 +159 810.3975 814.2750000000001 1000 50 0.65101415 +160 818.1525 822.0300000000001 1000 50 0.5133828 +161 822.03 825.9075 1000 50 0.76803696 +162 833.6625 837.5400000000001 1000 50 0.7668095 +163 841.4175 845.2950000000001 1000 50 0.6836905 +164 849.1725 853.0500000000001 1000 50 0.8059807 +165 853.05 856.9275 1000 50 0.8686322 +166 868.56 872.4375 1000 50 0.69109774 +167 872.4375 876.315 1000 50 0.64571065 +168 876.315 880.1925000000001 1000 50 0.7342164 +169 880.1925 884.07 1000 50 0.9812135 +170 907.335 911.2125000000001 1000 50 0.814652 +171 911.2125 915.09 1000 50 0.6887067 +172 915.09 918.9675000000001 1000 50 0.99745387 +173 922.845 926.7225000000001 1000 50 0.91512436 +174 934.4775 938.355 1000 50 0.9050715 +175 938.355 942.2325000000001 1000 50 0.6448468 +176 949.9875 953.865 1000 50 0.9892481 +177 961.62 965.4975000000001 1000 50 0.9993888 +178 965.4975 969.375 1000 50 0.5581808 +179 969.375 973.2525 1000 50 0.7683343 +180 973.2525 977.1300000000001 1000 50 0.5769593 +181 977.13 981.0075 1000 50 0.83811206 +182 981.0075 984.8850000000001 1000 50 0.77863914 +183 984.885 988.7625 1000 50 0.9959122 +184 988.7625 992.6400000000001 1000 50 0.5368573 +185 1000.395 1004.2725 1000 50 0.89152884 +186 1004.2725 1008.1500000000001 1000 50 0.9995658 +187 1008.15 1012.0275 1000 50 0.99851733 +188 1012.0275 1015.9050000000001 1000 50 0.99989617 +189 1015.905 1019.7825 1000 50 0.7807652 +190 1019.7825 1023.6600000000001 1000 50 0.9894052 +191 1027.5375 1031.415 1000 50 0.99611306 +192 1031.415 1035.2925 1000 50 0.9887059 +193 1035.2925 1039.17 1000 50 0.98069376 +194 1039.17 1043.0475000000001 1000 50 0.8691068 +195 1043.0475 1046.925 1000 50 0.9999057 +196 1046.925 1050.8025 1000 50 0.9799114 +197 1050.8025 1054.68 1000 50 0.9975823 +198 1054.68 1058.5575000000001 1000 50 0.9999728 +199 1058.5575 1062.435 1000 50 0.99944085 +200 1062.435 1066.3125 1000 50 0.99494344 +201 1066.3125 1070.19 1000 50 0.9998915 +202 1070.19 1074.0675 1000 50 0.55196786 +203 1074.0675 1077.9450000000002 1000 50 0.68988234 +204 1077.945 1081.8225 1000 50 0.998938 +205 1081.8225 1085.7 1000 50 0.92786497 +206 1085.7 1089.5775 1000 50 0.9873237 +207 1089.5775 1093.4550000000002 1000 50 0.99940324 +208 1093.455 1097.3325 1000 50 0.9969674 +209 1097.3325 1101.21 1000 50 0.570277 +210 1101.21 1105.0875 1000 50 0.9998716 +211 1105.0875 1108.9650000000001 1000 50 0.9971295 +212 1112.8425 1116.72 1000 50 0.9707253 +213 1116.72 1120.5975 1000 50 0.9963636 +214 1120.5975 1124.4750000000001 1000 50 0.99997056 +215 1124.475 1128.3525 1000 50 0.8781799 +216 1128.3525 1132.23 1000 50 0.9999082 +217 1132.23 1136.1075 1000 50 0.99952006 +218 1136.1075 1139.9850000000001 1000 50 0.9977429 +219 1139.985 1143.8625 1000 50 0.9695636 +220 1143.8625 1147.74 1000 50 0.9974968 +221 1147.74 1151.6175 1000 50 0.97099453 +222 1151.6175 1155.4950000000001 1000 50 0.99190396 +223 1155.495 1159.3725 1000 50 0.99876225 +224 1159.3725 1163.25 1000 50 0.97570646 +225 1163.25 1167.1275 1000 50 0.99886715 +226 1167.1275 1171.005 1000 50 0.99990654 +227 1171.005 1174.8825000000002 1000 50 0.9992618 +228 1174.8825 1178.76 1000 50 0.83799756 +229 1178.76 1182.6375 1000 50 0.9972187 +230 1182.6375 1186.515 1000 50 0.99998677 +231 1186.515 1190.3925000000002 1000 50 0.99678445 +232 1190.3925 1194.27 1000 50 0.7113634 +233 1198.1475 1202.025 1000 50 0.86365974 +234 1202.025 1205.9025000000001 1000 50 0.9985361 +235 1205.9025 1209.78 1000 50 0.9999069 +236 1209.78 1213.6575 1000 50 0.9996319 +237 1217.535 1221.4125000000001 1000 50 0.66435325 +238 1221.4125 1225.29 1000 50 0.9485323 +239 1229.1675 1233.045 1000 50 0.9559505 +240 1233.045 1236.9225000000001 1000 50 0.7237857 +241 1236.9225 1240.8 1000 50 0.99999404 +242 1240.8 1244.6775 1000 50 0.6935934 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_14-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_14-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ba7dbdd549d0b1fdb3b987c8da795a25177ef45f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_14-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,61 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 15.51 19.3875 1000 50 0.8174813 +2 19.3875 23.265 1000 50 0.7081827 +3 27.1425 31.02 1000 50 0.9634269 +4 31.02 34.8975 1000 50 0.6085444 +5 34.8975 38.775 1000 50 0.998563 +6 38.775 42.652499999999996 1000 50 0.98879147 +7 42.6525 46.53 1000 50 0.89998424 +8 46.53 50.4075 1000 50 0.8315625 +9 50.4075 54.285 1000 50 0.99830365 +10 58.1625 62.04 1000 50 0.8663409 +11 62.04 65.9175 1000 50 0.6985907 +12 65.9175 69.795 1000 50 0.560478 +13 69.795 73.6725 1000 50 0.5860602 +14 77.55 81.4275 1000 50 0.9708689 +15 81.4275 85.30499999999999 1000 50 0.708614 +16 89.1825 93.06 1000 50 0.83261377 +17 96.9375 100.815 1000 50 0.9548114 +18 100.815 104.6925 1000 50 0.72157747 +19 104.6925 108.57 1000 50 0.99627614 +20 108.57 112.44749999999999 1000 50 0.545678 +21 112.4475 116.325 1000 50 0.7550119 +22 116.325 120.2025 1000 50 0.8470282 +23 127.9575 131.835 1000 50 0.767366 +24 131.835 135.7125 1000 50 0.73265564 +25 139.59 143.4675 1000 50 0.83420676 +26 143.4675 147.345 1000 50 0.86128414 +27 151.2225 155.1 1000 50 0.70247096 +28 155.1 158.9775 1000 50 0.5918397 +29 158.9775 162.855 1000 50 0.9987317 +30 162.855 166.7325 1000 50 0.9996669 +31 166.7325 170.60999999999999 1000 50 0.9713509 +32 170.61 174.4875 1000 50 0.9999778 +33 174.4875 178.365 1000 50 0.99910456 +34 178.365 182.2425 1000 50 0.8245058 +35 182.2425 186.12 1000 50 0.98480046 +36 186.12 189.9975 1000 50 0.9999875 +37 189.9975 193.875 1000 50 0.90181005 +38 197.7525 201.63 1000 50 0.9988765 +39 201.63 205.5075 1000 50 0.8467596 +40 205.5075 209.385 1000 50 0.99030495 +41 209.385 213.2625 1000 50 0.8826182 +42 221.0175 224.895 1000 50 0.9828195 +43 224.895 228.7725 1000 50 0.85953766 +44 228.7725 232.65 1000 50 0.9431312 +45 232.65 236.5275 1000 50 0.92918885 +46 236.5275 240.405 1000 50 0.9998672 +47 240.405 244.2825 1000 50 0.9427034 +48 244.2825 248.16 1000 50 0.97347474 +49 248.16 252.0375 1000 50 0.9614802 +50 252.0375 255.915 1000 50 0.98823243 +51 255.915 259.7925 1000 50 0.9968117 +52 259.7925 263.67 1000 50 0.7475616 +53 263.67 267.5475 1000 50 0.9714677 +54 275.3025 279.18 1000 50 0.6053235 +55 279.18 283.0575 1000 50 0.9895182 +56 314.0775 317.955 1000 50 0.896648 +57 317.955 321.8325 1000 50 0.75150424 +58 333.465 337.3425 1000 50 0.7141841 +59 341.22 345.0975 1000 50 0.8597618 +60 348.975 352.8525 1000 50 0.5772365 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_14-09-33_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_14-09-33_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..dbc7eb86e954df7f054ddbe9019d0b9601d68077 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_14-09-33_annot_2022-11-30_01.txt @@ -0,0 +1,145 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 19.3875 23.265 1000 50 0.62931764 +2 23.265 27.142500000000002 1000 50 0.5826059 +3 27.1425 31.02 1000 50 0.99588853 +4 31.02 34.8975 1000 50 0.9903323 +5 42.6525 46.53 1000 50 0.8643159 +6 50.4075 54.285 1000 50 0.9932861 +7 54.285 58.162499999999994 1000 50 0.7364204 +8 65.9175 69.795 1000 50 0.59989566 +9 69.795 73.6725 1000 50 0.9996525 +10 73.6725 77.55 1000 50 0.6581708 +11 81.4275 85.30499999999999 1000 50 0.7997232 +12 85.305 89.1825 1000 50 0.9778391 +13 89.1825 93.06 1000 50 0.721362 +14 93.06 96.9375 1000 50 0.9965569 +15 96.9375 100.815 1000 50 0.74243665 +16 100.815 104.6925 1000 50 0.9422179 +17 104.6925 108.57 1000 50 0.9332933 +18 108.57 112.44749999999999 1000 50 0.88087845 +19 124.08 127.9575 1000 50 0.99689853 +20 139.59 143.4675 1000 50 0.9957748 +21 147.345 151.2225 1000 50 0.7510485 +22 151.2225 155.1 1000 50 0.9936202 +23 162.855 166.7325 1000 50 0.99995756 +24 166.7325 170.60999999999999 1000 50 0.9921393 +25 170.61 174.4875 1000 50 0.99025655 +26 174.4875 178.365 1000 50 0.9946131 +27 178.365 182.2425 1000 50 0.8010032 +28 182.2425 186.12 1000 50 0.9987846 +29 186.12 189.9975 1000 50 0.9993382 +30 189.9975 193.875 1000 50 0.9620479 +31 193.875 197.7525 1000 50 0.9987056 +32 197.7525 201.63 1000 50 0.9999888 +33 201.63 205.5075 1000 50 0.9745889 +34 205.5075 209.385 1000 50 0.99466866 +35 209.385 213.2625 1000 50 0.9944997 +36 217.14 221.01749999999998 1000 50 0.8485669 +37 221.0175 224.895 1000 50 0.9990903 +38 224.895 228.7725 1000 50 0.8532758 +39 228.7725 232.65 1000 50 0.9172591 +40 232.65 236.5275 1000 50 0.97777903 +41 244.2825 248.16 1000 50 0.7522075 +42 248.16 252.0375 1000 50 0.6230148 +43 252.0375 255.915 1000 50 0.5182913 +44 255.915 259.7925 1000 50 0.87218887 +45 259.7925 263.67 1000 50 0.7696506 +46 275.3025 279.18 1000 50 0.55876416 +47 286.935 290.8125 1000 50 0.5485792 +48 294.69 298.5675 1000 50 0.93187475 +49 302.445 306.3225 1000 50 0.5216477 +50 317.955 321.8325 1000 50 0.71574837 +51 333.465 337.3425 1000 50 0.90878403 +52 337.3425 341.21999999999997 1000 50 0.96541923 +53 348.975 352.8525 1000 50 0.8854081 +54 352.8525 356.73 1000 50 0.9992907 +55 356.73 360.6075 1000 50 0.5497559 +56 360.6075 364.485 1000 50 0.54350674 +57 364.485 368.3625 1000 50 0.98697853 +58 368.3625 372.24 1000 50 0.9770897 +59 395.505 399.3825 1000 50 0.5423066 +60 399.3825 403.26 1000 50 0.667618 +61 407.1375 411.015 1000 50 0.80890983 +62 414.8925 418.77 1000 50 0.63678837 +63 418.77 422.6475 1000 50 0.98514104 +64 422.6475 426.525 1000 50 0.79794246 +65 426.525 430.4025 1000 50 0.9814633 +66 430.4025 434.28 1000 50 0.6615936 +67 438.1575 442.035 1000 50 0.9267053 +68 442.035 445.9125 1000 50 0.912232 +69 445.9125 449.79 1000 50 0.57397807 +70 453.6675 457.545 1000 50 0.7979754 +71 465.3 469.1775 1000 50 0.98894185 +72 469.1775 473.055 1000 50 0.64853156 +73 473.055 476.9325 1000 50 0.7366143 +74 488.565 492.4425 1000 50 0.6808656 +75 492.4425 496.32 1000 50 0.7420714 +76 496.32 500.1975 1000 50 0.8359075 +77 507.9525 511.83 1000 50 0.77180415 +78 511.83 515.7075 1000 50 0.99897146 +79 515.7075 519.585 1000 50 0.7229881 +80 519.585 523.4625000000001 1000 50 0.9668637 +81 523.4625 527.34 1000 50 0.90959656 +82 531.2175 535.095 1000 50 0.6871918 +83 538.9725 542.85 1000 50 0.53423214 +84 542.85 546.7275000000001 1000 50 0.9312065 +85 546.7275 550.605 1000 50 0.9805757 +86 554.4825 558.36 1000 50 0.50348985 +87 566.115 569.9925000000001 1000 50 0.64955956 +88 569.9925 573.87 1000 50 0.5004341 +89 573.87 577.7475000000001 1000 50 0.9983652 +90 577.7475 581.625 1000 50 0.50311875 +91 585.5025 589.3800000000001 1000 50 0.9997985 +92 589.38 593.2575 1000 50 0.9926563 +93 597.135 601.0125 1000 50 0.9975127 +94 601.0125 604.8900000000001 1000 50 0.99988496 +95 608.7675 612.6450000000001 1000 50 0.93415487 +96 612.645 616.5225 1000 50 0.55505276 +97 624.2775 628.1550000000001 1000 50 0.5023768 +98 628.155 632.0325 1000 50 0.99201304 +99 639.7875 643.6650000000001 1000 50 0.9987036 +100 643.665 647.5425 1000 50 0.8675305 +101 651.42 655.2975 1000 50 0.8202731 +102 655.2975 659.1750000000001 1000 50 0.60605913 +103 659.175 663.0525 1000 50 0.97834915 +104 663.0525 666.9300000000001 1000 50 0.9958936 +105 674.685 678.5625 1000 50 0.9829548 +106 678.5625 682.44 1000 50 0.5494908 +107 697.95 701.8275000000001 1000 50 0.89541304 +108 709.5825 713.46 1000 50 0.9443545 +109 717.3375 721.215 1000 50 0.5337753 +110 732.8475 736.725 1000 50 0.80071354 +111 736.725 740.6025000000001 1000 50 0.9999484 +112 740.6025 744.48 1000 50 0.9459099 +113 748.3575 752.235 1000 50 0.9987571 +114 752.235 756.1125000000001 1000 50 0.9422219 +115 756.1125 759.99 1000 50 0.69072974 +116 759.99 763.8675000000001 1000 50 0.99646217 +117 767.745 771.6225000000001 1000 50 0.97264624 +118 771.6225 775.5 1000 50 0.99966323 +119 775.5 779.3775 1000 50 0.9758304 +120 779.3775 783.2550000000001 1000 50 0.5687361 +121 783.255 787.1325 1000 50 0.99997663 +122 791.01 794.8875 1000 50 0.96290624 +123 794.8875 798.7650000000001 1000 50 0.9999616 +124 798.765 802.6425 1000 50 0.99784184 +125 806.52 810.3975 1000 50 0.9401908 +126 825.9075 829.7850000000001 1000 50 0.61610806 +127 829.785 833.6625 1000 50 0.5908634 +128 845.295 849.1725 1000 50 0.9540613 +129 849.1725 853.0500000000001 1000 50 0.99867517 +130 853.05 856.9275 1000 50 0.7767114 +131 860.805 864.6825 1000 50 0.9993236 +132 864.6825 868.5600000000001 1000 50 0.7869315 +133 872.4375 876.315 1000 50 0.7449401 +134 876.315 880.1925000000001 1000 50 0.9849342 +135 880.1925 884.07 1000 50 0.7718754 +136 884.07 887.9475000000001 1000 50 0.9833281 +137 891.825 895.7025000000001 1000 50 0.9654714 +138 895.7025 899.58 1000 50 0.9390171 +139 899.58 903.4575000000001 1000 50 0.99968505 +140 907.335 911.2125000000001 1000 50 0.9916646 +141 911.2125 915.09 1000 50 0.9663758 +142 915.09 918.9675000000001 1000 50 0.83655506 +143 922.845 926.7225000000001 1000 50 0.98901117 +144 926.7225 930.6 1000 50 0.99654514 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_15-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_15-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..94ba67bbbc302eca7235989db3ab8377eafea3f6 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_15-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,101 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9961522 +2 7.755 11.6325 1000 50 0.6563357 +3 15.51 19.3875 1000 50 0.987125 +4 19.3875 23.265 1000 50 0.9701784 +5 27.1425 31.02 1000 50 0.916948 +6 34.8975 38.775 1000 50 0.636389 +7 38.775 42.652499999999996 1000 50 0.9970688 +8 54.285 58.162499999999994 1000 50 0.6832138 +9 65.9175 69.795 1000 50 0.9384109 +10 73.6725 77.55 1000 50 0.9711186 +11 81.4275 85.30499999999999 1000 50 0.68392766 +12 89.1825 93.06 1000 50 0.99901724 +13 93.06 96.9375 1000 50 0.5389079 +14 100.815 104.6925 1000 50 0.9167096 +15 104.6925 108.57 1000 50 0.9998777 +16 108.57 112.44749999999999 1000 50 0.51562756 +17 112.4475 116.325 1000 50 0.5689884 +18 116.325 120.2025 1000 50 0.9999403 +19 120.2025 124.08 1000 50 0.6472641 +20 124.08 127.9575 1000 50 0.9342743 +21 127.9575 131.835 1000 50 0.9999722 +22 131.835 135.7125 1000 50 0.99801195 +23 135.7125 139.59 1000 50 0.9804524 +24 139.59 143.4675 1000 50 0.9996798 +25 143.4675 147.345 1000 50 0.62620723 +26 147.345 151.2225 1000 50 0.99936444 +27 155.1 158.9775 1000 50 0.9944324 +28 158.9775 162.855 1000 50 0.982193 +29 162.855 166.7325 1000 50 0.998145 +30 166.7325 170.60999999999999 1000 50 0.997282 +31 170.61 174.4875 1000 50 0.99951196 +32 178.365 182.2425 1000 50 0.95164806 +33 189.9975 193.875 1000 50 0.9238965 +34 205.5075 209.385 1000 50 0.7996674 +35 224.895 228.7725 1000 50 0.701658 +36 236.5275 240.405 1000 50 0.91423273 +37 248.16 252.0375 1000 50 0.6624005 +38 255.915 259.7925 1000 50 0.9915441 +39 259.7925 263.67 1000 50 0.9994985 +40 263.67 267.5475 1000 50 0.64300615 +41 267.5475 271.425 1000 50 0.9681692 +42 271.425 275.3025 1000 50 0.9987257 +43 279.18 283.0575 1000 50 0.67325085 +44 283.0575 286.935 1000 50 0.9535174 +45 286.935 290.8125 1000 50 0.9290288 +46 290.8125 294.69 1000 50 0.83231974 +47 294.69 298.5675 1000 50 0.94772965 +48 298.5675 302.445 1000 50 0.89374715 +49 306.3225 310.2 1000 50 0.61200416 +50 310.2 314.0775 1000 50 0.8834046 +51 314.0775 317.955 1000 50 0.90235484 +52 321.8325 325.71 1000 50 0.9742585 +53 325.71 329.5875 1000 50 0.6008114 +54 333.465 337.3425 1000 50 0.6601694 +55 337.3425 341.21999999999997 1000 50 0.64908075 +56 341.22 345.0975 1000 50 0.9168695 +57 345.0975 348.975 1000 50 0.76093525 +58 356.73 360.6075 1000 50 0.6909504 +59 360.6075 364.485 1000 50 0.7004496 +60 364.485 368.3625 1000 50 0.6517993 +61 368.3625 372.24 1000 50 0.5937787 +62 372.24 376.1175 1000 50 0.91559136 +63 379.995 383.8725 1000 50 0.93354017 +64 383.8725 387.75 1000 50 0.9709706 +65 391.6275 395.505 1000 50 0.9252832 +66 395.505 399.3825 1000 50 0.9334714 +67 411.015 414.8925 1000 50 0.7021697 +68 414.8925 418.77 1000 50 0.6670024 +69 418.77 422.6475 1000 50 0.90486014 +70 422.6475 426.525 1000 50 0.6080466 +71 426.525 430.4025 1000 50 0.6911613 +72 430.4025 434.28 1000 50 0.88359475 +73 438.1575 442.035 1000 50 0.8724369 +74 442.035 445.9125 1000 50 0.74572074 +75 445.9125 449.79 1000 50 0.67125106 +76 465.3 469.1775 1000 50 0.58052444 +77 469.1775 473.055 1000 50 0.996606 +78 476.9325 480.81 1000 50 0.5904133 +79 480.81 484.6875 1000 50 0.95085096 +80 496.32 500.1975 1000 50 0.8818902 +81 504.075 507.9525 1000 50 0.7175077 +82 550.605 554.4825000000001 1000 50 0.78495026 +83 569.9925 573.87 1000 50 0.5939263 +84 577.7475 581.625 1000 50 0.65050095 +85 581.625 585.5025 1000 50 0.9980756 +86 585.5025 589.3800000000001 1000 50 0.7820591 +87 589.38 593.2575 1000 50 0.5213618 +88 593.2575 597.1350000000001 1000 50 0.9252647 +89 597.135 601.0125 1000 50 0.99998355 +90 604.89 608.7675 1000 50 0.93498784 +91 616.5225 620.4000000000001 1000 50 0.8135328 +92 620.4 624.2775 1000 50 0.61183256 +93 624.2775 628.1550000000001 1000 50 0.76751477 +94 628.155 632.0325 1000 50 0.96422935 +95 632.0325 635.9100000000001 1000 50 0.76052904 +96 635.91 639.7875 1000 50 0.52360445 +97 643.665 647.5425 1000 50 0.9994785 +98 647.5425 651.4200000000001 1000 50 0.9999441 +99 651.42 655.2975 1000 50 0.84411085 +100 655.2975 659.1750000000001 1000 50 0.68931645 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_15-14-38_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_15-14-38_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..38309375df2182db40385ab7d996b0add35aa90a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_15-14-38_annot_2022-11-30_01.txt @@ -0,0 +1,86 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.73012435 +2 7.755 11.6325 1000 50 0.83562374 +3 11.6325 15.51 1000 50 0.74005514 +4 19.3875 23.265 1000 50 0.72743726 +5 23.265 27.142500000000002 1000 50 0.79087 +6 38.775 42.652499999999996 1000 50 0.8907188 +7 50.4075 54.285 1000 50 0.501319 +8 58.1625 62.04 1000 50 0.7837986 +9 65.9175 69.795 1000 50 0.76480955 +10 69.795 73.6725 1000 50 0.868918 +11 89.1825 93.06 1000 50 0.972293 +12 100.815 104.6925 1000 50 0.5651747 +13 104.6925 108.57 1000 50 0.81519186 +14 120.2025 124.08 1000 50 0.6383837 +15 139.59 143.4675 1000 50 0.99296606 +16 147.345 151.2225 1000 50 0.53588176 +17 151.2225 155.1 1000 50 0.9287519 +18 155.1 158.9775 1000 50 0.5137028 +19 162.855 166.7325 1000 50 0.9894685 +20 182.2425 186.12 1000 50 0.53421843 +21 193.875 197.7525 1000 50 0.98997706 +22 205.5075 209.385 1000 50 0.9999095 +23 209.385 213.2625 1000 50 0.5213605 +24 217.14 221.01749999999998 1000 50 0.8229656 +25 232.65 236.5275 1000 50 0.78844374 +26 236.5275 240.405 1000 50 0.9543774 +27 240.405 244.2825 1000 50 0.7444478 +28 248.16 252.0375 1000 50 0.850125 +29 263.67 267.5475 1000 50 0.85109204 +30 267.5475 271.425 1000 50 0.7932441 +31 271.425 275.3025 1000 50 0.71059054 +32 306.3225 310.2 1000 50 0.63066214 +33 310.2 314.0775 1000 50 0.52456725 +34 314.0775 317.955 1000 50 0.5472052 +35 321.8325 325.71 1000 50 0.53812903 +36 325.71 329.5875 1000 50 0.98416835 +37 333.465 337.3425 1000 50 0.74873555 +38 345.0975 348.975 1000 50 0.6076775 +39 348.975 352.8525 1000 50 0.9902188 +40 352.8525 356.73 1000 50 0.82023185 +41 360.6075 364.485 1000 50 0.85318214 +42 364.485 368.3625 1000 50 0.82771486 +43 368.3625 372.24 1000 50 0.7120044 +44 372.24 376.1175 1000 50 0.68350834 +45 376.1175 379.995 1000 50 0.5302255 +46 379.995 383.8725 1000 50 0.8865726 +47 383.8725 387.75 1000 50 0.54449 +48 391.6275 395.505 1000 50 0.999759 +49 403.26 407.1375 1000 50 0.9725299 +50 411.015 414.8925 1000 50 0.57129204 +51 414.8925 418.77 1000 50 0.9679797 +52 422.6475 426.525 1000 50 0.51200587 +53 434.28 438.15749999999997 1000 50 0.80965877 +54 438.1575 442.035 1000 50 0.9946396 +55 449.79 453.6675 1000 50 0.98637956 +56 457.545 461.4225 1000 50 0.60119563 +57 461.4225 465.3 1000 50 0.68104243 +58 465.3 469.1775 1000 50 0.87419724 +59 473.055 476.9325 1000 50 0.85647446 +60 476.9325 480.81 1000 50 0.98529345 +61 484.6875 488.565 1000 50 0.6312978 +62 488.565 492.4425 1000 50 0.96526194 +63 492.4425 496.32 1000 50 0.9099807 +64 496.32 500.1975 1000 50 0.9257385 +65 500.1975 504.075 1000 50 0.8492893 +66 504.075 507.9525 1000 50 0.9644638 +67 511.83 515.7075 1000 50 0.6485752 +68 515.7075 519.585 1000 50 0.99961877 +69 519.585 523.4625000000001 1000 50 0.847499 +70 523.4625 527.34 1000 50 0.9983784 +71 531.2175 535.095 1000 50 0.99999166 +72 535.095 538.9725000000001 1000 50 0.9981755 +73 538.9725 542.85 1000 50 0.75957316 +74 542.85 546.7275000000001 1000 50 0.9837217 +75 546.7275 550.605 1000 50 0.7813115 +76 550.605 554.4825000000001 1000 50 0.99287343 +77 554.4825 558.36 1000 50 0.9689934 +78 558.36 562.2375000000001 1000 50 0.78304106 +79 566.115 569.9925000000001 1000 50 0.80712324 +80 569.9925 573.87 1000 50 0.637047 +81 573.87 577.7475000000001 1000 50 0.9624405 +82 585.5025 589.3800000000001 1000 50 0.6493609 +83 593.2575 597.1350000000001 1000 50 0.8247385 +84 608.7675 612.6450000000001 1000 50 0.8488772 +85 612.645 616.5225 1000 50 0.9978047 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_16-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_16-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ad5c6839927fcf717f1a5b13ec236b48e8a9d116 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_16-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,198 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.8536965 +2 7.755 11.6325 1000 50 0.915548 +3 11.6325 15.51 1000 50 0.9979944 +4 15.51 19.3875 1000 50 0.89576787 +5 23.265 27.142500000000002 1000 50 0.99995184 +6 27.1425 31.02 1000 50 0.6018984 +7 34.8975 38.775 1000 50 0.97569627 +8 38.775 42.652499999999996 1000 50 0.5646368 +9 46.53 50.4075 1000 50 0.7732498 +10 50.4075 54.285 1000 50 0.6074401 +11 58.1625 62.04 1000 50 0.99624616 +12 62.04 65.9175 1000 50 0.99999285 +13 65.9175 69.795 1000 50 0.999265 +14 69.795 73.6725 1000 50 0.8023161 +15 73.6725 77.55 1000 50 0.5634663 +16 81.4275 85.30499999999999 1000 50 0.9149344 +17 85.305 89.1825 1000 50 0.9712006 +18 89.1825 93.06 1000 50 0.99999845 +19 93.06 96.9375 1000 50 0.8055482 +20 96.9375 100.815 1000 50 0.99924755 +21 100.815 104.6925 1000 50 0.9999976 +22 104.6925 108.57 1000 50 0.99999964 +23 108.57 112.44749999999999 1000 50 0.9951499 +24 112.4475 116.325 1000 50 0.9972268 +25 116.325 120.2025 1000 50 0.672357 +26 120.2025 124.08 1000 50 0.64935124 +27 124.08 127.9575 1000 50 0.99277616 +28 127.9575 131.835 1000 50 0.90712416 +29 131.835 135.7125 1000 50 0.9241262 +30 135.7125 139.59 1000 50 0.99909544 +31 139.59 143.4675 1000 50 0.9991685 +32 143.4675 147.345 1000 50 0.95881534 +33 147.345 151.2225 1000 50 0.9999707 +34 151.2225 155.1 1000 50 0.9999864 +35 155.1 158.9775 1000 50 0.9998565 +36 158.9775 162.855 1000 50 0.99103385 +37 162.855 166.7325 1000 50 0.99863833 +38 166.7325 170.60999999999999 1000 50 0.99557686 +39 170.61 174.4875 1000 50 0.9980762 +40 174.4875 178.365 1000 50 0.9983076 +41 178.365 182.2425 1000 50 0.9701919 +42 186.12 189.9975 1000 50 0.6976678 +43 189.9975 193.875 1000 50 0.9781578 +44 193.875 197.7525 1000 50 0.8243075 +45 197.7525 201.63 1000 50 0.975839 +46 201.63 205.5075 1000 50 0.6733962 +47 205.5075 209.385 1000 50 0.828721 +48 209.385 213.2625 1000 50 0.9999521 +49 213.2625 217.14 1000 50 0.93175066 +50 217.14 221.01749999999998 1000 50 0.8821323 +51 221.0175 224.895 1000 50 0.98710304 +52 224.895 228.7725 1000 50 0.9657042 +53 228.7725 232.65 1000 50 0.95442224 +54 232.65 236.5275 1000 50 0.921821 +55 240.405 244.2825 1000 50 0.9654191 +56 244.2825 248.16 1000 50 0.99471503 +57 248.16 252.0375 1000 50 0.959021 +58 252.0375 255.915 1000 50 0.9973678 +59 255.915 259.7925 1000 50 0.9790162 +60 263.67 267.5475 1000 50 0.96984005 +61 267.5475 271.425 1000 50 0.9988086 +62 275.3025 279.18 1000 50 0.93395704 +63 279.18 283.0575 1000 50 0.9854069 +64 283.0575 286.935 1000 50 0.5911063 +65 286.935 290.8125 1000 50 0.99253523 +66 290.8125 294.69 1000 50 0.9787426 +67 294.69 298.5675 1000 50 0.9852062 +68 298.5675 302.445 1000 50 0.99518085 +69 302.445 306.3225 1000 50 0.75084174 +70 306.3225 310.2 1000 50 0.9968645 +71 310.2 314.0775 1000 50 0.7961865 +72 314.0775 317.955 1000 50 0.94886285 +73 317.955 321.8325 1000 50 0.97282636 +74 321.8325 325.71 1000 50 0.94805473 +75 329.5875 333.465 1000 50 0.7093101 +76 333.465 337.3425 1000 50 0.8245981 +77 337.3425 341.21999999999997 1000 50 0.9997038 +78 341.22 345.0975 1000 50 0.9980155 +79 345.0975 348.975 1000 50 0.86009043 +80 348.975 352.8525 1000 50 0.89673215 +81 352.8525 356.73 1000 50 0.7312685 +82 356.73 360.6075 1000 50 0.69825214 +83 360.6075 364.485 1000 50 0.7828447 +84 364.485 368.3625 1000 50 0.9913703 +85 368.3625 372.24 1000 50 0.99910504 +86 376.1175 379.995 1000 50 0.7508055 +87 379.995 383.8725 1000 50 0.6931675 +88 387.75 391.6275 1000 50 0.91198695 +89 391.6275 395.505 1000 50 0.5299176 +90 395.505 399.3825 1000 50 0.894047 +91 399.3825 403.26 1000 50 0.8903176 +92 414.8925 418.77 1000 50 0.99769825 +93 422.6475 426.525 1000 50 0.65698725 +94 426.525 430.4025 1000 50 0.9109104 +95 430.4025 434.28 1000 50 0.6590007 +96 442.035 445.9125 1000 50 0.6791174 +97 445.9125 449.79 1000 50 0.8306228 +98 449.79 453.6675 1000 50 0.6286135 +99 453.6675 457.545 1000 50 0.9040797 +100 457.545 461.4225 1000 50 0.68177265 +101 465.3 469.1775 1000 50 0.6586163 +102 469.1775 473.055 1000 50 0.98540545 +103 473.055 476.9325 1000 50 0.5915571 +104 476.9325 480.81 1000 50 0.98001605 +105 480.81 484.6875 1000 50 0.7988948 +106 484.6875 488.565 1000 50 0.7153885 +107 488.565 492.4425 1000 50 0.8287961 +108 492.4425 496.32 1000 50 0.8609113 +109 496.32 500.1975 1000 50 0.8699151 +110 500.1975 504.075 1000 50 0.65437555 +111 507.9525 511.83 1000 50 0.9118933 +112 511.83 515.7075 1000 50 0.82620025 +113 515.7075 519.585 1000 50 0.8389364 +114 523.4625 527.34 1000 50 0.8895936 +115 527.34 531.2175000000001 1000 50 0.99763596 +116 531.2175 535.095 1000 50 0.9111897 +117 535.095 538.9725000000001 1000 50 0.9629862 +118 538.9725 542.85 1000 50 0.99985456 +119 542.85 546.7275000000001 1000 50 0.9988477 +120 546.7275 550.605 1000 50 0.9757918 +121 550.605 554.4825000000001 1000 50 0.99880457 +122 554.4825 558.36 1000 50 0.99997663 +123 558.36 562.2375000000001 1000 50 0.98490554 +124 562.2375 566.115 1000 50 0.9650985 +125 566.115 569.9925000000001 1000 50 0.9786708 +126 573.87 577.7475000000001 1000 50 0.9999423 +127 581.625 585.5025 1000 50 0.8231784 +128 585.5025 589.3800000000001 1000 50 0.5079802 +129 589.38 593.2575 1000 50 0.810171 +130 593.2575 597.1350000000001 1000 50 0.6990666 +131 597.135 601.0125 1000 50 0.5204208 +132 601.0125 604.8900000000001 1000 50 0.94063824 +133 604.89 608.7675 1000 50 0.69764954 +134 628.155 632.0325 1000 50 0.969625 +135 632.0325 635.9100000000001 1000 50 0.99968886 +136 639.7875 643.6650000000001 1000 50 0.99919134 +137 643.665 647.5425 1000 50 0.8191608 +138 647.5425 651.4200000000001 1000 50 0.66845983 +139 651.42 655.2975 1000 50 0.99539185 +140 655.2975 659.1750000000001 1000 50 0.9299838 +141 663.0525 666.9300000000001 1000 50 0.998904 +142 666.93 670.8075 1000 50 0.8697166 +143 678.5625 682.44 1000 50 0.9922208 +144 686.3175 690.195 1000 50 0.99745315 +145 694.0725 697.95 1000 50 0.99991965 +146 697.95 701.8275000000001 1000 50 0.938084 +147 701.8275 705.705 1000 50 0.8691133 +148 705.705 709.5825000000001 1000 50 0.99981266 +149 709.5825 713.46 1000 50 0.9511034 +150 713.46 717.3375000000001 1000 50 0.8521418 +151 717.3375 721.215 1000 50 0.99645835 +152 721.215 725.0925000000001 1000 50 0.95436406 +153 728.97 732.8475000000001 1000 50 0.99607545 +154 732.8475 736.725 1000 50 0.99996376 +155 736.725 740.6025000000001 1000 50 0.999416 +156 740.6025 744.48 1000 50 0.97848266 +157 744.48 748.3575000000001 1000 50 0.9396625 +158 752.235 756.1125000000001 1000 50 0.9999738 +159 756.1125 759.99 1000 50 0.94951594 +160 763.8675 767.745 1000 50 0.9999242 +161 767.745 771.6225000000001 1000 50 0.9987099 +162 771.6225 775.5 1000 50 0.5891583 +163 775.5 779.3775 1000 50 0.9998379 +164 779.3775 783.2550000000001 1000 50 0.9998578 +165 783.255 787.1325 1000 50 0.78691554 +166 787.1325 791.0100000000001 1000 50 0.9999968 +167 791.01 794.8875 1000 50 0.5878199 +168 794.8875 798.7650000000001 1000 50 0.5264193 +169 798.765 802.6425 1000 50 0.9997669 +170 802.6425 806.5200000000001 1000 50 0.82805747 +171 806.52 810.3975 1000 50 0.9688251 +172 810.3975 814.2750000000001 1000 50 0.94097716 +173 814.275 818.1525 1000 50 0.93926114 +174 818.1525 822.0300000000001 1000 50 0.9350157 +175 829.785 833.6625 1000 50 0.82594824 +176 837.54 841.4175 1000 50 0.58459425 +177 845.295 849.1725 1000 50 0.7037156 +178 853.05 856.9275 1000 50 0.64763725 +179 856.9275 860.8050000000001 1000 50 0.9172556 +180 860.805 864.6825 1000 50 0.9760474 +181 872.4375 876.315 1000 50 0.6745554 +182 880.1925 884.07 1000 50 0.9386153 +183 887.9475 891.825 1000 50 0.70623875 +184 891.825 895.7025000000001 1000 50 0.952144 +185 895.7025 899.58 1000 50 0.79688907 +186 899.58 903.4575000000001 1000 50 0.9447055 +187 907.335 911.2125000000001 1000 50 0.78464526 +188 911.2125 915.09 1000 50 0.97119135 +189 915.09 918.9675000000001 1000 50 0.9140008 +190 918.9675 922.845 1000 50 0.9345145 +191 922.845 926.7225000000001 1000 50 0.7359121 +192 926.7225 930.6 1000 50 0.9844155 +193 930.6 934.4775000000001 1000 50 0.56204575 +194 938.355 942.2325000000001 1000 50 0.62711024 +195 946.11 949.9875000000001 1000 50 0.9390067 +196 949.9875 953.865 1000 50 0.9356223 +197 953.865 957.7425000000001 1000 50 0.67879784 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_16-19-35_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_16-19-35_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..4b3b6aa158eabdaa50e78728612c7fd7af79f182 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_16-19-35_annot_2022-11-30_01.txt @@ -0,0 +1,70 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.5296521 +2 3.8775 7.755 1000 50 0.5465804 +3 7.755 11.6325 1000 50 0.989828 +4 11.6325 15.51 1000 50 0.77781945 +5 15.51 19.3875 1000 50 0.99998045 +6 19.3875 23.265 1000 50 0.8003971 +7 23.265 27.142500000000002 1000 50 0.88244957 +8 27.1425 31.02 1000 50 0.99888235 +9 31.02 34.8975 1000 50 0.9589543 +10 34.8975 38.775 1000 50 0.99874145 +11 38.775 42.652499999999996 1000 50 0.6531157 +12 42.6525 46.53 1000 50 0.8916734 +13 46.53 50.4075 1000 50 0.99980205 +14 50.4075 54.285 1000 50 0.75702167 +15 54.285 58.162499999999994 1000 50 0.99970573 +16 58.1625 62.04 1000 50 0.99970907 +17 62.04 65.9175 1000 50 0.9317933 +18 65.9175 69.795 1000 50 0.8241298 +19 69.795 73.6725 1000 50 0.79089373 +20 73.6725 77.55 1000 50 0.7263702 +21 77.55 81.4275 1000 50 0.8809502 +22 89.1825 93.06 1000 50 0.9885118 +23 93.06 96.9375 1000 50 0.9270608 +24 96.9375 100.815 1000 50 0.76390857 +25 100.815 104.6925 1000 50 0.7033649 +26 104.6925 108.57 1000 50 0.77254957 +27 108.57 112.44749999999999 1000 50 0.77460957 +28 112.4475 116.325 1000 50 0.7946062 +29 120.2025 124.08 1000 50 0.98340964 +30 127.9575 131.835 1000 50 0.8390657 +31 135.7125 139.59 1000 50 0.70769995 +32 147.345 151.2225 1000 50 0.9817785 +33 151.2225 155.1 1000 50 0.9266308 +34 158.9775 162.855 1000 50 0.93288106 +35 162.855 166.7325 1000 50 0.99989784 +36 174.4875 178.365 1000 50 0.9999229 +37 178.365 182.2425 1000 50 0.99035 +38 186.12 189.9975 1000 50 0.7748273 +39 189.9975 193.875 1000 50 0.99992204 +40 193.875 197.7525 1000 50 0.99614185 +41 197.7525 201.63 1000 50 0.99958366 +42 201.63 205.5075 1000 50 0.9999918 +43 205.5075 209.385 1000 50 0.86109114 +44 209.385 213.2625 1000 50 0.9968297 +45 213.2625 217.14 1000 50 0.99999034 +46 217.14 221.01749999999998 1000 50 0.9957321 +47 221.0175 224.895 1000 50 0.8726109 +48 224.895 228.7725 1000 50 0.99956423 +49 228.7725 232.65 1000 50 0.98628426 +50 232.65 236.5275 1000 50 0.9234742 +51 236.5275 240.405 1000 50 0.9997025 +52 240.405 244.2825 1000 50 0.9995316 +53 244.2825 248.16 1000 50 0.6872466 +54 248.16 252.0375 1000 50 0.99979967 +55 252.0375 255.915 1000 50 0.99395096 +56 255.915 259.7925 1000 50 0.9980578 +57 259.7925 263.67 1000 50 0.9999242 +58 263.67 267.5475 1000 50 0.5719252 +59 267.5475 271.425 1000 50 0.70118004 +60 279.18 283.0575 1000 50 0.98672557 +61 286.935 290.8125 1000 50 0.8191496 +62 290.8125 294.69 1000 50 0.99846387 +63 294.69 298.5675 1000 50 0.5609607 +64 298.5675 302.445 1000 50 0.5866122 +65 302.445 306.3225 1000 50 0.96503556 +66 306.3225 310.2 1000 50 0.97516507 +67 314.0775 317.955 1000 50 0.62912804 +68 317.955 321.8325 1000 50 0.64403296 +69 325.71 329.5875 1000 50 0.62486374 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_17-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_17-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..8f79b4d012bf2a9aca2c65b0177aad830603fe68 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_17-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,172 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.50324935 +2 11.6325 15.51 1000 50 0.67151874 +3 23.265 27.142500000000002 1000 50 0.9392765 +4 27.1425 31.02 1000 50 0.65222764 +5 31.02 34.8975 1000 50 0.92705303 +6 34.8975 38.775 1000 50 0.6589266 +7 58.1625 62.04 1000 50 0.675513 +8 62.04 65.9175 1000 50 0.91836447 +9 65.9175 69.795 1000 50 0.85657024 +10 69.795 73.6725 1000 50 0.5802646 +11 73.6725 77.55 1000 50 0.99989927 +12 77.55 81.4275 1000 50 0.6362542 +13 85.305 89.1825 1000 50 0.999984 +14 89.1825 93.06 1000 50 0.9999057 +15 96.9375 100.815 1000 50 0.99999654 +16 100.815 104.6925 1000 50 0.9925978 +17 104.6925 108.57 1000 50 0.61733365 +18 108.57 112.44749999999999 1000 50 0.9963541 +19 112.4475 116.325 1000 50 0.99408406 +20 116.325 120.2025 1000 50 0.99629056 +21 120.2025 124.08 1000 50 0.9988482 +22 124.08 127.9575 1000 50 0.9967272 +23 127.9575 131.835 1000 50 0.77396065 +24 131.835 135.7125 1000 50 0.94108397 +25 135.7125 139.59 1000 50 0.9136308 +26 139.59 143.4675 1000 50 0.6523278 +27 143.4675 147.345 1000 50 0.6303365 +28 147.345 151.2225 1000 50 0.87663007 +29 151.2225 155.1 1000 50 0.999913 +30 155.1 158.9775 1000 50 0.8344073 +31 158.9775 162.855 1000 50 0.99924845 +32 162.855 166.7325 1000 50 0.94685733 +33 170.61 174.4875 1000 50 0.999271 +34 174.4875 178.365 1000 50 0.999744 +35 178.365 182.2425 1000 50 0.6119796 +36 182.2425 186.12 1000 50 0.99967754 +37 186.12 189.9975 1000 50 0.9998721 +38 189.9975 193.875 1000 50 0.6060852 +39 193.875 197.7525 1000 50 0.99602485 +40 197.7525 201.63 1000 50 0.9979506 +41 205.5075 209.385 1000 50 0.89718455 +42 236.5275 240.405 1000 50 0.86544466 +43 259.7925 263.67 1000 50 0.9853865 +44 263.67 267.5475 1000 50 0.8226909 +45 271.425 275.3025 1000 50 0.9883157 +46 275.3025 279.18 1000 50 0.87883466 +47 283.0575 286.935 1000 50 0.9909861 +48 290.8125 294.69 1000 50 0.6937203 +49 294.69 298.5675 1000 50 0.9906821 +50 302.445 306.3225 1000 50 0.7961469 +51 306.3225 310.2 1000 50 0.9981516 +52 310.2 314.0775 1000 50 0.632287 +53 314.0775 317.955 1000 50 0.75321335 +54 321.8325 325.71 1000 50 0.9653211 +55 337.3425 341.21999999999997 1000 50 0.95490474 +56 345.0975 348.975 1000 50 0.91602963 +57 348.975 352.8525 1000 50 0.68334097 +58 356.73 360.6075 1000 50 0.5723205 +59 387.75 391.6275 1000 50 0.60407865 +60 391.6275 395.505 1000 50 0.5738363 +61 411.015 414.8925 1000 50 0.73522186 +62 426.525 430.4025 1000 50 0.85960084 +63 442.035 445.9125 1000 50 0.61678916 +64 445.9125 449.79 1000 50 0.5064283 +65 449.79 453.6675 1000 50 0.91807425 +66 465.3 469.1775 1000 50 0.852765 +67 469.1775 473.055 1000 50 0.581409 +68 473.055 476.9325 1000 50 0.66938657 +69 484.6875 488.565 1000 50 0.5517119 +70 488.565 492.4425 1000 50 0.604181 +71 492.4425 496.32 1000 50 0.6288071 +72 504.075 507.9525 1000 50 0.50555664 +73 507.9525 511.83 1000 50 0.5364351 +74 527.34 531.2175000000001 1000 50 0.601411 +75 538.9725 542.85 1000 50 0.5373309 +76 546.7275 550.605 1000 50 0.96690416 +77 554.4825 558.36 1000 50 0.969884 +78 558.36 562.2375000000001 1000 50 0.88482004 +79 562.2375 566.115 1000 50 0.5723495 +80 566.115 569.9925000000001 1000 50 0.998898 +81 569.9925 573.87 1000 50 0.99996054 +82 577.7475 581.625 1000 50 0.75077754 +83 585.5025 589.3800000000001 1000 50 0.83997005 +84 589.38 593.2575 1000 50 0.9989071 +85 597.135 601.0125 1000 50 0.9803011 +86 601.0125 604.8900000000001 1000 50 0.6754917 +87 612.645 616.5225 1000 50 0.5528166 +88 620.4 624.2775 1000 50 0.5406008 +89 624.2775 628.1550000000001 1000 50 0.79650414 +90 635.91 639.7875 1000 50 0.9503217 +91 655.2975 659.1750000000001 1000 50 0.60724264 +92 666.93 670.8075 1000 50 0.53870696 +93 674.685 678.5625 1000 50 0.9900559 +94 678.5625 682.44 1000 50 0.9909671 +95 682.44 686.3175000000001 1000 50 0.55235904 +96 686.3175 690.195 1000 50 0.9999598 +97 690.195 694.0725000000001 1000 50 0.87434006 +98 694.0725 697.95 1000 50 0.6452889 +99 701.8275 705.705 1000 50 0.9999759 +100 713.46 717.3375000000001 1000 50 0.9900473 +101 725.0925 728.97 1000 50 0.99997914 +102 728.97 732.8475000000001 1000 50 0.9314358 +103 736.725 740.6025000000001 1000 50 0.99997914 +104 740.6025 744.48 1000 50 0.67270064 +105 744.48 748.3575000000001 1000 50 0.95605475 +106 748.3575 752.235 1000 50 0.89040124 +107 756.1125 759.99 1000 50 0.9994948 +108 787.1325 791.0100000000001 1000 50 0.86441606 +109 798.765 802.6425 1000 50 0.9284867 +110 802.6425 806.5200000000001 1000 50 0.5037032 +111 822.03 825.9075 1000 50 0.7920197 +112 845.295 849.1725 1000 50 0.9913263 +113 849.1725 853.0500000000001 1000 50 0.966046 +114 856.9275 860.8050000000001 1000 50 0.925572 +115 860.805 864.6825 1000 50 0.5251623 +116 864.6825 868.5600000000001 1000 50 0.99403596 +117 868.56 872.4375 1000 50 0.5247611 +118 872.4375 876.315 1000 50 0.7019299 +119 887.9475 891.825 1000 50 0.8908084 +120 891.825 895.7025000000001 1000 50 0.93953353 +121 911.2125 915.09 1000 50 0.68211395 +122 915.09 918.9675000000001 1000 50 0.57185644 +123 930.6 934.4775000000001 1000 50 0.74284214 +124 934.4775 938.355 1000 50 0.5949509 +125 938.355 942.2325000000001 1000 50 0.73254013 +126 949.9875 953.865 1000 50 0.7741699 +127 957.7425 961.62 1000 50 0.65332353 +128 977.13 981.0075 1000 50 0.9379323 +129 981.0075 984.8850000000001 1000 50 0.5248837 +130 984.885 988.7625 1000 50 0.78826153 +131 992.64 996.5175 1000 50 0.9956879 +132 996.5175 1000.3950000000001 1000 50 0.7201779 +133 1008.15 1012.0275 1000 50 0.75815344 +134 1012.0275 1015.9050000000001 1000 50 0.914797 +135 1015.905 1019.7825 1000 50 0.6985056 +136 1019.7825 1023.6600000000001 1000 50 0.6155204 +137 1023.66 1027.5375 1000 50 0.95426005 +138 1027.5375 1031.415 1000 50 0.5893339 +139 1031.415 1035.2925 1000 50 0.5988011 +140 1039.17 1043.0475000000001 1000 50 0.51678544 +141 1043.0475 1046.925 1000 50 0.5911132 +142 1058.5575 1062.435 1000 50 0.79617137 +143 1066.3125 1070.19 1000 50 0.63215816 +144 1085.7 1089.5775 1000 50 0.62066114 +145 1089.5775 1093.4550000000002 1000 50 0.96702677 +146 1093.455 1097.3325 1000 50 0.9785799 +147 1108.965 1112.8425 1000 50 0.9258795 +148 1116.72 1120.5975 1000 50 0.9996321 +149 1120.5975 1124.4750000000001 1000 50 0.99942756 +150 1124.475 1128.3525 1000 50 0.98611593 +151 1128.3525 1132.23 1000 50 0.8933315 +152 1132.23 1136.1075 1000 50 0.95147836 +153 1143.8625 1147.74 1000 50 0.63392264 +154 1147.74 1151.6175 1000 50 0.9829705 +155 1151.6175 1155.4950000000001 1000 50 0.50612015 +156 1155.495 1159.3725 1000 50 0.6398441 +157 1159.3725 1163.25 1000 50 0.63218665 +158 1163.25 1167.1275 1000 50 0.5019873 +159 1167.1275 1171.005 1000 50 0.9871308 +160 1186.515 1190.3925000000002 1000 50 0.98375136 +161 1190.3925 1194.27 1000 50 0.67017275 +162 1194.27 1198.1475 1000 50 0.872383 +163 1202.025 1205.9025000000001 1000 50 0.997664 +164 1205.9025 1209.78 1000 50 0.99231464 +165 1209.78 1213.6575 1000 50 0.9992347 +166 1213.6575 1217.535 1000 50 0.81707656 +167 1217.535 1221.4125000000001 1000 50 0.8655989 +168 1221.4125 1225.29 1000 50 0.9623786 +169 1229.1675 1233.045 1000 50 0.98966986 +170 1236.9225 1240.8 1000 50 0.683481 +171 1244.6775 1248.555 1000 50 0.7258167 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_17-24-26_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_17-24-26_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..6ff05d801913dab2791b19b3b5eccb559e845f3d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_17-24-26_annot_2022-11-30_01.txt @@ -0,0 +1,6 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.51915556 +2 11.6325 15.51 1000 50 0.52188534 +3 15.51 19.3875 1000 50 0.55097103 +4 23.265 27.142500000000002 1000 50 0.9572952 +5 34.8975 38.775 1000 50 0.63293934 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_18-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_18-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..246915a1e2ec4dc0d7ef89e1427487a207d1f4eb --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_18-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,301 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.65118015 +2 11.6325 15.51 1000 50 0.9179149 +3 15.51 19.3875 1000 50 0.6111598 +4 23.265 27.142500000000002 1000 50 0.93066216 +5 31.02 34.8975 1000 50 0.97462046 +6 34.8975 38.775 1000 50 0.98623604 +7 42.6525 46.53 1000 50 0.99997306 +8 50.4075 54.285 1000 50 0.5023789 +9 54.285 58.162499999999994 1000 50 0.993664 +10 58.1625 62.04 1000 50 0.8971443 +11 62.04 65.9175 1000 50 0.97958106 +12 65.9175 69.795 1000 50 0.9864972 +13 73.6725 77.55 1000 50 0.978462 +14 77.55 81.4275 1000 50 0.99886465 +15 81.4275 85.30499999999999 1000 50 0.99755293 +16 85.305 89.1825 1000 50 0.8662413 +17 89.1825 93.06 1000 50 0.99732983 +18 93.06 96.9375 1000 50 0.95914155 +19 96.9375 100.815 1000 50 0.8863992 +20 100.815 104.6925 1000 50 0.9924616 +21 124.08 127.9575 1000 50 0.724714 +22 127.9575 131.835 1000 50 0.8011156 +23 131.835 135.7125 1000 50 0.5748588 +24 139.59 143.4675 1000 50 0.74542934 +25 147.345 151.2225 1000 50 0.81870687 +26 151.2225 155.1 1000 50 0.9999964 +27 155.1 158.9775 1000 50 0.9981121 +28 158.9775 162.855 1000 50 0.9999045 +29 162.855 166.7325 1000 50 0.9999112 +30 170.61 174.4875 1000 50 0.9999883 +31 178.365 182.2425 1000 50 0.997547 +32 186.12 189.9975 1000 50 0.8857601 +33 189.9975 193.875 1000 50 0.99524987 +34 193.875 197.7525 1000 50 0.99624926 +35 197.7525 201.63 1000 50 0.6081085 +36 201.63 205.5075 1000 50 0.99999464 +37 205.5075 209.385 1000 50 0.99999964 +38 209.385 213.2625 1000 50 0.76209027 +39 213.2625 217.14 1000 50 0.9725577 +40 217.14 221.01749999999998 1000 50 0.9791905 +41 221.0175 224.895 1000 50 0.67611414 +42 228.7725 232.65 1000 50 0.99995923 +43 232.65 236.5275 1000 50 0.999987 +44 240.405 244.2825 1000 50 0.8920905 +45 244.2825 248.16 1000 50 0.8748573 +46 248.16 252.0375 1000 50 0.79591876 +47 252.0375 255.915 1000 50 0.99909055 +48 255.915 259.7925 1000 50 0.5960198 +49 263.67 267.5475 1000 50 0.98153234 +50 267.5475 271.425 1000 50 0.9605577 +51 271.425 275.3025 1000 50 0.87967473 +52 275.3025 279.18 1000 50 0.7254219 +53 294.69 298.5675 1000 50 0.99417263 +54 298.5675 302.445 1000 50 0.98464864 +55 306.3225 310.2 1000 50 0.9995797 +56 310.2 314.0775 1000 50 0.7278784 +57 314.0775 317.955 1000 50 0.6212142 +58 317.955 321.8325 1000 50 0.9852042 +59 325.71 329.5875 1000 50 0.9967464 +60 329.5875 333.465 1000 50 0.8300707 +61 337.3425 341.21999999999997 1000 50 0.5801996 +62 345.0975 348.975 1000 50 0.7522801 +63 348.975 352.8525 1000 50 0.83348864 +64 352.8525 356.73 1000 50 0.76811284 +65 356.73 360.6075 1000 50 0.5775903 +66 360.6075 364.485 1000 50 0.68621755 +67 364.485 368.3625 1000 50 0.9917448 +68 368.3625 372.24 1000 50 0.767861 +69 372.24 376.1175 1000 50 0.97642267 +70 376.1175 379.995 1000 50 0.998315 +71 383.8725 387.75 1000 50 0.98423636 +72 391.6275 395.505 1000 50 0.9984285 +73 395.505 399.3825 1000 50 0.9994772 +74 403.26 407.1375 1000 50 0.997603 +75 407.1375 411.015 1000 50 0.9964631 +76 411.015 414.8925 1000 50 0.8455445 +77 414.8925 418.77 1000 50 0.9957948 +78 418.77 422.6475 1000 50 0.9957818 +79 422.6475 426.525 1000 50 0.8678118 +80 426.525 430.4025 1000 50 0.9605438 +81 434.28 438.15749999999997 1000 50 0.99443877 +82 438.1575 442.035 1000 50 0.9866682 +83 445.9125 449.79 1000 50 0.9981337 +84 449.79 453.6675 1000 50 0.9999783 +85 453.6675 457.545 1000 50 0.7631654 +86 457.545 461.4225 1000 50 0.9919225 +87 461.4225 465.3 1000 50 0.9861426 +88 465.3 469.1775 1000 50 0.9996989 +89 469.1775 473.055 1000 50 0.89786434 +90 473.055 476.9325 1000 50 0.9773247 +91 476.9325 480.81 1000 50 0.7852132 +92 480.81 484.6875 1000 50 0.9947608 +93 484.6875 488.565 1000 50 0.9988763 +94 488.565 492.4425 1000 50 0.7777361 +95 492.4425 496.32 1000 50 0.9976387 +96 496.32 500.1975 1000 50 0.99833715 +97 500.1975 504.075 1000 50 0.89093375 +98 504.075 507.9525 1000 50 0.9790364 +99 507.9525 511.83 1000 50 0.5593481 +100 511.83 515.7075 1000 50 0.99687225 +101 515.7075 519.585 1000 50 0.73499846 +102 523.4625 527.34 1000 50 0.99979407 +103 527.34 531.2175000000001 1000 50 0.9997876 +104 535.095 538.9725000000001 1000 50 0.993772 +105 538.9725 542.85 1000 50 0.980022 +106 542.85 546.7275000000001 1000 50 0.63604945 +107 546.7275 550.605 1000 50 0.99990284 +108 550.605 554.4825000000001 1000 50 0.99979883 +109 554.4825 558.36 1000 50 0.99928194 +110 558.36 562.2375000000001 1000 50 0.9981797 +111 562.2375 566.115 1000 50 0.6915862 +112 569.9925 573.87 1000 50 0.9990663 +113 573.87 577.7475000000001 1000 50 0.9986455 +114 577.7475 581.625 1000 50 0.70412177 +115 581.625 585.5025 1000 50 0.66521174 +116 589.38 593.2575 1000 50 0.65522146 +117 593.2575 597.1350000000001 1000 50 0.9998473 +118 597.135 601.0125 1000 50 0.9993067 +119 604.89 608.7675 1000 50 0.5791984 +120 608.7675 612.6450000000001 1000 50 0.9113807 +121 624.2775 628.1550000000001 1000 50 0.91561824 +122 628.155 632.0325 1000 50 0.8485079 +123 632.0325 635.9100000000001 1000 50 0.99988925 +124 635.91 639.7875 1000 50 0.6398411 +125 639.7875 643.6650000000001 1000 50 0.653871 +126 643.665 647.5425 1000 50 0.999037 +127 647.5425 651.4200000000001 1000 50 0.58381 +128 655.2975 659.1750000000001 1000 50 0.5809892 +129 666.93 670.8075 1000 50 0.7064083 +130 670.8075 674.6850000000001 1000 50 0.62392724 +131 674.685 678.5625 1000 50 0.7642678 +132 678.5625 682.44 1000 50 0.5822141 +133 682.44 686.3175000000001 1000 50 0.91860396 +134 686.3175 690.195 1000 50 0.9690564 +135 690.195 694.0725000000001 1000 50 0.7006511 +136 694.0725 697.95 1000 50 0.99140173 +137 697.95 701.8275000000001 1000 50 0.69765717 +138 701.8275 705.705 1000 50 0.75041837 +139 705.705 709.5825000000001 1000 50 0.5955426 +140 709.5825 713.46 1000 50 0.9348953 +141 713.46 717.3375000000001 1000 50 0.7294665 +142 717.3375 721.215 1000 50 0.6607333 +143 721.215 725.0925000000001 1000 50 0.8692642 +144 725.0925 728.97 1000 50 0.97936434 +145 728.97 732.8475000000001 1000 50 0.9211839 +146 732.8475 736.725 1000 50 0.5821554 +147 736.725 740.6025000000001 1000 50 0.7257361 +148 740.6025 744.48 1000 50 0.92088556 +149 744.48 748.3575000000001 1000 50 0.81701595 +150 748.3575 752.235 1000 50 0.90731275 +151 759.99 763.8675000000001 1000 50 0.82118356 +152 763.8675 767.745 1000 50 0.9987914 +153 767.745 771.6225000000001 1000 50 0.98577154 +154 771.6225 775.5 1000 50 0.61495143 +155 775.5 779.3775 1000 50 0.9828964 +156 779.3775 783.2550000000001 1000 50 0.8457451 +157 783.255 787.1325 1000 50 0.9198931 +158 791.01 794.8875 1000 50 0.9989543 +159 794.8875 798.7650000000001 1000 50 0.8753852 +160 798.765 802.6425 1000 50 0.7035683 +161 802.6425 806.5200000000001 1000 50 0.99680614 +162 806.52 810.3975 1000 50 0.7984454 +163 818.1525 822.0300000000001 1000 50 0.9241021 +164 825.9075 829.7850000000001 1000 50 0.9774825 +165 829.785 833.6625 1000 50 0.7925701 +166 833.6625 837.5400000000001 1000 50 0.732243 +167 837.54 841.4175 1000 50 0.82694256 +168 845.295 849.1725 1000 50 0.9138444 +169 849.1725 853.0500000000001 1000 50 0.99741167 +170 853.05 856.9275 1000 50 0.9999813 +171 856.9275 860.8050000000001 1000 50 0.99201864 +172 860.805 864.6825 1000 50 0.9988105 +173 864.6825 868.5600000000001 1000 50 0.9998543 +174 868.56 872.4375 1000 50 0.9914982 +175 872.4375 876.315 1000 50 0.9922361 +176 880.1925 884.07 1000 50 0.6896951 +177 884.07 887.9475000000001 1000 50 0.5822315 +178 887.9475 891.825 1000 50 0.74643403 +179 891.825 895.7025000000001 1000 50 0.9993691 +180 907.335 911.2125000000001 1000 50 0.8127377 +181 911.2125 915.09 1000 50 0.9999677 +182 922.845 926.7225000000001 1000 50 0.51322985 +183 930.6 934.4775000000001 1000 50 0.6721099 +184 942.2325 946.11 1000 50 0.96884155 +185 957.7425 961.62 1000 50 0.57029885 +186 961.62 965.4975000000001 1000 50 0.5480384 +187 973.2525 977.1300000000001 1000 50 0.59229404 +188 1000.395 1004.2725 1000 50 0.9277611 +189 1008.15 1012.0275 1000 50 0.58320826 +190 1019.7825 1023.6600000000001 1000 50 0.652539 +191 1027.5375 1031.415 1000 50 0.6810877 +192 1031.415 1035.2925 1000 50 0.63906974 +193 1035.2925 1039.17 1000 50 0.6819855 +194 1039.17 1043.0475000000001 1000 50 0.68699986 +195 1050.8025 1054.68 1000 50 0.57846606 +196 1054.68 1058.5575000000001 1000 50 0.83669585 +197 1058.5575 1062.435 1000 50 0.85116637 +198 1062.435 1066.3125 1000 50 0.9999949 +199 1066.3125 1070.19 1000 50 0.9997243 +200 1070.19 1074.0675 1000 50 0.82957006 +201 1074.0675 1077.9450000000002 1000 50 0.8735005 +202 1077.945 1081.8225 1000 50 0.8499338 +203 1081.8225 1085.7 1000 50 0.9014425 +204 1085.7 1089.5775 1000 50 0.9993075 +205 1089.5775 1093.4550000000002 1000 50 0.58276945 +206 1093.455 1097.3325 1000 50 0.9519137 +207 1101.21 1105.0875 1000 50 0.9985409 +208 1105.0875 1108.9650000000001 1000 50 0.9981158 +209 1108.965 1112.8425 1000 50 0.9998492 +210 1112.8425 1116.72 1000 50 0.9989806 +211 1116.72 1120.5975 1000 50 0.85466075 +212 1120.5975 1124.4750000000001 1000 50 0.99804425 +213 1124.475 1128.3525 1000 50 0.85642225 +214 1132.23 1136.1075 1000 50 0.99984837 +215 1139.985 1143.8625 1000 50 0.999666 +216 1151.6175 1155.4950000000001 1000 50 0.96114904 +217 1155.495 1159.3725 1000 50 0.99995995 +218 1159.3725 1163.25 1000 50 0.96098506 +219 1163.25 1167.1275 1000 50 0.98208123 +220 1167.1275 1171.005 1000 50 0.8761209 +221 1171.005 1174.8825000000002 1000 50 0.99879646 +222 1174.8825 1178.76 1000 50 0.9985631 +223 1178.76 1182.6375 1000 50 0.9967475 +224 1182.6375 1186.515 1000 50 0.99970835 +225 1186.515 1190.3925000000002 1000 50 0.9916169 +226 1190.3925 1194.27 1000 50 0.9919567 +227 1194.27 1198.1475 1000 50 0.9988564 +228 1198.1475 1202.025 1000 50 0.8072031 +229 1202.025 1205.9025000000001 1000 50 0.9998385 +230 1205.9025 1209.78 1000 50 0.95366067 +231 1209.78 1213.6575 1000 50 0.9203015 +232 1213.6575 1217.535 1000 50 0.94661367 +233 1217.535 1221.4125000000001 1000 50 0.99715936 +234 1221.4125 1225.29 1000 50 0.98651797 +235 1225.29 1229.1675 1000 50 0.9958126 +236 1229.1675 1233.045 1000 50 0.9975495 +237 1233.045 1236.9225000000001 1000 50 0.99906904 +238 1236.9225 1240.8 1000 50 0.99995303 +239 1240.8 1244.6775 1000 50 0.99998915 +240 1244.6775 1248.555 1000 50 0.9698655 +241 1248.555 1252.4325000000001 1000 50 0.9994804 +242 1252.4325 1256.31 1000 50 0.9988932 +243 1260.1875 1264.065 1000 50 0.9993098 +244 1264.065 1267.9425 1000 50 0.98847336 +245 1267.9425 1271.8200000000002 1000 50 0.9957979 +246 1271.82 1275.6975 1000 50 0.8571617 +247 1275.6975 1279.575 1000 50 0.999966 +248 1279.575 1283.4525 1000 50 0.9988502 +249 1283.4525 1287.3300000000002 1000 50 0.99939 +250 1287.33 1291.2075 1000 50 0.99356836 +251 1291.2075 1295.085 1000 50 0.9998005 +252 1298.9625 1302.8400000000001 1000 50 0.9999559 +253 1302.84 1306.7175 1000 50 0.9758935 +254 1306.7175 1310.595 1000 50 0.9999342 +255 1310.595 1314.4725 1000 50 0.99206114 +256 1314.4725 1318.3500000000001 1000 50 0.9014293 +257 1318.35 1322.2275 1000 50 0.9983187 +258 1322.2275 1326.105 1000 50 0.9965403 +259 1326.105 1329.9825 1000 50 0.95644796 +260 1329.9825 1333.8600000000001 1000 50 0.96029323 +261 1333.86 1337.7375 1000 50 0.98863006 +262 1337.7375 1341.615 1000 50 0.98924214 +263 1341.615 1345.4925 1000 50 0.62793195 +264 1345.4925 1349.3700000000001 1000 50 0.9955569 +265 1349.37 1353.2475 1000 50 0.9991002 +266 1353.2475 1357.125 1000 50 0.99991035 +267 1357.125 1361.0025 1000 50 0.7717848 +268 1361.0025 1364.88 1000 50 0.6922794 +269 1364.88 1368.7575000000002 1000 50 0.9999893 +270 1368.7575 1372.635 1000 50 0.99578804 +271 1372.635 1376.5125 1000 50 0.9896186 +272 1376.5125 1380.39 1000 50 0.9804121 +273 1380.39 1384.2675000000002 1000 50 0.90549004 +274 1384.2675 1388.145 1000 50 0.97242796 +275 1388.145 1392.0225 1000 50 0.8583896 +276 1392.0225 1395.9 1000 50 0.999984 +277 1395.9 1399.7775000000001 1000 50 0.8544954 +278 1399.7775 1403.655 1000 50 0.97513866 +279 1403.655 1407.5325 1000 50 0.87830347 +280 1407.5325 1411.41 1000 50 0.9131439 +281 1411.41 1415.2875000000001 1000 50 0.91442776 +282 1415.2875 1419.165 1000 50 0.7768632 +283 1419.165 1423.0425 1000 50 0.9992255 +284 1423.0425 1426.92 1000 50 0.98230064 +285 1426.92 1430.7975000000001 1000 50 0.9999852 +286 1430.7975 1434.675 1000 50 0.99999154 +287 1438.5525 1442.43 1000 50 0.9995586 +288 1442.43 1446.3075000000001 1000 50 0.9909945 +289 1446.3075 1450.185 1000 50 0.99840826 +290 1450.185 1454.0625 1000 50 0.99990094 +291 1454.0625 1457.94 1000 50 1.0 +292 1457.94 1461.8175 1000 50 0.9999887 +293 1461.8175 1465.6950000000002 1000 50 0.99956554 +294 1465.695 1469.5725 1000 50 0.9796417 +295 1469.5725 1473.45 1000 50 0.9999964 +296 1473.45 1477.3275 1000 50 0.99974316 +297 1477.3275 1481.2050000000002 1000 50 0.99998856 +298 1481.205 1485.0825 1000 50 0.999987 +299 1485.0825 1488.96 1000 50 0.999775 +300 1488.96 1492.8375 1000 50 0.8867668 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_19-01-53_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_19-01-53_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..bea696760dcd30695f67c07a4c81a4784623fcf1 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_19-01-53_annot_2022-11-30_01.txt @@ -0,0 +1,319 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999795 +2 3.8775 7.755 1000 50 0.8603527 +3 7.755 11.6325 1000 50 0.9994435 +4 11.6325 15.51 1000 50 0.999806 +5 15.51 19.3875 1000 50 0.7877062 +6 19.3875 23.265 1000 50 0.9984603 +7 23.265 27.142500000000002 1000 50 0.9983729 +8 27.1425 31.02 1000 50 0.9996729 +9 31.02 34.8975 1000 50 0.968728 +10 38.775 42.652499999999996 1000 50 0.9992132 +11 42.6525 46.53 1000 50 0.9901412 +12 46.53 50.4075 1000 50 0.9691309 +13 50.4075 54.285 1000 50 0.8467745 +14 54.285 58.162499999999994 1000 50 0.9949361 +15 58.1625 62.04 1000 50 0.9941415 +16 62.04 65.9175 1000 50 0.93032175 +17 65.9175 69.795 1000 50 0.98870265 +18 69.795 73.6725 1000 50 0.996349 +19 73.6725 77.55 1000 50 0.99978524 +20 85.305 89.1825 1000 50 0.9983929 +21 89.1825 93.06 1000 50 0.92092985 +22 93.06 96.9375 1000 50 0.7635105 +23 96.9375 100.815 1000 50 0.95862037 +24 100.815 104.6925 1000 50 0.5923613 +25 104.6925 108.57 1000 50 0.9859713 +26 108.57 112.44749999999999 1000 50 0.8654317 +27 112.4475 116.325 1000 50 0.813395 +28 116.325 120.2025 1000 50 0.9996834 +29 120.2025 124.08 1000 50 0.98570734 +30 127.9575 131.835 1000 50 0.7892417 +31 131.835 135.7125 1000 50 0.86704844 +32 135.7125 139.59 1000 50 0.9949561 +33 139.59 143.4675 1000 50 0.9789545 +34 143.4675 147.345 1000 50 0.98116815 +35 151.2225 155.1 1000 50 0.60883284 +36 155.1 158.9775 1000 50 0.97710377 +37 158.9775 162.855 1000 50 0.9951652 +38 162.855 166.7325 1000 50 0.92599213 +39 166.7325 170.60999999999999 1000 50 0.5850936 +40 174.4875 178.365 1000 50 0.8756674 +41 178.365 182.2425 1000 50 0.9969903 +42 182.2425 186.12 1000 50 0.99916184 +43 186.12 189.9975 1000 50 0.9976259 +44 189.9975 193.875 1000 50 0.8321653 +45 193.875 197.7525 1000 50 0.87950706 +46 197.7525 201.63 1000 50 0.9987956 +47 201.63 205.5075 1000 50 0.97054684 +48 205.5075 209.385 1000 50 0.913054 +49 209.385 213.2625 1000 50 0.99918026 +50 213.2625 217.14 1000 50 0.9751006 +51 217.14 221.01749999999998 1000 50 0.99996984 +52 224.895 228.7725 1000 50 0.9998392 +53 228.7725 232.65 1000 50 0.99891734 +54 232.65 236.5275 1000 50 0.82005334 +55 236.5275 240.405 1000 50 0.9752122 +56 240.405 244.2825 1000 50 0.99170387 +57 244.2825 248.16 1000 50 0.9998375 +58 252.0375 255.915 1000 50 0.996854 +59 255.915 259.7925 1000 50 0.9999199 +60 259.7925 263.67 1000 50 0.9991234 +61 263.67 267.5475 1000 50 0.9087347 +62 267.5475 271.425 1000 50 0.9691086 +63 271.425 275.3025 1000 50 0.99051183 +64 275.3025 279.18 1000 50 0.99999964 +65 279.18 283.0575 1000 50 0.5479006 +66 286.935 290.8125 1000 50 0.97544837 +67 290.8125 294.69 1000 50 0.8485274 +68 294.69 298.5675 1000 50 0.99943584 +69 298.5675 302.445 1000 50 0.99999726 +70 302.445 306.3225 1000 50 0.97977394 +71 306.3225 310.2 1000 50 0.72405136 +72 310.2 314.0775 1000 50 0.9999887 +73 314.0775 317.955 1000 50 0.85035264 +74 317.955 321.8325 1000 50 0.9992717 +75 321.8325 325.71 1000 50 0.9996673 +76 325.71 329.5875 1000 50 0.8578321 +77 329.5875 333.465 1000 50 0.9982216 +78 333.465 337.3425 1000 50 0.98897946 +79 337.3425 341.21999999999997 1000 50 0.9948318 +80 341.22 345.0975 1000 50 0.5895553 +81 345.0975 348.975 1000 50 0.9995352 +82 348.975 352.8525 1000 50 0.9943851 +83 352.8525 356.73 1000 50 0.9999858 +84 356.73 360.6075 1000 50 0.93482196 +85 360.6075 364.485 1000 50 0.96734804 +86 364.485 368.3625 1000 50 0.99870455 +87 368.3625 372.24 1000 50 0.99988544 +88 372.24 376.1175 1000 50 0.9254124 +89 376.1175 379.995 1000 50 0.9895474 +90 379.995 383.8725 1000 50 0.99993134 +91 383.8725 387.75 1000 50 0.99997854 +92 387.75 391.6275 1000 50 0.9875289 +93 391.6275 395.505 1000 50 0.9969253 +94 395.505 399.3825 1000 50 0.99933225 +95 399.3825 403.26 1000 50 0.9954774 +96 407.1375 411.015 1000 50 0.8079052 +97 411.015 414.8925 1000 50 0.61243093 +98 414.8925 418.77 1000 50 0.99908507 +99 418.77 422.6475 1000 50 0.9991916 +100 422.6475 426.525 1000 50 0.93805057 +101 426.525 430.4025 1000 50 0.99963677 +102 430.4025 434.28 1000 50 0.65436274 +103 434.28 438.15749999999997 1000 50 0.99732757 +104 438.1575 442.035 1000 50 0.98607033 +105 442.035 445.9125 1000 50 0.9662537 +106 445.9125 449.79 1000 50 0.95944333 +107 449.79 453.6675 1000 50 0.9999778 +108 453.6675 457.545 1000 50 0.8997795 +109 457.545 461.4225 1000 50 0.9990314 +110 461.4225 465.3 1000 50 0.99999 +111 465.3 469.1775 1000 50 0.87982917 +112 469.1775 473.055 1000 50 0.9993486 +113 473.055 476.9325 1000 50 0.97482276 +114 476.9325 480.81 1000 50 0.9034668 +115 480.81 484.6875 1000 50 0.51450366 +116 484.6875 488.565 1000 50 0.99997437 +117 488.565 492.4425 1000 50 0.99816316 +118 492.4425 496.32 1000 50 0.9997967 +119 496.32 500.1975 1000 50 0.98804086 +120 500.1975 504.075 1000 50 0.8290844 +121 504.075 507.9525 1000 50 0.6812867 +122 507.9525 511.83 1000 50 0.54418 +123 511.83 515.7075 1000 50 0.99991405 +124 515.7075 519.585 1000 50 0.63941264 +125 519.585 523.4625000000001 1000 50 0.9879991 +126 523.4625 527.34 1000 50 0.99440926 +127 527.34 531.2175000000001 1000 50 0.722278 +128 531.2175 535.095 1000 50 0.9974196 +129 535.095 538.9725000000001 1000 50 0.9999931 +130 538.9725 542.85 1000 50 0.78986186 +131 542.85 546.7275000000001 1000 50 0.79610866 +132 546.7275 550.605 1000 50 0.9988951 +133 550.605 554.4825000000001 1000 50 0.9875338 +134 554.4825 558.36 1000 50 0.9160001 +135 558.36 562.2375000000001 1000 50 0.99181175 +136 562.2375 566.115 1000 50 0.9981505 +137 566.115 569.9925000000001 1000 50 0.946105 +138 569.9925 573.87 1000 50 0.98963785 +139 573.87 577.7475000000001 1000 50 0.9154453 +140 577.7475 581.625 1000 50 0.97140795 +141 581.625 585.5025 1000 50 0.92346203 +142 585.5025 589.3800000000001 1000 50 0.9983901 +143 589.38 593.2575 1000 50 0.9983924 +144 593.2575 597.1350000000001 1000 50 0.9691431 +145 597.135 601.0125 1000 50 0.56533617 +146 601.0125 604.8900000000001 1000 50 0.64710456 +147 604.89 608.7675 1000 50 0.8381776 +148 608.7675 612.6450000000001 1000 50 0.9972766 +149 612.645 616.5225 1000 50 0.99010086 +150 616.5225 620.4000000000001 1000 50 0.99997497 +151 620.4 624.2775 1000 50 0.99999416 +152 624.2775 628.1550000000001 1000 50 0.9999418 +153 628.155 632.0325 1000 50 0.99961805 +154 632.0325 635.9100000000001 1000 50 0.9684713 +155 639.7875 643.6650000000001 1000 50 0.99975187 +156 643.665 647.5425 1000 50 0.9955284 +157 647.5425 651.4200000000001 1000 50 0.6637469 +158 651.42 655.2975 1000 50 0.9997031 +159 655.2975 659.1750000000001 1000 50 0.99951255 +160 663.0525 666.9300000000001 1000 50 0.60883284 +161 666.93 670.8075 1000 50 0.8891383 +162 670.8075 674.6850000000001 1000 50 0.9936335 +163 678.5625 682.44 1000 50 0.9288882 +164 682.44 686.3175000000001 1000 50 0.997047 +165 686.3175 690.195 1000 50 0.9289543 +166 690.195 694.0725000000001 1000 50 0.9992124 +167 694.0725 697.95 1000 50 0.99998534 +168 697.95 701.8275000000001 1000 50 0.59802413 +169 701.8275 705.705 1000 50 0.99819833 +170 705.705 709.5825000000001 1000 50 0.9974644 +171 709.5825 713.46 1000 50 0.98159283 +172 717.3375 721.215 1000 50 0.99877983 +173 721.215 725.0925000000001 1000 50 0.6556686 +174 728.97 732.8475000000001 1000 50 0.55178154 +175 732.8475 736.725 1000 50 0.9984049 +176 736.725 740.6025000000001 1000 50 0.8709243 +177 740.6025 744.48 1000 50 0.6098587 +178 744.48 748.3575000000001 1000 50 0.9646418 +179 752.235 756.1125000000001 1000 50 0.52742016 +180 759.99 763.8675000000001 1000 50 0.7838422 +181 763.8675 767.745 1000 50 0.99998844 +182 767.745 771.6225000000001 1000 50 0.52583194 +183 771.6225 775.5 1000 50 0.66807127 +184 775.5 779.3775 1000 50 0.9998448 +185 779.3775 783.2550000000001 1000 50 0.94255483 +186 783.255 787.1325 1000 50 0.86777973 +187 787.1325 791.0100000000001 1000 50 0.9265035 +188 794.8875 798.7650000000001 1000 50 0.9951592 +189 798.765 802.6425 1000 50 0.9377118 +190 802.6425 806.5200000000001 1000 50 0.88812846 +191 806.52 810.3975 1000 50 0.7164682 +192 810.3975 814.2750000000001 1000 50 0.9908828 +193 814.275 818.1525 1000 50 0.9669495 +194 818.1525 822.0300000000001 1000 50 0.9824385 +195 822.03 825.9075 1000 50 0.99910384 +196 833.6625 837.5400000000001 1000 50 0.9386795 +197 837.54 841.4175 1000 50 0.562806 +198 845.295 849.1725 1000 50 0.9358765 +199 849.1725 853.0500000000001 1000 50 0.61550826 +200 853.05 856.9275 1000 50 0.9751648 +201 860.805 864.6825 1000 50 0.9828966 +202 864.6825 868.5600000000001 1000 50 0.6052698 +203 868.56 872.4375 1000 50 0.99425465 +204 872.4375 876.315 1000 50 0.9986677 +205 876.315 880.1925000000001 1000 50 0.77373207 +206 880.1925 884.07 1000 50 0.5625252 +207 884.07 887.9475000000001 1000 50 0.7215768 +208 887.9475 891.825 1000 50 0.998425 +209 891.825 895.7025000000001 1000 50 0.90577495 +210 895.7025 899.58 1000 50 0.5161594 +211 899.58 903.4575000000001 1000 50 0.9093415 +212 907.335 911.2125000000001 1000 50 0.6065369 +213 911.2125 915.09 1000 50 0.86701596 +214 922.845 926.7225000000001 1000 50 0.62560385 +215 934.4775 938.355 1000 50 0.9777778 +216 938.355 942.2325000000001 1000 50 0.98865813 +217 942.2325 946.11 1000 50 0.7450181 +218 957.7425 961.62 1000 50 0.9790947 +219 961.62 965.4975000000001 1000 50 0.6797633 +220 965.4975 969.375 1000 50 0.67129976 +221 981.0075 984.8850000000001 1000 50 0.56489366 +222 988.7625 992.6400000000001 1000 50 0.99948394 +223 992.64 996.5175 1000 50 0.71864736 +224 996.5175 1000.3950000000001 1000 50 0.78982455 +225 1000.395 1004.2725 1000 50 0.99989796 +226 1004.2725 1008.1500000000001 1000 50 0.9599314 +227 1008.15 1012.0275 1000 50 0.93082726 +228 1012.0275 1015.9050000000001 1000 50 0.96369416 +229 1015.905 1019.7825 1000 50 0.99811697 +230 1019.7825 1023.6600000000001 1000 50 0.999553 +231 1023.66 1027.5375 1000 50 0.9899588 +232 1027.5375 1031.415 1000 50 0.68347716 +233 1031.415 1035.2925 1000 50 0.99943477 +234 1035.2925 1039.17 1000 50 0.9807271 +235 1039.17 1043.0475000000001 1000 50 0.99999845 +236 1043.0475 1046.925 1000 50 0.9906226 +237 1046.925 1050.8025 1000 50 0.7363332 +238 1050.8025 1054.68 1000 50 0.9981749 +239 1058.5575 1062.435 1000 50 0.96208614 +240 1062.435 1066.3125 1000 50 0.99885774 +241 1066.3125 1070.19 1000 50 0.99614906 +242 1070.19 1074.0675 1000 50 0.99850994 +243 1074.0675 1077.9450000000002 1000 50 0.99684155 +244 1077.945 1081.8225 1000 50 0.99999607 +245 1085.7 1089.5775 1000 50 0.9926664 +246 1089.5775 1093.4550000000002 1000 50 0.9999715 +247 1097.3325 1101.21 1000 50 0.99387807 +248 1101.21 1105.0875 1000 50 0.9963237 +249 1105.0875 1108.9650000000001 1000 50 0.8234465 +250 1108.965 1112.8425 1000 50 0.8794144 +251 1112.8425 1116.72 1000 50 0.86495036 +252 1116.72 1120.5975 1000 50 0.7167983 +253 1120.5975 1124.4750000000001 1000 50 0.9999535 +254 1124.475 1128.3525 1000 50 0.99994135 +255 1128.3525 1132.23 1000 50 0.9997187 +256 1136.1075 1139.9850000000001 1000 50 0.99999964 +257 1139.985 1143.8625 1000 50 0.9820433 +258 1143.8625 1147.74 1000 50 0.89692223 +259 1147.74 1151.6175 1000 50 0.99298805 +260 1151.6175 1155.4950000000001 1000 50 0.9993125 +261 1155.495 1159.3725 1000 50 0.99999416 +262 1159.3725 1163.25 1000 50 0.9950003 +263 1163.25 1167.1275 1000 50 0.9999908 +264 1167.1275 1171.005 1000 50 0.99729675 +265 1171.005 1174.8825000000002 1000 50 0.94808054 +266 1174.8825 1178.76 1000 50 0.9029279 +267 1178.76 1182.6375 1000 50 0.6234807 +268 1182.6375 1186.515 1000 50 0.9993113 +269 1186.515 1190.3925000000002 1000 50 0.9999722 +270 1190.3925 1194.27 1000 50 0.9810853 +271 1194.27 1198.1475 1000 50 0.8861803 +272 1198.1475 1202.025 1000 50 0.8865683 +273 1202.025 1205.9025000000001 1000 50 0.9994429 +274 1205.9025 1209.78 1000 50 0.9779589 +275 1209.78 1213.6575 1000 50 0.7920627 +276 1213.6575 1217.535 1000 50 0.87430656 +277 1217.535 1221.4125000000001 1000 50 0.7988325 +278 1221.4125 1225.29 1000 50 0.9318278 +279 1225.29 1229.1675 1000 50 0.99167913 +280 1229.1675 1233.045 1000 50 0.9735475 +281 1233.045 1236.9225000000001 1000 50 0.9957801 +282 1236.9225 1240.8 1000 50 0.9999218 +283 1240.8 1244.6775 1000 50 0.9999958 +284 1244.6775 1248.555 1000 50 0.8714523 +285 1248.555 1252.4325000000001 1000 50 0.9968419 +286 1252.4325 1256.31 1000 50 0.9997192 +287 1256.31 1260.1875 1000 50 0.9860131 +288 1260.1875 1264.065 1000 50 0.9875053 +289 1264.065 1267.9425 1000 50 0.9999385 +290 1267.9425 1271.8200000000002 1000 50 0.98848045 +291 1275.6975 1279.575 1000 50 0.9936698 +292 1279.575 1283.4525 1000 50 0.80481595 +293 1283.4525 1287.3300000000002 1000 50 0.84053046 +294 1287.33 1291.2075 1000 50 0.9922982 +295 1291.2075 1295.085 1000 50 0.9779889 +296 1295.085 1298.9625 1000 50 0.9977557 +297 1298.9625 1302.8400000000001 1000 50 0.99972934 +298 1302.84 1306.7175 1000 50 0.9867858 +299 1306.7175 1310.595 1000 50 0.959313 +300 1310.595 1314.4725 1000 50 0.9998286 +301 1314.4725 1318.3500000000001 1000 50 0.7911946 +302 1318.35 1322.2275 1000 50 0.995849 +303 1322.2275 1326.105 1000 50 0.8000222 +304 1326.105 1329.9825 1000 50 0.98472655 +305 1333.86 1337.7375 1000 50 0.9676138 +306 1337.7375 1341.615 1000 50 0.9728127 +307 1341.615 1345.4925 1000 50 0.7616025 +308 1349.37 1353.2475 1000 50 0.9999343 +309 1353.2475 1357.125 1000 50 0.7793197 +310 1357.125 1361.0025 1000 50 0.9940753 +311 1361.0025 1364.88 1000 50 0.89718807 +312 1364.88 1368.7575000000002 1000 50 0.88807 +313 1368.7575 1372.635 1000 50 0.8654439 +314 1372.635 1376.5125 1000 50 0.9608257 +315 1376.5125 1380.39 1000 50 0.9802991 +316 1380.39 1384.2675000000002 1000 50 0.81621724 +317 1384.2675 1388.145 1000 50 0.7950948 +318 1388.145 1392.0225 1000 50 0.8682716 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_20-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_20-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..157514b525244430ed01d06ec321bdbc2fcacb18 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_20-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,32 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99883026 +2 3.8775 7.755 1000 50 0.99996245 +3 7.755 11.6325 1000 50 0.99953985 +4 15.51 19.3875 1000 50 0.83031553 +5 31.02 34.8975 1000 50 0.7749301 +6 34.8975 38.775 1000 50 0.6515041 +7 42.6525 46.53 1000 50 0.9997296 +8 46.53 50.4075 1000 50 0.9352035 +9 50.4075 54.285 1000 50 0.74201494 +10 54.285 58.162499999999994 1000 50 0.99174094 +11 58.1625 62.04 1000 50 0.9173707 +12 62.04 65.9175 1000 50 0.5270076 +13 65.9175 69.795 1000 50 0.95533514 +14 77.55 81.4275 1000 50 0.99999785 +15 85.305 89.1825 1000 50 0.9520641 +16 89.1825 93.06 1000 50 0.99219656 +17 96.9375 100.815 1000 50 0.98811835 +18 100.815 104.6925 1000 50 0.99804616 +19 108.57 112.44749999999999 1000 50 0.9672422 +20 112.4475 116.325 1000 50 0.9829075 +21 120.2025 124.08 1000 50 0.9945068 +22 135.7125 139.59 1000 50 0.55615634 +23 143.4675 147.345 1000 50 0.89778465 +24 151.2225 155.1 1000 50 0.96831 +25 155.1 158.9775 1000 50 0.91645706 +26 158.9775 162.855 1000 50 0.9781367 +27 170.61 174.4875 1000 50 0.72732216 +28 182.2425 186.12 1000 50 0.7645779 +29 186.12 189.9975 1000 50 0.832773 +30 197.7525 201.63 1000 50 0.5195307 +31 201.63 205.5075 1000 50 0.50395447 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_20-09-02_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_20-09-02_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..736793971bd7218c27b97bea742672e9aa339081 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_20-09-02_annot_2022-11-30_01.txt @@ -0,0 +1,209 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.93317795 +2 7.755 11.6325 1000 50 0.9995579 +3 11.6325 15.51 1000 50 0.99973303 +4 15.51 19.3875 1000 50 0.99886143 +5 19.3875 23.265 1000 50 0.7162539 +6 23.265 27.142500000000002 1000 50 0.99993193 +7 27.1425 31.02 1000 50 0.892883 +8 31.02 34.8975 1000 50 0.9999218 +9 34.8975 38.775 1000 50 0.9999999 +10 38.775 42.652499999999996 1000 50 0.689926 +11 42.6525 46.53 1000 50 0.9996629 +12 46.53 50.4075 1000 50 0.999521 +13 50.4075 54.285 1000 50 0.94366264 +14 54.285 58.162499999999994 1000 50 0.9999713 +15 58.1625 62.04 1000 50 0.99989474 +16 62.04 65.9175 1000 50 0.98802525 +17 65.9175 69.795 1000 50 0.99940157 +18 69.795 73.6725 1000 50 0.9981477 +19 73.6725 77.55 1000 50 0.9922977 +20 77.55 81.4275 1000 50 0.9999654 +21 81.4275 85.30499999999999 1000 50 0.8785701 +22 85.305 89.1825 1000 50 0.9884477 +23 89.1825 93.06 1000 50 0.9997298 +24 93.06 96.9375 1000 50 0.51933473 +25 96.9375 100.815 1000 50 0.97363156 +26 100.815 104.6925 1000 50 0.99991953 +27 104.6925 108.57 1000 50 0.99744403 +28 108.57 112.44749999999999 1000 50 0.97917753 +29 112.4475 116.325 1000 50 0.9999831 +30 116.325 120.2025 1000 50 0.9982338 +31 120.2025 124.08 1000 50 0.9986772 +32 127.9575 131.835 1000 50 0.9649255 +33 131.835 135.7125 1000 50 0.9999418 +34 135.7125 139.59 1000 50 0.75246334 +35 139.59 143.4675 1000 50 0.73866355 +36 143.4675 147.345 1000 50 0.9760423 +37 147.345 151.2225 1000 50 0.9996618 +38 151.2225 155.1 1000 50 0.99995077 +39 155.1 158.9775 1000 50 0.799483 +40 158.9775 162.855 1000 50 0.61576885 +41 162.855 166.7325 1000 50 0.9256262 +42 166.7325 170.60999999999999 1000 50 0.9988457 +43 170.61 174.4875 1000 50 0.9906805 +44 174.4875 178.365 1000 50 0.8328637 +45 178.365 182.2425 1000 50 0.9997671 +46 182.2425 186.12 1000 50 0.82306266 +47 186.12 189.9975 1000 50 0.9999833 +48 189.9975 193.875 1000 50 0.99879944 +49 193.875 197.7525 1000 50 0.7692241 +50 197.7525 201.63 1000 50 0.9960502 +51 201.63 205.5075 1000 50 0.9999018 +52 205.5075 209.385 1000 50 0.9868543 +53 209.385 213.2625 1000 50 0.999998 +54 213.2625 217.14 1000 50 0.7442455 +55 217.14 221.01749999999998 1000 50 0.9990922 +56 221.0175 224.895 1000 50 0.99772376 +57 224.895 228.7725 1000 50 0.96860284 +58 228.7725 232.65 1000 50 0.9386815 +59 232.65 236.5275 1000 50 0.99796 +60 236.5275 240.405 1000 50 0.928417 +61 244.2825 248.16 1000 50 0.99046105 +62 252.0375 255.915 1000 50 0.92610276 +63 255.915 259.7925 1000 50 0.90385884 +64 259.7925 263.67 1000 50 0.98342574 +65 263.67 267.5475 1000 50 0.85640574 +66 267.5475 271.425 1000 50 0.9186222 +67 275.3025 279.18 1000 50 0.765143 +68 279.18 283.0575 1000 50 0.799631 +69 283.0575 286.935 1000 50 0.87355506 +70 286.935 290.8125 1000 50 0.99706846 +71 290.8125 294.69 1000 50 0.9970227 +72 294.69 298.5675 1000 50 0.8609316 +73 298.5675 302.445 1000 50 0.9488642 +74 302.445 306.3225 1000 50 0.9070541 +75 306.3225 310.2 1000 50 0.7138095 +76 310.2 314.0775 1000 50 0.5555929 +77 314.0775 317.955 1000 50 0.55715257 +78 321.8325 325.71 1000 50 0.95116204 +79 329.5875 333.465 1000 50 0.628592 +80 341.22 345.0975 1000 50 0.91396195 +81 352.8525 356.73 1000 50 0.7377488 +82 364.485 368.3625 1000 50 0.959179 +83 368.3625 372.24 1000 50 0.6879565 +84 372.24 376.1175 1000 50 0.87024534 +85 376.1175 379.995 1000 50 0.6783168 +86 379.995 383.8725 1000 50 0.5973124 +87 383.8725 387.75 1000 50 0.8673227 +88 391.6275 395.505 1000 50 0.6650911 +89 403.26 407.1375 1000 50 0.97252786 +90 407.1375 411.015 1000 50 0.7353639 +91 411.015 414.8925 1000 50 0.987463 +92 414.8925 418.77 1000 50 0.9998431 +93 418.77 422.6475 1000 50 0.9950252 +94 422.6475 426.525 1000 50 0.77654445 +95 426.525 430.4025 1000 50 0.93571484 +96 430.4025 434.28 1000 50 0.99922717 +97 434.28 438.15749999999997 1000 50 0.84160906 +98 445.9125 449.79 1000 50 0.9994318 +99 453.6675 457.545 1000 50 0.9726226 +100 457.545 461.4225 1000 50 0.9970823 +101 461.4225 465.3 1000 50 0.9955682 +102 465.3 469.1775 1000 50 0.8067703 +103 469.1775 473.055 1000 50 0.5907742 +104 473.055 476.9325 1000 50 0.9712866 +105 476.9325 480.81 1000 50 0.7739975 +106 484.6875 488.565 1000 50 0.77023685 +107 488.565 492.4425 1000 50 0.6728973 +108 492.4425 496.32 1000 50 0.97292525 +109 496.32 500.1975 1000 50 0.67151076 +110 507.9525 511.83 1000 50 0.702584 +111 515.7075 519.585 1000 50 0.8287981 +112 527.34 531.2175000000001 1000 50 0.8515692 +113 538.9725 542.85 1000 50 0.76518196 +114 542.85 546.7275000000001 1000 50 0.7220295 +115 550.605 554.4825000000001 1000 50 0.98017335 +116 558.36 562.2375000000001 1000 50 0.991335 +117 562.2375 566.115 1000 50 0.99974316 +118 566.115 569.9925000000001 1000 50 0.9563015 +119 569.9925 573.87 1000 50 0.8307745 +120 573.87 577.7475000000001 1000 50 0.5091456 +121 581.625 585.5025 1000 50 0.79513955 +122 585.5025 589.3800000000001 1000 50 0.93777746 +123 589.38 593.2575 1000 50 0.697582 +124 593.2575 597.1350000000001 1000 50 0.9970571 +125 597.135 601.0125 1000 50 0.9916933 +126 601.0125 604.8900000000001 1000 50 0.9999461 +127 604.89 608.7675 1000 50 0.9923528 +128 608.7675 612.6450000000001 1000 50 0.5016858 +129 616.5225 620.4000000000001 1000 50 0.99848926 +130 620.4 624.2775 1000 50 0.99493957 +131 628.155 632.0325 1000 50 0.9996697 +132 632.0325 635.9100000000001 1000 50 0.9374666 +133 635.91 639.7875 1000 50 0.9999713 +134 639.7875 643.6650000000001 1000 50 0.82270503 +135 643.665 647.5425 1000 50 0.9990754 +136 647.5425 651.4200000000001 1000 50 0.8708369 +137 651.42 655.2975 1000 50 0.8099062 +138 655.2975 659.1750000000001 1000 50 0.66098344 +139 663.0525 666.9300000000001 1000 50 0.99971396 +140 666.93 670.8075 1000 50 0.9891803 +141 670.8075 674.6850000000001 1000 50 0.9885096 +142 674.685 678.5625 1000 50 0.9358386 +143 678.5625 682.44 1000 50 0.98968714 +144 682.44 686.3175000000001 1000 50 0.9995902 +145 686.3175 690.195 1000 50 0.99997926 +146 690.195 694.0725000000001 1000 50 0.9965096 +147 694.0725 697.95 1000 50 0.9995926 +148 697.95 701.8275000000001 1000 50 0.9999877 +149 701.8275 705.705 1000 50 0.8818794 +150 705.705 709.5825000000001 1000 50 0.9966229 +151 709.5825 713.46 1000 50 0.9923064 +152 713.46 717.3375000000001 1000 50 0.99190474 +153 717.3375 721.215 1000 50 0.9558307 +154 721.215 725.0925000000001 1000 50 0.9994629 +155 725.0925 728.97 1000 50 0.9784434 +156 728.97 732.8475000000001 1000 50 0.9998129 +157 732.8475 736.725 1000 50 0.9998018 +158 736.725 740.6025000000001 1000 50 0.955847 +159 740.6025 744.48 1000 50 0.98878366 +160 744.48 748.3575000000001 1000 50 0.99035966 +161 748.3575 752.235 1000 50 0.88765764 +162 756.1125 759.99 1000 50 0.9581152 +163 759.99 763.8675000000001 1000 50 0.56518894 +164 763.8675 767.745 1000 50 0.9941004 +165 767.745 771.6225000000001 1000 50 0.99998486 +166 771.6225 775.5 1000 50 0.94954693 +167 775.5 779.3775 1000 50 0.9995363 +168 779.3775 783.2550000000001 1000 50 0.99979895 +169 783.255 787.1325 1000 50 0.9995652 +170 787.1325 791.0100000000001 1000 50 0.58862907 +171 791.01 794.8875 1000 50 0.997951 +172 794.8875 798.7650000000001 1000 50 0.9999416 +173 798.765 802.6425 1000 50 0.99976474 +174 802.6425 806.5200000000001 1000 50 0.9708701 +175 806.52 810.3975 1000 50 0.97726566 +176 810.3975 814.2750000000001 1000 50 0.99956065 +177 814.275 818.1525 1000 50 0.9953695 +178 818.1525 822.0300000000001 1000 50 0.5645758 +179 822.03 825.9075 1000 50 0.9998005 +180 825.9075 829.7850000000001 1000 50 0.9987645 +181 829.785 833.6625 1000 50 0.9428594 +182 833.6625 837.5400000000001 1000 50 0.8673799 +183 837.54 841.4175 1000 50 0.9761687 +184 841.4175 845.2950000000001 1000 50 0.7606085 +185 849.1725 853.0500000000001 1000 50 0.60144144 +186 853.05 856.9275 1000 50 0.9953988 +187 856.9275 860.8050000000001 1000 50 0.9999856 +188 860.805 864.6825 1000 50 0.50565785 +189 864.6825 868.5600000000001 1000 50 0.9995245 +190 868.56 872.4375 1000 50 0.9992397 +191 872.4375 876.315 1000 50 0.96293914 +192 876.315 880.1925000000001 1000 50 0.95270395 +193 880.1925 884.07 1000 50 0.8235973 +194 884.07 887.9475000000001 1000 50 0.99956733 +195 887.9475 891.825 1000 50 0.9941864 +196 903.4575 907.335 1000 50 0.9270808 +197 907.335 911.2125000000001 1000 50 0.72010595 +198 911.2125 915.09 1000 50 0.50633276 +199 918.9675 922.845 1000 50 0.7726045 +200 922.845 926.7225000000001 1000 50 0.9929321 +201 926.7225 930.6 1000 50 0.9998299 +202 934.4775 938.355 1000 50 0.99954706 +203 938.355 942.2325000000001 1000 50 0.9381927 +204 942.2325 946.11 1000 50 0.99898976 +205 946.11 949.9875000000001 1000 50 0.975376 +206 949.9875 953.865 1000 50 0.99312794 +207 953.865 957.7425000000001 1000 50 0.9993017 +208 957.7425 961.62 1000 50 0.99472696 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_21-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_21-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b290494e8f7701b09508a714619f8abecb36a4a0 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_21-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,119 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9914072 +2 11.6325 15.51 1000 50 0.87072796 +3 19.3875 23.265 1000 50 0.6989327 +4 23.265 27.142500000000002 1000 50 0.9984401 +5 27.1425 31.02 1000 50 0.7420383 +6 31.02 34.8975 1000 50 0.69792527 +7 34.8975 38.775 1000 50 0.81872904 +8 38.775 42.652499999999996 1000 50 0.98568547 +9 42.6525 46.53 1000 50 0.96742064 +10 46.53 50.4075 1000 50 0.51228213 +11 50.4075 54.285 1000 50 0.7304122 +12 54.285 58.162499999999994 1000 50 0.9593834 +13 62.04 65.9175 1000 50 0.5158131 +14 65.9175 69.795 1000 50 0.7991908 +15 69.795 73.6725 1000 50 0.8788779 +16 73.6725 77.55 1000 50 0.56463724 +17 85.305 89.1825 1000 50 0.61188006 +18 89.1825 93.06 1000 50 0.98476183 +19 93.06 96.9375 1000 50 0.9931376 +20 96.9375 100.815 1000 50 0.99256706 +21 108.57 112.44749999999999 1000 50 0.5701043 +22 112.4475 116.325 1000 50 0.9899767 +23 116.325 120.2025 1000 50 0.9999409 +24 120.2025 124.08 1000 50 0.9978655 +25 124.08 127.9575 1000 50 0.9989766 +26 127.9575 131.835 1000 50 0.99872273 +27 131.835 135.7125 1000 50 0.9993056 +28 135.7125 139.59 1000 50 0.9501266 +29 139.59 143.4675 1000 50 0.7373667 +30 143.4675 147.345 1000 50 0.9899295 +31 147.345 151.2225 1000 50 0.9200248 +32 151.2225 155.1 1000 50 0.99999774 +33 158.9775 162.855 1000 50 0.86573774 +34 162.855 166.7325 1000 50 0.99996936 +35 166.7325 170.60999999999999 1000 50 0.9980982 +36 170.61 174.4875 1000 50 0.90996 +37 174.4875 178.365 1000 50 0.99977416 +38 182.2425 186.12 1000 50 0.9147003 +39 193.875 197.7525 1000 50 0.90258396 +40 197.7525 201.63 1000 50 0.99348277 +41 201.63 205.5075 1000 50 0.99989593 +42 205.5075 209.385 1000 50 0.6043005 +43 213.2625 217.14 1000 50 0.9869315 +44 217.14 221.01749999999998 1000 50 0.989675 +45 224.895 228.7725 1000 50 0.99943763 +46 228.7725 232.65 1000 50 0.95116687 +47 236.5275 240.405 1000 50 0.81283206 +48 240.405 244.2825 1000 50 0.98691946 +49 252.0375 255.915 1000 50 0.8168381 +50 255.915 259.7925 1000 50 0.99959725 +51 259.7925 263.67 1000 50 0.97705454 +52 263.67 267.5475 1000 50 0.99844956 +53 267.5475 271.425 1000 50 0.9999517 +54 271.425 275.3025 1000 50 0.71421283 +55 279.18 283.0575 1000 50 0.9768992 +56 283.0575 286.935 1000 50 0.9999347 +57 286.935 290.8125 1000 50 0.8119547 +58 290.8125 294.69 1000 50 0.99732506 +59 302.445 306.3225 1000 50 0.81412 +60 306.3225 310.2 1000 50 0.68881637 +61 314.0775 317.955 1000 50 0.9999697 +62 317.955 321.8325 1000 50 0.9902254 +63 321.8325 325.71 1000 50 0.9989976 +64 325.71 329.5875 1000 50 0.98386997 +65 329.5875 333.465 1000 50 0.9999732 +66 333.465 337.3425 1000 50 0.75981593 +67 337.3425 341.21999999999997 1000 50 0.7128823 +68 341.22 345.0975 1000 50 0.999979 +69 345.0975 348.975 1000 50 0.8636082 +70 348.975 352.8525 1000 50 0.9113625 +71 352.8525 356.73 1000 50 0.7519041 +72 356.73 360.6075 1000 50 0.9933543 +73 360.6075 364.485 1000 50 0.98374015 +74 368.3625 372.24 1000 50 0.99216074 +75 376.1175 379.995 1000 50 0.9988201 +76 379.995 383.8725 1000 50 0.995333 +77 387.75 391.6275 1000 50 0.9996667 +78 391.6275 395.505 1000 50 0.75479436 +79 395.505 399.3825 1000 50 0.9920338 +80 407.1375 411.015 1000 50 0.937684 +81 411.015 414.8925 1000 50 0.9997793 +82 414.8925 418.77 1000 50 0.52542245 +83 422.6475 426.525 1000 50 0.9979803 +84 426.525 430.4025 1000 50 0.5691908 +85 430.4025 434.28 1000 50 0.9994855 +86 438.1575 442.035 1000 50 0.99651426 +87 442.035 445.9125 1000 50 0.78536785 +88 449.79 453.6675 1000 50 0.7584903 +89 453.6675 457.545 1000 50 0.713155 +90 457.545 461.4225 1000 50 0.86120564 +91 473.055 476.9325 1000 50 0.9338562 +92 476.9325 480.81 1000 50 0.9788602 +93 488.565 492.4425 1000 50 0.9986442 +94 496.32 500.1975 1000 50 0.97967654 +95 500.1975 504.075 1000 50 0.93078554 +96 507.9525 511.83 1000 50 0.93058586 +97 511.83 515.7075 1000 50 0.9882515 +98 515.7075 519.585 1000 50 0.51406515 +99 519.585 523.4625000000001 1000 50 0.5450015 +100 523.4625 527.34 1000 50 0.620454 +101 527.34 531.2175000000001 1000 50 0.99774015 +102 538.9725 542.85 1000 50 0.60488683 +103 542.85 546.7275000000001 1000 50 0.99975795 +104 550.605 554.4825000000001 1000 50 0.9238652 +105 554.4825 558.36 1000 50 0.99928963 +106 562.2375 566.115 1000 50 0.9705081 +107 573.87 577.7475000000001 1000 50 0.8997616 +108 585.5025 589.3800000000001 1000 50 0.9697631 +109 589.38 593.2575 1000 50 0.5675992 +110 593.2575 597.1350000000001 1000 50 0.9983961 +111 597.135 601.0125 1000 50 0.54734224 +112 601.0125 604.8900000000001 1000 50 0.9675129 +113 604.89 608.7675 1000 50 0.8120425 +114 608.7675 612.6450000000001 1000 50 0.99984515 +115 612.645 616.5225 1000 50 0.99671775 +116 616.5225 620.4000000000001 1000 50 0.8629779 +117 624.2775 628.1550000000001 1000 50 0.99948186 +118 628.155 632.0325 1000 50 0.99967945 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_21-14-15_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_21-14-15_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..986c7e8c3097788ba0d6f15e50d4844a6790821c --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_21-14-15_annot_2022-11-30_01.txt @@ -0,0 +1,125 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99719113 +2 3.8775 7.755 1000 50 0.97062576 +3 11.6325 15.51 1000 50 0.9975955 +4 27.1425 31.02 1000 50 0.9993907 +5 31.02 34.8975 1000 50 0.98484355 +6 34.8975 38.775 1000 50 0.9954218 +7 38.775 42.652499999999996 1000 50 0.9999821 +8 42.6525 46.53 1000 50 0.999982 +9 46.53 50.4075 1000 50 0.9991037 +10 50.4075 54.285 1000 50 0.5346158 +11 54.285 58.162499999999994 1000 50 0.8090219 +12 58.1625 62.04 1000 50 0.9835445 +13 62.04 65.9175 1000 50 0.59811175 +14 65.9175 69.795 1000 50 0.99356765 +15 69.795 73.6725 1000 50 0.9913946 +16 77.55 81.4275 1000 50 0.82050574 +17 81.4275 85.30499999999999 1000 50 0.88200396 +18 89.1825 93.06 1000 50 0.99918765 +19 100.815 104.6925 1000 50 0.999969 +20 108.57 112.44749999999999 1000 50 0.7670673 +21 112.4475 116.325 1000 50 0.9997534 +22 124.08 127.9575 1000 50 0.9981509 +23 131.835 135.7125 1000 50 0.9947345 +24 135.7125 139.59 1000 50 0.99864715 +25 139.59 143.4675 1000 50 0.57483387 +26 143.4675 147.345 1000 50 0.9915392 +27 147.345 151.2225 1000 50 0.9998419 +28 155.1 158.9775 1000 50 0.9930353 +29 158.9775 162.855 1000 50 0.99779487 +30 162.855 166.7325 1000 50 0.9999653 +31 166.7325 170.60999999999999 1000 50 0.94762546 +32 178.365 182.2425 1000 50 0.6296835 +33 182.2425 186.12 1000 50 0.7151916 +34 189.9975 193.875 1000 50 0.9869962 +35 197.7525 201.63 1000 50 0.7739279 +36 209.385 213.2625 1000 50 0.97156703 +37 213.2625 217.14 1000 50 0.99280846 +38 217.14 221.01749999999998 1000 50 0.9119519 +39 221.0175 224.895 1000 50 0.99460876 +40 224.895 228.7725 1000 50 0.83758456 +41 228.7725 232.65 1000 50 0.6469327 +42 236.5275 240.405 1000 50 0.91017866 +43 240.405 244.2825 1000 50 0.9962465 +44 252.0375 255.915 1000 50 0.90773416 +45 255.915 259.7925 1000 50 0.6930068 +46 259.7925 263.67 1000 50 0.6255007 +47 263.67 267.5475 1000 50 0.5323652 +48 267.5475 271.425 1000 50 0.99962354 +49 271.425 275.3025 1000 50 0.70633817 +50 275.3025 279.18 1000 50 0.567616 +51 283.0575 286.935 1000 50 0.97201705 +52 286.935 290.8125 1000 50 0.5770138 +53 294.69 298.5675 1000 50 0.53698 +54 298.5675 302.445 1000 50 0.95949626 +55 302.445 306.3225 1000 50 0.9997116 +56 314.0775 317.955 1000 50 0.9997663 +57 321.8325 325.71 1000 50 0.95020133 +58 325.71 329.5875 1000 50 0.99997437 +59 329.5875 333.465 1000 50 0.9988274 +60 337.3425 341.21999999999997 1000 50 0.9867488 +61 341.22 345.0975 1000 50 0.8509394 +62 345.0975 348.975 1000 50 0.9319899 +63 348.975 352.8525 1000 50 0.90834767 +64 352.8525 356.73 1000 50 0.8488078 +65 356.73 360.6075 1000 50 0.9999938 +66 360.6075 364.485 1000 50 0.9987112 +67 364.485 368.3625 1000 50 0.9705897 +68 368.3625 372.24 1000 50 0.99947435 +69 372.24 376.1175 1000 50 0.8374956 +70 376.1175 379.995 1000 50 0.95061487 +71 379.995 383.8725 1000 50 0.99924386 +72 387.75 391.6275 1000 50 0.85919267 +73 391.6275 395.505 1000 50 0.9107146 +74 395.505 399.3825 1000 50 0.995148 +75 399.3825 403.26 1000 50 0.9960594 +76 403.26 407.1375 1000 50 0.96364546 +77 407.1375 411.015 1000 50 0.99714667 +78 411.015 414.8925 1000 50 0.9968014 +79 414.8925 418.77 1000 50 0.9907759 +80 422.6475 426.525 1000 50 0.9999713 +81 426.525 430.4025 1000 50 0.7573504 +82 430.4025 434.28 1000 50 0.99048233 +83 438.1575 442.035 1000 50 0.99999964 +84 442.035 445.9125 1000 50 0.99890137 +85 445.9125 449.79 1000 50 0.98760337 +86 449.79 453.6675 1000 50 0.9945426 +87 457.545 461.4225 1000 50 0.9270732 +88 461.4225 465.3 1000 50 0.97133654 +89 465.3 469.1775 1000 50 0.8567551 +90 469.1775 473.055 1000 50 0.5854706 +91 473.055 476.9325 1000 50 0.81357116 +92 476.9325 480.81 1000 50 0.9949995 +93 480.81 484.6875 1000 50 0.9997278 +94 484.6875 488.565 1000 50 0.9996698 +95 488.565 492.4425 1000 50 0.9935462 +96 496.32 500.1975 1000 50 0.9180608 +97 500.1975 504.075 1000 50 0.9076761 +98 504.075 507.9525 1000 50 0.98447037 +99 507.9525 511.83 1000 50 0.9082928 +100 511.83 515.7075 1000 50 0.999936 +101 519.585 523.4625000000001 1000 50 0.8730607 +102 523.4625 527.34 1000 50 0.9978399 +103 527.34 531.2175000000001 1000 50 0.92837614 +104 531.2175 535.095 1000 50 0.9971853 +105 546.7275 550.605 1000 50 0.70748824 +106 550.605 554.4825000000001 1000 50 0.99496126 +107 554.4825 558.36 1000 50 0.62384415 +108 562.2375 566.115 1000 50 0.99801254 +109 566.115 569.9925000000001 1000 50 0.9971295 +110 569.9925 573.87 1000 50 0.9998337 +111 573.87 577.7475000000001 1000 50 0.57658833 +112 577.7475 581.625 1000 50 0.9904971 +113 581.625 585.5025 1000 50 0.9999224 +114 589.38 593.2575 1000 50 0.7454964 +115 593.2575 597.1350000000001 1000 50 0.99978155 +116 597.135 601.0125 1000 50 0.97267884 +117 601.0125 604.8900000000001 1000 50 0.9483262 +118 604.89 608.7675 1000 50 0.9987771 +119 608.7675 612.6450000000001 1000 50 0.99330056 +120 612.645 616.5225 1000 50 0.7915302 +121 616.5225 620.4000000000001 1000 50 0.99713874 +122 620.4 624.2775 1000 50 0.78722906 +123 639.7875 643.6650000000001 1000 50 0.50081503 +124 647.5425 651.4200000000001 1000 50 0.62170625 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_22-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_22-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..cbeda17392a39349f97a5260c37eedece796f1cb --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_22-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,220 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.99995816 +2 7.755 11.6325 1000 50 1.0 +3 11.6325 15.51 1000 50 0.94541377 +4 15.51 19.3875 1000 50 0.98422205 +5 19.3875 23.265 1000 50 0.99959546 +6 23.265 27.142500000000002 1000 50 0.99996805 +7 27.1425 31.02 1000 50 0.96759105 +8 31.02 34.8975 1000 50 0.9941134 +9 34.8975 38.775 1000 50 0.99803597 +10 38.775 42.652499999999996 1000 50 0.50540155 +11 42.6525 46.53 1000 50 0.99996436 +12 46.53 50.4075 1000 50 0.9944669 +13 50.4075 54.285 1000 50 0.9999987 +14 54.285 58.162499999999994 1000 50 0.9873214 +15 58.1625 62.04 1000 50 0.99715483 +16 62.04 65.9175 1000 50 0.99999714 +17 65.9175 69.795 1000 50 0.999366 +18 69.795 73.6725 1000 50 0.6375869 +19 73.6725 77.55 1000 50 0.9982083 +20 77.55 81.4275 1000 50 0.9997528 +21 81.4275 85.30499999999999 1000 50 0.9771846 +22 85.305 89.1825 1000 50 0.9399684 +23 89.1825 93.06 1000 50 0.99997485 +24 93.06 96.9375 1000 50 0.9997998 +25 96.9375 100.815 1000 50 0.98982143 +26 100.815 104.6925 1000 50 0.9999981 +27 104.6925 108.57 1000 50 0.99943894 +28 108.57 112.44749999999999 1000 50 0.710382 +29 112.4475 116.325 1000 50 0.87967086 +30 116.325 120.2025 1000 50 0.98757696 +31 120.2025 124.08 1000 50 0.97701865 +32 124.08 127.9575 1000 50 0.9999752 +33 127.9575 131.835 1000 50 0.9995561 +34 131.835 135.7125 1000 50 0.9923814 +35 135.7125 139.59 1000 50 0.9999901 +36 139.59 143.4675 1000 50 0.9975169 +37 143.4675 147.345 1000 50 0.9711798 +38 147.345 151.2225 1000 50 0.9999993 +39 151.2225 155.1 1000 50 0.99996984 +40 155.1 158.9775 1000 50 0.63264173 +41 158.9775 162.855 1000 50 0.8619134 +42 162.855 166.7325 1000 50 0.99998486 +43 170.61 174.4875 1000 50 0.91657007 +44 174.4875 178.365 1000 50 0.99993014 +45 182.2425 186.12 1000 50 0.9993012 +46 186.12 189.9975 1000 50 0.54667723 +47 189.9975 193.875 1000 50 0.9857803 +48 193.875 197.7525 1000 50 0.9753273 +49 197.7525 201.63 1000 50 0.9997389 +50 205.5075 209.385 1000 50 0.94589263 +51 213.2625 217.14 1000 50 0.99768186 +52 217.14 221.01749999999998 1000 50 0.5896824 +53 224.895 228.7725 1000 50 0.9977424 +54 228.7725 232.65 1000 50 0.98274326 +55 232.65 236.5275 1000 50 0.9977666 +56 236.5275 240.405 1000 50 0.9999361 +57 240.405 244.2825 1000 50 0.9931797 +58 248.16 252.0375 1000 50 0.99618953 +59 252.0375 255.915 1000 50 0.99999607 +60 255.915 259.7925 1000 50 0.9997851 +61 259.7925 263.67 1000 50 0.9997335 +62 267.5475 271.425 1000 50 0.7913949 +63 271.425 275.3025 1000 50 0.99851984 +64 275.3025 279.18 1000 50 0.97207177 +65 279.18 283.0575 1000 50 0.6023117 +66 283.0575 286.935 1000 50 0.99944514 +67 286.935 290.8125 1000 50 0.96669424 +68 290.8125 294.69 1000 50 0.9990792 +69 298.5675 302.445 1000 50 0.8734513 +70 302.445 306.3225 1000 50 0.9996712 +71 310.2 314.0775 1000 50 0.86854804 +72 314.0775 317.955 1000 50 0.9959407 +73 325.71 329.5875 1000 50 0.7399041 +74 329.5875 333.465 1000 50 0.739869 +75 333.465 337.3425 1000 50 0.99080044 +76 337.3425 341.21999999999997 1000 50 0.99523145 +77 341.22 345.0975 1000 50 0.9986355 +78 345.0975 348.975 1000 50 0.98975396 +79 348.975 352.8525 1000 50 0.99060297 +80 352.8525 356.73 1000 50 0.9997011 +81 356.73 360.6075 1000 50 0.99916875 +82 360.6075 364.485 1000 50 0.9454215 +83 364.485 368.3625 1000 50 0.99988496 +84 368.3625 372.24 1000 50 0.9898935 +85 372.24 376.1175 1000 50 0.91223437 +86 376.1175 379.995 1000 50 0.9992035 +87 379.995 383.8725 1000 50 0.8813992 +88 383.8725 387.75 1000 50 0.99169695 +89 387.75 391.6275 1000 50 0.8723323 +90 395.505 399.3825 1000 50 0.99998796 +91 399.3825 403.26 1000 50 0.99733895 +92 403.26 407.1375 1000 50 0.99146396 +93 407.1375 411.015 1000 50 0.99989784 +94 411.015 414.8925 1000 50 0.74908316 +95 422.6475 426.525 1000 50 0.9926394 +96 426.525 430.4025 1000 50 0.9241811 +97 430.4025 434.28 1000 50 0.9966421 +98 434.28 438.15749999999997 1000 50 0.9861638 +99 445.9125 449.79 1000 50 0.9842275 +100 453.6675 457.545 1000 50 0.9774768 +101 476.9325 480.81 1000 50 0.93395 +102 480.81 484.6875 1000 50 0.78006613 +103 484.6875 488.565 1000 50 0.9602883 +104 488.565 492.4425 1000 50 0.6147047 +105 496.32 500.1975 1000 50 0.92429066 +106 500.1975 504.075 1000 50 0.64726573 +107 507.9525 511.83 1000 50 0.9643935 +108 515.7075 519.585 1000 50 0.9341734 +109 519.585 523.4625000000001 1000 50 0.99840444 +110 523.4625 527.34 1000 50 0.9945029 +111 527.34 531.2175000000001 1000 50 0.99534166 +112 531.2175 535.095 1000 50 0.99999833 +113 535.095 538.9725000000001 1000 50 0.99914503 +114 538.9725 542.85 1000 50 0.99968934 +115 542.85 546.7275000000001 1000 50 0.71970016 +116 546.7275 550.605 1000 50 0.991884 +117 550.605 554.4825000000001 1000 50 0.98197204 +118 554.4825 558.36 1000 50 0.8188327 +119 558.36 562.2375000000001 1000 50 0.9981382 +120 562.2375 566.115 1000 50 0.99999917 +121 566.115 569.9925000000001 1000 50 0.6596358 +122 573.87 577.7475000000001 1000 50 0.99924695 +123 577.7475 581.625 1000 50 0.99996746 +124 581.625 585.5025 1000 50 0.9999988 +125 585.5025 589.3800000000001 1000 50 0.981248 +126 589.38 593.2575 1000 50 0.9855047 +127 593.2575 597.1350000000001 1000 50 0.999826 +128 597.135 601.0125 1000 50 0.9548761 +129 601.0125 604.8900000000001 1000 50 0.9999896 +130 604.89 608.7675 1000 50 0.99962616 +131 608.7675 612.6450000000001 1000 50 0.9506598 +132 612.645 616.5225 1000 50 0.9998418 +133 616.5225 620.4000000000001 1000 50 0.99970716 +134 620.4 624.2775 1000 50 0.95839906 +135 624.2775 628.1550000000001 1000 50 0.9999826 +136 628.155 632.0325 1000 50 0.9028373 +137 632.0325 635.9100000000001 1000 50 0.56793076 +138 635.91 639.7875 1000 50 0.99999917 +139 639.7875 643.6650000000001 1000 50 0.9999914 +140 643.665 647.5425 1000 50 0.9741805 +141 647.5425 651.4200000000001 1000 50 0.999871 +142 651.42 655.2975 1000 50 0.99990785 +143 655.2975 659.1750000000001 1000 50 0.99999416 +144 659.175 663.0525 1000 50 0.9967019 +145 663.0525 666.9300000000001 1000 50 0.997038 +146 666.93 670.8075 1000 50 0.99992764 +147 670.8075 674.6850000000001 1000 50 0.99994946 +148 674.685 678.5625 1000 50 0.9999578 +149 678.5625 682.44 1000 50 0.9901266 +150 682.44 686.3175000000001 1000 50 0.9999765 +151 686.3175 690.195 1000 50 0.8198333 +152 690.195 694.0725000000001 1000 50 0.99999976 +153 694.0725 697.95 1000 50 0.9999894 +154 697.95 701.8275000000001 1000 50 0.999998 +155 701.8275 705.705 1000 50 0.9999896 +156 705.705 709.5825000000001 1000 50 0.99445033 +157 709.5825 713.46 1000 50 0.99980706 +158 713.46 717.3375000000001 1000 50 0.99987495 +159 717.3375 721.215 1000 50 0.99986863 +160 721.215 725.0925000000001 1000 50 0.9992623 +161 725.0925 728.97 1000 50 0.9998171 +162 728.97 732.8475000000001 1000 50 0.99724364 +163 732.8475 736.725 1000 50 0.99999547 +164 736.725 740.6025000000001 1000 50 0.99943835 +165 740.6025 744.48 1000 50 0.99503654 +166 744.48 748.3575000000001 1000 50 0.9999968 +167 748.3575 752.235 1000 50 0.99984765 +168 752.235 756.1125000000001 1000 50 0.9995233 +169 756.1125 759.99 1000 50 0.99997103 +170 759.99 763.8675000000001 1000 50 0.68270946 +171 763.8675 767.745 1000 50 0.9998691 +172 767.745 771.6225000000001 1000 50 0.99910104 +173 771.6225 775.5 1000 50 0.5477419 +174 775.5 779.3775 1000 50 0.9998388 +175 779.3775 783.2550000000001 1000 50 0.9997067 +176 783.255 787.1325 1000 50 0.99997723 +177 787.1325 791.0100000000001 1000 50 0.999744 +178 791.01 794.8875 1000 50 0.99944144 +179 794.8875 798.7650000000001 1000 50 0.9898185 +180 798.765 802.6425 1000 50 0.9999393 +181 802.6425 806.5200000000001 1000 50 0.9919431 +182 806.52 810.3975 1000 50 0.9659474 +183 810.3975 814.2750000000001 1000 50 0.99952114 +184 814.275 818.1525 1000 50 0.9979305 +185 818.1525 822.0300000000001 1000 50 0.9999361 +186 822.03 825.9075 1000 50 0.99986243 +187 825.9075 829.7850000000001 1000 50 0.9847941 +188 829.785 833.6625 1000 50 0.9998648 +189 833.6625 837.5400000000001 1000 50 0.89508104 +190 837.54 841.4175 1000 50 0.90065974 +191 841.4175 845.2950000000001 1000 50 0.9999974 +192 845.295 849.1725 1000 50 0.9981521 +193 849.1725 853.0500000000001 1000 50 0.9999825 +194 853.05 856.9275 1000 50 0.99997437 +195 856.9275 860.8050000000001 1000 50 0.99353266 +196 860.805 864.6825 1000 50 0.99755657 +197 864.6825 868.5600000000001 1000 50 0.95024025 +198 868.56 872.4375 1000 50 0.9700964 +199 872.4375 876.315 1000 50 0.97621447 +200 876.315 880.1925000000001 1000 50 0.995767 +201 884.07 887.9475000000001 1000 50 0.99876404 +202 887.9475 891.825 1000 50 0.9999839 +203 891.825 895.7025000000001 1000 50 0.99999547 +204 895.7025 899.58 1000 50 0.99946326 +205 899.58 903.4575000000001 1000 50 0.96349883 +206 903.4575 907.335 1000 50 0.9999027 +207 907.335 911.2125000000001 1000 50 0.99999785 +208 911.2125 915.09 1000 50 0.9999989 +209 915.09 918.9675000000001 1000 50 0.99999404 +210 918.9675 922.845 1000 50 0.9917502 +211 922.845 926.7225000000001 1000 50 0.9964056 +212 926.7225 930.6 1000 50 0.999948 +213 930.6 934.4775000000001 1000 50 0.9028059 +214 934.4775 938.355 1000 50 0.99926466 +215 938.355 942.2325000000001 1000 50 0.99831116 +216 942.2325 946.11 1000 50 0.99962986 +217 946.11 949.9875000000001 1000 50 0.99742186 +218 949.9875 953.865 1000 50 0.9999963 +219 953.865 957.7425000000001 1000 50 0.87249976 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_22-19-34_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_22-19-34_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..7e5204f56f6f24958c3e86f74e6df0be4d751184 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_22-19-34_annot_2022-11-30_01.txt @@ -0,0 +1,85 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9895872 +2 3.8775 7.755 1000 50 0.98818505 +3 7.755 11.6325 1000 50 0.9875639 +4 11.6325 15.51 1000 50 0.9999789 +5 15.51 19.3875 1000 50 0.9964888 +6 19.3875 23.265 1000 50 0.9981476 +7 23.265 27.142500000000002 1000 50 0.9999963 +8 27.1425 31.02 1000 50 0.9999088 +9 31.02 34.8975 1000 50 0.7942923 +10 34.8975 38.775 1000 50 0.994249 +11 38.775 42.652499999999996 1000 50 0.98696834 +12 42.6525 46.53 1000 50 0.9998485 +13 46.53 50.4075 1000 50 0.85600877 +14 50.4075 54.285 1000 50 0.9980039 +15 54.285 58.162499999999994 1000 50 0.9957563 +16 58.1625 62.04 1000 50 0.99066025 +17 62.04 65.9175 1000 50 0.9999989 +18 65.9175 69.795 1000 50 0.9993079 +19 69.795 73.6725 1000 50 0.9989562 +20 73.6725 77.55 1000 50 1.0 +21 77.55 81.4275 1000 50 0.9991068 +22 81.4275 85.30499999999999 1000 50 0.9478466 +23 85.305 89.1825 1000 50 0.99998784 +24 89.1825 93.06 1000 50 0.99930954 +25 93.06 96.9375 1000 50 0.9996525 +26 100.815 104.6925 1000 50 0.9700972 +27 104.6925 108.57 1000 50 0.99888843 +28 108.57 112.44749999999999 1000 50 0.9819812 +29 112.4475 116.325 1000 50 0.99994934 +30 116.325 120.2025 1000 50 0.9977537 +31 120.2025 124.08 1000 50 0.9942087 +32 124.08 127.9575 1000 50 0.99953544 +33 127.9575 131.835 1000 50 0.9995845 +34 131.835 135.7125 1000 50 0.9615333 +35 135.7125 139.59 1000 50 0.9992592 +36 139.59 143.4675 1000 50 0.9891149 +37 143.4675 147.345 1000 50 0.9745935 +38 147.345 151.2225 1000 50 0.99698466 +39 151.2225 155.1 1000 50 0.9180002 +40 155.1 158.9775 1000 50 0.98857856 +41 158.9775 162.855 1000 50 0.99968624 +42 162.855 166.7325 1000 50 0.98257095 +43 166.7325 170.60999999999999 1000 50 0.99995923 +44 170.61 174.4875 1000 50 0.99998057 +45 174.4875 178.365 1000 50 0.8490486 +46 178.365 182.2425 1000 50 0.9464343 +47 182.2425 186.12 1000 50 0.9834916 +48 186.12 189.9975 1000 50 0.99769384 +49 189.9975 193.875 1000 50 0.9981919 +50 193.875 197.7525 1000 50 0.7103479 +51 197.7525 201.63 1000 50 0.99895453 +52 201.63 205.5075 1000 50 0.99996066 +53 205.5075 209.385 1000 50 0.9989021 +54 209.385 213.2625 1000 50 0.77597904 +55 213.2625 217.14 1000 50 0.9951544 +56 217.14 221.01749999999998 1000 50 0.99998724 +57 221.0175 224.895 1000 50 0.96690685 +58 224.895 228.7725 1000 50 0.96819055 +59 228.7725 232.65 1000 50 0.6788934 +60 232.65 236.5275 1000 50 0.85551095 +61 236.5275 240.405 1000 50 0.9994 +62 240.405 244.2825 1000 50 0.9875744 +63 244.2825 248.16 1000 50 0.9999863 +64 248.16 252.0375 1000 50 0.99997854 +65 252.0375 255.915 1000 50 0.99977535 +66 255.915 259.7925 1000 50 0.99994826 +67 259.7925 263.67 1000 50 0.9980665 +68 263.67 267.5475 1000 50 0.999977 +69 267.5475 271.425 1000 50 0.99991286 +70 271.425 275.3025 1000 50 0.9984622 +71 275.3025 279.18 1000 50 0.9003937 +72 279.18 283.0575 1000 50 0.99999344 +73 283.0575 286.935 1000 50 0.99988925 +74 286.935 290.8125 1000 50 0.9999865 +75 290.8125 294.69 1000 50 0.9999845 +76 294.69 298.5675 1000 50 0.99991596 +77 298.5675 302.445 1000 50 0.9999949 +78 302.445 306.3225 1000 50 0.99979585 +79 306.3225 310.2 1000 50 0.9999989 +80 310.2 314.0775 1000 50 0.99867284 +81 314.0775 317.955 1000 50 0.9914342 +82 317.955 321.8325 1000 50 0.9997719 +83 321.8325 325.71 1000 50 0.87443334 +84 325.71 329.5875 1000 50 0.99999535 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_23-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_23-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..694a92fda6859c899a35afd4b79312a5da2ee348 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_23-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,282 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99972385 +2 3.8775 7.755 1000 50 0.99999654 +3 7.755 11.6325 1000 50 0.9989411 +4 11.6325 15.51 1000 50 0.99985635 +5 15.51 19.3875 1000 50 0.9999994 +6 19.3875 23.265 1000 50 0.9999876 +7 23.265 27.142500000000002 1000 50 0.9999565 +8 27.1425 31.02 1000 50 0.9999434 +9 31.02 34.8975 1000 50 0.9999422 +10 34.8975 38.775 1000 50 0.999998 +11 38.775 42.652499999999996 1000 50 0.99999976 +12 42.6525 46.53 1000 50 1.0 +13 46.53 50.4075 1000 50 0.9999999 +14 50.4075 54.285 1000 50 1.0 +15 54.285 58.162499999999994 1000 50 0.986361 +16 58.1625 62.04 1000 50 0.9998005 +17 62.04 65.9175 1000 50 0.9999192 +18 65.9175 69.795 1000 50 0.99997425 +19 69.795 73.6725 1000 50 0.6731087 +20 77.55 81.4275 1000 50 0.99999774 +21 81.4275 85.30499999999999 1000 50 1.0 +22 85.305 89.1825 1000 50 0.6116783 +23 89.1825 93.06 1000 50 0.99218893 +24 93.06 96.9375 1000 50 0.9999993 +25 96.9375 100.815 1000 50 0.99955004 +26 100.815 104.6925 1000 50 0.81950426 +27 104.6925 108.57 1000 50 0.9451073 +28 108.57 112.44749999999999 1000 50 0.99952483 +29 112.4475 116.325 1000 50 0.9989292 +30 116.325 120.2025 1000 50 0.99962795 +31 120.2025 124.08 1000 50 0.99895537 +32 124.08 127.9575 1000 50 0.9952826 +33 127.9575 131.835 1000 50 0.99881625 +34 131.835 135.7125 1000 50 0.89073896 +35 135.7125 139.59 1000 50 0.98937196 +36 139.59 143.4675 1000 50 0.99501425 +37 143.4675 147.345 1000 50 0.9914711 +38 147.345 151.2225 1000 50 0.99949193 +39 151.2225 155.1 1000 50 0.84348387 +40 155.1 158.9775 1000 50 0.99990916 +41 158.9775 162.855 1000 50 0.98534447 +42 162.855 166.7325 1000 50 0.9998128 +43 166.7325 170.60999999999999 1000 50 0.9991178 +44 174.4875 178.365 1000 50 0.99998164 +45 178.365 182.2425 1000 50 0.9999937 +46 182.2425 186.12 1000 50 0.819152 +47 186.12 189.9975 1000 50 0.9998983 +48 189.9975 193.875 1000 50 0.9668009 +49 197.7525 201.63 1000 50 0.99901974 +50 201.63 205.5075 1000 50 0.76459616 +51 205.5075 209.385 1000 50 0.7705176 +52 209.385 213.2625 1000 50 0.9988701 +53 213.2625 217.14 1000 50 0.96571666 +54 221.0175 224.895 1000 50 0.9985298 +55 224.895 228.7725 1000 50 0.7595658 +56 228.7725 232.65 1000 50 0.9994949 +57 232.65 236.5275 1000 50 0.92111945 +58 236.5275 240.405 1000 50 0.9958145 +59 240.405 244.2825 1000 50 0.9999802 +60 244.2825 248.16 1000 50 0.99999857 +61 248.16 252.0375 1000 50 0.95482 +62 252.0375 255.915 1000 50 0.9979194 +63 255.915 259.7925 1000 50 0.9999877 +64 259.7925 263.67 1000 50 0.99991584 +65 263.67 267.5475 1000 50 0.999997 +66 271.425 275.3025 1000 50 0.997781 +67 275.3025 279.18 1000 50 0.9999994 +68 279.18 283.0575 1000 50 0.994882 +69 283.0575 286.935 1000 50 0.8235851 +70 286.935 290.8125 1000 50 0.9962041 +71 290.8125 294.69 1000 50 0.99977964 +72 294.69 298.5675 1000 50 0.99991715 +73 298.5675 302.445 1000 50 0.9999845 +74 302.445 306.3225 1000 50 0.99907035 +75 306.3225 310.2 1000 50 0.78825855 +76 310.2 314.0775 1000 50 0.99815863 +77 314.0775 317.955 1000 50 0.9937202 +78 317.955 321.8325 1000 50 0.99605787 +79 321.8325 325.71 1000 50 0.79639584 +80 325.71 329.5875 1000 50 0.9996543 +81 329.5875 333.465 1000 50 0.9987896 +82 337.3425 341.21999999999997 1000 50 0.96805733 +83 341.22 345.0975 1000 50 0.8996944 +84 348.975 352.8525 1000 50 0.9995202 +85 352.8525 356.73 1000 50 0.99904245 +86 360.6075 364.485 1000 50 0.8263057 +87 364.485 368.3625 1000 50 0.9999198 +88 368.3625 372.24 1000 50 0.99998677 +89 379.995 383.8725 1000 50 0.99998534 +90 383.8725 387.75 1000 50 0.9985293 +91 395.505 399.3825 1000 50 0.99997175 +92 399.3825 403.26 1000 50 0.99250036 +93 403.26 407.1375 1000 50 0.99935406 +94 407.1375 411.015 1000 50 0.9998281 +95 411.015 414.8925 1000 50 0.99977475 +96 414.8925 418.77 1000 50 0.5899893 +97 422.6475 426.525 1000 50 0.99729604 +98 426.525 430.4025 1000 50 0.7496869 +99 445.9125 449.79 1000 50 0.999561 +100 453.6675 457.545 1000 50 0.9963574 +101 457.545 461.4225 1000 50 0.99999666 +102 465.3 469.1775 1000 50 0.9655966 +103 469.1775 473.055 1000 50 0.9999826 +104 473.055 476.9325 1000 50 0.9999794 +105 476.9325 480.81 1000 50 0.9752374 +106 480.81 484.6875 1000 50 0.7888139 +107 484.6875 488.565 1000 50 0.99934965 +108 488.565 492.4425 1000 50 0.9867975 +109 496.32 500.1975 1000 50 0.999164 +110 500.1975 504.075 1000 50 0.99995923 +111 507.9525 511.83 1000 50 0.99957806 +112 511.83 515.7075 1000 50 0.9991398 +113 519.585 523.4625000000001 1000 50 0.9999821 +114 523.4625 527.34 1000 50 0.99999964 +115 531.2175 535.095 1000 50 0.9881864 +116 535.095 538.9725000000001 1000 50 0.99993765 +117 542.85 546.7275000000001 1000 50 0.95501053 +118 546.7275 550.605 1000 50 0.999169 +119 550.605 554.4825000000001 1000 50 0.9842286 +120 554.4825 558.36 1000 50 0.99999976 +121 558.36 562.2375000000001 1000 50 0.9982723 +122 562.2375 566.115 1000 50 0.99998856 +123 566.115 569.9925000000001 1000 50 0.9999721 +124 573.87 577.7475000000001 1000 50 0.99997044 +125 577.7475 581.625 1000 50 0.9720097 +126 581.625 585.5025 1000 50 0.8752242 +127 585.5025 589.3800000000001 1000 50 0.99017286 +128 589.38 593.2575 1000 50 0.9861769 +129 593.2575 597.1350000000001 1000 50 0.9072768 +130 597.135 601.0125 1000 50 0.99988115 +131 601.0125 604.8900000000001 1000 50 0.68741995 +132 604.89 608.7675 1000 50 0.9993104 +133 608.7675 612.6450000000001 1000 50 0.99999416 +134 612.645 616.5225 1000 50 0.99999726 +135 616.5225 620.4000000000001 1000 50 0.9999778 +136 620.4 624.2775 1000 50 0.9990357 +137 624.2775 628.1550000000001 1000 50 0.9996692 +138 628.155 632.0325 1000 50 0.9816996 +139 632.0325 635.9100000000001 1000 50 0.9051575 +140 635.91 639.7875 1000 50 0.9691403 +141 639.7875 643.6650000000001 1000 50 0.99943477 +142 643.665 647.5425 1000 50 0.9997243 +143 647.5425 651.4200000000001 1000 50 0.9887766 +144 651.42 655.2975 1000 50 0.99999976 +145 655.2975 659.1750000000001 1000 50 0.9999968 +146 659.175 663.0525 1000 50 0.99999833 +147 663.0525 666.9300000000001 1000 50 0.99951005 +148 666.93 670.8075 1000 50 0.79608524 +149 670.8075 674.6850000000001 1000 50 0.9999976 +150 674.685 678.5625 1000 50 0.99999964 +151 678.5625 682.44 1000 50 0.9943216 +152 682.44 686.3175000000001 1000 50 0.994445 +153 686.3175 690.195 1000 50 0.92268264 +154 690.195 694.0725000000001 1000 50 0.99880624 +155 694.0725 697.95 1000 50 0.9882265 +156 697.95 701.8275000000001 1000 50 0.9992341 +157 701.8275 705.705 1000 50 0.9982937 +158 705.705 709.5825000000001 1000 50 0.9076282 +159 709.5825 713.46 1000 50 0.9998919 +160 713.46 717.3375000000001 1000 50 0.9648595 +161 717.3375 721.215 1000 50 0.8420925 +162 721.215 725.0925000000001 1000 50 0.94237274 +163 725.0925 728.97 1000 50 0.99994147 +164 728.97 732.8475000000001 1000 50 0.97725767 +165 732.8475 736.725 1000 50 0.5476402 +166 736.725 740.6025000000001 1000 50 0.90178794 +167 740.6025 744.48 1000 50 0.8817932 +168 744.48 748.3575000000001 1000 50 0.9997155 +169 748.3575 752.235 1000 50 0.8320795 +170 752.235 756.1125000000001 1000 50 0.97077507 +171 756.1125 759.99 1000 50 0.9964665 +172 763.8675 767.745 1000 50 0.99995613 +173 767.745 771.6225000000001 1000 50 0.9995592 +174 775.5 779.3775 1000 50 0.9996377 +175 779.3775 783.2550000000001 1000 50 0.8482982 +176 783.255 787.1325 1000 50 0.9940023 +177 787.1325 791.0100000000001 1000 50 0.96184707 +178 791.01 794.8875 1000 50 0.9990319 +179 798.765 802.6425 1000 50 0.9999291 +180 802.6425 806.5200000000001 1000 50 0.9954796 +181 806.52 810.3975 1000 50 0.9726792 +182 810.3975 814.2750000000001 1000 50 0.99956673 +183 814.275 818.1525 1000 50 0.5607094 +184 818.1525 822.0300000000001 1000 50 0.8990013 +185 822.03 825.9075 1000 50 0.9949706 +186 829.785 833.6625 1000 50 0.9821094 +187 833.6625 837.5400000000001 1000 50 0.99993753 +188 837.54 841.4175 1000 50 0.9999645 +189 853.05 856.9275 1000 50 0.59366506 +190 860.805 864.6825 1000 50 0.5862009 +191 864.6825 868.5600000000001 1000 50 0.99755895 +192 872.4375 876.315 1000 50 0.713263 +193 876.315 880.1925000000001 1000 50 0.99706215 +194 887.9475 891.825 1000 50 0.60140127 +195 899.58 903.4575000000001 1000 50 0.5284536 +196 911.2125 915.09 1000 50 0.78944105 +197 915.09 918.9675000000001 1000 50 0.57651466 +198 918.9675 922.845 1000 50 0.76717263 +199 930.6 934.4775000000001 1000 50 0.7016614 +200 934.4775 938.355 1000 50 0.5468435 +201 938.355 942.2325000000001 1000 50 0.51339835 +202 942.2325 946.11 1000 50 0.5209203 +203 946.11 949.9875000000001 1000 50 0.5405826 +204 961.62 965.4975000000001 1000 50 0.9756225 +205 969.375 973.2525 1000 50 0.9999496 +206 973.2525 977.1300000000001 1000 50 0.9981171 +207 977.13 981.0075 1000 50 0.9999912 +208 981.0075 984.8850000000001 1000 50 0.99941707 +209 984.885 988.7625 1000 50 0.8079651 +210 988.7625 992.6400000000001 1000 50 0.99973637 +211 992.64 996.5175 1000 50 0.9999938 +212 996.5175 1000.3950000000001 1000 50 0.9935555 +213 1000.395 1004.2725 1000 50 0.90003705 +214 1004.2725 1008.1500000000001 1000 50 0.8049451 +215 1008.15 1012.0275 1000 50 0.99994504 +216 1012.0275 1015.9050000000001 1000 50 0.9999695 +217 1015.905 1019.7825 1000 50 0.9999411 +218 1019.7825 1023.6600000000001 1000 50 0.67303276 +219 1023.66 1027.5375 1000 50 0.9997942 +220 1027.5375 1031.415 1000 50 0.999974 +221 1031.415 1035.2925 1000 50 0.9999989 +222 1035.2925 1039.17 1000 50 0.93180656 +223 1039.17 1043.0475000000001 1000 50 0.99993515 +224 1043.0475 1046.925 1000 50 0.9999987 +225 1046.925 1050.8025 1000 50 1.0 +226 1050.8025 1054.68 1000 50 0.9995565 +227 1054.68 1058.5575000000001 1000 50 0.9999771 +228 1058.5575 1062.435 1000 50 0.99999976 +229 1062.435 1066.3125 1000 50 0.9999969 +230 1066.3125 1070.19 1000 50 0.57162195 +231 1070.19 1074.0675 1000 50 0.9974916 +232 1074.0675 1077.9450000000002 1000 50 1.0 +233 1077.945 1081.8225 1000 50 0.9994815 +234 1081.8225 1085.7 1000 50 0.9999894 +235 1085.7 1089.5775 1000 50 0.9994905 +236 1089.5775 1093.4550000000002 1000 50 0.9969536 +237 1093.455 1097.3325 1000 50 0.99999917 +238 1097.3325 1101.21 1000 50 0.99998164 +239 1101.21 1105.0875 1000 50 0.9999918 +240 1105.0875 1108.9650000000001 1000 50 0.9988803 +241 1108.965 1112.8425 1000 50 0.99999976 +242 1112.8425 1116.72 1000 50 0.9935407 +243 1116.72 1120.5975 1000 50 0.9999995 +244 1120.5975 1124.4750000000001 1000 50 0.9999753 +245 1124.475 1128.3525 1000 50 0.9393697 +246 1128.3525 1132.23 1000 50 0.9486061 +247 1132.23 1136.1075 1000 50 0.9999927 +248 1136.1075 1139.9850000000001 1000 50 0.94363827 +249 1139.985 1143.8625 1000 50 0.9995215 +250 1143.8625 1147.74 1000 50 0.9997063 +251 1147.74 1151.6175 1000 50 0.99815685 +252 1151.6175 1155.4950000000001 1000 50 0.878845 +253 1155.495 1159.3725 1000 50 0.79050136 +254 1159.3725 1163.25 1000 50 0.9986324 +255 1163.25 1167.1275 1000 50 0.99984634 +256 1167.1275 1171.005 1000 50 0.99893814 +257 1171.005 1174.8825000000002 1000 50 0.99697495 +258 1174.8825 1178.76 1000 50 0.9908528 +259 1182.6375 1186.515 1000 50 0.9990491 +260 1186.515 1190.3925000000002 1000 50 0.99953604 +261 1190.3925 1194.27 1000 50 0.9990527 +262 1194.27 1198.1475 1000 50 0.99988174 +263 1198.1475 1202.025 1000 50 0.9950153 +264 1202.025 1205.9025000000001 1000 50 0.68318117 +265 1205.9025 1209.78 1000 50 0.99935514 +266 1209.78 1213.6575 1000 50 0.9145395 +267 1213.6575 1217.535 1000 50 0.9405785 +268 1217.535 1221.4125000000001 1000 50 0.9926581 +269 1221.4125 1225.29 1000 50 0.9999993 +270 1225.29 1229.1675 1000 50 0.99578154 +271 1229.1675 1233.045 1000 50 0.99896216 +272 1236.9225 1240.8 1000 50 0.99999964 +273 1240.8 1244.6775 1000 50 0.9955515 +274 1244.6775 1248.555 1000 50 0.99973494 +275 1248.555 1252.4325000000001 1000 50 0.9999999 +276 1252.4325 1256.31 1000 50 0.7242398 +277 1256.31 1260.1875 1000 50 0.99785835 +278 1260.1875 1264.065 1000 50 0.9994185 +279 1264.065 1267.9425 1000 50 0.99980325 +280 1267.9425 1271.8200000000002 1000 50 0.9982973 +281 1271.82 1275.6975 1000 50 0.98753905 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_23-24-54_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_23-24-54_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b16ddfda5deca716ca97699cf5b16927ff510c7a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-15_2kHz/channelA_2021-03-15_23-24-54_annot_2022-11-30_01.txt @@ -0,0 +1,4 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.96468717 +2 3.8775 7.755 1000 50 1.0 +3 7.755 11.6325 1000 50 0.84205234 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_00-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_00-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ed6f4a37213f62856166b7ad073f91c0d5a3d006 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_00-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,290 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99987304 +2 3.8775 7.755 1000 50 0.9999329 +3 7.755 11.6325 1000 50 0.99996865 +4 11.6325 15.51 1000 50 0.99967 +5 15.51 19.3875 1000 50 0.9999999 +6 19.3875 23.265 1000 50 0.9981092 +7 23.265 27.142500000000002 1000 50 0.99999094 +8 31.02 34.8975 1000 50 0.67970437 +9 34.8975 38.775 1000 50 0.98514694 +10 42.6525 46.53 1000 50 0.99976295 +11 46.53 50.4075 1000 50 0.999966 +12 50.4075 54.285 1000 50 0.88541615 +13 54.285 58.162499999999994 1000 50 0.9995389 +14 58.1625 62.04 1000 50 0.99978393 +15 62.04 65.9175 1000 50 0.817951 +16 65.9175 69.795 1000 50 0.9998584 +17 69.795 73.6725 1000 50 0.9983494 +18 77.55 81.4275 1000 50 0.99999917 +19 81.4275 85.30499999999999 1000 50 0.96593237 +20 85.305 89.1825 1000 50 0.99999845 +21 89.1825 93.06 1000 50 0.99985063 +22 93.06 96.9375 1000 50 0.99991155 +23 100.815 104.6925 1000 50 0.9864066 +24 104.6925 108.57 1000 50 0.6870758 +25 108.57 112.44749999999999 1000 50 0.90629756 +26 112.4475 116.325 1000 50 0.9906455 +27 116.325 120.2025 1000 50 0.9991769 +28 120.2025 124.08 1000 50 0.80567557 +29 124.08 127.9575 1000 50 0.99994075 +30 127.9575 131.835 1000 50 0.9382731 +31 131.835 135.7125 1000 50 0.99984694 +32 135.7125 139.59 1000 50 0.9999261 +33 143.4675 147.345 1000 50 0.7428752 +34 147.345 151.2225 1000 50 0.99999976 +35 151.2225 155.1 1000 50 0.9967991 +36 155.1 158.9775 1000 50 0.8416131 +37 166.7325 170.60999999999999 1000 50 0.9999275 +38 174.4875 178.365 1000 50 0.71047175 +39 178.365 182.2425 1000 50 0.9783569 +40 186.12 189.9975 1000 50 0.62869835 +41 189.9975 193.875 1000 50 0.7630279 +42 193.875 197.7525 1000 50 0.9977041 +43 197.7525 201.63 1000 50 0.6852995 +44 201.63 205.5075 1000 50 0.668356 +45 209.385 213.2625 1000 50 0.8887249 +46 213.2625 217.14 1000 50 0.7543614 +47 221.0175 224.895 1000 50 0.7863839 +48 228.7725 232.65 1000 50 0.586491 +49 232.65 236.5275 1000 50 0.8812437 +50 240.405 244.2825 1000 50 0.5562934 +51 244.2825 248.16 1000 50 0.70244807 +52 252.0375 255.915 1000 50 0.92768 +53 263.67 267.5475 1000 50 0.81881434 +54 271.425 275.3025 1000 50 0.56460977 +55 294.69 298.5675 1000 50 0.7086764 +56 306.3225 310.2 1000 50 0.6159237 +57 310.2 314.0775 1000 50 0.77915066 +58 314.0775 317.955 1000 50 0.65394104 +59 325.71 329.5875 1000 50 0.99992955 +60 329.5875 333.465 1000 50 0.9364268 +61 337.3425 341.21999999999997 1000 50 0.99993944 +62 341.22 345.0975 1000 50 0.99991536 +63 352.8525 356.73 1000 50 0.5665406 +64 360.6075 364.485 1000 50 0.9825216 +65 364.485 368.3625 1000 50 0.99922967 +66 368.3625 372.24 1000 50 0.97560966 +67 372.24 376.1175 1000 50 0.6058903 +68 376.1175 379.995 1000 50 0.96903324 +69 379.995 383.8725 1000 50 0.866092 +70 383.8725 387.75 1000 50 0.9994092 +71 387.75 391.6275 1000 50 0.99554765 +72 391.6275 395.505 1000 50 0.72482336 +73 395.505 399.3825 1000 50 0.9999473 +74 403.26 407.1375 1000 50 0.9831548 +75 411.015 414.8925 1000 50 0.7635568 +76 414.8925 418.77 1000 50 0.98956937 +77 418.77 422.6475 1000 50 0.99276453 +78 426.525 430.4025 1000 50 0.99971765 +79 430.4025 434.28 1000 50 0.613372 +80 438.1575 442.035 1000 50 0.9934673 +81 445.9125 449.79 1000 50 0.9814792 +82 449.79 453.6675 1000 50 0.82347554 +83 457.545 461.4225 1000 50 0.5290563 +84 465.3 469.1775 1000 50 0.99899274 +85 473.055 476.9325 1000 50 0.9830071 +86 480.81 484.6875 1000 50 0.8202997 +87 484.6875 488.565 1000 50 0.746151 +88 492.4425 496.32 1000 50 0.90960664 +89 496.32 500.1975 1000 50 0.9822802 +90 500.1975 504.075 1000 50 0.9997008 +91 504.075 507.9525 1000 50 0.983146 +92 515.7075 519.585 1000 50 0.51340854 +93 523.4625 527.34 1000 50 0.98783475 +94 527.34 531.2175000000001 1000 50 0.9991062 +95 531.2175 535.095 1000 50 0.9997807 +96 535.095 538.9725000000001 1000 50 0.9940731 +97 538.9725 542.85 1000 50 0.9697539 +98 542.85 546.7275000000001 1000 50 0.9998864 +99 546.7275 550.605 1000 50 0.9992556 +100 554.4825 558.36 1000 50 0.9998566 +101 558.36 562.2375000000001 1000 50 0.99999917 +102 562.2375 566.115 1000 50 0.9984163 +103 566.115 569.9925000000001 1000 50 0.9822641 +104 569.9925 573.87 1000 50 0.91652393 +105 573.87 577.7475000000001 1000 50 0.99700445 +106 577.7475 581.625 1000 50 0.9958268 +107 581.625 585.5025 1000 50 0.85014045 +108 585.5025 589.3800000000001 1000 50 0.9567087 +109 593.2575 597.1350000000001 1000 50 0.9999759 +110 601.0125 604.8900000000001 1000 50 0.99994266 +111 604.89 608.7675 1000 50 0.99999595 +112 612.645 616.5225 1000 50 0.9999604 +113 616.5225 620.4000000000001 1000 50 0.9975962 +114 620.4 624.2775 1000 50 0.87253416 +115 624.2775 628.1550000000001 1000 50 0.9999813 +116 628.155 632.0325 1000 50 0.9998122 +117 632.0325 635.9100000000001 1000 50 0.99976534 +118 635.91 639.7875 1000 50 0.9999994 +119 639.7875 643.6650000000001 1000 50 0.992121 +120 643.665 647.5425 1000 50 0.9994487 +121 647.5425 651.4200000000001 1000 50 0.9983535 +122 655.2975 659.1750000000001 1000 50 0.9920597 +123 659.175 663.0525 1000 50 0.9998658 +124 663.0525 666.9300000000001 1000 50 0.92026544 +125 666.93 670.8075 1000 50 0.991504 +126 670.8075 674.6850000000001 1000 50 0.98393005 +127 674.685 678.5625 1000 50 0.9999999 +128 686.3175 690.195 1000 50 0.99999964 +129 690.195 694.0725000000001 1000 50 1.0 +130 694.0725 697.95 1000 50 0.58203465 +131 701.8275 705.705 1000 50 0.99806875 +132 705.705 709.5825000000001 1000 50 0.9999839 +133 709.5825 713.46 1000 50 0.99663585 +134 713.46 717.3375000000001 1000 50 0.7897422 +135 717.3375 721.215 1000 50 0.99923766 +136 721.215 725.0925000000001 1000 50 0.99930763 +137 725.0925 728.97 1000 50 0.9948502 +138 728.97 732.8475000000001 1000 50 0.9999906 +139 732.8475 736.725 1000 50 0.99999523 +140 736.725 740.6025000000001 1000 50 0.99662364 +141 740.6025 744.48 1000 50 0.82851905 +142 744.48 748.3575000000001 1000 50 0.8926827 +143 748.3575 752.235 1000 50 0.975415 +144 752.235 756.1125000000001 1000 50 0.99948883 +145 756.1125 759.99 1000 50 0.92824507 +146 759.99 763.8675000000001 1000 50 0.9998723 +147 763.8675 767.745 1000 50 0.9982476 +148 767.745 771.6225000000001 1000 50 0.99996614 +149 771.6225 775.5 1000 50 0.9999596 +150 775.5 779.3775 1000 50 0.99883646 +151 779.3775 783.2550000000001 1000 50 0.9991062 +152 783.255 787.1325 1000 50 0.999647 +153 787.1325 791.0100000000001 1000 50 0.9851649 +154 791.01 794.8875 1000 50 0.99999034 +155 794.8875 798.7650000000001 1000 50 0.7751251 +156 798.765 802.6425 1000 50 0.99695754 +157 802.6425 806.5200000000001 1000 50 0.9530154 +158 806.52 810.3975 1000 50 0.9208068 +159 810.3975 814.2750000000001 1000 50 0.9897343 +160 814.275 818.1525 1000 50 0.99992037 +161 818.1525 822.0300000000001 1000 50 0.7528918 +162 822.03 825.9075 1000 50 0.992577 +163 825.9075 829.7850000000001 1000 50 0.78375703 +164 829.785 833.6625 1000 50 0.9997162 +165 833.6625 837.5400000000001 1000 50 0.9999566 +166 841.4175 845.2950000000001 1000 50 0.9938397 +167 845.295 849.1725 1000 50 0.99999285 +168 849.1725 853.0500000000001 1000 50 0.99942964 +169 853.05 856.9275 1000 50 0.55457765 +170 856.9275 860.8050000000001 1000 50 0.90589875 +171 860.805 864.6825 1000 50 0.7891991 +172 864.6825 868.5600000000001 1000 50 0.9982736 +173 868.56 872.4375 1000 50 0.81580764 +174 872.4375 876.315 1000 50 0.99990296 +175 876.315 880.1925000000001 1000 50 0.96567667 +176 880.1925 884.07 1000 50 0.8977561 +177 884.07 887.9475000000001 1000 50 0.9838166 +178 887.9475 891.825 1000 50 0.98411775 +179 891.825 895.7025000000001 1000 50 0.86354214 +180 899.58 903.4575000000001 1000 50 0.9381377 +181 903.4575 907.335 1000 50 0.9982247 +182 907.335 911.2125000000001 1000 50 0.99992156 +183 911.2125 915.09 1000 50 0.99868256 +184 915.09 918.9675000000001 1000 50 0.99450004 +185 918.9675 922.845 1000 50 0.9939872 +186 922.845 926.7225000000001 1000 50 0.9910025 +187 926.7225 930.6 1000 50 0.9996331 +188 930.6 934.4775000000001 1000 50 0.57042205 +189 934.4775 938.355 1000 50 0.99969864 +190 938.355 942.2325000000001 1000 50 0.93275243 +191 942.2325 946.11 1000 50 1.0 +192 946.11 949.9875000000001 1000 50 0.9999745 +193 949.9875 953.865 1000 50 0.6640479 +194 953.865 957.7425000000001 1000 50 0.99999976 +195 957.7425 961.62 1000 50 0.99981624 +196 961.62 965.4975000000001 1000 50 0.9983712 +197 965.4975 969.375 1000 50 0.999969 +198 969.375 973.2525 1000 50 0.8443058 +199 973.2525 977.1300000000001 1000 50 0.9998487 +200 977.13 981.0075 1000 50 0.9559838 +201 981.0075 984.8850000000001 1000 50 0.68507296 +202 984.885 988.7625 1000 50 0.5450272 +203 988.7625 992.6400000000001 1000 50 0.9991689 +204 992.64 996.5175 1000 50 0.99981564 +205 996.5175 1000.3950000000001 1000 50 0.7953182 +206 1004.2725 1008.1500000000001 1000 50 0.99976474 +207 1008.15 1012.0275 1000 50 0.9996544 +208 1015.905 1019.7825 1000 50 0.99994695 +209 1019.7825 1023.6600000000001 1000 50 0.9547066 +210 1023.66 1027.5375 1000 50 0.6220232 +211 1027.5375 1031.415 1000 50 0.9175432 +212 1031.415 1035.2925 1000 50 0.52886325 +213 1039.17 1043.0475000000001 1000 50 0.9991547 +214 1043.0475 1046.925 1000 50 0.9979936 +215 1046.925 1050.8025 1000 50 0.54230684 +216 1050.8025 1054.68 1000 50 0.993523 +217 1058.5575 1062.435 1000 50 0.999438 +218 1062.435 1066.3125 1000 50 0.5542176 +219 1074.0675 1077.9450000000002 1000 50 0.7038714 +220 1081.8225 1085.7 1000 50 0.8403508 +221 1085.7 1089.5775 1000 50 0.56426847 +222 1093.455 1097.3325 1000 50 0.83014804 +223 1097.3325 1101.21 1000 50 0.9848203 +224 1101.21 1105.0875 1000 50 0.9968425 +225 1105.0875 1108.9650000000001 1000 50 0.95638096 +226 1112.8425 1116.72 1000 50 0.9996716 +227 1120.5975 1124.4750000000001 1000 50 0.90083 +228 1124.475 1128.3525 1000 50 0.99997306 +229 1132.23 1136.1075 1000 50 0.9831322 +230 1136.1075 1139.9850000000001 1000 50 0.9997929 +231 1143.8625 1147.74 1000 50 0.804187 +232 1147.74 1151.6175 1000 50 0.9999136 +233 1151.6175 1155.4950000000001 1000 50 0.5311811 +234 1155.495 1159.3725 1000 50 0.99997675 +235 1159.3725 1163.25 1000 50 0.7381373 +236 1167.1275 1171.005 1000 50 0.99935037 +237 1171.005 1174.8825000000002 1000 50 0.7219128 +238 1178.76 1182.6375 1000 50 0.544919 +239 1182.6375 1186.515 1000 50 0.97090876 +240 1186.515 1190.3925000000002 1000 50 0.9887223 +241 1190.3925 1194.27 1000 50 0.8961418 +242 1194.27 1198.1475 1000 50 0.9036123 +243 1202.025 1205.9025000000001 1000 50 0.99999905 +244 1209.78 1213.6575 1000 50 0.6783711 +245 1213.6575 1217.535 1000 50 0.9638036 +246 1217.535 1221.4125000000001 1000 50 0.99999464 +247 1221.4125 1225.29 1000 50 0.9897395 +248 1225.29 1229.1675 1000 50 0.99330115 +249 1229.1675 1233.045 1000 50 1.0 +250 1233.045 1236.9225000000001 1000 50 0.9996331 +251 1236.9225 1240.8 1000 50 0.99977297 +252 1240.8 1244.6775 1000 50 0.9262905 +253 1244.6775 1248.555 1000 50 0.9970523 +254 1252.4325 1256.31 1000 50 0.9940376 +255 1256.31 1260.1875 1000 50 0.9336906 +256 1260.1875 1264.065 1000 50 0.9113537 +257 1264.065 1267.9425 1000 50 0.98408604 +258 1287.33 1291.2075 1000 50 0.6139688 +259 1291.2075 1295.085 1000 50 0.54087824 +260 1298.9625 1302.8400000000001 1000 50 0.8304412 +261 1318.35 1322.2275 1000 50 0.85008013 +262 1322.2275 1326.105 1000 50 0.9892502 +263 1337.7375 1341.615 1000 50 0.5597812 +264 1341.615 1345.4925 1000 50 0.95822453 +265 1345.4925 1349.3700000000001 1000 50 0.86013603 +266 1349.37 1353.2475 1000 50 0.6346039 +267 1357.125 1361.0025 1000 50 0.5743222 +268 1364.88 1368.7575000000002 1000 50 0.9900506 +269 1372.635 1376.5125 1000 50 0.98670304 +270 1376.5125 1380.39 1000 50 0.9071217 +271 1388.145 1392.0225 1000 50 0.6977944 +272 1399.7775 1403.655 1000 50 0.99999785 +273 1403.655 1407.5325 1000 50 0.9999827 +274 1411.41 1415.2875000000001 1000 50 0.9998072 +275 1415.2875 1419.165 1000 50 0.9999732 +276 1419.165 1423.0425 1000 50 0.84822613 +277 1423.0425 1426.92 1000 50 0.9999989 +278 1430.7975 1434.675 1000 50 0.83889955 +279 1434.675 1438.5525 1000 50 0.9999999 +280 1438.5525 1442.43 1000 50 0.50680476 +281 1442.43 1446.3075000000001 1000 50 0.9992343 +282 1446.3075 1450.185 1000 50 0.9999913 +283 1457.94 1461.8175 1000 50 0.97072774 +284 1461.8175 1465.6950000000002 1000 50 0.65180075 +285 1465.695 1469.5725 1000 50 0.9261331 +286 1473.45 1477.3275 1000 50 0.9999614 +287 1477.3275 1481.2050000000002 1000 50 0.8168004 +288 1485.0825 1488.96 1000 50 0.96166617 +289 1488.96 1492.8375 1000 50 0.9945797 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_01-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_01-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d7345df7c78ffb6954cbe27787d5aa0f087f2641 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_01-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,19 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.84351057 +2 3.8775 7.755 1000 50 0.9991429 +3 7.755 11.6325 1000 50 0.75653756 +4 15.51 19.3875 1000 50 0.7882755 +5 19.3875 23.265 1000 50 0.9975552 +6 23.265 27.142500000000002 1000 50 0.97354174 +7 27.1425 31.02 1000 50 0.80494356 +8 38.775 42.652499999999996 1000 50 0.99479383 +9 46.53 50.4075 1000 50 0.98090875 +10 50.4075 54.285 1000 50 0.9891037 +11 58.1625 62.04 1000 50 0.9815942 +12 62.04 65.9175 1000 50 0.99988556 +13 65.9175 69.795 1000 50 0.55575246 +14 69.795 73.6725 1000 50 0.9991528 +15 73.6725 77.55 1000 50 0.7945812 +16 77.55 81.4275 1000 50 0.8185992 +17 81.4275 85.30499999999999 1000 50 0.6664387 +18 89.1825 93.06 1000 50 0.96292114 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_01-05-08_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_01-05-08_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..c583e7b226598a98105e1db40d4e4f7d573c7a20 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_01-05-08_annot_2022-11-30_01.txt @@ -0,0 +1,200 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.95702124 +2 3.8775 7.755 1000 50 0.9889957 +3 7.755 11.6325 1000 50 0.8156915 +4 11.6325 15.51 1000 50 0.9944699 +5 15.51 19.3875 1000 50 0.9999573 +6 19.3875 23.265 1000 50 0.99312043 +7 23.265 27.142500000000002 1000 50 0.55208296 +8 27.1425 31.02 1000 50 0.78387475 +9 31.02 34.8975 1000 50 0.989035 +10 42.6525 46.53 1000 50 0.9711459 +11 50.4075 54.285 1000 50 0.9691347 +12 54.285 58.162499999999994 1000 50 0.9995072 +13 58.1625 62.04 1000 50 0.9430566 +14 69.795 73.6725 1000 50 0.8054985 +15 77.55 81.4275 1000 50 0.9989944 +16 81.4275 85.30499999999999 1000 50 0.9939085 +17 89.1825 93.06 1000 50 0.97860366 +18 93.06 96.9375 1000 50 0.9576045 +19 100.815 104.6925 1000 50 0.9594235 +20 112.4475 116.325 1000 50 0.75338876 +21 135.7125 139.59 1000 50 0.9418673 +22 139.59 143.4675 1000 50 0.98212296 +23 143.4675 147.345 1000 50 0.99999833 +24 147.345 151.2225 1000 50 0.9998523 +25 155.1 158.9775 1000 50 0.62308997 +26 158.9775 162.855 1000 50 0.9309828 +27 182.2425 186.12 1000 50 0.9685103 +28 189.9975 193.875 1000 50 0.93536514 +29 197.7525 201.63 1000 50 0.9758816 +30 201.63 205.5075 1000 50 0.7307174 +31 209.385 213.2625 1000 50 0.8762059 +32 213.2625 217.14 1000 50 0.84981483 +33 221.0175 224.895 1000 50 0.5179007 +34 232.65 236.5275 1000 50 0.8069158 +35 244.2825 248.16 1000 50 0.51218843 +36 248.16 252.0375 1000 50 0.6549374 +37 255.915 259.7925 1000 50 0.5357127 +38 259.7925 263.67 1000 50 0.88503915 +39 267.5475 271.425 1000 50 0.9997211 +40 286.935 290.8125 1000 50 0.7868476 +41 290.8125 294.69 1000 50 0.95571405 +42 298.5675 302.445 1000 50 0.97814375 +43 310.2 314.0775 1000 50 0.93981105 +44 314.0775 317.955 1000 50 0.99952054 +45 321.8325 325.71 1000 50 0.8925157 +46 325.71 329.5875 1000 50 0.9998807 +47 329.5875 333.465 1000 50 0.99970883 +48 333.465 337.3425 1000 50 0.9543498 +49 337.3425 341.21999999999997 1000 50 0.9003228 +50 341.22 345.0975 1000 50 0.9303809 +51 345.0975 348.975 1000 50 0.84952986 +52 352.8525 356.73 1000 50 0.9999908 +53 356.73 360.6075 1000 50 0.9999808 +54 364.485 368.3625 1000 50 0.9999988 +55 368.3625 372.24 1000 50 0.99810946 +56 372.24 376.1175 1000 50 0.90894973 +57 379.995 383.8725 1000 50 0.9045201 +58 383.8725 387.75 1000 50 0.9895202 +59 387.75 391.6275 1000 50 0.9983119 +60 395.505 399.3825 1000 50 0.93045974 +61 399.3825 403.26 1000 50 0.9756454 +62 411.015 414.8925 1000 50 0.9999951 +63 414.8925 418.77 1000 50 0.9996885 +64 418.77 422.6475 1000 50 0.8108384 +65 422.6475 426.525 1000 50 0.99999845 +66 426.525 430.4025 1000 50 0.8833514 +67 430.4025 434.28 1000 50 0.8053305 +68 434.28 438.15749999999997 1000 50 0.9065775 +69 438.1575 442.035 1000 50 0.6719136 +70 442.035 445.9125 1000 50 0.9994985 +71 445.9125 449.79 1000 50 0.9504937 +72 449.79 453.6675 1000 50 0.9967865 +73 453.6675 457.545 1000 50 0.99980134 +74 457.545 461.4225 1000 50 0.99958605 +75 465.3 469.1775 1000 50 0.9593358 +76 469.1775 473.055 1000 50 0.9995784 +77 473.055 476.9325 1000 50 0.9647347 +78 476.9325 480.81 1000 50 0.96837103 +79 480.81 484.6875 1000 50 0.9824002 +80 484.6875 488.565 1000 50 0.99995553 +81 492.4425 496.32 1000 50 0.5463866 +82 496.32 500.1975 1000 50 0.95868444 +83 500.1975 504.075 1000 50 0.98540515 +84 507.9525 511.83 1000 50 0.9545251 +85 511.83 515.7075 1000 50 0.96975154 +86 515.7075 519.585 1000 50 0.9332979 +87 519.585 523.4625000000001 1000 50 0.8813006 +88 523.4625 527.34 1000 50 0.99991894 +89 527.34 531.2175000000001 1000 50 0.9983644 +90 531.2175 535.095 1000 50 0.8774649 +91 535.095 538.9725000000001 1000 50 0.6403437 +92 538.9725 542.85 1000 50 0.9773612 +93 542.85 546.7275000000001 1000 50 0.95986295 +94 546.7275 550.605 1000 50 0.99636984 +95 550.605 554.4825000000001 1000 50 0.9475496 +96 554.4825 558.36 1000 50 0.99539715 +97 558.36 562.2375000000001 1000 50 0.74093014 +98 566.115 569.9925000000001 1000 50 0.9997172 +99 569.9925 573.87 1000 50 0.9845673 +100 573.87 577.7475000000001 1000 50 0.81318617 +101 577.7475 581.625 1000 50 0.961602 +102 581.625 585.5025 1000 50 0.93888384 +103 585.5025 589.3800000000001 1000 50 0.60858136 +104 597.135 601.0125 1000 50 0.6157328 +105 604.89 608.7675 1000 50 0.54598874 +106 612.645 616.5225 1000 50 0.8121747 +107 616.5225 620.4000000000001 1000 50 0.66847146 +108 620.4 624.2775 1000 50 0.60028625 +109 624.2775 628.1550000000001 1000 50 0.5410751 +110 651.42 655.2975 1000 50 0.99744844 +111 659.175 663.0525 1000 50 0.85216 +112 663.0525 666.9300000000001 1000 50 0.8167442 +113 666.93 670.8075 1000 50 0.86928785 +114 682.44 686.3175000000001 1000 50 0.9978878 +115 686.3175 690.195 1000 50 0.64951456 +116 694.0725 697.95 1000 50 0.7712819 +117 697.95 701.8275000000001 1000 50 0.7605383 +118 701.8275 705.705 1000 50 0.54405016 +119 709.5825 713.46 1000 50 0.7801504 +120 713.46 717.3375000000001 1000 50 0.5536838 +121 732.8475 736.725 1000 50 0.78041315 +122 736.725 740.6025000000001 1000 50 0.6619747 +123 740.6025 744.48 1000 50 0.8653736 +124 744.48 748.3575000000001 1000 50 0.5280373 +125 748.3575 752.235 1000 50 0.6530871 +126 759.99 763.8675000000001 1000 50 0.58832425 +127 767.745 771.6225000000001 1000 50 0.7792659 +128 771.6225 775.5 1000 50 0.726023 +129 775.5 779.3775 1000 50 0.8376907 +130 783.255 787.1325 1000 50 0.81591994 +131 787.1325 791.0100000000001 1000 50 0.7347238 +132 810.3975 814.2750000000001 1000 50 0.54319125 +133 814.275 818.1525 1000 50 0.9963018 +134 818.1525 822.0300000000001 1000 50 0.70557845 +135 825.9075 829.7850000000001 1000 50 0.87367266 +136 829.785 833.6625 1000 50 0.999974 +137 833.6625 837.5400000000001 1000 50 0.51644605 +138 837.54 841.4175 1000 50 0.634914 +139 841.4175 845.2950000000001 1000 50 0.68341404 +140 845.295 849.1725 1000 50 0.9999566 +141 849.1725 853.0500000000001 1000 50 0.8134962 +142 860.805 864.6825 1000 50 0.9995592 +143 864.6825 868.5600000000001 1000 50 0.55651337 +144 868.56 872.4375 1000 50 0.9992655 +145 872.4375 876.315 1000 50 0.7059255 +146 876.315 880.1925000000001 1000 50 0.9280948 +147 880.1925 884.07 1000 50 0.96679884 +148 884.07 887.9475000000001 1000 50 0.998445 +149 887.9475 891.825 1000 50 0.98403347 +150 895.7025 899.58 1000 50 0.9686996 +151 899.58 903.4575000000001 1000 50 0.988504 +152 903.4575 907.335 1000 50 0.5100754 +153 907.335 911.2125000000001 1000 50 0.997106 +154 911.2125 915.09 1000 50 0.92561257 +155 915.09 918.9675000000001 1000 50 0.7235767 +156 918.9675 922.845 1000 50 0.9999988 +157 926.7225 930.6 1000 50 0.8414232 +158 930.6 934.4775000000001 1000 50 0.99952984 +159 934.4775 938.355 1000 50 0.99940777 +160 938.355 942.2325000000001 1000 50 0.99966013 +161 942.2325 946.11 1000 50 0.95604515 +162 949.9875 953.865 1000 50 0.9995795 +163 953.865 957.7425000000001 1000 50 0.9992874 +164 957.7425 961.62 1000 50 0.88627887 +165 961.62 965.4975000000001 1000 50 0.99999726 +166 969.375 973.2525 1000 50 0.9305144 +167 973.2525 977.1300000000001 1000 50 0.95132136 +168 977.13 981.0075 1000 50 0.7158687 +169 988.7625 992.6400000000001 1000 50 0.837027 +170 992.64 996.5175 1000 50 0.59033614 +171 996.5175 1000.3950000000001 1000 50 0.62622243 +172 1004.2725 1008.1500000000001 1000 50 0.6416906 +173 1008.15 1012.0275 1000 50 0.9986199 +174 1012.0275 1015.9050000000001 1000 50 0.957378 +175 1015.905 1019.7825 1000 50 0.97188526 +176 1019.7825 1023.6600000000001 1000 50 0.68273824 +177 1023.66 1027.5375 1000 50 0.9947665 +178 1031.415 1035.2925 1000 50 0.6064981 +179 1035.2925 1039.17 1000 50 0.7865881 +180 1039.17 1043.0475000000001 1000 50 0.92010576 +181 1050.8025 1054.68 1000 50 0.818413 +182 1062.435 1066.3125 1000 50 0.74554485 +183 1070.19 1074.0675 1000 50 0.60692126 +184 1097.3325 1101.21 1000 50 0.788809 +185 1108.965 1112.8425 1000 50 0.5672084 +186 1116.72 1120.5975 1000 50 0.7264058 +187 1120.5975 1124.4750000000001 1000 50 0.61700094 +188 1124.475 1128.3525 1000 50 0.61100894 +189 1128.3525 1132.23 1000 50 0.94079286 +190 1132.23 1136.1075 1000 50 0.79696375 +191 1136.1075 1139.9850000000001 1000 50 0.98917145 +192 1139.985 1143.8625 1000 50 0.589463 +193 1143.8625 1147.74 1000 50 0.9606135 +194 1151.6175 1155.4950000000001 1000 50 0.7461204 +195 1155.495 1159.3725 1000 50 0.69601166 +196 1171.005 1174.8825000000002 1000 50 0.99426997 +197 1178.76 1182.6375 1000 50 0.8828093 +198 1182.6375 1186.515 1000 50 0.8264862 +199 1190.3925 1194.27 1000 50 0.65002733 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_02-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_02-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..178757c7bbdb850ce3ef672cc791234b7c649a11 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_02-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,85 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.8490287 +2 3.8775 7.755 1000 50 0.55717444 +3 7.755 11.6325 1000 50 0.6775607 +4 11.6325 15.51 1000 50 0.77536076 +5 15.51 19.3875 1000 50 0.9421861 +6 19.3875 23.265 1000 50 0.98944867 +7 23.265 27.142500000000002 1000 50 0.7841056 +8 27.1425 31.02 1000 50 0.6692436 +9 31.02 34.8975 1000 50 0.5696434 +10 34.8975 38.775 1000 50 0.51872814 +11 38.775 42.652499999999996 1000 50 0.88766706 +12 42.6525 46.53 1000 50 0.94140935 +13 46.53 50.4075 1000 50 0.99431723 +14 50.4075 54.285 1000 50 0.7364668 +15 54.285 58.162499999999994 1000 50 0.7557551 +16 69.795 73.6725 1000 50 0.9122932 +17 73.6725 77.55 1000 50 0.9697295 +18 77.55 81.4275 1000 50 0.6335472 +19 81.4275 85.30499999999999 1000 50 0.9916055 +20 85.305 89.1825 1000 50 0.9903218 +21 89.1825 93.06 1000 50 0.80678433 +22 93.06 96.9375 1000 50 0.8224551 +23 96.9375 100.815 1000 50 0.55008507 +24 116.325 120.2025 1000 50 0.5224589 +25 120.2025 124.08 1000 50 0.5978539 +26 124.08 127.9575 1000 50 0.94013536 +27 131.835 135.7125 1000 50 0.99591833 +28 135.7125 139.59 1000 50 0.7533398 +29 139.59 143.4675 1000 50 0.9927666 +30 143.4675 147.345 1000 50 0.99999845 +31 147.345 151.2225 1000 50 0.9931859 +32 155.1 158.9775 1000 50 0.9999949 +33 158.9775 162.855 1000 50 0.9999963 +34 166.7325 170.60999999999999 1000 50 0.9599998 +35 170.61 174.4875 1000 50 0.96759236 +36 174.4875 178.365 1000 50 0.986497 +37 186.12 189.9975 1000 50 0.9977737 +38 189.9975 193.875 1000 50 0.73487073 +39 193.875 197.7525 1000 50 0.50487614 +40 197.7525 201.63 1000 50 0.99882895 +41 201.63 205.5075 1000 50 0.8434422 +42 209.385 213.2625 1000 50 0.93684244 +43 213.2625 217.14 1000 50 0.7096961 +44 217.14 221.01749999999998 1000 50 0.82906485 +45 221.0175 224.895 1000 50 0.7731859 +46 224.895 228.7725 1000 50 0.9742061 +47 232.65 236.5275 1000 50 0.8952822 +48 236.5275 240.405 1000 50 0.85327023 +49 248.16 252.0375 1000 50 0.6883033 +50 252.0375 255.915 1000 50 0.99216664 +51 255.915 259.7925 1000 50 0.73939097 +52 259.7925 263.67 1000 50 0.9998753 +53 263.67 267.5475 1000 50 0.99998116 +54 267.5475 271.425 1000 50 0.9948803 +55 271.425 275.3025 1000 50 0.95986646 +56 275.3025 279.18 1000 50 0.99997115 +57 279.18 283.0575 1000 50 0.9510077 +58 283.0575 286.935 1000 50 0.98355955 +59 286.935 290.8125 1000 50 0.9975593 +60 294.69 298.5675 1000 50 0.92701 +61 306.3225 310.2 1000 50 0.99939907 +62 314.0775 317.955 1000 50 0.9025011 +63 317.955 321.8325 1000 50 0.9997881 +64 325.71 329.5875 1000 50 0.84597373 +65 329.5875 333.465 1000 50 0.98433983 +66 333.465 337.3425 1000 50 0.9960317 +67 337.3425 341.21999999999997 1000 50 0.99913174 +68 341.22 345.0975 1000 50 0.81144285 +69 345.0975 348.975 1000 50 0.98631334 +70 348.975 352.8525 1000 50 0.5054807 +71 352.8525 356.73 1000 50 0.99459803 +72 356.73 360.6075 1000 50 0.9932899 +73 360.6075 364.485 1000 50 0.999998 +74 364.485 368.3625 1000 50 0.99999344 +75 368.3625 372.24 1000 50 0.9992755 +76 372.24 376.1175 1000 50 0.9998379 +77 376.1175 379.995 1000 50 0.9999974 +78 379.995 383.8725 1000 50 0.9315437 +79 387.75 391.6275 1000 50 0.9951798 +80 391.6275 395.505 1000 50 0.5761764 +81 395.505 399.3825 1000 50 0.57236135 +82 399.3825 403.26 1000 50 0.90967906 +83 403.26 407.1375 1000 50 0.99791545 +84 407.1375 411.015 1000 50 0.9877592 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_02-10-28_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_02-10-28_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..6f6aaf21baa363ceedf0ecac118b1a9fb451e516 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_02-10-28_annot_2022-11-30_01.txt @@ -0,0 +1,153 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.7935594 +2 3.8775 7.755 1000 50 0.83690894 +3 7.755 11.6325 1000 50 0.6454465 +4 15.51 19.3875 1000 50 0.8167596 +5 19.3875 23.265 1000 50 0.7988536 +6 23.265 27.142500000000002 1000 50 0.9985185 +7 27.1425 31.02 1000 50 0.70710856 +8 34.8975 38.775 1000 50 0.9990803 +9 38.775 42.652499999999996 1000 50 0.54230934 +10 46.53 50.4075 1000 50 0.74420345 +11 50.4075 54.285 1000 50 0.643745 +12 54.285 58.162499999999994 1000 50 0.65068966 +13 58.1625 62.04 1000 50 0.68751997 +14 65.9175 69.795 1000 50 0.6404785 +15 69.795 73.6725 1000 50 0.8077448 +16 73.6725 77.55 1000 50 0.92798465 +17 77.55 81.4275 1000 50 0.99966455 +18 85.305 89.1825 1000 50 0.7321711 +19 89.1825 93.06 1000 50 0.89677584 +20 93.06 96.9375 1000 50 0.68308437 +21 104.6925 108.57 1000 50 0.606272 +22 124.08 127.9575 1000 50 0.6414473 +23 135.7125 139.59 1000 50 0.70759207 +24 143.4675 147.345 1000 50 0.7689228 +25 147.345 151.2225 1000 50 0.6858037 +26 151.2225 155.1 1000 50 0.8917195 +27 155.1 158.9775 1000 50 0.9927241 +28 158.9775 162.855 1000 50 0.99486685 +29 162.855 166.7325 1000 50 0.51507056 +30 166.7325 170.60999999999999 1000 50 0.63763434 +31 170.61 174.4875 1000 50 0.9818366 +32 174.4875 178.365 1000 50 0.89707 +33 178.365 182.2425 1000 50 0.60095125 +34 182.2425 186.12 1000 50 0.99996483 +35 193.875 197.7525 1000 50 0.99879104 +36 197.7525 201.63 1000 50 0.99928766 +37 201.63 205.5075 1000 50 0.66372764 +38 209.385 213.2625 1000 50 0.9994869 +39 213.2625 217.14 1000 50 0.9995679 +40 217.14 221.01749999999998 1000 50 0.7881857 +41 221.0175 224.895 1000 50 0.96604264 +42 244.2825 248.16 1000 50 0.7713935 +43 248.16 252.0375 1000 50 0.9999285 +44 252.0375 255.915 1000 50 0.9962894 +45 255.915 259.7925 1000 50 0.893549 +46 259.7925 263.67 1000 50 0.99925715 +47 263.67 267.5475 1000 50 0.8392141 +48 271.425 275.3025 1000 50 0.99431396 +49 275.3025 279.18 1000 50 0.92862666 +50 279.18 283.0575 1000 50 0.79542214 +51 283.0575 286.935 1000 50 0.9999715 +52 286.935 290.8125 1000 50 0.9968443 +53 290.8125 294.69 1000 50 0.9974896 +54 294.69 298.5675 1000 50 0.99999857 +55 298.5675 302.445 1000 50 0.94740576 +56 302.445 306.3225 1000 50 0.9992974 +57 306.3225 310.2 1000 50 0.8251783 +58 310.2 314.0775 1000 50 0.99293256 +59 314.0775 317.955 1000 50 0.9999356 +60 317.955 321.8325 1000 50 0.9999931 +61 329.5875 333.465 1000 50 0.9944772 +62 333.465 337.3425 1000 50 0.98892015 +63 337.3425 341.21999999999997 1000 50 0.99997914 +64 348.975 352.8525 1000 50 0.9937894 +65 352.8525 356.73 1000 50 0.9998318 +66 356.73 360.6075 1000 50 0.9951971 +67 360.6075 364.485 1000 50 0.95796824 +68 364.485 368.3625 1000 50 0.9871884 +69 368.3625 372.24 1000 50 0.6563438 +70 372.24 376.1175 1000 50 0.51137507 +71 376.1175 379.995 1000 50 0.96874815 +72 379.995 383.8725 1000 50 0.99977666 +73 391.6275 395.505 1000 50 0.62736565 +74 395.505 399.3825 1000 50 0.9999974 +75 399.3825 403.26 1000 50 0.99925643 +76 407.1375 411.015 1000 50 0.9998598 +77 411.015 414.8925 1000 50 0.8988229 +78 414.8925 418.77 1000 50 0.9987557 +79 418.77 422.6475 1000 50 0.9999012 +80 422.6475 426.525 1000 50 0.65671694 +81 430.4025 434.28 1000 50 0.96125245 +82 434.28 438.15749999999997 1000 50 0.9125955 +83 438.1575 442.035 1000 50 0.9899066 +84 445.9125 449.79 1000 50 0.68719184 +85 453.6675 457.545 1000 50 0.9855027 +86 461.4225 465.3 1000 50 0.9997131 +87 469.1775 473.055 1000 50 0.9909819 +88 473.055 476.9325 1000 50 0.9845745 +89 476.9325 480.81 1000 50 0.990621 +90 480.81 484.6875 1000 50 0.85747397 +91 484.6875 488.565 1000 50 0.7003899 +92 488.565 492.4425 1000 50 0.9999877 +93 496.32 500.1975 1000 50 0.5647872 +94 500.1975 504.075 1000 50 0.97875345 +95 504.075 507.9525 1000 50 0.89412886 +96 507.9525 511.83 1000 50 0.7781764 +97 511.83 515.7075 1000 50 0.63415563 +98 515.7075 519.585 1000 50 0.71826684 +99 519.585 523.4625000000001 1000 50 0.6992017 +100 531.2175 535.095 1000 50 0.9649142 +101 538.9725 542.85 1000 50 0.99945873 +102 542.85 546.7275000000001 1000 50 0.97263765 +103 546.7275 550.605 1000 50 0.9823251 +104 550.605 554.4825000000001 1000 50 0.888948 +105 554.4825 558.36 1000 50 0.9191495 +106 566.115 569.9925000000001 1000 50 0.9779229 +107 573.87 577.7475000000001 1000 50 0.85346806 +108 577.7475 581.625 1000 50 0.58207977 +109 585.5025 589.3800000000001 1000 50 0.6436133 +110 604.89 608.7675 1000 50 0.6038796 +111 616.5225 620.4000000000001 1000 50 0.89464784 +112 620.4 624.2775 1000 50 0.9937995 +113 624.2775 628.1550000000001 1000 50 0.99978024 +114 628.155 632.0325 1000 50 0.66512686 +115 635.91 639.7875 1000 50 0.60489565 +116 639.7875 643.6650000000001 1000 50 0.5162914 +117 643.665 647.5425 1000 50 0.56902057 +118 647.5425 651.4200000000001 1000 50 0.80585355 +119 651.42 655.2975 1000 50 0.65679777 +120 655.2975 659.1750000000001 1000 50 0.97597164 +121 663.0525 666.9300000000001 1000 50 0.58390933 +122 670.8075 674.6850000000001 1000 50 0.7701001 +123 678.5625 682.44 1000 50 0.54662573 +124 682.44 686.3175000000001 1000 50 0.55183923 +125 694.0725 697.95 1000 50 0.5689649 +126 701.8275 705.705 1000 50 0.9802186 +127 705.705 709.5825000000001 1000 50 0.97952634 +128 709.5825 713.46 1000 50 0.9984555 +129 717.3375 721.215 1000 50 0.9968465 +130 721.215 725.0925000000001 1000 50 0.99882895 +131 725.0925 728.97 1000 50 0.99960226 +132 728.97 732.8475000000001 1000 50 0.73423487 +133 732.8475 736.725 1000 50 0.9987388 +134 736.725 740.6025000000001 1000 50 0.99989593 +135 744.48 748.3575000000001 1000 50 0.8082606 +136 748.3575 752.235 1000 50 0.8809556 +137 752.235 756.1125000000001 1000 50 0.8843266 +138 759.99 763.8675000000001 1000 50 0.99008125 +139 767.745 771.6225000000001 1000 50 0.67096364 +140 775.5 779.3775 1000 50 0.97753125 +141 787.1325 791.0100000000001 1000 50 0.64991385 +142 791.01 794.8875 1000 50 0.7326818 +143 802.6425 806.5200000000001 1000 50 0.72296894 +144 806.52 810.3975 1000 50 0.6660444 +145 810.3975 814.2750000000001 1000 50 0.9999777 +146 814.275 818.1525 1000 50 0.54997325 +147 822.03 825.9075 1000 50 0.96376795 +148 825.9075 829.7850000000001 1000 50 0.98751885 +149 829.785 833.6625 1000 50 0.8137018 +150 845.295 849.1725 1000 50 0.7660251 +151 853.05 856.9275 1000 50 0.9971162 +152 868.56 872.4375 1000 50 0.5951173 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_03-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_03-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f4ce6830f733c25203376ae6b203673a909da57d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_03-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,130 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.8246709 +2 11.6325 15.51 1000 50 0.67546195 +3 23.265 27.142500000000002 1000 50 0.8304363 +4 27.1425 31.02 1000 50 0.5191837 +5 31.02 34.8975 1000 50 0.9947588 +6 38.775 42.652499999999996 1000 50 0.7003495 +7 42.6525 46.53 1000 50 0.53664577 +8 50.4075 54.285 1000 50 0.74809915 +9 54.285 58.162499999999994 1000 50 0.7333604 +10 62.04 65.9175 1000 50 0.7849946 +11 81.4275 85.30499999999999 1000 50 0.5926792 +12 93.06 96.9375 1000 50 0.54051685 +13 96.9375 100.815 1000 50 0.98236096 +14 108.57 112.44749999999999 1000 50 0.99660957 +15 112.4475 116.325 1000 50 0.55037254 +16 124.08 127.9575 1000 50 0.8614409 +17 127.9575 131.835 1000 50 0.72054577 +18 135.7125 139.59 1000 50 0.8090169 +19 139.59 143.4675 1000 50 0.96691173 +20 143.4675 147.345 1000 50 0.8186807 +21 147.345 151.2225 1000 50 0.9600102 +22 151.2225 155.1 1000 50 0.8148607 +23 155.1 158.9775 1000 50 0.5238673 +24 158.9775 162.855 1000 50 0.5901674 +25 170.61 174.4875 1000 50 0.66186774 +26 174.4875 178.365 1000 50 0.8850379 +27 178.365 182.2425 1000 50 0.9690664 +28 182.2425 186.12 1000 50 0.9935323 +29 186.12 189.9975 1000 50 0.8230794 +30 189.9975 193.875 1000 50 0.99986196 +31 193.875 197.7525 1000 50 0.9999527 +32 197.7525 201.63 1000 50 0.6521047 +33 205.5075 209.385 1000 50 0.9940498 +34 209.385 213.2625 1000 50 0.97142607 +35 213.2625 217.14 1000 50 0.9996939 +36 217.14 221.01749999999998 1000 50 0.9745072 +37 221.0175 224.895 1000 50 0.9782038 +38 224.895 228.7725 1000 50 0.75876355 +39 228.7725 232.65 1000 50 0.97971183 +40 232.65 236.5275 1000 50 0.96248186 +41 236.5275 240.405 1000 50 0.7252395 +42 244.2825 248.16 1000 50 0.9995933 +43 248.16 252.0375 1000 50 0.5257291 +44 252.0375 255.915 1000 50 0.51083475 +45 255.915 259.7925 1000 50 0.95633435 +46 259.7925 263.67 1000 50 0.99999404 +47 271.425 275.3025 1000 50 0.9955089 +48 275.3025 279.18 1000 50 0.9839168 +49 279.18 283.0575 1000 50 0.9999857 +50 283.0575 286.935 1000 50 0.9681911 +51 286.935 290.8125 1000 50 0.94356745 +52 298.5675 302.445 1000 50 0.8710342 +53 302.445 306.3225 1000 50 0.9981609 +54 306.3225 310.2 1000 50 0.9985348 +55 310.2 314.0775 1000 50 0.98970324 +56 314.0775 317.955 1000 50 0.9990496 +57 317.955 321.8325 1000 50 0.99666256 +58 321.8325 325.71 1000 50 0.9953002 +59 325.71 329.5875 1000 50 0.5270604 +60 329.5875 333.465 1000 50 0.9987607 +61 333.465 337.3425 1000 50 0.991344 +62 337.3425 341.21999999999997 1000 50 0.99497765 +63 345.0975 348.975 1000 50 0.9932627 +64 348.975 352.8525 1000 50 0.97624016 +65 352.8525 356.73 1000 50 0.8318346 +66 356.73 360.6075 1000 50 0.9997154 +67 360.6075 364.485 1000 50 0.74998605 +68 364.485 368.3625 1000 50 0.9967344 +69 368.3625 372.24 1000 50 0.8131398 +70 372.24 376.1175 1000 50 0.62718695 +71 376.1175 379.995 1000 50 0.85078573 +72 379.995 383.8725 1000 50 0.9987411 +73 383.8725 387.75 1000 50 0.99999225 +74 387.75 391.6275 1000 50 0.9995691 +75 391.6275 395.505 1000 50 0.9566702 +76 395.505 399.3825 1000 50 0.9970131 +77 399.3825 403.26 1000 50 0.99969375 +78 403.26 407.1375 1000 50 0.95324135 +79 407.1375 411.015 1000 50 0.99857914 +80 411.015 414.8925 1000 50 0.97850376 +81 414.8925 418.77 1000 50 0.703611 +82 418.77 422.6475 1000 50 0.9998344 +83 422.6475 426.525 1000 50 0.99901855 +84 430.4025 434.28 1000 50 0.91338605 +85 434.28 438.15749999999997 1000 50 0.674276 +86 453.6675 457.545 1000 50 0.9935021 +87 457.545 461.4225 1000 50 0.9958262 +88 465.3 469.1775 1000 50 0.99995863 +89 469.1775 473.055 1000 50 0.94802827 +90 473.055 476.9325 1000 50 0.99772197 +91 480.81 484.6875 1000 50 0.99853957 +92 484.6875 488.565 1000 50 0.9999622 +93 496.32 500.1975 1000 50 0.9981121 +94 500.1975 504.075 1000 50 0.97995204 +95 507.9525 511.83 1000 50 0.7308275 +96 511.83 515.7075 1000 50 0.5568607 +97 519.585 523.4625000000001 1000 50 0.9973972 +98 531.2175 535.095 1000 50 0.9550446 +99 538.9725 542.85 1000 50 0.7613895 +100 542.85 546.7275000000001 1000 50 0.7269822 +101 546.7275 550.605 1000 50 0.9998441 +102 550.605 554.4825000000001 1000 50 0.7476183 +103 554.4825 558.36 1000 50 0.6072067 +104 558.36 562.2375000000001 1000 50 0.99562114 +105 566.115 569.9925000000001 1000 50 0.8628121 +106 577.7475 581.625 1000 50 0.74593955 +107 581.625 585.5025 1000 50 0.8843375 +108 589.38 593.2575 1000 50 0.5105206 +109 601.0125 604.8900000000001 1000 50 0.94667536 +110 612.645 616.5225 1000 50 0.97259057 +111 620.4 624.2775 1000 50 0.53632647 +112 624.2775 628.1550000000001 1000 50 0.78351843 +113 628.155 632.0325 1000 50 0.64556116 +114 632.0325 635.9100000000001 1000 50 0.58713573 +115 635.91 639.7875 1000 50 0.764795 +116 639.7875 643.6650000000001 1000 50 0.93591106 +117 643.665 647.5425 1000 50 0.96631515 +118 647.5425 651.4200000000001 1000 50 0.5807632 +119 651.42 655.2975 1000 50 0.5733039 +120 659.175 663.0525 1000 50 0.822672 +121 663.0525 666.9300000000001 1000 50 0.6415781 +122 666.93 670.8075 1000 50 0.5135241 +123 670.8075 674.6850000000001 1000 50 0.650232 +124 674.685 678.5625 1000 50 0.7448313 +125 686.3175 690.195 1000 50 0.94919485 +126 694.0725 697.95 1000 50 0.7388352 +127 697.95 701.8275000000001 1000 50 0.55761147 +128 701.8275 705.705 1000 50 0.7964793 +129 709.5825 713.46 1000 50 0.8787709 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_03-15-45_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_03-15-45_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0a71c6eaee954af5930dd1770a6d08c2f4cabef9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_03-15-45_annot_2022-11-30_01.txt @@ -0,0 +1,108 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.59692246 +2 3.8775 7.755 1000 50 0.9977271 +3 7.755 11.6325 1000 50 0.750899 +4 11.6325 15.51 1000 50 0.9986504 +5 15.51 19.3875 1000 50 0.99949956 +6 19.3875 23.265 1000 50 0.7293579 +7 23.265 27.142500000000002 1000 50 0.986432 +8 27.1425 31.02 1000 50 0.99988914 +9 31.02 34.8975 1000 50 0.9997445 +10 34.8975 38.775 1000 50 0.7847099 +11 38.775 42.652499999999996 1000 50 0.99580365 +12 42.6525 46.53 1000 50 0.6298393 +13 46.53 50.4075 1000 50 0.9842443 +14 50.4075 54.285 1000 50 0.9948901 +15 54.285 58.162499999999994 1000 50 0.814503 +16 62.04 65.9175 1000 50 0.92210865 +17 65.9175 69.795 1000 50 0.83345145 +18 69.795 73.6725 1000 50 0.9726064 +19 73.6725 77.55 1000 50 0.8551508 +20 77.55 81.4275 1000 50 0.83981514 +21 85.305 89.1825 1000 50 0.99933076 +22 89.1825 93.06 1000 50 0.5444659 +23 96.9375 100.815 1000 50 0.69948107 +24 108.57 112.44749999999999 1000 50 0.69204974 +25 112.4475 116.325 1000 50 0.9763615 +26 116.325 120.2025 1000 50 0.88662124 +27 124.08 127.9575 1000 50 0.99874395 +28 131.835 135.7125 1000 50 0.9863863 +29 135.7125 139.59 1000 50 0.79979575 +30 139.59 143.4675 1000 50 0.5544421 +31 147.345 151.2225 1000 50 0.69606483 +32 151.2225 155.1 1000 50 0.9585943 +33 155.1 158.9775 1000 50 0.9731453 +34 158.9775 162.855 1000 50 0.985941 +35 162.855 166.7325 1000 50 0.7702168 +36 166.7325 170.60999999999999 1000 50 0.54574233 +37 170.61 174.4875 1000 50 0.7617046 +38 189.9975 193.875 1000 50 0.7528994 +39 197.7525 201.63 1000 50 0.9911675 +40 205.5075 209.385 1000 50 0.77693737 +41 209.385 213.2625 1000 50 0.9047665 +42 213.2625 217.14 1000 50 0.81939965 +43 217.14 221.01749999999998 1000 50 0.7054081 +44 221.0175 224.895 1000 50 0.99841666 +45 224.895 228.7725 1000 50 0.90100247 +46 240.405 244.2825 1000 50 0.97913796 +47 244.2825 248.16 1000 50 0.8854403 +48 252.0375 255.915 1000 50 0.997391 +49 255.915 259.7925 1000 50 0.98662657 +50 259.7925 263.67 1000 50 0.9988846 +51 263.67 267.5475 1000 50 0.62897587 +52 267.5475 271.425 1000 50 0.87415206 +53 271.425 275.3025 1000 50 0.99762636 +54 275.3025 279.18 1000 50 0.9999043 +55 283.0575 286.935 1000 50 0.92286634 +56 286.935 290.8125 1000 50 0.99998975 +57 294.69 298.5675 1000 50 0.59499615 +58 298.5675 302.445 1000 50 0.8999556 +59 302.445 306.3225 1000 50 0.99998236 +60 306.3225 310.2 1000 50 0.9998627 +61 314.0775 317.955 1000 50 0.8148597 +62 317.955 321.8325 1000 50 0.9958455 +63 321.8325 325.71 1000 50 0.99972147 +64 325.71 329.5875 1000 50 0.7112019 +65 329.5875 333.465 1000 50 0.89505535 +66 333.465 337.3425 1000 50 0.99611 +67 337.3425 341.21999999999997 1000 50 0.80443823 +68 341.22 345.0975 1000 50 0.8677889 +69 345.0975 348.975 1000 50 0.9968162 +70 352.8525 356.73 1000 50 0.99283314 +71 356.73 360.6075 1000 50 0.9869244 +72 360.6075 364.485 1000 50 0.61069894 +73 368.3625 372.24 1000 50 0.9837249 +74 376.1175 379.995 1000 50 0.9615073 +75 379.995 383.8725 1000 50 0.8751503 +76 387.75 391.6275 1000 50 0.5092869 +77 403.26 407.1375 1000 50 0.643241 +78 407.1375 411.015 1000 50 0.63110906 +79 411.015 414.8925 1000 50 0.5171006 +80 414.8925 418.77 1000 50 0.6937975 +81 422.6475 426.525 1000 50 0.9856873 +82 430.4025 434.28 1000 50 0.7202343 +83 434.28 438.15749999999997 1000 50 0.54612875 +84 442.035 445.9125 1000 50 0.97898954 +85 445.9125 449.79 1000 50 0.8296653 +86 449.79 453.6675 1000 50 0.86373234 +87 453.6675 457.545 1000 50 0.999941 +88 457.545 461.4225 1000 50 0.9999093 +89 465.3 469.1775 1000 50 0.9991567 +90 469.1775 473.055 1000 50 0.9545769 +91 473.055 476.9325 1000 50 0.8988695 +92 476.9325 480.81 1000 50 0.9999993 +93 480.81 484.6875 1000 50 0.602361 +94 488.565 492.4425 1000 50 0.9345466 +95 492.4425 496.32 1000 50 0.86412346 +96 496.32 500.1975 1000 50 0.83490807 +97 500.1975 504.075 1000 50 0.9134635 +98 511.83 515.7075 1000 50 0.9953485 +99 515.7075 519.585 1000 50 0.53079003 +100 519.585 523.4625000000001 1000 50 0.5075607 +101 523.4625 527.34 1000 50 0.8565851 +102 527.34 531.2175000000001 1000 50 0.63441616 +103 538.9725 542.85 1000 50 0.6210456 +104 542.85 546.7275000000001 1000 50 0.8197282 +105 546.7275 550.605 1000 50 0.9438882 +106 550.605 554.4825000000001 1000 50 0.9391863 +107 554.4825 558.36 1000 50 0.70689344 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_04-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_04-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..4fe99755d076e44acd4bf2627ca89587e5c5f1bd --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_04-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,196 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.53632796 +2 15.51 19.3875 1000 50 0.6627123 +3 19.3875 23.265 1000 50 0.7409769 +4 23.265 27.142500000000002 1000 50 0.6928315 +5 34.8975 38.775 1000 50 0.67968535 +6 65.9175 69.795 1000 50 0.5051579 +7 69.795 73.6725 1000 50 0.5211357 +8 73.6725 77.55 1000 50 0.730331 +9 77.55 81.4275 1000 50 0.99471843 +10 81.4275 85.30499999999999 1000 50 0.99998903 +11 89.1825 93.06 1000 50 0.99880266 +12 93.06 96.9375 1000 50 0.99988186 +13 96.9375 100.815 1000 50 0.9959532 +14 100.815 104.6925 1000 50 0.99999833 +15 104.6925 108.57 1000 50 0.9930356 +16 108.57 112.44749999999999 1000 50 0.56141716 +17 112.4475 116.325 1000 50 0.98760915 +18 116.325 120.2025 1000 50 0.9866687 +19 120.2025 124.08 1000 50 0.961898 +20 124.08 127.9575 1000 50 1.0 +21 127.9575 131.835 1000 50 0.9120126 +22 131.835 135.7125 1000 50 0.9990823 +23 135.7125 139.59 1000 50 0.9986583 +24 139.59 143.4675 1000 50 0.98603266 +25 143.4675 147.345 1000 50 0.99765354 +26 147.345 151.2225 1000 50 0.9993436 +27 151.2225 155.1 1000 50 0.9989039 +28 155.1 158.9775 1000 50 0.92375094 +29 158.9775 162.855 1000 50 0.9702468 +30 162.855 166.7325 1000 50 0.99987006 +31 166.7325 170.60999999999999 1000 50 0.9990496 +32 170.61 174.4875 1000 50 0.99025774 +33 174.4875 178.365 1000 50 0.9999819 +34 178.365 182.2425 1000 50 0.9955178 +35 182.2425 186.12 1000 50 0.50330734 +36 186.12 189.9975 1000 50 0.9861304 +37 189.9975 193.875 1000 50 0.99699533 +38 193.875 197.7525 1000 50 0.9760893 +39 197.7525 201.63 1000 50 0.9967085 +40 201.63 205.5075 1000 50 0.95757294 +41 205.5075 209.385 1000 50 0.9998869 +42 209.385 213.2625 1000 50 0.99999774 +43 213.2625 217.14 1000 50 0.99994814 +44 217.14 221.01749999999998 1000 50 0.9922376 +45 224.895 228.7725 1000 50 0.9374851 +46 228.7725 232.65 1000 50 0.69914675 +47 232.65 236.5275 1000 50 0.9834642 +48 240.405 244.2825 1000 50 0.8118454 +49 244.2825 248.16 1000 50 0.7966868 +50 248.16 252.0375 1000 50 0.9966486 +51 255.915 259.7925 1000 50 0.89719826 +52 259.7925 263.67 1000 50 0.9999753 +53 263.67 267.5475 1000 50 0.9999964 +54 267.5475 271.425 1000 50 0.8103385 +55 271.425 275.3025 1000 50 0.99853873 +56 275.3025 279.18 1000 50 0.99700963 +57 279.18 283.0575 1000 50 0.96626896 +58 283.0575 286.935 1000 50 0.99997616 +59 286.935 290.8125 1000 50 0.9990107 +60 290.8125 294.69 1000 50 0.9999087 +61 294.69 298.5675 1000 50 0.75245005 +62 302.445 306.3225 1000 50 0.99868053 +63 306.3225 310.2 1000 50 0.99776614 +64 310.2 314.0775 1000 50 0.9989967 +65 314.0775 317.955 1000 50 0.5010181 +66 321.8325 325.71 1000 50 0.8531848 +67 325.71 329.5875 1000 50 0.94976944 +68 333.465 337.3425 1000 50 0.9938975 +69 337.3425 341.21999999999997 1000 50 0.71627456 +70 341.22 345.0975 1000 50 0.8766519 +71 345.0975 348.975 1000 50 0.9926521 +72 348.975 352.8525 1000 50 0.9953193 +73 352.8525 356.73 1000 50 0.8923662 +74 356.73 360.6075 1000 50 0.5971216 +75 360.6075 364.485 1000 50 0.848925 +76 364.485 368.3625 1000 50 0.91050875 +77 368.3625 372.24 1000 50 0.8744001 +78 372.24 376.1175 1000 50 0.5724425 +79 379.995 383.8725 1000 50 0.9742731 +80 387.75 391.6275 1000 50 0.5187942 +81 395.505 399.3825 1000 50 0.7933841 +82 403.26 407.1375 1000 50 0.6807239 +83 411.015 414.8925 1000 50 0.57785594 +84 414.8925 418.77 1000 50 0.6689766 +85 418.77 422.6475 1000 50 0.7751416 +86 430.4025 434.28 1000 50 0.9160801 +87 434.28 438.15749999999997 1000 50 0.52577305 +88 438.1575 442.035 1000 50 0.663396 +89 449.79 453.6675 1000 50 0.825126 +90 461.4225 465.3 1000 50 0.55008346 +91 473.055 476.9325 1000 50 0.6233499 +92 476.9325 480.81 1000 50 0.78004944 +93 484.6875 488.565 1000 50 0.9999912 +94 488.565 492.4425 1000 50 0.6608144 +95 492.4425 496.32 1000 50 0.9938227 +96 496.32 500.1975 1000 50 0.9922328 +97 500.1975 504.075 1000 50 0.995025 +98 504.075 507.9525 1000 50 0.5264833 +99 507.9525 511.83 1000 50 0.9999435 +100 511.83 515.7075 1000 50 0.9882002 +101 515.7075 519.585 1000 50 0.9849259 +102 519.585 523.4625000000001 1000 50 0.9946414 +103 527.34 531.2175000000001 1000 50 0.6554823 +104 531.2175 535.095 1000 50 0.9995759 +105 535.095 538.9725000000001 1000 50 0.9992698 +106 538.9725 542.85 1000 50 0.99997497 +107 546.7275 550.605 1000 50 0.9717727 +108 554.4825 558.36 1000 50 0.98818004 +109 566.115 569.9925000000001 1000 50 0.52264017 +110 569.9925 573.87 1000 50 0.9315191 +111 573.87 577.7475000000001 1000 50 0.9973803 +112 577.7475 581.625 1000 50 0.7322454 +113 581.625 585.5025 1000 50 0.72091347 +114 585.5025 589.3800000000001 1000 50 0.99905246 +115 589.38 593.2575 1000 50 0.9682395 +116 593.2575 597.1350000000001 1000 50 0.99997115 +117 601.0125 604.8900000000001 1000 50 0.9987508 +118 604.89 608.7675 1000 50 0.9857336 +119 612.645 616.5225 1000 50 0.99996686 +120 616.5225 620.4000000000001 1000 50 0.9968334 +121 620.4 624.2775 1000 50 0.6833395 +122 624.2775 628.1550000000001 1000 50 0.99984014 +123 628.155 632.0325 1000 50 0.8013322 +124 635.91 639.7875 1000 50 0.999158 +125 639.7875 643.6650000000001 1000 50 0.99827206 +126 643.665 647.5425 1000 50 0.8971211 +127 647.5425 651.4200000000001 1000 50 0.97995573 +128 651.42 655.2975 1000 50 0.9623859 +129 655.2975 659.1750000000001 1000 50 0.9962495 +130 659.175 663.0525 1000 50 0.66770214 +131 666.93 670.8075 1000 50 0.99884003 +132 670.8075 674.6850000000001 1000 50 0.9818981 +133 674.685 678.5625 1000 50 0.9975311 +134 678.5625 682.44 1000 50 0.7270463 +135 686.3175 690.195 1000 50 0.97923696 +136 690.195 694.0725000000001 1000 50 0.8169034 +137 697.95 701.8275000000001 1000 50 0.7709744 +138 713.46 717.3375000000001 1000 50 0.99852043 +139 717.3375 721.215 1000 50 0.99972504 +140 721.215 725.0925000000001 1000 50 0.99991715 +141 725.0925 728.97 1000 50 0.98765576 +142 728.97 732.8475000000001 1000 50 0.9996973 +143 732.8475 736.725 1000 50 0.53313076 +144 736.725 740.6025000000001 1000 50 0.9999715 +145 740.6025 744.48 1000 50 0.99989283 +146 748.3575 752.235 1000 50 0.9978801 +147 752.235 756.1125000000001 1000 50 0.99998987 +148 759.99 763.8675000000001 1000 50 0.99954754 +149 763.8675 767.745 1000 50 0.74075675 +150 767.745 771.6225000000001 1000 50 0.9905997 +151 771.6225 775.5 1000 50 0.9906398 +152 775.5 779.3775 1000 50 0.6943168 +153 779.3775 783.2550000000001 1000 50 0.8399806 +154 783.255 787.1325 1000 50 0.9990777 +155 791.01 794.8875 1000 50 0.99460286 +156 794.8875 798.7650000000001 1000 50 0.80915064 +157 798.765 802.6425 1000 50 0.9280567 +158 802.6425 806.5200000000001 1000 50 0.8547546 +159 806.52 810.3975 1000 50 0.9390225 +160 814.275 818.1525 1000 50 0.76133925 +161 822.03 825.9075 1000 50 0.8135328 +162 825.9075 829.7850000000001 1000 50 0.99451315 +163 829.785 833.6625 1000 50 0.91457546 +164 833.6625 837.5400000000001 1000 50 0.5370046 +165 837.54 841.4175 1000 50 0.68604594 +166 845.295 849.1725 1000 50 0.61647886 +167 872.4375 876.315 1000 50 0.8693123 +168 876.315 880.1925000000001 1000 50 0.54313976 +169 891.825 895.7025000000001 1000 50 0.67821777 +170 895.7025 899.58 1000 50 0.96186507 +171 899.58 903.4575000000001 1000 50 0.73120636 +172 903.4575 907.335 1000 50 0.9984132 +173 907.335 911.2125000000001 1000 50 0.99985147 +174 911.2125 915.09 1000 50 0.9983725 +175 915.09 918.9675000000001 1000 50 0.98665106 +176 918.9675 922.845 1000 50 0.9999678 +177 922.845 926.7225000000001 1000 50 0.8233613 +178 930.6 934.4775000000001 1000 50 0.8257211 +179 934.4775 938.355 1000 50 0.968171 +180 938.355 942.2325000000001 1000 50 0.9395699 +181 942.2325 946.11 1000 50 0.999944 +182 946.11 949.9875000000001 1000 50 0.9999336 +183 961.62 965.4975000000001 1000 50 0.9962423 +184 965.4975 969.375 1000 50 0.90442103 +185 969.375 973.2525 1000 50 0.5690101 +186 973.2525 977.1300000000001 1000 50 0.9163418 +187 988.7625 992.6400000000001 1000 50 0.78301793 +188 992.64 996.5175 1000 50 0.63854265 +189 996.5175 1000.3950000000001 1000 50 0.8097607 +190 1000.395 1004.2725 1000 50 0.98949486 +191 1004.2725 1008.1500000000001 1000 50 0.8573428 +192 1015.905 1019.7825 1000 50 0.9873745 +193 1023.66 1027.5375 1000 50 0.51178676 +194 1031.415 1035.2925 1000 50 0.77476186 +195 1035.2925 1039.17 1000 50 0.516401 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_04-21-04_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_04-21-04_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..984646a7ced4f1926814a349ee1c9185063696f2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_04-21-04_annot_2022-11-30_01.txt @@ -0,0 +1,51 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99971 +2 3.8775 7.755 1000 50 0.99990845 +3 7.755 11.6325 1000 50 0.99999547 +4 11.6325 15.51 1000 50 0.85157317 +5 15.51 19.3875 1000 50 0.9971481 +6 19.3875 23.265 1000 50 0.99974626 +7 23.265 27.142500000000002 1000 50 0.80035245 +8 27.1425 31.02 1000 50 0.9999783 +9 31.02 34.8975 1000 50 0.9999902 +10 34.8975 38.775 1000 50 0.9898754 +11 38.775 42.652499999999996 1000 50 0.99940515 +12 42.6525 46.53 1000 50 0.9999584 +13 46.53 50.4075 1000 50 0.82732964 +14 50.4075 54.285 1000 50 0.9999987 +15 54.285 58.162499999999994 1000 50 0.89970726 +16 58.1625 62.04 1000 50 0.91055274 +17 62.04 65.9175 1000 50 0.9948238 +18 65.9175 69.795 1000 50 0.99732685 +19 69.795 73.6725 1000 50 0.9508055 +20 73.6725 77.55 1000 50 0.98681426 +21 77.55 81.4275 1000 50 0.9717753 +22 81.4275 85.30499999999999 1000 50 0.8362026 +23 85.305 89.1825 1000 50 0.99999034 +24 89.1825 93.06 1000 50 0.99992955 +25 93.06 96.9375 1000 50 0.9999057 +26 96.9375 100.815 1000 50 0.9992804 +27 100.815 104.6925 1000 50 0.99801433 +28 104.6925 108.57 1000 50 0.97588456 +29 108.57 112.44749999999999 1000 50 0.8170267 +30 112.4475 116.325 1000 50 0.9944653 +31 116.325 120.2025 1000 50 0.9994241 +32 120.2025 124.08 1000 50 0.93931466 +33 124.08 127.9575 1000 50 0.99966896 +34 139.59 143.4675 1000 50 0.8519578 +35 147.345 151.2225 1000 50 0.725448 +36 151.2225 155.1 1000 50 0.52331334 +37 162.855 166.7325 1000 50 0.6994118 +38 170.61 174.4875 1000 50 0.7121871 +39 178.365 182.2425 1000 50 0.88650966 +40 182.2425 186.12 1000 50 0.73226255 +41 186.12 189.9975 1000 50 0.99611545 +42 189.9975 193.875 1000 50 0.9511402 +43 197.7525 201.63 1000 50 0.9520797 +44 201.63 205.5075 1000 50 0.96733946 +45 213.2625 217.14 1000 50 0.9971762 +46 217.14 221.01749999999998 1000 50 0.9301271 +47 224.895 228.7725 1000 50 0.99894994 +48 228.7725 232.65 1000 50 0.9999169 +49 232.65 236.5275 1000 50 0.9992224 +50 236.5275 240.405 1000 50 0.9984876 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_05-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_05-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..43c2170753bf8839e4377dc57dc3ab2b0802a5bb --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_05-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,266 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.6297064 +2 11.6325 15.51 1000 50 0.9696866 +3 15.51 19.3875 1000 50 0.7757808 +4 19.3875 23.265 1000 50 0.9173485 +5 23.265 27.142500000000002 1000 50 0.94676447 +6 31.02 34.8975 1000 50 0.99990237 +7 34.8975 38.775 1000 50 0.7274889 +8 38.775 42.652499999999996 1000 50 0.9178655 +9 42.6525 46.53 1000 50 0.99950314 +10 46.53 50.4075 1000 50 0.8109817 +11 50.4075 54.285 1000 50 0.74200773 +12 58.1625 62.04 1000 50 0.7417539 +13 62.04 65.9175 1000 50 0.6944537 +14 77.55 81.4275 1000 50 0.62297493 +15 81.4275 85.30499999999999 1000 50 0.8093787 +16 89.1825 93.06 1000 50 0.7719892 +17 96.9375 100.815 1000 50 0.50796735 +18 116.325 120.2025 1000 50 0.6025702 +19 124.08 127.9575 1000 50 0.5726914 +20 127.9575 131.835 1000 50 0.7892372 +21 131.835 135.7125 1000 50 0.9998708 +22 135.7125 139.59 1000 50 0.7089779 +23 139.59 143.4675 1000 50 0.9963999 +24 143.4675 147.345 1000 50 0.9489655 +25 147.345 151.2225 1000 50 0.9640274 +26 151.2225 155.1 1000 50 0.7492871 +27 155.1 158.9775 1000 50 0.9998411 +28 158.9775 162.855 1000 50 0.67680085 +29 166.7325 170.60999999999999 1000 50 0.62147146 +30 170.61 174.4875 1000 50 0.59973794 +31 174.4875 178.365 1000 50 0.64109075 +32 178.365 182.2425 1000 50 0.6864473 +33 182.2425 186.12 1000 50 0.9983354 +34 186.12 189.9975 1000 50 0.8346583 +35 189.9975 193.875 1000 50 0.9796656 +36 193.875 197.7525 1000 50 0.99986434 +37 197.7525 201.63 1000 50 0.98790145 +38 201.63 205.5075 1000 50 0.86027193 +39 205.5075 209.385 1000 50 0.99868673 +40 209.385 213.2625 1000 50 0.93428355 +41 221.0175 224.895 1000 50 0.9929432 +42 224.895 228.7725 1000 50 0.55114025 +43 228.7725 232.65 1000 50 0.88191676 +44 232.65 236.5275 1000 50 0.94638544 +45 240.405 244.2825 1000 50 0.51924807 +46 244.2825 248.16 1000 50 0.6186138 +47 252.0375 255.915 1000 50 0.5246445 +48 259.7925 263.67 1000 50 0.6181011 +49 263.67 267.5475 1000 50 0.7522106 +50 267.5475 271.425 1000 50 0.56436646 +51 271.425 275.3025 1000 50 0.7439659 +52 275.3025 279.18 1000 50 0.50801504 +53 279.18 283.0575 1000 50 0.8161669 +54 290.8125 294.69 1000 50 0.6691038 +55 302.445 306.3225 1000 50 0.64662 +56 306.3225 310.2 1000 50 0.7324586 +57 317.955 321.8325 1000 50 0.7602146 +58 325.71 329.5875 1000 50 0.99986947 +59 333.465 337.3425 1000 50 0.9999993 +60 337.3425 341.21999999999997 1000 50 0.99667954 +61 345.0975 348.975 1000 50 0.99880946 +62 348.975 352.8525 1000 50 0.9997712 +63 352.8525 356.73 1000 50 0.99997544 +64 360.6075 364.485 1000 50 0.97964466 +65 364.485 368.3625 1000 50 0.99531734 +66 368.3625 372.24 1000 50 0.9832624 +67 372.24 376.1175 1000 50 0.9997739 +68 379.995 383.8725 1000 50 0.77694863 +69 383.8725 387.75 1000 50 0.6780865 +70 387.75 391.6275 1000 50 0.99673426 +71 391.6275 395.505 1000 50 0.6269408 +72 395.505 399.3825 1000 50 0.97642595 +73 403.26 407.1375 1000 50 0.96724856 +74 407.1375 411.015 1000 50 0.54664946 +75 414.8925 418.77 1000 50 0.9275154 +76 422.6475 426.525 1000 50 0.98658144 +77 426.525 430.4025 1000 50 0.85948044 +78 430.4025 434.28 1000 50 0.6495327 +79 434.28 438.15749999999997 1000 50 0.99999714 +80 438.1575 442.035 1000 50 0.99572515 +81 442.035 445.9125 1000 50 0.9975363 +82 445.9125 449.79 1000 50 0.9998524 +83 449.79 453.6675 1000 50 0.9813275 +84 453.6675 457.545 1000 50 0.82783145 +85 457.545 461.4225 1000 50 0.9999976 +86 461.4225 465.3 1000 50 0.99166155 +87 465.3 469.1775 1000 50 0.99671954 +88 469.1775 473.055 1000 50 0.99999964 +89 473.055 476.9325 1000 50 0.99958843 +90 476.9325 480.81 1000 50 0.9980742 +91 480.81 484.6875 1000 50 0.99917895 +92 484.6875 488.565 1000 50 0.99914443 +93 488.565 492.4425 1000 50 0.999065 +94 492.4425 496.32 1000 50 0.9999765 +95 496.32 500.1975 1000 50 0.9891986 +96 500.1975 504.075 1000 50 0.99780685 +97 504.075 507.9525 1000 50 0.9999814 +98 511.83 515.7075 1000 50 0.67763394 +99 515.7075 519.585 1000 50 0.51114804 +100 519.585 523.4625000000001 1000 50 0.6459417 +101 523.4625 527.34 1000 50 0.99205303 +102 531.2175 535.095 1000 50 0.5687485 +103 535.095 538.9725000000001 1000 50 0.9656799 +104 538.9725 542.85 1000 50 0.99993646 +105 542.85 546.7275000000001 1000 50 0.70657116 +106 546.7275 550.605 1000 50 0.66839457 +107 550.605 554.4825000000001 1000 50 0.9999622 +108 554.4825 558.36 1000 50 0.99935406 +109 558.36 562.2375000000001 1000 50 0.64933175 +110 562.2375 566.115 1000 50 0.6378638 +111 569.9925 573.87 1000 50 0.998574 +112 573.87 577.7475000000001 1000 50 0.68309426 +113 577.7475 581.625 1000 50 0.9564151 +114 585.5025 589.3800000000001 1000 50 0.81232005 +115 589.38 593.2575 1000 50 0.9839099 +116 597.135 601.0125 1000 50 0.91899073 +117 601.0125 604.8900000000001 1000 50 0.9521347 +118 604.89 608.7675 1000 50 0.99054074 +119 608.7675 612.6450000000001 1000 50 0.9860555 +120 612.645 616.5225 1000 50 0.98518723 +121 616.5225 620.4000000000001 1000 50 0.99992883 +122 620.4 624.2775 1000 50 0.9999993 +123 624.2775 628.1550000000001 1000 50 0.8668378 +124 628.155 632.0325 1000 50 0.8991203 +125 632.0325 635.9100000000001 1000 50 1.0 +126 635.91 639.7875 1000 50 0.99349964 +127 639.7875 643.6650000000001 1000 50 0.9942146 +128 643.665 647.5425 1000 50 0.999858 +129 647.5425 651.4200000000001 1000 50 0.9988248 +130 651.42 655.2975 1000 50 0.9991266 +131 655.2975 659.1750000000001 1000 50 0.99774086 +132 659.175 663.0525 1000 50 0.9810827 +133 663.0525 666.9300000000001 1000 50 0.99932194 +134 666.93 670.8075 1000 50 0.97016495 +135 674.685 678.5625 1000 50 0.9998851 +136 678.5625 682.44 1000 50 0.9883279 +137 682.44 686.3175000000001 1000 50 0.9782754 +138 686.3175 690.195 1000 50 0.98111224 +139 690.195 694.0725000000001 1000 50 0.99951065 +140 694.0725 697.95 1000 50 0.99127275 +141 697.95 701.8275000000001 1000 50 0.9990344 +142 701.8275 705.705 1000 50 0.7474162 +143 705.705 709.5825000000001 1000 50 0.9925592 +144 709.5825 713.46 1000 50 0.99904484 +145 713.46 717.3375000000001 1000 50 0.7499163 +146 717.3375 721.215 1000 50 0.9969248 +147 721.215 725.0925000000001 1000 50 0.9442966 +148 725.0925 728.97 1000 50 0.99885345 +149 728.97 732.8475000000001 1000 50 0.9998877 +150 732.8475 736.725 1000 50 0.7351191 +151 736.725 740.6025000000001 1000 50 0.9973756 +152 740.6025 744.48 1000 50 0.99999475 +153 744.48 748.3575000000001 1000 50 0.98634815 +154 748.3575 752.235 1000 50 0.9695795 +155 759.99 763.8675000000001 1000 50 0.95439565 +156 767.745 771.6225000000001 1000 50 0.9993599 +157 771.6225 775.5 1000 50 0.9995921 +158 775.5 779.3775 1000 50 0.5888307 +159 779.3775 783.2550000000001 1000 50 0.6829486 +160 791.01 794.8875 1000 50 0.89779973 +161 794.8875 798.7650000000001 1000 50 0.6154262 +162 810.3975 814.2750000000001 1000 50 0.52491814 +163 814.275 818.1525 1000 50 0.6096487 +164 822.03 825.9075 1000 50 0.68475527 +165 825.9075 829.7850000000001 1000 50 0.73588294 +166 829.785 833.6625 1000 50 0.72337806 +167 837.54 841.4175 1000 50 0.51020354 +168 849.1725 853.0500000000001 1000 50 0.914336 +169 853.05 856.9275 1000 50 0.99989605 +170 856.9275 860.8050000000001 1000 50 0.9983284 +171 860.805 864.6825 1000 50 0.6830076 +172 864.6825 868.5600000000001 1000 50 0.93417287 +173 868.56 872.4375 1000 50 0.5566626 +174 872.4375 876.315 1000 50 0.56593806 +175 876.315 880.1925000000001 1000 50 0.98324984 +176 880.1925 884.07 1000 50 0.9971609 +177 884.07 887.9475000000001 1000 50 0.8918681 +178 887.9475 891.825 1000 50 0.98342794 +179 895.7025 899.58 1000 50 0.6629558 +180 907.335 911.2125000000001 1000 50 0.8626306 +181 911.2125 915.09 1000 50 0.99733645 +182 918.9675 922.845 1000 50 0.84907657 +183 922.845 926.7225000000001 1000 50 0.98174113 +184 926.7225 930.6 1000 50 0.66963977 +185 930.6 934.4775000000001 1000 50 0.6755279 +186 934.4775 938.355 1000 50 0.9236798 +187 938.355 942.2325000000001 1000 50 0.55062103 +188 942.2325 946.11 1000 50 0.91278917 +189 957.7425 961.62 1000 50 0.72805953 +190 965.4975 969.375 1000 50 0.72331214 +191 969.375 973.2525 1000 50 0.52190167 +192 984.885 988.7625 1000 50 0.76940733 +193 988.7625 992.6400000000001 1000 50 0.5984823 +194 1004.2725 1008.1500000000001 1000 50 0.917605 +195 1008.15 1012.0275 1000 50 0.92714864 +196 1012.0275 1015.9050000000001 1000 50 0.98258543 +197 1015.905 1019.7825 1000 50 0.999366 +198 1019.7825 1023.6600000000001 1000 50 0.99911743 +199 1023.66 1027.5375 1000 50 0.9985097 +200 1027.5375 1031.415 1000 50 0.99339324 +201 1031.415 1035.2925 1000 50 0.99925977 +202 1039.17 1043.0475000000001 1000 50 0.9999809 +203 1043.0475 1046.925 1000 50 0.9990772 +204 1046.925 1050.8025 1000 50 0.85815203 +205 1050.8025 1054.68 1000 50 0.9998665 +206 1054.68 1058.5575000000001 1000 50 0.7315563 +207 1062.435 1066.3125 1000 50 0.60967636 +208 1066.3125 1070.19 1000 50 0.67436934 +209 1070.19 1074.0675 1000 50 0.99898857 +210 1074.0675 1077.9450000000002 1000 50 0.99983716 +211 1077.945 1081.8225 1000 50 0.9989135 +212 1081.8225 1085.7 1000 50 0.8738883 +213 1085.7 1089.5775 1000 50 0.97100574 +214 1089.5775 1093.4550000000002 1000 50 0.64389783 +215 1093.455 1097.3325 1000 50 0.9997043 +216 1097.3325 1101.21 1000 50 0.7412031 +217 1105.0875 1108.9650000000001 1000 50 0.6457484 +218 1108.965 1112.8425 1000 50 0.74188554 +219 1112.8425 1116.72 1000 50 0.918503 +220 1116.72 1120.5975 1000 50 0.77006304 +221 1120.5975 1124.4750000000001 1000 50 0.6586582 +222 1128.3525 1132.23 1000 50 0.9721705 +223 1139.985 1143.8625 1000 50 0.83490384 +224 1143.8625 1147.74 1000 50 0.9960556 +225 1147.74 1151.6175 1000 50 0.860545 +226 1151.6175 1155.4950000000001 1000 50 0.8419765 +227 1155.495 1159.3725 1000 50 0.65434873 +228 1159.3725 1163.25 1000 50 0.6304212 +229 1163.25 1167.1275 1000 50 0.9903847 +230 1174.8825 1178.76 1000 50 0.9699929 +231 1186.515 1190.3925000000002 1000 50 0.6773019 +232 1194.27 1198.1475 1000 50 0.536796 +233 1198.1475 1202.025 1000 50 0.5762051 +234 1205.9025 1209.78 1000 50 0.50208306 +235 1209.78 1213.6575 1000 50 0.7520213 +236 1213.6575 1217.535 1000 50 0.6523294 +237 1221.4125 1225.29 1000 50 0.76135176 +238 1233.045 1236.9225000000001 1000 50 0.59422976 +239 1240.8 1244.6775 1000 50 0.9998795 +240 1244.6775 1248.555 1000 50 0.96571964 +241 1252.4325 1256.31 1000 50 0.8520659 +242 1256.31 1260.1875 1000 50 0.99998486 +243 1260.1875 1264.065 1000 50 0.83036625 +244 1264.065 1267.9425 1000 50 0.91278356 +245 1271.82 1275.6975 1000 50 0.6751503 +246 1275.6975 1279.575 1000 50 0.99996114 +247 1279.575 1283.4525 1000 50 0.99997425 +248 1283.4525 1287.3300000000002 1000 50 0.998971 +249 1287.33 1291.2075 1000 50 0.9649684 +250 1291.2075 1295.085 1000 50 0.9999827 +251 1295.085 1298.9625 1000 50 0.9998118 +252 1298.9625 1302.8400000000001 1000 50 0.52898824 +253 1310.595 1314.4725 1000 50 0.644473 +254 1314.4725 1318.3500000000001 1000 50 0.6837489 +255 1318.35 1322.2275 1000 50 0.71179837 +256 1322.2275 1326.105 1000 50 0.8258785 +257 1326.105 1329.9825 1000 50 0.999683 +258 1329.9825 1333.8600000000001 1000 50 0.9736188 +259 1337.7375 1341.615 1000 50 0.99819213 +260 1341.615 1345.4925 1000 50 0.99314755 +261 1345.4925 1349.3700000000001 1000 50 0.8898538 +262 1349.37 1353.2475 1000 50 0.5489345 +263 1353.2475 1357.125 1000 50 0.9999366 +264 1357.125 1361.0025 1000 50 0.9998882 +265 1361.0025 1364.88 1000 50 0.9990683 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_06-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_06-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..bdc10b707ecb5b1625e1723afe32c43c69ec010d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_06-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,256 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.53120124 +2 7.755 11.6325 1000 50 0.6961765 +3 15.51 19.3875 1000 50 0.6172131 +4 19.3875 23.265 1000 50 0.99999666 +5 27.1425 31.02 1000 50 0.91350675 +6 31.02 34.8975 1000 50 0.99812895 +7 42.6525 46.53 1000 50 0.7577392 +8 46.53 50.4075 1000 50 0.9624057 +9 50.4075 54.285 1000 50 0.9884327 +10 54.285 58.162499999999994 1000 50 0.9406192 +11 58.1625 62.04 1000 50 0.94370764 +12 65.9175 69.795 1000 50 0.9129328 +13 69.795 73.6725 1000 50 0.976127 +14 73.6725 77.55 1000 50 0.7931134 +15 77.55 81.4275 1000 50 0.67470944 +16 81.4275 85.30499999999999 1000 50 0.78888667 +17 89.1825 93.06 1000 50 0.88546515 +18 104.6925 108.57 1000 50 0.9709113 +19 108.57 112.44749999999999 1000 50 0.52265257 +20 116.325 120.2025 1000 50 0.95731056 +21 124.08 127.9575 1000 50 0.5606199 +22 127.9575 131.835 1000 50 0.6038991 +23 131.835 135.7125 1000 50 0.9855703 +24 139.59 143.4675 1000 50 0.7919957 +25 143.4675 147.345 1000 50 0.99982065 +26 151.2225 155.1 1000 50 0.79248285 +27 155.1 158.9775 1000 50 0.5356472 +28 158.9775 162.855 1000 50 0.51606333 +29 162.855 166.7325 1000 50 0.5342995 +30 186.12 189.9975 1000 50 0.8494074 +31 189.9975 193.875 1000 50 0.6872802 +32 197.7525 201.63 1000 50 0.705516 +33 209.385 213.2625 1000 50 0.7016443 +34 221.0175 224.895 1000 50 0.9542326 +35 228.7725 232.65 1000 50 0.9937546 +36 232.65 236.5275 1000 50 0.8605652 +37 236.5275 240.405 1000 50 0.60027915 +38 240.405 244.2825 1000 50 0.99975985 +39 244.2825 248.16 1000 50 0.97964156 +40 252.0375 255.915 1000 50 0.99998736 +41 255.915 259.7925 1000 50 0.8991354 +42 259.7925 263.67 1000 50 0.6730753 +43 263.67 267.5475 1000 50 0.8491958 +44 267.5475 271.425 1000 50 0.6625164 +45 271.425 275.3025 1000 50 0.57913667 +46 275.3025 279.18 1000 50 0.9999975 +47 279.18 283.0575 1000 50 0.97133607 +48 286.935 290.8125 1000 50 0.9999993 +49 290.8125 294.69 1000 50 0.54456013 +50 294.69 298.5675 1000 50 0.99839526 +51 298.5675 302.445 1000 50 0.86338603 +52 306.3225 310.2 1000 50 0.70141476 +53 310.2 314.0775 1000 50 0.6713013 +54 317.955 321.8325 1000 50 0.68820673 +55 321.8325 325.71 1000 50 0.8569969 +56 325.71 329.5875 1000 50 0.99521387 +57 329.5875 333.465 1000 50 0.5729337 +58 337.3425 341.21999999999997 1000 50 0.93095136 +59 345.0975 348.975 1000 50 0.8121195 +60 352.8525 356.73 1000 50 0.90315604 +61 360.6075 364.485 1000 50 0.96614045 +62 364.485 368.3625 1000 50 0.5687153 +63 368.3625 372.24 1000 50 0.53277755 +64 376.1175 379.995 1000 50 0.6292014 +65 379.995 383.8725 1000 50 0.9395774 +66 387.75 391.6275 1000 50 0.68777186 +67 391.6275 395.505 1000 50 0.84693396 +68 403.26 407.1375 1000 50 0.7832487 +69 407.1375 411.015 1000 50 0.6059982 +70 411.015 414.8925 1000 50 0.5435154 +71 414.8925 418.77 1000 50 0.6740802 +72 418.77 422.6475 1000 50 0.9999181 +73 426.525 430.4025 1000 50 0.5984704 +74 430.4025 434.28 1000 50 0.99812573 +75 434.28 438.15749999999997 1000 50 0.99884725 +76 442.035 445.9125 1000 50 0.9534703 +77 445.9125 449.79 1000 50 0.99935335 +78 449.79 453.6675 1000 50 0.99911386 +79 453.6675 457.545 1000 50 0.99603903 +80 457.545 461.4225 1000 50 0.9891722 +81 461.4225 465.3 1000 50 0.9979373 +82 465.3 469.1775 1000 50 0.9999764 +83 469.1775 473.055 1000 50 0.9994436 +84 473.055 476.9325 1000 50 0.9971788 +85 480.81 484.6875 1000 50 0.9948407 +86 488.565 492.4425 1000 50 0.68360394 +87 492.4425 496.32 1000 50 0.9887764 +88 496.32 500.1975 1000 50 0.6742846 +89 504.075 507.9525 1000 50 0.99416167 +90 515.7075 519.585 1000 50 0.95873004 +91 519.585 523.4625000000001 1000 50 0.5159607 +92 527.34 531.2175000000001 1000 50 0.96381706 +93 531.2175 535.095 1000 50 0.97393733 +94 535.095 538.9725000000001 1000 50 0.9998822 +95 542.85 546.7275000000001 1000 50 0.9905716 +96 546.7275 550.605 1000 50 0.9963247 +97 550.605 554.4825000000001 1000 50 0.6642574 +98 554.4825 558.36 1000 50 0.9999949 +99 558.36 562.2375000000001 1000 50 0.9615216 +100 562.2375 566.115 1000 50 0.6489544 +101 566.115 569.9925000000001 1000 50 0.99999917 +102 569.9925 573.87 1000 50 0.68387026 +103 573.87 577.7475000000001 1000 50 0.98962027 +104 577.7475 581.625 1000 50 0.9999244 +105 581.625 585.5025 1000 50 0.9684995 +106 585.5025 589.3800000000001 1000 50 0.99913317 +107 589.38 593.2575 1000 50 0.83407843 +108 597.135 601.0125 1000 50 0.82772475 +109 604.89 608.7675 1000 50 0.9430242 +110 608.7675 612.6450000000001 1000 50 0.84875935 +111 612.645 616.5225 1000 50 0.86996466 +112 620.4 624.2775 1000 50 0.9991279 +113 624.2775 628.1550000000001 1000 50 0.9945287 +114 635.91 639.7875 1000 50 0.7398071 +115 639.7875 643.6650000000001 1000 50 0.92496353 +116 643.665 647.5425 1000 50 0.9966074 +117 647.5425 651.4200000000001 1000 50 0.86913776 +118 651.42 655.2975 1000 50 0.963539 +119 655.2975 659.1750000000001 1000 50 0.6848981 +120 659.175 663.0525 1000 50 0.998524 +121 670.8075 674.6850000000001 1000 50 0.67321324 +122 674.685 678.5625 1000 50 0.5192857 +123 682.44 686.3175000000001 1000 50 0.5939702 +124 709.5825 713.46 1000 50 0.67687947 +125 721.215 725.0925000000001 1000 50 0.99632734 +126 725.0925 728.97 1000 50 0.56643236 +127 728.97 732.8475000000001 1000 50 0.7399937 +128 736.725 740.6025000000001 1000 50 0.99875784 +129 740.6025 744.48 1000 50 0.9833122 +130 748.3575 752.235 1000 50 0.8294297 +131 752.235 756.1125000000001 1000 50 0.999634 +132 756.1125 759.99 1000 50 0.9998448 +133 759.99 763.8675000000001 1000 50 0.9999987 +134 763.8675 767.745 1000 50 0.60526586 +135 767.745 771.6225000000001 1000 50 0.99999523 +136 771.6225 775.5 1000 50 0.9999162 +137 775.5 779.3775 1000 50 0.822344 +138 779.3775 783.2550000000001 1000 50 0.7399857 +139 783.255 787.1325 1000 50 0.8653627 +140 787.1325 791.0100000000001 1000 50 0.61072177 +141 791.01 794.8875 1000 50 0.59728396 +142 798.765 802.6425 1000 50 0.982356 +143 806.52 810.3975 1000 50 0.5628211 +144 814.275 818.1525 1000 50 0.826189 +145 818.1525 822.0300000000001 1000 50 0.6610702 +146 825.9075 829.7850000000001 1000 50 0.9699313 +147 829.785 833.6625 1000 50 0.75048786 +148 833.6625 837.5400000000001 1000 50 0.7985243 +149 837.54 841.4175 1000 50 0.9100669 +150 841.4175 845.2950000000001 1000 50 0.94303995 +151 849.1725 853.0500000000001 1000 50 0.6091847 +152 853.05 856.9275 1000 50 0.99999297 +153 856.9275 860.8050000000001 1000 50 0.7572623 +154 860.805 864.6825 1000 50 0.7384887 +155 864.6825 868.5600000000001 1000 50 0.88520855 +156 868.56 872.4375 1000 50 0.9403625 +157 872.4375 876.315 1000 50 0.99979526 +158 880.1925 884.07 1000 50 0.6518549 +159 895.7025 899.58 1000 50 0.99007344 +160 899.58 903.4575000000001 1000 50 0.9857837 +161 903.4575 907.335 1000 50 0.73363084 +162 907.335 911.2125000000001 1000 50 0.8157713 +163 911.2125 915.09 1000 50 0.9983924 +164 922.845 926.7225000000001 1000 50 0.5756159 +165 930.6 934.4775000000001 1000 50 0.8372821 +166 938.355 942.2325000000001 1000 50 0.56400293 +167 942.2325 946.11 1000 50 0.9935021 +168 946.11 949.9875000000001 1000 50 0.64941734 +169 949.9875 953.865 1000 50 0.8494454 +170 953.865 957.7425000000001 1000 50 0.9014747 +171 957.7425 961.62 1000 50 0.5752929 +172 965.4975 969.375 1000 50 0.63144594 +173 969.375 973.2525 1000 50 0.5960146 +174 977.13 981.0075 1000 50 0.5149157 +175 984.885 988.7625 1000 50 0.8821043 +176 1000.395 1004.2725 1000 50 0.8597708 +177 1004.2725 1008.1500000000001 1000 50 0.7854878 +178 1012.0275 1015.9050000000001 1000 50 0.71732026 +179 1015.905 1019.7825 1000 50 0.9697105 +180 1027.5375 1031.415 1000 50 0.6283616 +181 1031.415 1035.2925 1000 50 0.55635625 +182 1035.2925 1039.17 1000 50 0.87829465 +183 1039.17 1043.0475000000001 1000 50 0.7283908 +184 1050.8025 1054.68 1000 50 0.6646563 +185 1058.5575 1062.435 1000 50 0.9815118 +186 1070.19 1074.0675 1000 50 0.5441067 +187 1085.7 1089.5775 1000 50 0.6830125 +188 1093.455 1097.3325 1000 50 0.5128874 +189 1105.0875 1108.9650000000001 1000 50 0.54372835 +190 1112.8425 1116.72 1000 50 0.9201741 +191 1116.72 1120.5975 1000 50 0.7272531 +192 1128.3525 1132.23 1000 50 0.9995315 +193 1136.1075 1139.9850000000001 1000 50 0.8716564 +194 1147.74 1151.6175 1000 50 0.9294395 +195 1155.495 1159.3725 1000 50 0.96105224 +196 1159.3725 1163.25 1000 50 0.94444937 +197 1163.25 1167.1275 1000 50 0.9852094 +198 1167.1275 1171.005 1000 50 0.9666821 +199 1171.005 1174.8825000000002 1000 50 0.9708754 +200 1174.8825 1178.76 1000 50 0.87604934 +201 1182.6375 1186.515 1000 50 0.84126395 +202 1186.515 1190.3925000000002 1000 50 0.8224311 +203 1190.3925 1194.27 1000 50 0.63600147 +204 1194.27 1198.1475 1000 50 0.9985746 +205 1205.9025 1209.78 1000 50 0.9684119 +206 1209.78 1213.6575 1000 50 0.5927888 +207 1213.6575 1217.535 1000 50 0.514657 +208 1217.535 1221.4125000000001 1000 50 0.9948191 +209 1221.4125 1225.29 1000 50 0.9185473 +210 1225.29 1229.1675 1000 50 0.88146776 +211 1229.1675 1233.045 1000 50 0.9835132 +212 1233.045 1236.9225000000001 1000 50 0.79079384 +213 1236.9225 1240.8 1000 50 0.99888617 +214 1240.8 1244.6775 1000 50 0.99572456 +215 1244.6775 1248.555 1000 50 0.9950472 +216 1248.555 1252.4325000000001 1000 50 0.9965065 +217 1256.31 1260.1875 1000 50 0.8494955 +218 1260.1875 1264.065 1000 50 0.6575078 +219 1264.065 1267.9425 1000 50 0.80543816 +220 1267.9425 1271.8200000000002 1000 50 0.99860114 +221 1271.82 1275.6975 1000 50 0.95575106 +222 1275.6975 1279.575 1000 50 0.6314867 +223 1279.575 1283.4525 1000 50 0.9881023 +224 1283.4525 1287.3300000000002 1000 50 0.9673505 +225 1287.33 1291.2075 1000 50 0.6246791 +226 1291.2075 1295.085 1000 50 0.99997866 +227 1295.085 1298.9625 1000 50 0.72561955 +228 1302.84 1306.7175 1000 50 0.9805679 +229 1306.7175 1310.595 1000 50 0.83280087 +230 1310.595 1314.4725 1000 50 0.99985623 +231 1314.4725 1318.3500000000001 1000 50 0.71439016 +232 1318.35 1322.2275 1000 50 0.51137346 +233 1322.2275 1326.105 1000 50 0.972959 +234 1326.105 1329.9825 1000 50 0.99996483 +235 1329.9825 1333.8600000000001 1000 50 0.6460799 +236 1333.86 1337.7375 1000 50 0.76523644 +237 1337.7375 1341.615 1000 50 0.9877644 +238 1353.2475 1357.125 1000 50 0.9988218 +239 1364.88 1368.7575000000002 1000 50 0.9980829 +240 1388.145 1392.0225 1000 50 0.89132094 +241 1392.0225 1395.9 1000 50 0.7891737 +242 1399.7775 1403.655 1000 50 0.6689809 +243 1403.655 1407.5325 1000 50 0.9926064 +244 1407.5325 1411.41 1000 50 0.99024767 +245 1411.41 1415.2875000000001 1000 50 0.7843762 +246 1419.165 1423.0425 1000 50 0.9999993 +247 1438.5525 1442.43 1000 50 0.9882536 +248 1442.43 1446.3075000000001 1000 50 0.7147225 +249 1446.3075 1450.185 1000 50 0.9030515 +250 1454.0625 1457.94 1000 50 0.67054766 +251 1461.8175 1465.6950000000002 1000 50 0.65533453 +252 1465.695 1469.5725 1000 50 0.6414046 +253 1477.3275 1481.2050000000002 1000 50 0.69969505 +254 1481.205 1485.0825 1000 50 0.9260389 +255 1492.8375 1496.7150000000001 1000 50 0.7769004 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_07-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_07-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..4c37197be8c0442cec4ad79bdb3ac32d8d220ca3 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_07-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,10 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.51153076 +2 11.6325 15.51 1000 50 0.7207998 +3 15.51 19.3875 1000 50 0.80199265 +4 23.265 27.142500000000002 1000 50 0.5134361 +5 31.02 34.8975 1000 50 0.99927205 +6 42.6525 46.53 1000 50 0.5956957 +7 50.4075 54.285 1000 50 0.6537517 +8 62.04 65.9175 1000 50 0.72393364 +9 93.06 96.9375 1000 50 0.5945875 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_07-05-20_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_07-05-20_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..90140481d0ef4cb1e339c32014aad9ab65d5fc41 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_07-05-20_annot_2022-11-30_01.txt @@ -0,0 +1,121 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.5189805 +2 27.1425 31.02 1000 50 0.7883212 +3 42.6525 46.53 1000 50 0.93435466 +4 46.53 50.4075 1000 50 0.8863955 +5 54.285 58.162499999999994 1000 50 0.7828297 +6 65.9175 69.795 1000 50 0.9752578 +7 69.795 73.6725 1000 50 0.84291184 +8 73.6725 77.55 1000 50 0.5443463 +9 100.815 104.6925 1000 50 0.75799745 +10 108.57 112.44749999999999 1000 50 0.6377927 +11 116.325 120.2025 1000 50 0.9941215 +12 127.9575 131.835 1000 50 0.89495516 +13 143.4675 147.345 1000 50 0.60885537 +14 151.2225 155.1 1000 50 0.60503453 +15 155.1 158.9775 1000 50 0.500607 +16 170.61 174.4875 1000 50 0.8195758 +17 174.4875 178.365 1000 50 0.99487984 +18 178.365 182.2425 1000 50 0.7971181 +19 186.12 189.9975 1000 50 0.73407656 +20 197.7525 201.63 1000 50 0.654555 +21 201.63 205.5075 1000 50 0.6383063 +22 209.385 213.2625 1000 50 0.5951994 +23 217.14 221.01749999999998 1000 50 0.6651587 +24 224.895 228.7725 1000 50 0.7001674 +25 252.0375 255.915 1000 50 0.8810798 +26 255.915 259.7925 1000 50 0.9165764 +27 259.7925 263.67 1000 50 0.9566509 +28 271.425 275.3025 1000 50 0.5062966 +29 275.3025 279.18 1000 50 0.8435177 +30 279.18 283.0575 1000 50 0.633666 +31 286.935 290.8125 1000 50 0.54470533 +32 294.69 298.5675 1000 50 0.7243549 +33 298.5675 302.445 1000 50 0.59854203 +34 310.2 314.0775 1000 50 0.9817613 +35 329.5875 333.465 1000 50 0.85564023 +36 333.465 337.3425 1000 50 0.8555184 +37 345.0975 348.975 1000 50 0.5522978 +38 368.3625 372.24 1000 50 0.7666835 +39 379.995 383.8725 1000 50 0.8018344 +40 387.75 391.6275 1000 50 0.507313 +41 391.6275 395.505 1000 50 0.66391796 +42 395.505 399.3825 1000 50 0.6441668 +43 399.3825 403.26 1000 50 0.971449 +44 414.8925 418.77 1000 50 0.8495908 +45 438.1575 442.035 1000 50 0.65078217 +46 473.055 476.9325 1000 50 0.63911664 +47 476.9325 480.81 1000 50 0.50923854 +48 480.81 484.6875 1000 50 0.5244812 +49 488.565 492.4425 1000 50 0.74810475 +50 492.4425 496.32 1000 50 0.569117 +51 504.075 507.9525 1000 50 0.53167427 +52 531.2175 535.095 1000 50 0.52737296 +53 535.095 538.9725000000001 1000 50 0.835259 +54 542.85 546.7275000000001 1000 50 0.64707786 +55 573.87 577.7475000000001 1000 50 0.51617026 +56 581.625 585.5025 1000 50 0.60243547 +57 585.5025 589.3800000000001 1000 50 0.75781494 +58 608.7675 612.6450000000001 1000 50 0.9331696 +59 635.91 639.7875 1000 50 0.8368127 +60 659.175 663.0525 1000 50 0.8651777 +61 663.0525 666.9300000000001 1000 50 0.8066605 +62 666.93 670.8075 1000 50 0.7235749 +63 670.8075 674.6850000000001 1000 50 0.9201689 +64 678.5625 682.44 1000 50 0.64635026 +65 682.44 686.3175000000001 1000 50 0.83532596 +66 694.0725 697.95 1000 50 0.9500444 +67 701.8275 705.705 1000 50 0.9999945 +68 705.705 709.5825000000001 1000 50 0.79502004 +69 709.5825 713.46 1000 50 0.9761396 +70 713.46 717.3375000000001 1000 50 0.9340651 +71 728.97 732.8475000000001 1000 50 0.74352115 +72 732.8475 736.725 1000 50 0.75097007 +73 740.6025 744.48 1000 50 0.8784447 +74 771.6225 775.5 1000 50 0.9090287 +75 783.255 787.1325 1000 50 0.5583159 +76 806.52 810.3975 1000 50 0.61924237 +77 833.6625 837.5400000000001 1000 50 0.7122708 +78 841.4175 845.2950000000001 1000 50 0.5805943 +79 907.335 911.2125000000001 1000 50 0.7927523 +80 911.2125 915.09 1000 50 0.9660054 +81 915.09 918.9675000000001 1000 50 0.8354584 +82 922.845 926.7225000000001 1000 50 0.99415153 +83 942.2325 946.11 1000 50 0.99990404 +84 946.11 949.9875000000001 1000 50 0.9746003 +85 961.62 965.4975000000001 1000 50 0.89213824 +86 965.4975 969.375 1000 50 0.66971254 +87 969.375 973.2525 1000 50 0.5787844 +88 984.885 988.7625 1000 50 0.85269564 +89 992.64 996.5175 1000 50 0.8944388 +90 996.5175 1000.3950000000001 1000 50 0.5438496 +91 1000.395 1004.2725 1000 50 0.58499956 +92 1004.2725 1008.1500000000001 1000 50 0.9977143 +93 1008.15 1012.0275 1000 50 0.99408287 +94 1012.0275 1015.9050000000001 1000 50 0.7213772 +95 1015.905 1019.7825 1000 50 0.9980241 +96 1019.7825 1023.6600000000001 1000 50 0.9839991 +97 1023.66 1027.5375 1000 50 0.6922103 +98 1027.5375 1031.415 1000 50 0.9858415 +99 1031.415 1035.2925 1000 50 0.5774514 +100 1035.2925 1039.17 1000 50 0.909888 +101 1039.17 1043.0475000000001 1000 50 0.9485406 +102 1043.0475 1046.925 1000 50 0.5395097 +103 1046.925 1050.8025 1000 50 0.6951977 +104 1050.8025 1054.68 1000 50 0.9993988 +105 1054.68 1058.5575000000001 1000 50 0.9232222 +106 1062.435 1066.3125 1000 50 0.9637726 +107 1066.3125 1070.19 1000 50 0.8624124 +108 1077.945 1081.8225 1000 50 0.5203292 +109 1081.8225 1085.7 1000 50 0.8844718 +110 1085.7 1089.5775 1000 50 0.70257324 +111 1101.21 1105.0875 1000 50 0.83988464 +112 1105.0875 1108.9650000000001 1000 50 0.5459307 +113 1120.5975 1124.4750000000001 1000 50 0.6402236 +114 1136.1075 1139.9850000000001 1000 50 0.58641696 +115 1147.74 1151.6175 1000 50 0.52479714 +116 1159.3725 1163.25 1000 50 0.9833228 +117 1167.1275 1171.005 1000 50 0.5888213 +118 1171.005 1174.8825000000002 1000 50 0.9950819 +119 1174.8825 1178.76 1000 50 0.93142045 +120 1182.6375 1186.515 1000 50 0.99999654 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_08-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_08-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ebfd070dd4488e319f741d945125147040bf82ec --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_08-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,68 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.8176355 +2 3.8775 7.755 1000 50 0.97470504 +3 7.755 11.6325 1000 50 0.8611915 +4 15.51 19.3875 1000 50 0.9998666 +5 19.3875 23.265 1000 50 0.54894143 +6 27.1425 31.02 1000 50 0.99741673 +7 31.02 34.8975 1000 50 0.91465735 +8 34.8975 38.775 1000 50 0.6543829 +9 38.775 42.652499999999996 1000 50 0.5222309 +10 42.6525 46.53 1000 50 0.65424204 +11 50.4075 54.285 1000 50 0.67278576 +12 54.285 58.162499999999994 1000 50 0.9941004 +13 62.04 65.9175 1000 50 0.99776566 +14 65.9175 69.795 1000 50 0.8792985 +15 73.6725 77.55 1000 50 0.9685695 +16 81.4275 85.30499999999999 1000 50 0.8009028 +17 85.305 89.1825 1000 50 0.99713135 +18 100.815 104.6925 1000 50 0.65521103 +19 104.6925 108.57 1000 50 0.9540132 +20 108.57 112.44749999999999 1000 50 0.995806 +21 112.4475 116.325 1000 50 0.528617 +22 116.325 120.2025 1000 50 0.9829775 +23 120.2025 124.08 1000 50 0.5912892 +24 143.4675 147.345 1000 50 0.8310354 +25 147.345 151.2225 1000 50 0.78780806 +26 151.2225 155.1 1000 50 0.6075587 +27 155.1 158.9775 1000 50 0.8116531 +28 158.9775 162.855 1000 50 0.5343469 +29 166.7325 170.60999999999999 1000 50 0.59110147 +30 170.61 174.4875 1000 50 0.7036831 +31 209.385 213.2625 1000 50 0.98897797 +32 217.14 221.01749999999998 1000 50 0.8113149 +33 221.0175 224.895 1000 50 0.60924685 +34 224.895 228.7725 1000 50 0.5398965 +35 232.65 236.5275 1000 50 0.8007498 +36 236.5275 240.405 1000 50 0.62650454 +37 252.0375 255.915 1000 50 0.6398024 +38 259.7925 263.67 1000 50 0.56124103 +39 263.67 267.5475 1000 50 0.6133044 +40 267.5475 271.425 1000 50 0.9989687 +41 275.3025 279.18 1000 50 0.9960711 +42 279.18 283.0575 1000 50 0.9994037 +43 283.0575 286.935 1000 50 0.99927276 +44 294.69 298.5675 1000 50 0.9458943 +45 298.5675 302.445 1000 50 0.9744699 +46 302.445 306.3225 1000 50 0.9999856 +47 314.0775 317.955 1000 50 0.99999833 +48 317.955 321.8325 1000 50 0.99999356 +49 325.71 329.5875 1000 50 0.830068 +50 329.5875 333.465 1000 50 0.96691287 +51 333.465 337.3425 1000 50 0.6142553 +52 337.3425 341.21999999999997 1000 50 0.7447208 +53 341.22 345.0975 1000 50 0.9771527 +54 345.0975 348.975 1000 50 0.9616366 +55 348.975 352.8525 1000 50 0.9336175 +56 352.8525 356.73 1000 50 0.53574365 +57 356.73 360.6075 1000 50 0.62944216 +58 360.6075 364.485 1000 50 0.86240995 +59 368.3625 372.24 1000 50 0.6435446 +60 372.24 376.1175 1000 50 0.98843914 +61 376.1175 379.995 1000 50 0.8322969 +62 379.995 383.8725 1000 50 0.99962795 +63 387.75 391.6275 1000 50 0.6422485 +64 391.6275 395.505 1000 50 0.9994288 +65 395.505 399.3825 1000 50 0.86329615 +66 399.3825 403.26 1000 50 0.8907379 +67 403.26 407.1375 1000 50 0.99999964 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_08-10-29_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_08-10-29_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..54f4e242c0e1f5398f39ad2c7b63149eac5536c3 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_08-10-29_annot_2022-11-30_01.txt @@ -0,0 +1,179 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9615868 +2 7.755 11.6325 1000 50 0.72311586 +3 19.3875 23.265 1000 50 0.902495 +4 23.265 27.142500000000002 1000 50 0.5710292 +5 27.1425 31.02 1000 50 0.6721069 +6 34.8975 38.775 1000 50 0.859547 +7 38.775 42.652499999999996 1000 50 0.98580617 +8 42.6525 46.53 1000 50 0.95213044 +9 46.53 50.4075 1000 50 0.7679082 +10 50.4075 54.285 1000 50 0.99230736 +11 54.285 58.162499999999994 1000 50 0.9942451 +12 58.1625 62.04 1000 50 0.6232563 +13 62.04 65.9175 1000 50 0.74824995 +14 65.9175 69.795 1000 50 0.9994413 +15 73.6725 77.55 1000 50 0.9802101 +16 77.55 81.4275 1000 50 0.9870101 +17 81.4275 85.30499999999999 1000 50 0.99982005 +18 89.1825 93.06 1000 50 0.9175031 +19 93.06 96.9375 1000 50 0.6477907 +20 104.6925 108.57 1000 50 0.68783325 +21 108.57 112.44749999999999 1000 50 0.64683276 +22 112.4475 116.325 1000 50 0.9935942 +23 116.325 120.2025 1000 50 0.67804146 +24 120.2025 124.08 1000 50 0.87189347 +25 124.08 127.9575 1000 50 0.96620774 +26 131.835 135.7125 1000 50 0.7091841 +27 135.7125 139.59 1000 50 0.79736525 +28 139.59 143.4675 1000 50 0.77933425 +29 151.2225 155.1 1000 50 0.9392065 +30 155.1 158.9775 1000 50 0.99613696 +31 158.9775 162.855 1000 50 0.6200908 +32 178.365 182.2425 1000 50 0.65230745 +33 182.2425 186.12 1000 50 0.66304237 +34 186.12 189.9975 1000 50 0.84323204 +35 189.9975 193.875 1000 50 0.99338645 +36 193.875 197.7525 1000 50 0.83189046 +37 197.7525 201.63 1000 50 0.9992348 +38 201.63 205.5075 1000 50 0.9183793 +39 209.385 213.2625 1000 50 0.7735468 +40 217.14 221.01749999999998 1000 50 0.60252446 +41 221.0175 224.895 1000 50 0.7184545 +42 224.895 228.7725 1000 50 0.9993211 +43 236.5275 240.405 1000 50 0.77180064 +44 244.2825 248.16 1000 50 0.9999927 +45 248.16 252.0375 1000 50 0.78946817 +46 252.0375 255.915 1000 50 0.52386594 +47 255.915 259.7925 1000 50 0.9998722 +48 259.7925 263.67 1000 50 0.9949314 +49 263.67 267.5475 1000 50 0.9962276 +50 267.5475 271.425 1000 50 0.9997348 +51 275.3025 279.18 1000 50 0.9537393 +52 279.18 283.0575 1000 50 0.9971757 +53 283.0575 286.935 1000 50 0.84575874 +54 286.935 290.8125 1000 50 0.9861757 +55 290.8125 294.69 1000 50 0.99800843 +56 294.69 298.5675 1000 50 0.6834475 +57 302.445 306.3225 1000 50 0.98822254 +58 314.0775 317.955 1000 50 0.99948514 +59 317.955 321.8325 1000 50 0.9879739 +60 321.8325 325.71 1000 50 0.9997564 +61 325.71 329.5875 1000 50 0.9185063 +62 329.5875 333.465 1000 50 0.9961377 +63 333.465 337.3425 1000 50 0.97783023 +64 337.3425 341.21999999999997 1000 50 0.95573264 +65 341.22 345.0975 1000 50 0.9999982 +66 345.0975 348.975 1000 50 0.99997914 +67 348.975 352.8525 1000 50 0.75951123 +68 352.8525 356.73 1000 50 0.99943775 +69 356.73 360.6075 1000 50 0.983772 +70 364.485 368.3625 1000 50 0.9998982 +71 368.3625 372.24 1000 50 0.98977906 +72 372.24 376.1175 1000 50 0.83151776 +73 376.1175 379.995 1000 50 0.99997663 +74 383.8725 387.75 1000 50 0.92186636 +75 387.75 391.6275 1000 50 0.99997926 +76 391.6275 395.505 1000 50 0.999926 +77 395.505 399.3825 1000 50 0.97217834 +78 399.3825 403.26 1000 50 0.99983597 +79 403.26 407.1375 1000 50 0.69902265 +80 407.1375 411.015 1000 50 0.991137 +81 411.015 414.8925 1000 50 0.75291085 +82 414.8925 418.77 1000 50 0.9942011 +83 418.77 422.6475 1000 50 0.99153674 +84 422.6475 426.525 1000 50 0.5256459 +85 426.525 430.4025 1000 50 0.7388132 +86 430.4025 434.28 1000 50 0.989356 +87 434.28 438.15749999999997 1000 50 0.9653576 +88 438.1575 442.035 1000 50 0.92699575 +89 442.035 445.9125 1000 50 0.99592763 +90 445.9125 449.79 1000 50 0.912606 +91 453.6675 457.545 1000 50 0.99624014 +92 457.545 461.4225 1000 50 0.79607785 +93 461.4225 465.3 1000 50 0.9958015 +94 469.1775 473.055 1000 50 0.9836444 +95 473.055 476.9325 1000 50 0.8507386 +96 476.9325 480.81 1000 50 0.8633378 +97 484.6875 488.565 1000 50 0.56434256 +98 488.565 492.4425 1000 50 0.836892 +99 492.4425 496.32 1000 50 0.94171584 +100 496.32 500.1975 1000 50 0.65524834 +101 500.1975 504.075 1000 50 0.6763308 +102 527.34 531.2175000000001 1000 50 0.96981186 +103 531.2175 535.095 1000 50 0.7372713 +104 535.095 538.9725000000001 1000 50 0.98463964 +105 538.9725 542.85 1000 50 0.504508 +106 546.7275 550.605 1000 50 0.5838302 +107 554.4825 558.36 1000 50 0.8226905 +108 558.36 562.2375000000001 1000 50 0.98277575 +109 562.2375 566.115 1000 50 0.55439174 +110 573.87 577.7475000000001 1000 50 0.9956456 +111 581.625 585.5025 1000 50 0.99893576 +112 589.38 593.2575 1000 50 0.7409157 +113 593.2575 597.1350000000001 1000 50 0.85989344 +114 597.135 601.0125 1000 50 0.66827255 +115 601.0125 604.8900000000001 1000 50 0.7587557 +116 604.89 608.7675 1000 50 0.99999785 +117 608.7675 612.6450000000001 1000 50 0.8735377 +118 612.645 616.5225 1000 50 0.80483294 +119 616.5225 620.4000000000001 1000 50 0.85402054 +120 620.4 624.2775 1000 50 0.9926117 +121 624.2775 628.1550000000001 1000 50 0.99733967 +122 635.91 639.7875 1000 50 0.9992785 +123 639.7875 643.6650000000001 1000 50 0.735704 +124 643.665 647.5425 1000 50 0.6464059 +125 647.5425 651.4200000000001 1000 50 0.9460344 +126 655.2975 659.1750000000001 1000 50 0.9302453 +127 659.175 663.0525 1000 50 0.9998908 +128 663.0525 666.9300000000001 1000 50 0.98233414 +129 666.93 670.8075 1000 50 0.78087884 +130 670.8075 674.6850000000001 1000 50 1.0 +131 674.685 678.5625 1000 50 0.99802965 +132 678.5625 682.44 1000 50 0.96403795 +133 682.44 686.3175000000001 1000 50 0.9991393 +134 686.3175 690.195 1000 50 0.89638007 +135 690.195 694.0725000000001 1000 50 0.9597151 +136 694.0725 697.95 1000 50 0.9495037 +137 697.95 701.8275000000001 1000 50 0.8479395 +138 701.8275 705.705 1000 50 0.57000554 +139 705.705 709.5825000000001 1000 50 0.73451525 +140 709.5825 713.46 1000 50 0.74693054 +141 713.46 717.3375000000001 1000 50 0.9467427 +142 717.3375 721.215 1000 50 0.9427595 +143 721.215 725.0925000000001 1000 50 0.9989667 +144 725.0925 728.97 1000 50 0.9999819 +145 728.97 732.8475000000001 1000 50 0.9999713 +146 732.8475 736.725 1000 50 0.9999927 +147 736.725 740.6025000000001 1000 50 0.99974304 +148 740.6025 744.48 1000 50 0.9988188 +149 744.48 748.3575000000001 1000 50 0.8849312 +150 748.3575 752.235 1000 50 0.8143179 +151 752.235 756.1125000000001 1000 50 0.61776704 +152 763.8675 767.745 1000 50 0.999949 +153 767.745 771.6225000000001 1000 50 0.5351741 +154 771.6225 775.5 1000 50 0.7744453 +155 775.5 779.3775 1000 50 0.999984 +156 779.3775 783.2550000000001 1000 50 0.99997306 +157 783.255 787.1325 1000 50 0.6906657 +158 787.1325 791.0100000000001 1000 50 0.83634126 +159 791.01 794.8875 1000 50 0.61205 +160 794.8875 798.7650000000001 1000 50 0.7642235 +161 798.765 802.6425 1000 50 0.5770616 +162 802.6425 806.5200000000001 1000 50 0.9998109 +163 806.52 810.3975 1000 50 0.737399 +164 810.3975 814.2750000000001 1000 50 0.5247118 +165 814.275 818.1525 1000 50 0.75787926 +166 822.03 825.9075 1000 50 0.9724382 +167 825.9075 829.7850000000001 1000 50 0.86454916 +168 829.785 833.6625 1000 50 0.93129724 +169 837.54 841.4175 1000 50 0.9995074 +170 841.4175 845.2950000000001 1000 50 0.9997937 +171 845.295 849.1725 1000 50 0.9999918 +172 849.1725 853.0500000000001 1000 50 0.99999666 +173 853.05 856.9275 1000 50 0.8946106 +174 856.9275 860.8050000000001 1000 50 0.9999995 +175 860.805 864.6825 1000 50 1.0 +176 864.6825 868.5600000000001 1000 50 0.9060603 +177 868.56 872.4375 1000 50 0.9998517 +178 872.4375 876.315 1000 50 0.9997303 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_09-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_09-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..54b0881a6515dc5834317344afb3723c3561b9ed --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_09-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,132 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.92640066 +2 3.8775 7.755 1000 50 0.9997856 +3 7.755 11.6325 1000 50 0.8313407 +4 11.6325 15.51 1000 50 0.95607305 +5 23.265 27.142500000000002 1000 50 0.9856076 +6 27.1425 31.02 1000 50 0.9686016 +7 34.8975 38.775 1000 50 0.86883056 +8 38.775 42.652499999999996 1000 50 0.6127683 +9 42.6525 46.53 1000 50 0.96009123 +10 46.53 50.4075 1000 50 0.92610466 +11 50.4075 54.285 1000 50 0.8511017 +12 54.285 58.162499999999994 1000 50 0.880192 +13 58.1625 62.04 1000 50 0.9950547 +14 62.04 65.9175 1000 50 0.99429613 +15 69.795 73.6725 1000 50 0.7662215 +16 73.6725 77.55 1000 50 0.66793424 +17 77.55 81.4275 1000 50 0.8595263 +18 81.4275 85.30499999999999 1000 50 0.69227284 +19 85.305 89.1825 1000 50 0.91714346 +20 89.1825 93.06 1000 50 0.98461366 +21 93.06 96.9375 1000 50 0.9970571 +22 96.9375 100.815 1000 50 0.65562165 +23 100.815 104.6925 1000 50 0.72280246 +24 104.6925 108.57 1000 50 0.95332414 +25 108.57 112.44749999999999 1000 50 0.9166551 +26 116.325 120.2025 1000 50 0.5947466 +27 120.2025 124.08 1000 50 0.6770122 +28 124.08 127.9575 1000 50 0.67199695 +29 127.9575 131.835 1000 50 0.59895843 +30 131.835 135.7125 1000 50 0.5261001 +31 135.7125 139.59 1000 50 0.79550254 +32 143.4675 147.345 1000 50 0.5762523 +33 147.345 151.2225 1000 50 0.602045 +34 155.1 158.9775 1000 50 0.7880625 +35 162.855 166.7325 1000 50 0.515357 +36 166.7325 170.60999999999999 1000 50 0.9999347 +37 174.4875 178.365 1000 50 0.978725 +38 182.2425 186.12 1000 50 0.9890175 +39 189.9975 193.875 1000 50 0.99287707 +40 193.875 197.7525 1000 50 0.95742804 +41 197.7525 201.63 1000 50 0.999936 +42 201.63 205.5075 1000 50 0.88138473 +43 205.5075 209.385 1000 50 0.5388368 +44 217.14 221.01749999999998 1000 50 0.9947018 +45 221.0175 224.895 1000 50 0.54269534 +46 228.7725 232.65 1000 50 0.9981615 +47 232.65 236.5275 1000 50 0.8703997 +48 236.5275 240.405 1000 50 0.8376049 +49 244.2825 248.16 1000 50 0.65685046 +50 248.16 252.0375 1000 50 0.9998889 +51 255.915 259.7925 1000 50 0.9974832 +52 267.5475 271.425 1000 50 0.59346324 +53 271.425 275.3025 1000 50 0.9975017 +54 275.3025 279.18 1000 50 0.66813093 +55 279.18 283.0575 1000 50 0.9851098 +56 283.0575 286.935 1000 50 0.99986863 +57 286.935 290.8125 1000 50 0.9460168 +58 290.8125 294.69 1000 50 0.98240155 +59 294.69 298.5675 1000 50 0.9766824 +60 298.5675 302.445 1000 50 0.5608149 +61 306.3225 310.2 1000 50 0.8768892 +62 310.2 314.0775 1000 50 0.93136436 +63 314.0775 317.955 1000 50 0.7587945 +64 321.8325 325.71 1000 50 0.7954735 +65 325.71 329.5875 1000 50 0.9909696 +66 329.5875 333.465 1000 50 0.8719559 +67 333.465 337.3425 1000 50 0.9249314 +68 341.22 345.0975 1000 50 0.7997117 +69 345.0975 348.975 1000 50 0.9997745 +70 348.975 352.8525 1000 50 0.71384704 +71 352.8525 356.73 1000 50 0.619644 +72 356.73 360.6075 1000 50 0.9998566 +73 368.3625 372.24 1000 50 0.9987558 +74 372.24 376.1175 1000 50 0.9340891 +75 376.1175 379.995 1000 50 0.90931153 +76 379.995 383.8725 1000 50 0.9609961 +77 383.8725 387.75 1000 50 0.9991455 +78 387.75 391.6275 1000 50 0.99900395 +79 391.6275 395.505 1000 50 0.9945732 +80 395.505 399.3825 1000 50 0.99011266 +81 399.3825 403.26 1000 50 0.5918748 +82 403.26 407.1375 1000 50 0.98070633 +83 407.1375 411.015 1000 50 0.66599786 +84 411.015 414.8925 1000 50 0.8500648 +85 418.77 422.6475 1000 50 0.69152105 +86 422.6475 426.525 1000 50 0.9209499 +87 426.525 430.4025 1000 50 0.50912917 +88 434.28 438.15749999999997 1000 50 0.9618323 +89 438.1575 442.035 1000 50 0.7169878 +90 445.9125 449.79 1000 50 0.71354926 +91 457.545 461.4225 1000 50 0.75850934 +92 461.4225 465.3 1000 50 0.91700804 +93 465.3 469.1775 1000 50 0.7613311 +94 473.055 476.9325 1000 50 0.5409029 +95 476.9325 480.81 1000 50 0.9003757 +96 484.6875 488.565 1000 50 0.51165736 +97 492.4425 496.32 1000 50 0.60399383 +98 496.32 500.1975 1000 50 0.9919085 +99 500.1975 504.075 1000 50 0.9864265 +100 504.075 507.9525 1000 50 0.7598395 +101 507.9525 511.83 1000 50 0.9194868 +102 511.83 515.7075 1000 50 0.53651583 +103 515.7075 519.585 1000 50 0.9421785 +104 527.34 531.2175000000001 1000 50 0.61798227 +105 546.7275 550.605 1000 50 0.8570782 +106 554.4825 558.36 1000 50 0.9971451 +107 558.36 562.2375000000001 1000 50 0.54233366 +108 562.2375 566.115 1000 50 0.5801839 +109 566.115 569.9925000000001 1000 50 0.9939395 +110 573.87 577.7475000000001 1000 50 0.62452024 +111 581.625 585.5025 1000 50 0.9341784 +112 585.5025 589.3800000000001 1000 50 0.8686447 +113 589.38 593.2575 1000 50 0.87950766 +114 601.0125 604.8900000000001 1000 50 0.93499833 +115 604.89 608.7675 1000 50 0.7441219 +116 616.5225 620.4000000000001 1000 50 0.6270336 +117 624.2775 628.1550000000001 1000 50 0.88849735 +118 632.0325 635.9100000000001 1000 50 0.79082626 +119 639.7875 643.6650000000001 1000 50 0.53567195 +120 647.5425 651.4200000000001 1000 50 0.92503035 +121 651.42 655.2975 1000 50 0.51035506 +122 659.175 663.0525 1000 50 0.82209516 +123 674.685 678.5625 1000 50 0.8062436 +124 678.5625 682.44 1000 50 0.63835144 +125 682.44 686.3175000000001 1000 50 0.84901977 +126 686.3175 690.195 1000 50 0.63840425 +127 690.195 694.0725000000001 1000 50 0.5220024 +128 694.0725 697.95 1000 50 0.81490403 +129 701.8275 705.705 1000 50 0.96403915 +130 705.705 709.5825000000001 1000 50 0.5508483 +131 709.5825 713.46 1000 50 0.880948 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_09-17-22_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_09-17-22_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e0624effc1a19a3e14b8af3c48eeb67d851afb57 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_09-17-22_annot_2022-11-30_01.txt @@ -0,0 +1,84 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.81982434 +2 3.8775 7.755 1000 50 0.8898397 +3 7.755 11.6325 1000 50 0.8694655 +4 11.6325 15.51 1000 50 0.7843738 +5 15.51 19.3875 1000 50 0.86321896 +6 31.02 34.8975 1000 50 0.77772206 +7 42.6525 46.53 1000 50 0.9880657 +8 46.53 50.4075 1000 50 0.76726806 +9 50.4075 54.285 1000 50 0.98295355 +10 54.285 58.162499999999994 1000 50 0.70038223 +11 58.1625 62.04 1000 50 0.9996437 +12 65.9175 69.795 1000 50 0.85823625 +13 69.795 73.6725 1000 50 0.98736864 +14 77.55 81.4275 1000 50 0.74709785 +15 93.06 96.9375 1000 50 0.69270366 +16 96.9375 100.815 1000 50 0.9021106 +17 104.6925 108.57 1000 50 0.53666455 +18 108.57 112.44749999999999 1000 50 0.96701306 +19 112.4475 116.325 1000 50 0.968745 +20 116.325 120.2025 1000 50 0.9931386 +21 120.2025 124.08 1000 50 0.8552369 +22 124.08 127.9575 1000 50 0.9998667 +23 127.9575 131.835 1000 50 0.9989446 +24 131.835 135.7125 1000 50 0.99274373 +25 135.7125 139.59 1000 50 0.99974555 +26 139.59 143.4675 1000 50 0.99980503 +27 143.4675 147.345 1000 50 0.8298192 +28 147.345 151.2225 1000 50 0.99836105 +29 151.2225 155.1 1000 50 0.9875572 +30 155.1 158.9775 1000 50 0.98809564 +31 158.9775 162.855 1000 50 0.9999274 +32 162.855 166.7325 1000 50 0.99060994 +33 166.7325 170.60999999999999 1000 50 0.92588514 +34 170.61 174.4875 1000 50 0.9984143 +35 178.365 182.2425 1000 50 0.5611121 +36 189.9975 193.875 1000 50 0.538598 +37 197.7525 201.63 1000 50 0.9384681 +38 201.63 205.5075 1000 50 0.9176324 +39 217.14 221.01749999999998 1000 50 0.869443 +40 221.0175 224.895 1000 50 0.9020838 +41 224.895 228.7725 1000 50 0.8340065 +42 228.7725 232.65 1000 50 0.7870395 +43 232.65 236.5275 1000 50 0.86068106 +44 240.405 244.2825 1000 50 0.9329871 +45 244.2825 248.16 1000 50 0.87756604 +46 248.16 252.0375 1000 50 0.9837842 +47 259.7925 263.67 1000 50 0.67583483 +48 267.5475 271.425 1000 50 0.91735363 +49 275.3025 279.18 1000 50 0.8863881 +50 283.0575 286.935 1000 50 0.8322776 +51 294.69 298.5675 1000 50 0.99600714 +52 302.445 306.3225 1000 50 0.835096 +53 306.3225 310.2 1000 50 0.6867115 +54 310.2 314.0775 1000 50 0.98813874 +55 314.0775 317.955 1000 50 0.6943117 +56 317.955 321.8325 1000 50 0.70181274 +57 321.8325 325.71 1000 50 0.9819033 +58 329.5875 333.465 1000 50 0.98468876 +59 333.465 337.3425 1000 50 0.55769837 +60 337.3425 341.21999999999997 1000 50 0.8987441 +61 341.22 345.0975 1000 50 0.75279456 +62 345.0975 348.975 1000 50 0.99988246 +63 348.975 352.8525 1000 50 0.9994337 +64 356.73 360.6075 1000 50 0.9999703 +65 360.6075 364.485 1000 50 0.9990044 +66 368.3625 372.24 1000 50 0.96697927 +67 372.24 376.1175 1000 50 0.99930906 +68 379.995 383.8725 1000 50 0.99619627 +69 383.8725 387.75 1000 50 0.9983177 +70 391.6275 395.505 1000 50 0.6410961 +71 395.505 399.3825 1000 50 0.99999297 +72 399.3825 403.26 1000 50 0.9710225 +73 403.26 407.1375 1000 50 0.98195696 +74 407.1375 411.015 1000 50 0.99870455 +75 411.015 414.8925 1000 50 0.65909225 +76 414.8925 418.77 1000 50 0.8730087 +77 418.77 422.6475 1000 50 0.9997634 +78 422.6475 426.525 1000 50 0.69594514 +79 426.525 430.4025 1000 50 0.76956093 +80 434.28 438.15749999999997 1000 50 0.638656 +81 438.1575 442.035 1000 50 0.94055325 +82 457.545 461.4225 1000 50 0.78508896 +83 461.4225 465.3 1000 50 0.77345276 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_10-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_10-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5df54d5e28d1ccd656d45f9a2ced383b69edc34d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_10-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,224 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.778488 +2 11.6325 15.51 1000 50 0.7054882 +3 15.51 19.3875 1000 50 0.88738525 +4 23.265 27.142500000000002 1000 50 0.72952926 +5 27.1425 31.02 1000 50 0.99990714 +6 31.02 34.8975 1000 50 0.98530906 +7 34.8975 38.775 1000 50 0.9998172 +8 38.775 42.652499999999996 1000 50 0.9999957 +9 42.6525 46.53 1000 50 0.99095297 +10 46.53 50.4075 1000 50 0.99979895 +11 50.4075 54.285 1000 50 0.9999982 +12 54.285 58.162499999999994 1000 50 0.902495 +13 62.04 65.9175 1000 50 0.97679716 +14 65.9175 69.795 1000 50 0.999238 +15 69.795 73.6725 1000 50 0.99975127 +16 73.6725 77.55 1000 50 0.9999926 +17 77.55 81.4275 1000 50 0.7585679 +18 81.4275 85.30499999999999 1000 50 0.9993063 +19 85.305 89.1825 1000 50 0.9999994 +20 93.06 96.9375 1000 50 0.9942879 +21 96.9375 100.815 1000 50 0.9999933 +22 100.815 104.6925 1000 50 0.8968041 +23 108.57 112.44749999999999 1000 50 0.97656244 +24 112.4475 116.325 1000 50 0.9999373 +25 116.325 120.2025 1000 50 0.6741935 +26 120.2025 124.08 1000 50 0.98876256 +27 124.08 127.9575 1000 50 0.9998282 +28 127.9575 131.835 1000 50 0.784366 +29 131.835 135.7125 1000 50 0.99753916 +30 147.345 151.2225 1000 50 0.5448619 +31 151.2225 155.1 1000 50 0.6208785 +32 162.855 166.7325 1000 50 0.75991994 +33 166.7325 170.60999999999999 1000 50 0.9072349 +34 178.365 182.2425 1000 50 0.54696447 +35 182.2425 186.12 1000 50 0.9899888 +36 186.12 189.9975 1000 50 0.7489027 +37 193.875 197.7525 1000 50 0.7640967 +38 197.7525 201.63 1000 50 0.97644174 +39 201.63 205.5075 1000 50 0.84148926 +40 205.5075 209.385 1000 50 0.999995 +41 209.385 213.2625 1000 50 0.9998387 +42 213.2625 217.14 1000 50 0.5335888 +43 217.14 221.01749999999998 1000 50 0.99999714 +44 221.0175 224.895 1000 50 0.9999031 +45 224.895 228.7725 1000 50 0.99974984 +46 228.7725 232.65 1000 50 0.9999964 +47 232.65 236.5275 1000 50 0.9343946 +48 236.5275 240.405 1000 50 0.89814883 +49 240.405 244.2825 1000 50 0.9999956 +50 244.2825 248.16 1000 50 0.98387504 +51 252.0375 255.915 1000 50 0.9991053 +52 255.915 259.7925 1000 50 0.99987936 +53 259.7925 263.67 1000 50 0.99895906 +54 263.67 267.5475 1000 50 0.99999833 +55 267.5475 271.425 1000 50 0.93119305 +56 271.425 275.3025 1000 50 0.99982435 +57 275.3025 279.18 1000 50 0.99981767 +58 279.18 283.0575 1000 50 0.9999989 +59 283.0575 286.935 1000 50 0.9999918 +60 286.935 290.8125 1000 50 0.9694342 +61 294.69 298.5675 1000 50 0.99999857 +62 298.5675 302.445 1000 50 0.9999993 +63 302.445 306.3225 1000 50 0.991695 +64 306.3225 310.2 1000 50 0.9945697 +65 310.2 314.0775 1000 50 0.9671578 +66 314.0775 317.955 1000 50 0.9999939 +67 317.955 321.8325 1000 50 0.999998 +68 325.71 329.5875 1000 50 0.9886882 +69 329.5875 333.465 1000 50 0.9978241 +70 333.465 337.3425 1000 50 0.98180294 +71 337.3425 341.21999999999997 1000 50 0.9968733 +72 341.22 345.0975 1000 50 0.93424475 +73 345.0975 348.975 1000 50 0.98928213 +74 348.975 352.8525 1000 50 0.999684 +75 352.8525 356.73 1000 50 0.9981554 +76 356.73 360.6075 1000 50 0.88778937 +77 360.6075 364.485 1000 50 0.95253974 +78 364.485 368.3625 1000 50 0.78995216 +79 368.3625 372.24 1000 50 0.9936376 +80 372.24 376.1175 1000 50 0.85777795 +81 376.1175 379.995 1000 50 0.98317647 +82 379.995 383.8725 1000 50 0.98091954 +83 387.75 391.6275 1000 50 0.86817205 +84 391.6275 395.505 1000 50 0.9406798 +85 395.505 399.3825 1000 50 0.77372664 +86 399.3825 403.26 1000 50 0.69273704 +87 403.26 407.1375 1000 50 0.9541044 +88 407.1375 411.015 1000 50 0.99973005 +89 411.015 414.8925 1000 50 0.7731979 +90 414.8925 418.77 1000 50 0.97614163 +91 418.77 422.6475 1000 50 0.99999905 +92 422.6475 426.525 1000 50 0.8994834 +93 426.525 430.4025 1000 50 0.9978532 +94 430.4025 434.28 1000 50 0.99999535 +95 434.28 438.15749999999997 1000 50 0.9185428 +96 442.035 445.9125 1000 50 0.9996536 +97 445.9125 449.79 1000 50 0.8895487 +98 449.79 453.6675 1000 50 0.8285285 +99 453.6675 457.545 1000 50 0.60906535 +100 461.4225 465.3 1000 50 0.9962315 +101 465.3 469.1775 1000 50 0.9832229 +102 469.1775 473.055 1000 50 0.9164268 +103 473.055 476.9325 1000 50 0.66002244 +104 476.9325 480.81 1000 50 0.80208737 +105 480.81 484.6875 1000 50 0.74489063 +106 484.6875 488.565 1000 50 0.5957057 +107 488.565 492.4425 1000 50 0.79413307 +108 492.4425 496.32 1000 50 0.7448907 +109 496.32 500.1975 1000 50 0.96508324 +110 500.1975 504.075 1000 50 0.99931955 +111 507.9525 511.83 1000 50 0.5688629 +112 511.83 515.7075 1000 50 0.72226787 +113 519.585 523.4625000000001 1000 50 0.9198153 +114 523.4625 527.34 1000 50 0.7209885 +115 527.34 531.2175000000001 1000 50 0.99474335 +116 531.2175 535.095 1000 50 0.9641725 +117 538.9725 542.85 1000 50 0.5636163 +118 542.85 546.7275000000001 1000 50 0.92132944 +119 546.7275 550.605 1000 50 0.6326022 +120 558.36 562.2375000000001 1000 50 0.5741111 +121 577.7475 581.625 1000 50 0.54518396 +122 585.5025 589.3800000000001 1000 50 0.55761296 +123 589.38 593.2575 1000 50 0.8298924 +124 601.0125 604.8900000000001 1000 50 0.5330138 +125 624.2775 628.1550000000001 1000 50 0.9929818 +126 628.155 632.0325 1000 50 0.9171459 +127 632.0325 635.9100000000001 1000 50 0.9406802 +128 635.91 639.7875 1000 50 0.9796453 +129 639.7875 643.6650000000001 1000 50 0.9663253 +130 647.5425 651.4200000000001 1000 50 0.7846642 +131 655.2975 659.1750000000001 1000 50 0.58146256 +132 659.175 663.0525 1000 50 0.84569025 +133 663.0525 666.9300000000001 1000 50 0.9600158 +134 666.93 670.8075 1000 50 0.74289966 +135 670.8075 674.6850000000001 1000 50 0.5011962 +136 678.5625 682.44 1000 50 0.66652936 +137 682.44 686.3175000000001 1000 50 0.6871773 +138 686.3175 690.195 1000 50 0.56675094 +139 694.0725 697.95 1000 50 0.5133366 +140 701.8275 705.705 1000 50 0.99879164 +141 705.705 709.5825000000001 1000 50 0.7004885 +142 713.46 717.3375000000001 1000 50 0.9996025 +143 717.3375 721.215 1000 50 0.9992766 +144 721.215 725.0925000000001 1000 50 0.9944575 +145 725.0925 728.97 1000 50 0.9998529 +146 732.8475 736.725 1000 50 0.9997682 +147 736.725 740.6025000000001 1000 50 1.0 +148 740.6025 744.48 1000 50 0.99989974 +149 744.48 748.3575000000001 1000 50 0.9997583 +150 748.3575 752.235 1000 50 0.99999094 +151 752.235 756.1125000000001 1000 50 0.96929616 +152 759.99 763.8675000000001 1000 50 0.9984409 +153 763.8675 767.745 1000 50 0.97625947 +154 767.745 771.6225000000001 1000 50 0.999292 +155 771.6225 775.5 1000 50 0.5042066 +156 775.5 779.3775 1000 50 0.998664 +157 779.3775 783.2550000000001 1000 50 0.9981274 +158 787.1325 791.0100000000001 1000 50 0.99879444 +159 791.01 794.8875 1000 50 0.9986051 +160 794.8875 798.7650000000001 1000 50 0.78376687 +161 798.765 802.6425 1000 50 0.91326624 +162 802.6425 806.5200000000001 1000 50 0.99999344 +163 814.275 818.1525 1000 50 0.9999962 +164 818.1525 822.0300000000001 1000 50 0.5169604 +165 822.03 825.9075 1000 50 0.7936834 +166 825.9075 829.7850000000001 1000 50 0.9992949 +167 833.6625 837.5400000000001 1000 50 0.67422295 +168 837.54 841.4175 1000 50 0.63465285 +169 841.4175 845.2950000000001 1000 50 0.8502873 +170 845.295 849.1725 1000 50 0.74277616 +171 853.05 856.9275 1000 50 0.5437852 +172 884.07 887.9475000000001 1000 50 0.9308206 +173 891.825 895.7025000000001 1000 50 0.69435483 +174 895.7025 899.58 1000 50 0.8631723 +175 899.58 903.4575000000001 1000 50 0.5624182 +176 915.09 918.9675000000001 1000 50 0.5688291 +177 918.9675 922.845 1000 50 0.724106 +178 922.845 926.7225000000001 1000 50 0.9991246 +179 926.7225 930.6 1000 50 0.7008913 +180 930.6 934.4775000000001 1000 50 0.5158847 +181 934.4775 938.355 1000 50 0.88050187 +182 938.355 942.2325000000001 1000 50 0.71576023 +183 942.2325 946.11 1000 50 0.7102238 +184 946.11 949.9875000000001 1000 50 0.9773073 +185 949.9875 953.865 1000 50 0.87620014 +186 953.865 957.7425000000001 1000 50 0.9974661 +187 957.7425 961.62 1000 50 0.9991598 +188 965.4975 969.375 1000 50 0.99996305 +189 969.375 973.2525 1000 50 0.79808897 +190 977.13 981.0075 1000 50 0.9999995 +191 981.0075 984.8850000000001 1000 50 0.97419465 +192 988.7625 992.6400000000001 1000 50 0.99998736 +193 992.64 996.5175 1000 50 0.8215912 +194 996.5175 1000.3950000000001 1000 50 0.9641275 +195 1008.15 1012.0275 1000 50 0.72330177 +196 1012.0275 1015.9050000000001 1000 50 0.93471205 +197 1019.7825 1023.6600000000001 1000 50 0.8230216 +198 1023.66 1027.5375 1000 50 0.9940321 +199 1027.5375 1031.415 1000 50 0.8420086 +200 1031.415 1035.2925 1000 50 0.68334967 +201 1035.2925 1039.17 1000 50 0.9996629 +202 1039.17 1043.0475000000001 1000 50 0.86079127 +203 1043.0475 1046.925 1000 50 0.7078354 +204 1046.925 1050.8025 1000 50 0.9997571 +205 1050.8025 1054.68 1000 50 0.59318185 +206 1054.68 1058.5575000000001 1000 50 0.9579887 +207 1058.5575 1062.435 1000 50 0.98970395 +208 1062.435 1066.3125 1000 50 0.9976495 +209 1066.3125 1070.19 1000 50 0.97197187 +210 1070.19 1074.0675 1000 50 0.86617047 +211 1074.0675 1077.9450000000002 1000 50 0.92406034 +212 1077.945 1081.8225 1000 50 0.90179163 +213 1081.8225 1085.7 1000 50 0.9992126 +214 1085.7 1089.5775 1000 50 0.9995877 +215 1089.5775 1093.4550000000002 1000 50 0.99553156 +216 1093.455 1097.3325 1000 50 0.9969215 +217 1097.3325 1101.21 1000 50 0.98540777 +218 1101.21 1105.0875 1000 50 0.835555 +219 1105.0875 1108.9650000000001 1000 50 0.930746 +220 1108.965 1112.8425 1000 50 0.9999529 +221 1112.8425 1116.72 1000 50 0.7191234 +222 1116.72 1120.5975 1000 50 0.67679864 +223 1120.5975 1124.4750000000001 1000 50 0.97762614 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_10-22-24_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_10-22-24_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..29d21cae4ea816553cbfa4ff5cdea243a951dce9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_10-22-24_annot_2022-11-30_01.txt @@ -0,0 +1,31 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.8724862 +2 7.755 11.6325 1000 50 0.8251702 +3 11.6325 15.51 1000 50 0.5473831 +4 15.51 19.3875 1000 50 0.7411162 +5 23.265 27.142500000000002 1000 50 0.5824017 +6 27.1425 31.02 1000 50 0.713347 +7 34.8975 38.775 1000 50 0.6531453 +8 42.6525 46.53 1000 50 0.813469 +9 46.53 50.4075 1000 50 0.9338992 +10 50.4075 54.285 1000 50 0.9668415 +11 69.795 73.6725 1000 50 0.6256166 +12 73.6725 77.55 1000 50 0.6474717 +13 77.55 81.4275 1000 50 0.66947913 +14 85.305 89.1825 1000 50 0.5361471 +15 89.1825 93.06 1000 50 0.9877721 +16 93.06 96.9375 1000 50 0.9974124 +17 96.9375 100.815 1000 50 0.88012874 +18 100.815 104.6925 1000 50 0.9944312 +19 112.4475 116.325 1000 50 0.99959594 +20 116.325 120.2025 1000 50 0.65155804 +21 120.2025 124.08 1000 50 0.9967644 +22 124.08 127.9575 1000 50 0.6267291 +23 127.9575 131.835 1000 50 0.9987109 +24 131.835 135.7125 1000 50 0.96853495 +25 135.7125 139.59 1000 50 0.96646065 +26 139.59 143.4675 1000 50 0.96888834 +27 143.4675 147.345 1000 50 0.99999833 +28 147.345 151.2225 1000 50 0.99992585 +29 151.2225 155.1 1000 50 0.9392132 +30 155.1 158.9775 1000 50 0.99999905 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_11-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_11-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..6ef49007fe73703c7685e193a759679ad513de34 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_11-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,289 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.7780709 +2 19.3875 23.265 1000 50 0.9917161 +3 23.265 27.142500000000002 1000 50 0.7988753 +4 34.8975 38.775 1000 50 0.7281231 +5 38.775 42.652499999999996 1000 50 0.9998078 +6 42.6525 46.53 1000 50 0.7013056 +7 50.4075 54.285 1000 50 0.99671125 +8 54.285 58.162499999999994 1000 50 0.6107498 +9 58.1625 62.04 1000 50 0.9986172 +10 65.9175 69.795 1000 50 0.8829965 +11 69.795 73.6725 1000 50 0.9972059 +12 73.6725 77.55 1000 50 0.8005285 +13 77.55 81.4275 1000 50 0.992623 +14 81.4275 85.30499999999999 1000 50 0.8124138 +15 85.305 89.1825 1000 50 0.9991333 +16 89.1825 93.06 1000 50 0.9999988 +17 96.9375 100.815 1000 50 0.9995695 +18 100.815 104.6925 1000 50 0.8901721 +19 104.6925 108.57 1000 50 0.99999404 +20 112.4475 116.325 1000 50 0.9999809 +21 116.325 120.2025 1000 50 0.99999595 +22 120.2025 124.08 1000 50 0.9999627 +23 124.08 127.9575 1000 50 0.99585104 +24 127.9575 131.835 1000 50 0.9999889 +25 131.835 135.7125 1000 50 0.9515878 +26 135.7125 139.59 1000 50 0.75260895 +27 139.59 143.4675 1000 50 0.9861601 +28 143.4675 147.345 1000 50 0.9996947 +29 147.345 151.2225 1000 50 0.99471575 +30 151.2225 155.1 1000 50 0.99998045 +31 155.1 158.9775 1000 50 0.998558 +32 158.9775 162.855 1000 50 0.9999697 +33 162.855 166.7325 1000 50 0.99993443 +34 166.7325 170.60999999999999 1000 50 0.9954247 +35 170.61 174.4875 1000 50 0.9940116 +36 174.4875 178.365 1000 50 0.9999639 +37 178.365 182.2425 1000 50 0.9997707 +38 182.2425 186.12 1000 50 0.9999813 +39 186.12 189.9975 1000 50 0.94029987 +40 189.9975 193.875 1000 50 0.99834514 +41 193.875 197.7525 1000 50 0.95447654 +42 197.7525 201.63 1000 50 0.99984455 +43 201.63 205.5075 1000 50 0.9641923 +44 209.385 213.2625 1000 50 0.9909677 +45 213.2625 217.14 1000 50 0.9999831 +46 221.0175 224.895 1000 50 0.9995453 +47 224.895 228.7725 1000 50 0.9953242 +48 228.7725 232.65 1000 50 0.9998373 +49 232.65 236.5275 1000 50 0.9985607 +50 236.5275 240.405 1000 50 0.8509795 +51 240.405 244.2825 1000 50 0.7584911 +52 248.16 252.0375 1000 50 0.9999993 +53 259.7925 263.67 1000 50 0.9845904 +54 263.67 267.5475 1000 50 0.66416675 +55 267.5475 271.425 1000 50 0.8851794 +56 271.425 275.3025 1000 50 0.83259475 +57 279.18 283.0575 1000 50 0.99941134 +58 283.0575 286.935 1000 50 0.99999905 +59 286.935 290.8125 1000 50 0.9825401 +60 290.8125 294.69 1000 50 0.9728252 +61 298.5675 302.445 1000 50 0.991385 +62 302.445 306.3225 1000 50 0.9997793 +63 310.2 314.0775 1000 50 0.9988047 +64 314.0775 317.955 1000 50 0.99951875 +65 317.955 321.8325 1000 50 0.558618 +66 321.8325 325.71 1000 50 0.9996439 +67 325.71 329.5875 1000 50 0.99922454 +68 329.5875 333.465 1000 50 0.7891405 +69 333.465 337.3425 1000 50 0.997323 +70 341.22 345.0975 1000 50 0.99999344 +71 345.0975 348.975 1000 50 0.996349 +72 348.975 352.8525 1000 50 0.99464536 +73 352.8525 356.73 1000 50 0.99999666 +74 356.73 360.6075 1000 50 0.99066085 +75 360.6075 364.485 1000 50 0.9999938 +76 364.485 368.3625 1000 50 0.98728 +77 368.3625 372.24 1000 50 0.85715795 +78 372.24 376.1175 1000 50 0.9993717 +79 376.1175 379.995 1000 50 0.9735125 +80 379.995 383.8725 1000 50 0.97550356 +81 383.8725 387.75 1000 50 0.8344583 +82 387.75 391.6275 1000 50 0.90334386 +83 391.6275 395.505 1000 50 0.99992573 +84 395.505 399.3825 1000 50 0.96792597 +85 399.3825 403.26 1000 50 0.8797108 +86 403.26 407.1375 1000 50 0.9931161 +87 407.1375 411.015 1000 50 0.98762065 +88 414.8925 418.77 1000 50 0.6747814 +89 418.77 422.6475 1000 50 0.9496625 +90 426.525 430.4025 1000 50 0.51399535 +91 438.1575 442.035 1000 50 0.7298468 +92 442.035 445.9125 1000 50 0.84690404 +93 445.9125 449.79 1000 50 0.79060256 +94 449.79 453.6675 1000 50 0.8399145 +95 457.545 461.4225 1000 50 0.7883612 +96 465.3 469.1775 1000 50 0.6776519 +97 476.9325 480.81 1000 50 0.92942214 +98 484.6875 488.565 1000 50 0.98057425 +99 488.565 492.4425 1000 50 0.6701079 +100 492.4425 496.32 1000 50 0.51615787 +101 504.075 507.9525 1000 50 0.6182765 +102 507.9525 511.83 1000 50 0.7411007 +103 511.83 515.7075 1000 50 0.8464072 +104 519.585 523.4625000000001 1000 50 0.9557628 +105 523.4625 527.34 1000 50 0.99106103 +106 527.34 531.2175000000001 1000 50 0.99998224 +107 535.095 538.9725000000001 1000 50 0.99972016 +108 546.7275 550.605 1000 50 0.98814374 +109 550.605 554.4825000000001 1000 50 0.9999769 +110 554.4825 558.36 1000 50 0.89447427 +111 558.36 562.2375000000001 1000 50 0.9673094 +112 569.9925 573.87 1000 50 0.9667804 +113 573.87 577.7475000000001 1000 50 0.9942378 +114 577.7475 581.625 1000 50 0.7732347 +115 581.625 585.5025 1000 50 0.9460283 +116 585.5025 589.3800000000001 1000 50 0.59956795 +117 593.2575 597.1350000000001 1000 50 0.9139242 +118 597.135 601.0125 1000 50 0.9498201 +119 604.89 608.7675 1000 50 0.7333627 +120 620.4 624.2775 1000 50 0.90975827 +121 624.2775 628.1550000000001 1000 50 0.6109199 +122 628.155 632.0325 1000 50 0.76933306 +123 635.91 639.7875 1000 50 0.99872786 +124 639.7875 643.6650000000001 1000 50 0.9957777 +125 643.665 647.5425 1000 50 0.99993896 +126 647.5425 651.4200000000001 1000 50 0.8985644 +127 651.42 655.2975 1000 50 0.9631282 +128 655.2975 659.1750000000001 1000 50 0.9997576 +129 659.175 663.0525 1000 50 0.99778664 +130 663.0525 666.9300000000001 1000 50 0.800065 +131 666.93 670.8075 1000 50 0.9628535 +132 670.8075 674.6850000000001 1000 50 0.9997329 +133 678.5625 682.44 1000 50 0.9958774 +134 682.44 686.3175000000001 1000 50 0.9999722 +135 686.3175 690.195 1000 50 0.5942643 +136 690.195 694.0725000000001 1000 50 0.78077847 +137 694.0725 697.95 1000 50 0.9995962 +138 713.46 717.3375000000001 1000 50 0.5350674 +139 725.0925 728.97 1000 50 0.6044924 +140 728.97 732.8475000000001 1000 50 0.9986771 +141 740.6025 744.48 1000 50 0.50354975 +142 744.48 748.3575000000001 1000 50 0.8576368 +143 752.235 756.1125000000001 1000 50 0.5597791 +144 767.745 771.6225000000001 1000 50 0.95506704 +145 771.6225 775.5 1000 50 0.9932082 +146 775.5 779.3775 1000 50 0.99941623 +147 779.3775 783.2550000000001 1000 50 0.9988493 +148 783.255 787.1325 1000 50 0.9988593 +149 787.1325 791.0100000000001 1000 50 0.9999846 +150 791.01 794.8875 1000 50 0.63890773 +151 794.8875 798.7650000000001 1000 50 0.99540734 +152 806.52 810.3975 1000 50 0.7300828 +153 810.3975 814.2750000000001 1000 50 0.74349993 +154 814.275 818.1525 1000 50 0.9999081 +155 818.1525 822.0300000000001 1000 50 0.9342068 +156 822.03 825.9075 1000 50 0.98518664 +157 825.9075 829.7850000000001 1000 50 0.995433 +158 829.785 833.6625 1000 50 0.99281937 +159 837.54 841.4175 1000 50 0.9997906 +160 841.4175 845.2950000000001 1000 50 0.9949509 +161 849.1725 853.0500000000001 1000 50 0.86264414 +162 853.05 856.9275 1000 50 0.89500576 +163 856.9275 860.8050000000001 1000 50 0.5079209 +164 860.805 864.6825 1000 50 0.706436 +165 864.6825 868.5600000000001 1000 50 0.949322 +166 868.56 872.4375 1000 50 0.99978405 +167 872.4375 876.315 1000 50 0.8158403 +168 876.315 880.1925000000001 1000 50 0.80729693 +169 880.1925 884.07 1000 50 0.9611619 +170 884.07 887.9475000000001 1000 50 0.9986638 +171 887.9475 891.825 1000 50 0.8607403 +172 899.58 903.4575000000001 1000 50 0.6883007 +173 907.335 911.2125000000001 1000 50 0.6204652 +174 911.2125 915.09 1000 50 0.782573 +175 915.09 918.9675000000001 1000 50 0.571978 +176 918.9675 922.845 1000 50 0.97108096 +177 926.7225 930.6 1000 50 0.99933606 +178 930.6 934.4775000000001 1000 50 0.99940777 +179 942.2325 946.11 1000 50 0.99768317 +180 949.9875 953.865 1000 50 0.52794904 +181 953.865 957.7425000000001 1000 50 0.99960464 +182 957.7425 961.62 1000 50 0.99977845 +183 961.62 965.4975000000001 1000 50 0.99987924 +184 965.4975 969.375 1000 50 0.99965656 +185 969.375 973.2525 1000 50 0.8829287 +186 973.2525 977.1300000000001 1000 50 0.9997843 +187 977.13 981.0075 1000 50 0.9980544 +188 981.0075 984.8850000000001 1000 50 0.9975285 +189 984.885 988.7625 1000 50 0.98255265 +190 992.64 996.5175 1000 50 0.99803954 +191 996.5175 1000.3950000000001 1000 50 0.8680207 +192 1004.2725 1008.1500000000001 1000 50 0.99997354 +193 1008.15 1012.0275 1000 50 0.9687274 +194 1015.905 1019.7825 1000 50 0.99999166 +195 1019.7825 1023.6600000000001 1000 50 0.9999937 +196 1027.5375 1031.415 1000 50 0.831745 +197 1031.415 1035.2925 1000 50 0.999984 +198 1035.2925 1039.17 1000 50 0.9999248 +199 1043.0475 1046.925 1000 50 0.9999987 +200 1046.925 1050.8025 1000 50 0.99993527 +201 1050.8025 1054.68 1000 50 0.99808645 +202 1054.68 1058.5575000000001 1000 50 0.999416 +203 1058.5575 1062.435 1000 50 0.9999671 +204 1062.435 1066.3125 1000 50 0.9981375 +205 1066.3125 1070.19 1000 50 0.99911064 +206 1070.19 1074.0675 1000 50 0.9555377 +207 1074.0675 1077.9450000000002 1000 50 0.9987047 +208 1081.8225 1085.7 1000 50 0.9999602 +209 1085.7 1089.5775 1000 50 0.9986853 +210 1089.5775 1093.4550000000002 1000 50 0.9901377 +211 1093.455 1097.3325 1000 50 0.9999995 +212 1097.3325 1101.21 1000 50 0.999213 +213 1101.21 1105.0875 1000 50 0.99439335 +214 1105.0875 1108.9650000000001 1000 50 0.99999905 +215 1108.965 1112.8425 1000 50 0.99974495 +216 1112.8425 1116.72 1000 50 0.98679554 +217 1116.72 1120.5975 1000 50 0.9730911 +218 1120.5975 1124.4750000000001 1000 50 0.9999964 +219 1128.3525 1132.23 1000 50 1.0 +220 1132.23 1136.1075 1000 50 0.9695225 +221 1136.1075 1139.9850000000001 1000 50 0.9978263 +222 1139.985 1143.8625 1000 50 0.99999654 +223 1143.8625 1147.74 1000 50 0.9999987 +224 1147.74 1151.6175 1000 50 0.790352 +225 1151.6175 1155.4950000000001 1000 50 0.998601 +226 1155.495 1159.3725 1000 50 0.99996936 +227 1159.3725 1163.25 1000 50 0.9999933 +228 1167.1275 1171.005 1000 50 0.9989256 +229 1171.005 1174.8825000000002 1000 50 0.9995419 +230 1174.8825 1178.76 1000 50 0.79885846 +231 1178.76 1182.6375 1000 50 0.99250364 +232 1182.6375 1186.515 1000 50 0.5156891 +233 1186.515 1190.3925000000002 1000 50 0.5829907 +234 1190.3925 1194.27 1000 50 0.9997017 +235 1194.27 1198.1475 1000 50 0.9860037 +236 1198.1475 1202.025 1000 50 0.6313622 +237 1202.025 1205.9025000000001 1000 50 0.9274237 +238 1205.9025 1209.78 1000 50 0.9999856 +239 1209.78 1213.6575 1000 50 0.9996735 +240 1213.6575 1217.535 1000 50 0.93982184 +241 1217.535 1221.4125000000001 1000 50 0.9949661 +242 1229.1675 1233.045 1000 50 0.9693773 +243 1236.9225 1240.8 1000 50 0.8597964 +244 1240.8 1244.6775 1000 50 0.99999666 +245 1244.6775 1248.555 1000 50 0.79572594 +246 1252.4325 1256.31 1000 50 0.97755 +247 1256.31 1260.1875 1000 50 0.9944878 +248 1260.1875 1264.065 1000 50 0.9993722 +249 1264.065 1267.9425 1000 50 1.0 +250 1267.9425 1271.8200000000002 1000 50 0.9987343 +251 1271.82 1275.6975 1000 50 0.999877 +252 1275.6975 1279.575 1000 50 0.9998498 +253 1279.575 1283.4525 1000 50 0.96261454 +254 1287.33 1291.2075 1000 50 0.9100707 +255 1291.2075 1295.085 1000 50 0.99999356 +256 1295.085 1298.9625 1000 50 0.9998373 +257 1298.9625 1302.8400000000001 1000 50 0.9999633 +258 1302.84 1306.7175 1000 50 0.9999988 +259 1306.7175 1310.595 1000 50 0.9999008 +260 1310.595 1314.4725 1000 50 0.99166566 +261 1314.4725 1318.3500000000001 1000 50 0.99853694 +262 1318.35 1322.2275 1000 50 0.9996642 +263 1322.2275 1326.105 1000 50 0.63606036 +264 1326.105 1329.9825 1000 50 0.9432911 +265 1329.9825 1333.8600000000001 1000 50 0.9855012 +266 1333.86 1337.7375 1000 50 0.9710678 +267 1337.7375 1341.615 1000 50 0.9999428 +268 1341.615 1345.4925 1000 50 0.9782331 +269 1345.4925 1349.3700000000001 1000 50 0.8823256 +270 1349.37 1353.2475 1000 50 0.999806 +271 1353.2475 1357.125 1000 50 0.9998354 +272 1357.125 1361.0025 1000 50 0.9973464 +273 1361.0025 1364.88 1000 50 0.59709406 +274 1368.7575 1372.635 1000 50 0.9097577 +275 1376.5125 1380.39 1000 50 0.78494936 +276 1380.39 1384.2675000000002 1000 50 0.99537176 +277 1384.2675 1388.145 1000 50 0.5228167 +278 1388.145 1392.0225 1000 50 0.685325 +279 1392.0225 1395.9 1000 50 0.9962612 +280 1395.9 1399.7775000000001 1000 50 0.76941 +281 1403.655 1407.5325 1000 50 0.5510676 +282 1407.5325 1411.41 1000 50 0.9999932 +283 1415.2875 1419.165 1000 50 0.9667642 +284 1419.165 1423.0425 1000 50 0.9994054 +285 1423.0425 1426.92 1000 50 0.9167346 +286 1426.92 1430.7975000000001 1000 50 0.8445087 +287 1430.7975 1434.675 1000 50 0.98961127 +288 1434.675 1438.5525 1000 50 0.9997776 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_12-01-54_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_12-01-54_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..82136eac36b1b4fc6eeb55c654b48e13f16a2ab8 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_12-01-54_annot_2022-11-30_01.txt @@ -0,0 +1,313 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999994 +2 3.8775 7.755 1000 50 0.996903 +3 7.755 11.6325 1000 50 0.99997616 +4 11.6325 15.51 1000 50 0.9627154 +5 19.3875 23.265 1000 50 0.99999 +6 23.265 27.142500000000002 1000 50 0.9997942 +7 27.1425 31.02 1000 50 0.999846 +8 31.02 34.8975 1000 50 1.0 +9 34.8975 38.775 1000 50 0.9054444 +10 38.775 42.652499999999996 1000 50 0.99999595 +11 42.6525 46.53 1000 50 0.99345523 +12 46.53 50.4075 1000 50 0.99973124 +13 50.4075 54.285 1000 50 0.99999547 +14 54.285 58.162499999999994 1000 50 0.99991727 +15 58.1625 62.04 1000 50 0.88569045 +16 62.04 65.9175 1000 50 1.0 +17 65.9175 69.795 1000 50 0.9999877 +18 69.795 73.6725 1000 50 0.9979803 +19 73.6725 77.55 1000 50 0.99997556 +20 77.55 81.4275 1000 50 0.9972652 +21 81.4275 85.30499999999999 1000 50 0.91628927 +22 85.305 89.1825 1000 50 0.9951283 +23 89.1825 93.06 1000 50 0.999828 +24 93.06 96.9375 1000 50 0.9952924 +25 96.9375 100.815 1000 50 0.9829565 +26 100.815 104.6925 1000 50 0.990339 +27 104.6925 108.57 1000 50 0.9984591 +28 108.57 112.44749999999999 1000 50 0.999979 +29 112.4475 116.325 1000 50 0.999624 +30 116.325 120.2025 1000 50 0.9996364 +31 120.2025 124.08 1000 50 0.9593217 +32 124.08 127.9575 1000 50 0.933595 +33 127.9575 131.835 1000 50 0.98739016 +34 131.835 135.7125 1000 50 0.9889154 +35 135.7125 139.59 1000 50 0.6108419 +36 139.59 143.4675 1000 50 0.9939044 +37 147.345 151.2225 1000 50 0.5733591 +38 151.2225 155.1 1000 50 0.9847674 +39 158.9775 162.855 1000 50 0.9999114 +40 162.855 166.7325 1000 50 0.99982256 +41 170.61 174.4875 1000 50 0.69106185 +42 182.2425 186.12 1000 50 0.5073285 +43 197.7525 201.63 1000 50 0.623475 +44 209.385 213.2625 1000 50 0.6982412 +45 217.14 221.01749999999998 1000 50 0.92170197 +46 240.405 244.2825 1000 50 0.57687825 +47 248.16 252.0375 1000 50 0.9978947 +48 252.0375 255.915 1000 50 0.9816124 +49 255.915 259.7925 1000 50 0.90486753 +50 259.7925 263.67 1000 50 0.99286824 +51 263.67 267.5475 1000 50 0.99907196 +52 267.5475 271.425 1000 50 0.9859352 +53 271.425 275.3025 1000 50 0.93234324 +54 275.3025 279.18 1000 50 0.9851045 +55 279.18 283.0575 1000 50 0.6894999 +56 283.0575 286.935 1000 50 0.99815327 +57 286.935 290.8125 1000 50 0.9999963 +58 290.8125 294.69 1000 50 0.9999956 +59 294.69 298.5675 1000 50 0.999772 +60 298.5675 302.445 1000 50 0.99427867 +61 302.445 306.3225 1000 50 0.9999919 +62 306.3225 310.2 1000 50 0.9980324 +63 310.2 314.0775 1000 50 0.9999666 +64 314.0775 317.955 1000 50 0.9968976 +65 317.955 321.8325 1000 50 0.9991223 +66 321.8325 325.71 1000 50 0.99993885 +67 325.71 329.5875 1000 50 0.9999304 +68 329.5875 333.465 1000 50 0.9662153 +69 333.465 337.3425 1000 50 0.98751974 +70 337.3425 341.21999999999997 1000 50 0.9999902 +71 341.22 345.0975 1000 50 0.99998987 +72 345.0975 348.975 1000 50 0.9993812 +73 348.975 352.8525 1000 50 0.9999999 +74 352.8525 356.73 1000 50 0.9999989 +75 356.73 360.6075 1000 50 0.96968013 +76 360.6075 364.485 1000 50 0.99999666 +77 364.485 368.3625 1000 50 0.997512 +78 368.3625 372.24 1000 50 0.99641716 +79 372.24 376.1175 1000 50 0.9995932 +80 376.1175 379.995 1000 50 1.0 +81 379.995 383.8725 1000 50 0.9999598 +82 383.8725 387.75 1000 50 0.9997625 +83 387.75 391.6275 1000 50 0.9999193 +84 391.6275 395.505 1000 50 0.9999908 +85 395.505 399.3825 1000 50 0.99978715 +86 399.3825 403.26 1000 50 0.67419696 +87 403.26 407.1375 1000 50 0.89841735 +88 407.1375 411.015 1000 50 0.9868895 +89 411.015 414.8925 1000 50 1.0 +90 414.8925 418.77 1000 50 0.9989569 +91 418.77 422.6475 1000 50 0.9947396 +92 422.6475 426.525 1000 50 0.99878484 +93 426.525 430.4025 1000 50 0.9383092 +94 430.4025 434.28 1000 50 0.9672711 +95 434.28 438.15749999999997 1000 50 0.999969 +96 438.1575 442.035 1000 50 0.9948449 +97 442.035 445.9125 1000 50 0.99793065 +98 445.9125 449.79 1000 50 0.9998994 +99 449.79 453.6675 1000 50 0.99998045 +100 453.6675 457.545 1000 50 1.0 +101 457.545 461.4225 1000 50 0.9999999 +102 461.4225 465.3 1000 50 0.99999726 +103 465.3 469.1775 1000 50 1.0 +104 469.1775 473.055 1000 50 0.9940984 +105 473.055 476.9325 1000 50 0.99999726 +106 476.9325 480.81 1000 50 0.99999666 +107 480.81 484.6875 1000 50 0.99998903 +108 484.6875 488.565 1000 50 0.9278585 +109 488.565 492.4425 1000 50 0.99909794 +110 492.4425 496.32 1000 50 0.9940101 +111 496.32 500.1975 1000 50 0.9999994 +112 500.1975 504.075 1000 50 0.99992085 +113 504.075 507.9525 1000 50 0.5366301 +114 507.9525 511.83 1000 50 0.9999839 +115 511.83 515.7075 1000 50 0.9999727 +116 515.7075 519.585 1000 50 0.9995617 +117 519.585 523.4625000000001 1000 50 0.99999976 +118 523.4625 527.34 1000 50 0.9999869 +119 527.34 531.2175000000001 1000 50 0.97096044 +120 531.2175 535.095 1000 50 0.9999405 +121 535.095 538.9725000000001 1000 50 0.9990644 +122 538.9725 542.85 1000 50 0.9997899 +123 542.85 546.7275000000001 1000 50 0.9995957 +124 546.7275 550.605 1000 50 0.9996948 +125 550.605 554.4825000000001 1000 50 0.99999285 +126 554.4825 558.36 1000 50 0.9999856 +127 558.36 562.2375000000001 1000 50 0.9972711 +128 562.2375 566.115 1000 50 0.98034155 +129 566.115 569.9925000000001 1000 50 0.9908749 +130 569.9925 573.87 1000 50 0.9997086 +131 573.87 577.7475000000001 1000 50 0.99999714 +132 577.7475 581.625 1000 50 0.64146405 +133 581.625 585.5025 1000 50 0.9199895 +134 585.5025 589.3800000000001 1000 50 0.9999995 +135 589.38 593.2575 1000 50 0.99936634 +136 593.2575 597.1350000000001 1000 50 0.99854976 +137 597.135 601.0125 1000 50 0.99994683 +138 601.0125 604.8900000000001 1000 50 0.99999905 +139 604.89 608.7675 1000 50 0.9972492 +140 608.7675 612.6450000000001 1000 50 0.91209054 +141 612.645 616.5225 1000 50 0.9997255 +142 616.5225 620.4000000000001 1000 50 0.9999778 +143 620.4 624.2775 1000 50 0.9034441 +144 624.2775 628.1550000000001 1000 50 0.78168494 +145 628.155 632.0325 1000 50 0.99934226 +146 632.0325 635.9100000000001 1000 50 0.9950572 +147 635.91 639.7875 1000 50 0.9623984 +148 639.7875 643.6650000000001 1000 50 0.9995827 +149 643.665 647.5425 1000 50 0.99945897 +150 647.5425 651.4200000000001 1000 50 0.9998337 +151 651.42 655.2975 1000 50 0.99998474 +152 655.2975 659.1750000000001 1000 50 0.9814905 +153 663.0525 666.9300000000001 1000 50 0.7833127 +154 666.93 670.8075 1000 50 0.99999213 +155 670.8075 674.6850000000001 1000 50 0.99997914 +156 674.685 678.5625 1000 50 0.9724802 +157 678.5625 682.44 1000 50 0.9964799 +158 682.44 686.3175000000001 1000 50 0.99972147 +159 686.3175 690.195 1000 50 0.9999858 +160 690.195 694.0725000000001 1000 50 0.6974704 +161 694.0725 697.95 1000 50 0.9979849 +162 701.8275 705.705 1000 50 0.9519128 +163 705.705 709.5825000000001 1000 50 0.95583755 +164 709.5825 713.46 1000 50 0.93276435 +165 717.3375 721.215 1000 50 0.5251388 +166 721.215 725.0925000000001 1000 50 0.9515986 +167 728.97 732.8475000000001 1000 50 0.99761295 +168 732.8475 736.725 1000 50 0.9511579 +169 736.725 740.6025000000001 1000 50 0.998278 +170 744.48 748.3575000000001 1000 50 0.95904845 +171 748.3575 752.235 1000 50 0.6361072 +172 752.235 756.1125000000001 1000 50 0.9948749 +173 756.1125 759.99 1000 50 0.9836536 +174 759.99 763.8675000000001 1000 50 0.83718574 +175 763.8675 767.745 1000 50 0.99757177 +176 771.6225 775.5 1000 50 0.5480048 +177 775.5 779.3775 1000 50 0.9951904 +178 779.3775 783.2550000000001 1000 50 0.7812316 +179 783.255 787.1325 1000 50 0.58901584 +180 787.1325 791.0100000000001 1000 50 0.9996561 +181 791.01 794.8875 1000 50 0.53124577 +182 794.8875 798.7650000000001 1000 50 0.9629057 +183 798.765 802.6425 1000 50 0.99997747 +184 806.52 810.3975 1000 50 0.9884023 +185 810.3975 814.2750000000001 1000 50 0.9986947 +186 818.1525 822.0300000000001 1000 50 0.99878305 +187 822.03 825.9075 1000 50 0.999985 +188 825.9075 829.7850000000001 1000 50 0.9999778 +189 829.785 833.6625 1000 50 0.9998753 +190 833.6625 837.5400000000001 1000 50 0.51653063 +191 837.54 841.4175 1000 50 0.96113306 +192 841.4175 845.2950000000001 1000 50 0.9993293 +193 845.295 849.1725 1000 50 0.9981066 +194 849.1725 853.0500000000001 1000 50 0.99997354 +195 853.05 856.9275 1000 50 0.9996146 +196 856.9275 860.8050000000001 1000 50 0.9978077 +197 860.805 864.6825 1000 50 0.99999917 +198 864.6825 868.5600000000001 1000 50 0.72751033 +199 868.56 872.4375 1000 50 0.9988727 +200 872.4375 876.315 1000 50 0.99390864 +201 876.315 880.1925000000001 1000 50 0.98814815 +202 884.07 887.9475000000001 1000 50 0.871238 +203 895.7025 899.58 1000 50 0.6110261 +204 899.58 903.4575000000001 1000 50 0.81304616 +205 918.9675 922.845 1000 50 0.96787405 +206 922.845 926.7225000000001 1000 50 0.83488804 +207 926.7225 930.6 1000 50 0.6035982 +208 934.4775 938.355 1000 50 0.9993772 +209 938.355 942.2325000000001 1000 50 0.9096319 +210 942.2325 946.11 1000 50 0.6861082 +211 946.11 949.9875000000001 1000 50 0.99928385 +212 949.9875 953.865 1000 50 0.9902058 +213 957.7425 961.62 1000 50 0.99998546 +214 961.62 965.4975000000001 1000 50 0.8898638 +215 965.4975 969.375 1000 50 0.9966941 +216 969.375 973.2525 1000 50 0.9999095 +217 973.2525 977.1300000000001 1000 50 0.9746314 +218 977.13 981.0075 1000 50 0.99991775 +219 981.0075 984.8850000000001 1000 50 0.8262304 +220 984.885 988.7625 1000 50 0.77696353 +221 988.7625 992.6400000000001 1000 50 0.9889381 +222 992.64 996.5175 1000 50 0.9944066 +223 996.5175 1000.3950000000001 1000 50 0.9930727 +224 1000.395 1004.2725 1000 50 0.99995387 +225 1004.2725 1008.1500000000001 1000 50 0.9965581 +226 1008.15 1012.0275 1000 50 0.9749087 +227 1012.0275 1015.9050000000001 1000 50 0.99802715 +228 1015.905 1019.7825 1000 50 0.9957495 +229 1019.7825 1023.6600000000001 1000 50 0.99999464 +230 1023.66 1027.5375 1000 50 0.9945899 +231 1027.5375 1031.415 1000 50 0.813473 +232 1031.415 1035.2925 1000 50 0.99923646 +233 1035.2925 1039.17 1000 50 0.9998647 +234 1039.17 1043.0475000000001 1000 50 0.99999833 +235 1043.0475 1046.925 1000 50 0.8514745 +236 1046.925 1050.8025 1000 50 0.9667742 +237 1050.8025 1054.68 1000 50 0.9999716 +238 1058.5575 1062.435 1000 50 0.6896129 +239 1062.435 1066.3125 1000 50 0.99991906 +240 1066.3125 1070.19 1000 50 0.9487537 +241 1070.19 1074.0675 1000 50 0.9994772 +242 1074.0675 1077.9450000000002 1000 50 0.99664897 +243 1077.945 1081.8225 1000 50 0.99916613 +244 1081.8225 1085.7 1000 50 0.74121577 +245 1093.455 1097.3325 1000 50 0.9910698 +246 1097.3325 1101.21 1000 50 0.6785133 +247 1101.21 1105.0875 1000 50 0.8213531 +248 1105.0875 1108.9650000000001 1000 50 0.94405836 +249 1108.965 1112.8425 1000 50 0.9956722 +250 1112.8425 1116.72 1000 50 0.9921232 +251 1116.72 1120.5975 1000 50 0.8317472 +252 1120.5975 1124.4750000000001 1000 50 0.90872896 +253 1124.475 1128.3525 1000 50 0.9735256 +254 1128.3525 1132.23 1000 50 0.9846087 +255 1147.74 1151.6175 1000 50 0.89370793 +256 1151.6175 1155.4950000000001 1000 50 0.9364167 +257 1159.3725 1163.25 1000 50 0.98957705 +258 1163.25 1167.1275 1000 50 0.9695294 +259 1171.005 1174.8825000000002 1000 50 0.9396683 +260 1174.8825 1178.76 1000 50 0.9983845 +261 1178.76 1182.6375 1000 50 0.985062 +262 1182.6375 1186.515 1000 50 0.8867982 +263 1186.515 1190.3925000000002 1000 50 0.66587436 +264 1190.3925 1194.27 1000 50 0.9983821 +265 1194.27 1198.1475 1000 50 0.9877416 +266 1198.1475 1202.025 1000 50 0.9795727 +267 1202.025 1205.9025000000001 1000 50 0.99983394 +268 1205.9025 1209.78 1000 50 0.9995316 +269 1213.6575 1217.535 1000 50 0.9939681 +270 1217.535 1221.4125000000001 1000 50 0.99934715 +271 1221.4125 1225.29 1000 50 0.99629813 +272 1225.29 1229.1675 1000 50 0.99268097 +273 1229.1675 1233.045 1000 50 0.66345185 +274 1233.045 1236.9225000000001 1000 50 0.9024126 +275 1236.9225 1240.8 1000 50 0.73390967 +276 1240.8 1244.6775 1000 50 0.9999641 +277 1244.6775 1248.555 1000 50 0.996104 +278 1248.555 1252.4325000000001 1000 50 0.9712395 +279 1252.4325 1256.31 1000 50 0.99748933 +280 1256.31 1260.1875 1000 50 0.99919957 +281 1260.1875 1264.065 1000 50 0.99355185 +282 1264.065 1267.9425 1000 50 0.85575366 +283 1267.9425 1271.8200000000002 1000 50 0.9999893 +284 1271.82 1275.6975 1000 50 0.99982256 +285 1275.6975 1279.575 1000 50 0.974386 +286 1279.575 1283.4525 1000 50 0.9974956 +287 1283.4525 1287.3300000000002 1000 50 0.99870014 +288 1287.33 1291.2075 1000 50 0.997936 +289 1291.2075 1295.085 1000 50 0.9998233 +290 1295.085 1298.9625 1000 50 0.7922146 +291 1302.84 1306.7175 1000 50 0.9994667 +292 1306.7175 1310.595 1000 50 0.94737643 +293 1310.595 1314.4725 1000 50 0.79857624 +294 1314.4725 1318.3500000000001 1000 50 0.99963033 +295 1318.35 1322.2275 1000 50 0.9998876 +296 1322.2275 1326.105 1000 50 0.9995747 +297 1326.105 1329.9825 1000 50 0.9999982 +298 1329.9825 1333.8600000000001 1000 50 0.99993813 +299 1333.86 1337.7375 1000 50 0.99999106 +300 1337.7375 1341.615 1000 50 0.99995553 +301 1341.615 1345.4925 1000 50 0.9998988 +302 1345.4925 1349.3700000000001 1000 50 0.9972675 +303 1349.37 1353.2475 1000 50 0.99998474 +304 1353.2475 1357.125 1000 50 0.99982065 +305 1357.125 1361.0025 1000 50 0.79918516 +306 1361.0025 1364.88 1000 50 0.97701174 +307 1364.88 1368.7575000000002 1000 50 0.6748587 +308 1368.7575 1372.635 1000 50 0.99998033 +309 1372.635 1376.5125 1000 50 0.53415346 +310 1376.5125 1380.39 1000 50 0.9812774 +311 1380.39 1384.2675000000002 1000 50 0.9741536 +312 1384.2675 1388.145 1000 50 0.99530435 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_13-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_13-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b1a398309f4e4ba55ee29751a1544a4ce81e9b22 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_13-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,47 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99077624 +2 3.8775 7.755 1000 50 0.5297659 +3 7.755 11.6325 1000 50 0.5384893 +4 11.6325 15.51 1000 50 0.95336837 +5 15.51 19.3875 1000 50 0.995145 +6 23.265 27.142500000000002 1000 50 0.99955934 +7 27.1425 31.02 1000 50 0.91366106 +8 31.02 34.8975 1000 50 0.9981213 +9 34.8975 38.775 1000 50 0.99997175 +10 38.775 42.652499999999996 1000 50 0.958989 +11 42.6525 46.53 1000 50 0.9999707 +12 46.53 50.4075 1000 50 0.9447023 +13 50.4075 54.285 1000 50 0.99988663 +14 54.285 58.162499999999994 1000 50 1.0 +15 58.1625 62.04 1000 50 0.99796534 +16 62.04 65.9175 1000 50 0.9990652 +17 65.9175 69.795 1000 50 0.99928844 +18 69.795 73.6725 1000 50 0.999741 +19 73.6725 77.55 1000 50 0.5283317 +20 77.55 81.4275 1000 50 0.99994063 +21 81.4275 85.30499999999999 1000 50 0.9282937 +22 85.305 89.1825 1000 50 0.9537808 +23 89.1825 93.06 1000 50 0.9808055 +24 93.06 96.9375 1000 50 0.99737847 +25 96.9375 100.815 1000 50 0.83683616 +26 100.815 104.6925 1000 50 0.99973077 +27 104.6925 108.57 1000 50 0.99627846 +28 108.57 112.44749999999999 1000 50 0.99031675 +29 116.325 120.2025 1000 50 0.9798284 +30 127.9575 131.835 1000 50 0.9999356 +31 131.835 135.7125 1000 50 0.9999958 +32 135.7125 139.59 1000 50 0.72788227 +33 139.59 143.4675 1000 50 0.9969579 +34 143.4675 147.345 1000 50 0.99553573 +35 155.1 158.9775 1000 50 0.99918014 +36 158.9775 162.855 1000 50 0.9951519 +37 162.855 166.7325 1000 50 0.9957563 +38 166.7325 170.60999999999999 1000 50 0.76097316 +39 170.61 174.4875 1000 50 0.9994134 +40 174.4875 178.365 1000 50 0.999972 +41 178.365 182.2425 1000 50 0.667655 +42 182.2425 186.12 1000 50 0.844718 +43 186.12 189.9975 1000 50 0.9952815 +44 193.875 197.7525 1000 50 0.9939394 +45 197.7525 201.63 1000 50 0.98345435 +46 209.385 213.2625 1000 50 0.59616566 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_13-07-12_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_13-07-12_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..cfa92ae3069249c45101804d6da0f605ef7217e6 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_13-07-12_annot_2022-11-30_01.txt @@ -0,0 +1,153 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.7605606 +2 7.755 11.6325 1000 50 0.85021937 +3 15.51 19.3875 1000 50 0.97213507 +4 19.3875 23.265 1000 50 0.7040601 +5 23.265 27.142500000000002 1000 50 0.53903997 +6 34.8975 38.775 1000 50 0.98647344 +7 46.53 50.4075 1000 50 0.9880164 +8 50.4075 54.285 1000 50 0.9842812 +9 54.285 58.162499999999994 1000 50 0.99227023 +10 69.795 73.6725 1000 50 0.9992737 +11 73.6725 77.55 1000 50 0.9999999 +12 81.4275 85.30499999999999 1000 50 0.98842585 +13 85.305 89.1825 1000 50 0.9180375 +14 93.06 96.9375 1000 50 0.99999905 +15 100.815 104.6925 1000 50 0.99614847 +16 108.57 112.44749999999999 1000 50 0.9340992 +17 112.4475 116.325 1000 50 0.98112065 +18 116.325 120.2025 1000 50 0.7862951 +19 124.08 127.9575 1000 50 0.9913824 +20 127.9575 131.835 1000 50 0.99998474 +21 135.7125 139.59 1000 50 0.9988734 +22 139.59 143.4675 1000 50 0.91995984 +23 143.4675 147.345 1000 50 0.99778783 +24 147.345 151.2225 1000 50 0.9997389 +25 151.2225 155.1 1000 50 0.9983858 +26 155.1 158.9775 1000 50 0.63354737 +27 162.855 166.7325 1000 50 0.98416764 +28 166.7325 170.60999999999999 1000 50 0.6924884 +29 170.61 174.4875 1000 50 0.8187653 +30 174.4875 178.365 1000 50 0.9887728 +31 178.365 182.2425 1000 50 0.55840963 +32 186.12 189.9975 1000 50 0.9970797 +33 189.9975 193.875 1000 50 0.6506234 +34 193.875 197.7525 1000 50 0.60443586 +35 197.7525 201.63 1000 50 0.62595385 +36 205.5075 209.385 1000 50 0.9922621 +37 221.0175 224.895 1000 50 0.62536806 +38 232.65 236.5275 1000 50 0.97838986 +39 236.5275 240.405 1000 50 0.8899881 +40 244.2825 248.16 1000 50 0.88931173 +41 248.16 252.0375 1000 50 0.9514375 +42 252.0375 255.915 1000 50 0.9999963 +43 255.915 259.7925 1000 50 0.9990847 +44 259.7925 263.67 1000 50 0.50213224 +45 263.67 267.5475 1000 50 0.9999999 +46 267.5475 271.425 1000 50 0.97153 +47 271.425 275.3025 1000 50 0.99369156 +48 275.3025 279.18 1000 50 0.99814236 +49 279.18 283.0575 1000 50 0.9723084 +50 283.0575 286.935 1000 50 0.9956358 +51 286.935 290.8125 1000 50 0.96128476 +52 294.69 298.5675 1000 50 0.9975775 +53 298.5675 302.445 1000 50 0.9950433 +54 302.445 306.3225 1000 50 0.9954821 +55 306.3225 310.2 1000 50 0.9982975 +56 310.2 314.0775 1000 50 0.9872525 +57 314.0775 317.955 1000 50 0.91680306 +58 317.955 321.8325 1000 50 0.9998418 +59 321.8325 325.71 1000 50 0.99991 +60 325.71 329.5875 1000 50 0.94341546 +61 329.5875 333.465 1000 50 0.99931073 +62 333.465 337.3425 1000 50 0.9980342 +63 337.3425 341.21999999999997 1000 50 0.9988738 +64 341.22 345.0975 1000 50 0.74639136 +65 345.0975 348.975 1000 50 0.9938589 +66 352.8525 356.73 1000 50 0.61662054 +67 356.73 360.6075 1000 50 0.99613094 +68 360.6075 364.485 1000 50 0.985282 +69 368.3625 372.24 1000 50 0.98125273 +70 372.24 376.1175 1000 50 0.9471861 +71 379.995 383.8725 1000 50 0.9636252 +72 418.77 422.6475 1000 50 0.687752 +73 442.035 445.9125 1000 50 0.7439252 +74 453.6675 457.545 1000 50 0.99139637 +75 457.545 461.4225 1000 50 0.996671 +76 461.4225 465.3 1000 50 0.9996088 +77 465.3 469.1775 1000 50 0.99089617 +78 473.055 476.9325 1000 50 0.9706002 +79 476.9325 480.81 1000 50 0.99980754 +80 484.6875 488.565 1000 50 0.5812759 +81 488.565 492.4425 1000 50 0.9999994 +82 492.4425 496.32 1000 50 0.7483232 +83 496.32 500.1975 1000 50 0.93557125 +84 500.1975 504.075 1000 50 0.80293846 +85 507.9525 511.83 1000 50 0.97982305 +86 511.83 515.7075 1000 50 0.98980695 +87 515.7075 519.585 1000 50 0.54221714 +88 523.4625 527.34 1000 50 0.66885805 +89 531.2175 535.095 1000 50 0.9638968 +90 542.85 546.7275000000001 1000 50 0.66021836 +91 546.7275 550.605 1000 50 0.96403474 +92 550.605 554.4825000000001 1000 50 0.96833414 +93 554.4825 558.36 1000 50 0.7078144 +94 558.36 562.2375000000001 1000 50 0.703564 +95 562.2375 566.115 1000 50 0.8385731 +96 566.115 569.9925000000001 1000 50 0.9754892 +97 573.87 577.7475000000001 1000 50 0.56794846 +98 577.7475 581.625 1000 50 0.8039222 +99 585.5025 589.3800000000001 1000 50 0.5979944 +100 593.2575 597.1350000000001 1000 50 0.8422453 +101 597.135 601.0125 1000 50 0.9071222 +102 616.5225 620.4000000000001 1000 50 0.97149414 +103 632.0325 635.9100000000001 1000 50 0.8389134 +104 651.42 655.2975 1000 50 0.58002025 +105 655.2975 659.1750000000001 1000 50 0.65094155 +106 666.93 670.8075 1000 50 0.69442207 +107 678.5625 682.44 1000 50 0.5337881 +108 697.95 701.8275000000001 1000 50 0.53914297 +109 709.5825 713.46 1000 50 0.672177 +110 717.3375 721.215 1000 50 0.6199287 +111 725.0925 728.97 1000 50 0.9984396 +112 748.3575 752.235 1000 50 0.9573287 +113 759.99 763.8675000000001 1000 50 0.8724367 +114 763.8675 767.745 1000 50 0.6090327 +115 767.745 771.6225000000001 1000 50 0.55476975 +116 791.01 794.8875 1000 50 0.97094965 +117 794.8875 798.7650000000001 1000 50 0.8096366 +118 798.765 802.6425 1000 50 0.5175511 +119 802.6425 806.5200000000001 1000 50 0.982781 +120 814.275 818.1525 1000 50 0.9249775 +121 818.1525 822.0300000000001 1000 50 0.9709598 +122 825.9075 829.7850000000001 1000 50 0.73111725 +123 833.6625 837.5400000000001 1000 50 0.89180154 +124 837.54 841.4175 1000 50 0.984259 +125 845.295 849.1725 1000 50 0.99999785 +126 849.1725 853.0500000000001 1000 50 0.99920744 +127 860.805 864.6825 1000 50 0.9048606 +128 868.56 872.4375 1000 50 0.8051174 +129 872.4375 876.315 1000 50 0.5787146 +130 876.315 880.1925000000001 1000 50 0.9859896 +131 880.1925 884.07 1000 50 0.8993184 +132 887.9475 891.825 1000 50 0.93830603 +133 891.825 895.7025000000001 1000 50 0.56037045 +134 903.4575 907.335 1000 50 0.81858313 +135 907.335 911.2125000000001 1000 50 0.99974865 +136 915.09 918.9675000000001 1000 50 0.9992244 +137 918.9675 922.845 1000 50 0.99467564 +138 926.7225 930.6 1000 50 0.8334538 +139 930.6 934.4775000000001 1000 50 0.5633435 +140 934.4775 938.355 1000 50 0.9886669 +141 938.355 942.2325000000001 1000 50 0.8741212 +142 946.11 949.9875000000001 1000 50 0.9455722 +143 949.9875 953.865 1000 50 0.6235165 +144 957.7425 961.62 1000 50 0.6245372 +145 981.0075 984.8850000000001 1000 50 0.5091847 +146 996.5175 1000.3950000000001 1000 50 0.6808901 +147 1004.2725 1008.1500000000001 1000 50 0.9005531 +148 1012.0275 1015.9050000000001 1000 50 0.5552442 +149 1015.905 1019.7825 1000 50 0.6907685 +150 1039.17 1043.0475000000001 1000 50 0.71482503 +151 1043.0475 1046.925 1000 50 0.9993242 +152 1066.3125 1070.19 1000 50 0.7692906 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_14-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_14-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..26126f968367045e85c42f3b18c728ffc1769d29 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_14-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,61 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 38.775 42.652499999999996 1000 50 0.7700831 +2 46.53 50.4075 1000 50 0.875578 +3 58.1625 62.04 1000 50 0.5453723 +4 65.9175 69.795 1000 50 0.81189376 +5 73.6725 77.55 1000 50 0.5615832 +6 89.1825 93.06 1000 50 0.7317365 +7 100.815 104.6925 1000 50 0.5595268 +8 120.2025 124.08 1000 50 0.5682105 +9 124.08 127.9575 1000 50 0.7661074 +10 131.835 135.7125 1000 50 0.5419724 +11 135.7125 139.59 1000 50 0.5945182 +12 147.345 151.2225 1000 50 0.8427275 +13 155.1 158.9775 1000 50 0.87431026 +14 166.7325 170.60999999999999 1000 50 0.54245603 +15 170.61 174.4875 1000 50 0.6453563 +16 174.4875 178.365 1000 50 0.78198224 +17 178.365 182.2425 1000 50 0.590613 +18 186.12 189.9975 1000 50 0.6443186 +19 197.7525 201.63 1000 50 0.8765883 +20 201.63 205.5075 1000 50 0.69669515 +21 205.5075 209.385 1000 50 0.65098387 +22 228.7725 232.65 1000 50 0.73422223 +23 232.65 236.5275 1000 50 0.5519159 +24 236.5275 240.405 1000 50 0.9996687 +25 240.405 244.2825 1000 50 0.68454057 +26 252.0375 255.915 1000 50 0.9503082 +27 267.5475 271.425 1000 50 0.6154669 +28 279.18 283.0575 1000 50 0.7685918 +29 294.69 298.5675 1000 50 0.868517 +30 302.445 306.3225 1000 50 0.7037205 +31 306.3225 310.2 1000 50 0.8673755 +32 314.0775 317.955 1000 50 0.7738467 +33 321.8325 325.71 1000 50 0.9698882 +34 325.71 329.5875 1000 50 0.9832255 +35 329.5875 333.465 1000 50 0.5554686 +36 333.465 337.3425 1000 50 0.54374146 +37 345.0975 348.975 1000 50 0.55758303 +38 368.3625 372.24 1000 50 0.68292946 +39 376.1175 379.995 1000 50 0.54333496 +40 383.8725 387.75 1000 50 0.8952553 +41 387.75 391.6275 1000 50 0.9743497 +42 391.6275 395.505 1000 50 0.63801485 +43 395.505 399.3825 1000 50 0.9281957 +44 399.3825 403.26 1000 50 0.79292774 +45 411.015 414.8925 1000 50 0.57329315 +46 422.6475 426.525 1000 50 0.99999964 +47 426.525 430.4025 1000 50 0.5847565 +48 434.28 438.15749999999997 1000 50 0.623485 +49 453.6675 457.545 1000 50 0.6433985 +50 461.4225 465.3 1000 50 0.76032054 +51 476.9325 480.81 1000 50 0.6088205 +52 480.81 484.6875 1000 50 0.75532883 +53 488.565 492.4425 1000 50 0.82556045 +54 492.4425 496.32 1000 50 0.557684 +55 500.1975 504.075 1000 50 0.5101172 +56 507.9525 511.83 1000 50 0.9865209 +57 511.83 515.7075 1000 50 0.5300336 +58 515.7075 519.585 1000 50 0.5835718 +59 519.585 523.4625000000001 1000 50 0.97157246 +60 527.34 531.2175000000001 1000 50 0.7401925 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_14-12-31_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_14-12-31_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..c5a5c2737ef838532fc5e983fb3b7b0455d89205 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_14-12-31_annot_2022-11-30_01.txt @@ -0,0 +1,80 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.6648611 +2 19.3875 23.265 1000 50 0.6096279 +3 31.02 34.8975 1000 50 0.7391711 +4 58.1625 62.04 1000 50 0.70082027 +5 81.4275 85.30499999999999 1000 50 0.58333606 +6 89.1825 93.06 1000 50 0.92735034 +7 96.9375 100.815 1000 50 0.92691153 +8 100.815 104.6925 1000 50 0.62738657 +9 120.2025 124.08 1000 50 0.9960075 +10 124.08 127.9575 1000 50 0.9933431 +11 127.9575 131.835 1000 50 0.7555909 +12 151.2225 155.1 1000 50 0.7678637 +13 155.1 158.9775 1000 50 0.8101555 +14 158.9775 162.855 1000 50 0.62172747 +15 162.855 166.7325 1000 50 0.83948815 +16 166.7325 170.60999999999999 1000 50 0.9990226 +17 205.5075 209.385 1000 50 0.9963391 +18 209.385 213.2625 1000 50 0.6012902 +19 213.2625 217.14 1000 50 0.96221745 +20 228.7725 232.65 1000 50 0.5358538 +21 240.405 244.2825 1000 50 0.93885547 +22 252.0375 255.915 1000 50 0.8523127 +23 255.915 259.7925 1000 50 0.9525538 +24 259.7925 263.67 1000 50 0.91469467 +25 267.5475 271.425 1000 50 0.97416514 +26 271.425 275.3025 1000 50 0.6721816 +27 275.3025 279.18 1000 50 0.9608982 +28 286.935 290.8125 1000 50 0.83047515 +29 294.69 298.5675 1000 50 0.8408445 +30 302.445 306.3225 1000 50 0.9457191 +31 306.3225 310.2 1000 50 0.94518214 +32 310.2 314.0775 1000 50 0.57158756 +33 317.955 321.8325 1000 50 0.6899711 +34 321.8325 325.71 1000 50 0.87883747 +35 325.71 329.5875 1000 50 0.8376285 +36 329.5875 333.465 1000 50 0.984866 +37 333.465 337.3425 1000 50 0.57011837 +38 341.22 345.0975 1000 50 0.79713166 +39 348.975 352.8525 1000 50 0.86438686 +40 360.6075 364.485 1000 50 0.78416705 +41 372.24 376.1175 1000 50 0.51853836 +42 430.4025 434.28 1000 50 0.62468225 +43 438.1575 442.035 1000 50 0.9215509 +44 449.79 453.6675 1000 50 0.5421054 +45 453.6675 457.545 1000 50 0.5131995 +46 457.545 461.4225 1000 50 0.5791575 +47 461.4225 465.3 1000 50 0.6694315 +48 469.1775 473.055 1000 50 0.8025081 +49 473.055 476.9325 1000 50 0.9913327 +50 476.9325 480.81 1000 50 0.9984456 +51 480.81 484.6875 1000 50 0.99969816 +52 484.6875 488.565 1000 50 0.99991715 +53 492.4425 496.32 1000 50 0.50675786 +54 496.32 500.1975 1000 50 0.8671171 +55 504.075 507.9525 1000 50 0.85403246 +56 507.9525 511.83 1000 50 0.99938786 +57 515.7075 519.585 1000 50 0.96261626 +58 523.4625 527.34 1000 50 0.99975127 +59 527.34 531.2175000000001 1000 50 0.63654155 +60 538.9725 542.85 1000 50 0.99984884 +61 550.605 554.4825000000001 1000 50 0.7183328 +62 554.4825 558.36 1000 50 0.9383506 +63 566.115 569.9925000000001 1000 50 0.828549 +64 569.9925 573.87 1000 50 0.67839926 +65 577.7475 581.625 1000 50 0.897852 +66 581.625 585.5025 1000 50 0.9458939 +67 593.2575 597.1350000000001 1000 50 0.65141034 +68 608.7675 612.6450000000001 1000 50 0.8580792 +69 616.5225 620.4000000000001 1000 50 0.8982816 +70 620.4 624.2775 1000 50 0.93185914 +71 647.5425 651.4200000000001 1000 50 0.81441355 +72 659.175 663.0525 1000 50 0.98181504 +73 678.5625 682.44 1000 50 0.8409939 +74 690.195 694.0725000000001 1000 50 0.5253872 +75 701.8275 705.705 1000 50 0.79707086 +76 705.705 709.5825000000001 1000 50 0.50589937 +77 732.8475 736.725 1000 50 0.8790278 +78 736.725 740.6025000000001 1000 50 0.8836904 +79 748.3575 752.235 1000 50 0.7360372 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_15-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_15-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f636170475ffb90eb30c664a5678d56b8b88f62d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_15-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,150 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.90178645 +2 3.8775 7.755 1000 50 0.6110599 +3 7.755 11.6325 1000 50 0.5059667 +4 11.6325 15.51 1000 50 0.8989055 +5 23.265 27.142500000000002 1000 50 0.9128597 +6 27.1425 31.02 1000 50 0.560362 +7 31.02 34.8975 1000 50 0.99329716 +8 34.8975 38.775 1000 50 0.82646126 +9 38.775 42.652499999999996 1000 50 0.9967443 +10 50.4075 54.285 1000 50 0.9999697 +11 54.285 58.162499999999994 1000 50 0.61135495 +12 58.1625 62.04 1000 50 0.99253595 +13 62.04 65.9175 1000 50 0.9988649 +14 69.795 73.6725 1000 50 0.98450166 +15 73.6725 77.55 1000 50 0.78112954 +16 81.4275 85.30499999999999 1000 50 0.99985087 +17 85.305 89.1825 1000 50 0.6222592 +18 93.06 96.9375 1000 50 0.973822 +19 96.9375 100.815 1000 50 0.8200355 +20 104.6925 108.57 1000 50 0.9872313 +21 108.57 112.44749999999999 1000 50 0.98476195 +22 116.325 120.2025 1000 50 0.927079 +23 120.2025 124.08 1000 50 0.83474725 +24 124.08 127.9575 1000 50 0.7299912 +25 127.9575 131.835 1000 50 0.9999956 +26 131.835 135.7125 1000 50 0.9940112 +27 139.59 143.4675 1000 50 0.9998846 +28 143.4675 147.345 1000 50 0.9956044 +29 147.345 151.2225 1000 50 0.63714224 +30 151.2225 155.1 1000 50 0.9968755 +31 155.1 158.9775 1000 50 0.9962115 +32 162.855 166.7325 1000 50 0.9992173 +33 166.7325 170.60999999999999 1000 50 0.687343 +34 174.4875 178.365 1000 50 0.7223243 +35 186.12 189.9975 1000 50 0.68496054 +36 193.875 197.7525 1000 50 0.6447236 +37 197.7525 201.63 1000 50 0.5265104 +38 201.63 205.5075 1000 50 0.80774236 +39 205.5075 209.385 1000 50 0.5091775 +40 213.2625 217.14 1000 50 0.71186835 +41 221.0175 224.895 1000 50 0.9338432 +42 228.7725 232.65 1000 50 0.5642718 +43 232.65 236.5275 1000 50 0.906599 +44 248.16 252.0375 1000 50 0.73244745 +45 275.3025 279.18 1000 50 0.7716033 +46 283.0575 286.935 1000 50 0.5829946 +47 286.935 290.8125 1000 50 0.9946577 +48 310.2 314.0775 1000 50 0.9434717 +49 314.0775 317.955 1000 50 0.58586013 +50 317.955 321.8325 1000 50 0.99996686 +51 321.8325 325.71 1000 50 0.78742105 +52 325.71 329.5875 1000 50 0.7585318 +53 329.5875 333.465 1000 50 0.9685731 +54 333.465 337.3425 1000 50 0.94495475 +55 341.22 345.0975 1000 50 0.9751304 +56 345.0975 348.975 1000 50 0.9896088 +57 348.975 352.8525 1000 50 0.9997911 +58 356.73 360.6075 1000 50 0.6193621 +59 368.3625 372.24 1000 50 0.7111661 +60 379.995 383.8725 1000 50 0.98882115 +61 383.8725 387.75 1000 50 0.97683984 +62 387.75 391.6275 1000 50 0.9984652 +63 391.6275 395.505 1000 50 0.7831475 +64 399.3825 403.26 1000 50 0.8670297 +65 426.525 430.4025 1000 50 0.9972584 +66 430.4025 434.28 1000 50 0.99952877 +67 434.28 438.15749999999997 1000 50 0.5361324 +68 438.1575 442.035 1000 50 0.9903554 +69 442.035 445.9125 1000 50 0.9995701 +70 445.9125 449.79 1000 50 0.9999695 +71 453.6675 457.545 1000 50 0.9946753 +72 457.545 461.4225 1000 50 0.80835515 +73 461.4225 465.3 1000 50 0.9968099 +74 465.3 469.1775 1000 50 0.6274279 +75 469.1775 473.055 1000 50 0.9998223 +76 476.9325 480.81 1000 50 0.65966946 +77 480.81 484.6875 1000 50 0.7674687 +78 488.565 492.4425 1000 50 0.9973686 +79 492.4425 496.32 1000 50 0.9510133 +80 504.075 507.9525 1000 50 0.9999999 +81 511.83 515.7075 1000 50 0.9811461 +82 515.7075 519.585 1000 50 0.75831884 +83 519.585 523.4625000000001 1000 50 0.99476224 +84 523.4625 527.34 1000 50 0.8017367 +85 527.34 531.2175000000001 1000 50 0.9860529 +86 535.095 538.9725000000001 1000 50 0.80679303 +87 542.85 546.7275000000001 1000 50 0.9999944 +88 546.7275 550.605 1000 50 0.99719256 +89 550.605 554.4825000000001 1000 50 0.5971779 +90 554.4825 558.36 1000 50 0.9980008 +91 558.36 562.2375000000001 1000 50 0.99229795 +92 562.2375 566.115 1000 50 0.99980384 +93 566.115 569.9925000000001 1000 50 0.9998939 +94 569.9925 573.87 1000 50 0.67705506 +95 573.87 577.7475000000001 1000 50 0.9996165 +96 577.7475 581.625 1000 50 0.9727571 +97 581.625 585.5025 1000 50 0.8399146 +98 585.5025 589.3800000000001 1000 50 0.7074868 +99 593.2575 597.1350000000001 1000 50 0.9999583 +100 597.135 601.0125 1000 50 0.8471599 +101 601.0125 604.8900000000001 1000 50 0.9793037 +102 604.89 608.7675 1000 50 0.9947359 +103 608.7675 612.6450000000001 1000 50 0.9719134 +104 612.645 616.5225 1000 50 0.9634457 +105 620.4 624.2775 1000 50 0.99982136 +106 624.2775 628.1550000000001 1000 50 0.5521635 +107 628.155 632.0325 1000 50 0.598814 +108 632.0325 635.9100000000001 1000 50 0.9779147 +109 643.665 647.5425 1000 50 0.6483632 +110 647.5425 651.4200000000001 1000 50 0.96679217 +111 651.42 655.2975 1000 50 0.9992035 +112 655.2975 659.1750000000001 1000 50 0.9999505 +113 659.175 663.0525 1000 50 0.8673662 +114 663.0525 666.9300000000001 1000 50 0.9995036 +115 666.93 670.8075 1000 50 0.9999403 +116 670.8075 674.6850000000001 1000 50 0.7532222 +117 674.685 678.5625 1000 50 0.9999174 +118 678.5625 682.44 1000 50 0.90282184 +119 682.44 686.3175000000001 1000 50 0.90541244 +120 686.3175 690.195 1000 50 0.99894327 +121 690.195 694.0725000000001 1000 50 0.99999976 +122 694.0725 697.95 1000 50 0.9503967 +123 697.95 701.8275000000001 1000 50 0.99998486 +124 701.8275 705.705 1000 50 0.9999138 +125 709.5825 713.46 1000 50 0.66203576 +126 713.46 717.3375000000001 1000 50 0.9997526 +127 717.3375 721.215 1000 50 0.99997675 +128 725.0925 728.97 1000 50 0.99628407 +129 728.97 732.8475000000001 1000 50 0.6059759 +130 732.8475 736.725 1000 50 0.9383354 +131 736.725 740.6025000000001 1000 50 0.60630393 +132 740.6025 744.48 1000 50 0.99856204 +133 744.48 748.3575000000001 1000 50 0.96095407 +134 748.3575 752.235 1000 50 0.99983656 +135 752.235 756.1125000000001 1000 50 0.970682 +136 756.1125 759.99 1000 50 0.99918574 +137 759.99 763.8675000000001 1000 50 0.9055206 +138 763.8675 767.745 1000 50 0.9805941 +139 775.5 779.3775 1000 50 0.7037482 +140 783.255 787.1325 1000 50 0.96395665 +141 787.1325 791.0100000000001 1000 50 0.9972371 +142 791.01 794.8875 1000 50 0.6493275 +143 802.6425 806.5200000000001 1000 50 0.56721175 +144 806.52 810.3975 1000 50 0.69750625 +145 810.3975 814.2750000000001 1000 50 0.85872376 +146 814.275 818.1525 1000 50 0.63023037 +147 822.03 825.9075 1000 50 0.5946913 +148 829.785 833.6625 1000 50 0.6205674 +149 845.295 849.1725 1000 50 0.72554505 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_15-17-50_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_15-17-50_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..485f0c09f4d76672631fec1c01187588a2dd9bd9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_15-17-50_annot_2022-11-30_01.txt @@ -0,0 +1,74 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.7576048 +2 3.8775 7.755 1000 50 0.94553757 +3 7.755 11.6325 1000 50 0.51669306 +4 11.6325 15.51 1000 50 0.99757534 +5 15.51 19.3875 1000 50 0.8757308 +6 23.265 27.142500000000002 1000 50 0.99999785 +7 27.1425 31.02 1000 50 0.8686941 +8 31.02 34.8975 1000 50 0.9998894 +9 34.8975 38.775 1000 50 0.8785931 +10 38.775 42.652499999999996 1000 50 0.9975817 +11 42.6525 46.53 1000 50 0.9445653 +12 46.53 50.4075 1000 50 0.9999361 +13 50.4075 54.285 1000 50 0.91590947 +14 54.285 58.162499999999994 1000 50 0.9762792 +15 58.1625 62.04 1000 50 0.699279 +16 62.04 65.9175 1000 50 0.7589201 +17 65.9175 69.795 1000 50 0.9514808 +18 69.795 73.6725 1000 50 0.9999689 +19 73.6725 77.55 1000 50 0.9371475 +20 77.55 81.4275 1000 50 0.9967822 +21 81.4275 85.30499999999999 1000 50 0.9999192 +22 89.1825 93.06 1000 50 1.0 +23 93.06 96.9375 1000 50 0.9992299 +24 96.9375 100.815 1000 50 0.91359895 +25 100.815 104.6925 1000 50 0.99740237 +26 104.6925 108.57 1000 50 0.79716235 +27 108.57 112.44749999999999 1000 50 0.956642 +28 112.4475 116.325 1000 50 0.96783185 +29 120.2025 124.08 1000 50 0.99695563 +30 127.9575 131.835 1000 50 0.9987708 +31 131.835 135.7125 1000 50 0.99993837 +32 135.7125 139.59 1000 50 0.8200957 +33 139.59 143.4675 1000 50 0.9941401 +34 143.4675 147.345 1000 50 0.9916579 +35 162.855 166.7325 1000 50 0.99381316 +36 174.4875 178.365 1000 50 0.9907913 +37 178.365 182.2425 1000 50 0.97587126 +38 189.9975 193.875 1000 50 0.9991352 +39 193.875 197.7525 1000 50 0.9990927 +40 201.63 205.5075 1000 50 0.6847979 +41 205.5075 209.385 1000 50 0.99859744 +42 209.385 213.2625 1000 50 0.9899963 +43 213.2625 217.14 1000 50 0.6352926 +44 221.0175 224.895 1000 50 0.97864836 +45 224.895 228.7725 1000 50 0.9875448 +46 228.7725 232.65 1000 50 0.91430235 +47 232.65 236.5275 1000 50 0.9985869 +48 236.5275 240.405 1000 50 0.6962512 +49 240.405 244.2825 1000 50 0.9680787 +50 244.2825 248.16 1000 50 0.9914723 +51 248.16 252.0375 1000 50 0.99320143 +52 252.0375 255.915 1000 50 0.9999893 +53 259.7925 263.67 1000 50 0.99999976 +54 263.67 267.5475 1000 50 0.98548317 +55 267.5475 271.425 1000 50 0.8577013 +56 271.425 275.3025 1000 50 0.99994206 +57 283.0575 286.935 1000 50 1.0 +58 286.935 290.8125 1000 50 0.9776939 +59 294.69 298.5675 1000 50 0.997398 +60 298.5675 302.445 1000 50 0.99726033 +61 302.445 306.3225 1000 50 0.9877274 +62 306.3225 310.2 1000 50 0.9985109 +63 310.2 314.0775 1000 50 0.7745811 +64 314.0775 317.955 1000 50 0.996209 +65 317.955 321.8325 1000 50 0.9128109 +66 325.71 329.5875 1000 50 0.9820978 +67 329.5875 333.465 1000 50 0.999997 +68 337.3425 341.21999999999997 1000 50 0.95448065 +69 341.22 345.0975 1000 50 0.9451603 +70 345.0975 348.975 1000 50 0.9998727 +71 352.8525 356.73 1000 50 0.98162395 +72 379.995 383.8725 1000 50 0.7373023 +73 383.8725 387.75 1000 50 0.6309352 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_16-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_16-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..7cf38852ccb5bf8b4b7ee2fdf013cfc10866e710 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_16-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,238 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9993636 +2 3.8775 7.755 1000 50 0.99011326 +3 11.6325 15.51 1000 50 0.60306597 +4 15.51 19.3875 1000 50 0.999806 +5 23.265 27.142500000000002 1000 50 0.86340666 +6 27.1425 31.02 1000 50 0.7422414 +7 34.8975 38.775 1000 50 0.9999491 +8 38.775 42.652499999999996 1000 50 0.9998373 +9 42.6525 46.53 1000 50 0.9996346 +10 46.53 50.4075 1000 50 0.99962294 +11 50.4075 54.285 1000 50 0.9995377 +12 54.285 58.162499999999994 1000 50 0.9833402 +13 58.1625 62.04 1000 50 0.99926907 +14 65.9175 69.795 1000 50 0.8078816 +15 69.795 73.6725 1000 50 0.9908963 +16 73.6725 77.55 1000 50 0.9047972 +17 77.55 81.4275 1000 50 0.63938755 +18 81.4275 85.30499999999999 1000 50 0.9529161 +19 85.305 89.1825 1000 50 0.78182405 +20 93.06 96.9375 1000 50 0.9722934 +21 96.9375 100.815 1000 50 0.8795525 +22 104.6925 108.57 1000 50 0.7559983 +23 108.57 112.44749999999999 1000 50 0.9993697 +24 112.4475 116.325 1000 50 0.98819065 +25 116.325 120.2025 1000 50 0.9999957 +26 120.2025 124.08 1000 50 0.9934325 +27 124.08 127.9575 1000 50 0.83116883 +28 127.9575 131.835 1000 50 0.9999882 +29 131.835 135.7125 1000 50 0.5756914 +30 139.59 143.4675 1000 50 0.99896765 +31 143.4675 147.345 1000 50 0.51428294 +32 147.345 151.2225 1000 50 0.76134175 +33 151.2225 155.1 1000 50 0.6968067 +34 155.1 158.9775 1000 50 0.9650145 +35 158.9775 162.855 1000 50 0.9991233 +36 162.855 166.7325 1000 50 0.6265054 +37 166.7325 170.60999999999999 1000 50 0.99962795 +38 170.61 174.4875 1000 50 0.6470736 +39 174.4875 178.365 1000 50 0.9979007 +40 178.365 182.2425 1000 50 0.66490924 +41 182.2425 186.12 1000 50 0.93629944 +42 186.12 189.9975 1000 50 0.9999974 +43 193.875 197.7525 1000 50 0.99996436 +44 197.7525 201.63 1000 50 0.8324222 +45 201.63 205.5075 1000 50 0.9999325 +46 205.5075 209.385 1000 50 0.9999944 +47 209.385 213.2625 1000 50 0.90777934 +48 213.2625 217.14 1000 50 0.99359566 +49 217.14 221.01749999999998 1000 50 0.9985447 +50 221.0175 224.895 1000 50 0.9700935 +51 224.895 228.7725 1000 50 0.9743764 +52 228.7725 232.65 1000 50 0.9998779 +53 232.65 236.5275 1000 50 0.86810714 +54 236.5275 240.405 1000 50 0.9999753 +55 240.405 244.2825 1000 50 0.999998 +56 248.16 252.0375 1000 50 0.9998161 +57 252.0375 255.915 1000 50 0.9984469 +58 259.7925 263.67 1000 50 0.9615312 +59 263.67 267.5475 1000 50 0.9708363 +60 267.5475 271.425 1000 50 0.9965868 +61 271.425 275.3025 1000 50 0.9998136 +62 275.3025 279.18 1000 50 0.99955016 +63 279.18 283.0575 1000 50 0.9940692 +64 283.0575 286.935 1000 50 0.99793625 +65 286.935 290.8125 1000 50 0.99785197 +66 290.8125 294.69 1000 50 0.99995077 +67 294.69 298.5675 1000 50 0.9988752 +68 298.5675 302.445 1000 50 0.95316285 +69 302.445 306.3225 1000 50 0.99979216 +70 306.3225 310.2 1000 50 0.99975127 +71 310.2 314.0775 1000 50 0.9991806 +72 314.0775 317.955 1000 50 0.9674094 +73 317.955 321.8325 1000 50 0.8058203 +74 321.8325 325.71 1000 50 0.99994695 +75 325.71 329.5875 1000 50 0.9748048 +76 329.5875 333.465 1000 50 0.995256 +77 333.465 337.3425 1000 50 0.99999404 +78 345.0975 348.975 1000 50 0.5356346 +79 356.73 360.6075 1000 50 0.9270181 +80 360.6075 364.485 1000 50 0.7661857 +81 364.485 368.3625 1000 50 0.77750015 +82 368.3625 372.24 1000 50 0.93566614 +83 379.995 383.8725 1000 50 0.9554739 +84 391.6275 395.505 1000 50 0.9567326 +85 403.26 407.1375 1000 50 0.51656073 +86 418.77 422.6475 1000 50 0.9054114 +87 438.1575 442.035 1000 50 0.7198682 +88 442.035 445.9125 1000 50 0.99990964 +89 445.9125 449.79 1000 50 0.99875295 +90 449.79 453.6675 1000 50 0.9334123 +91 453.6675 457.545 1000 50 0.9999832 +92 457.545 461.4225 1000 50 0.9999932 +93 465.3 469.1775 1000 50 0.72045827 +94 469.1775 473.055 1000 50 0.9999919 +95 476.9325 480.81 1000 50 0.9967039 +96 480.81 484.6875 1000 50 0.99977857 +97 484.6875 488.565 1000 50 0.65012664 +98 492.4425 496.32 1000 50 0.99999654 +99 500.1975 504.075 1000 50 0.8610566 +100 504.075 507.9525 1000 50 0.99506795 +101 515.7075 519.585 1000 50 0.81236327 +102 527.34 531.2175000000001 1000 50 0.7216362 +103 531.2175 535.095 1000 50 0.9938438 +104 535.095 538.9725000000001 1000 50 0.9332989 +105 538.9725 542.85 1000 50 0.9394072 +106 542.85 546.7275000000001 1000 50 0.91425025 +107 550.605 554.4825000000001 1000 50 0.99748623 +108 562.2375 566.115 1000 50 0.6358465 +109 569.9925 573.87 1000 50 0.508167 +110 573.87 577.7475000000001 1000 50 0.6087278 +111 585.5025 589.3800000000001 1000 50 0.725146 +112 593.2575 597.1350000000001 1000 50 0.99995494 +113 597.135 601.0125 1000 50 0.77272326 +114 601.0125 604.8900000000001 1000 50 0.99994755 +115 604.89 608.7675 1000 50 0.968731 +116 608.7675 612.6450000000001 1000 50 0.8839943 +117 616.5225 620.4000000000001 1000 50 0.99981767 +118 624.2775 628.1550000000001 1000 50 0.9999964 +119 628.155 632.0325 1000 50 0.99999535 +120 632.0325 635.9100000000001 1000 50 0.74177927 +121 635.91 639.7875 1000 50 1.0 +122 639.7875 643.6650000000001 1000 50 0.9878796 +123 643.665 647.5425 1000 50 0.9901912 +124 647.5425 651.4200000000001 1000 50 0.9998161 +125 651.42 655.2975 1000 50 0.99689627 +126 655.2975 659.1750000000001 1000 50 0.71567565 +127 659.175 663.0525 1000 50 0.9999999 +128 663.0525 666.9300000000001 1000 50 0.6782445 +129 666.93 670.8075 1000 50 0.9986565 +130 670.8075 674.6850000000001 1000 50 0.99994636 +131 674.685 678.5625 1000 50 0.9976973 +132 678.5625 682.44 1000 50 0.8208003 +133 682.44 686.3175000000001 1000 50 0.9999987 +134 686.3175 690.195 1000 50 0.9985916 +135 690.195 694.0725000000001 1000 50 0.8987447 +136 694.0725 697.95 1000 50 1.0 +137 697.95 701.8275000000001 1000 50 0.9995615 +138 705.705 709.5825000000001 1000 50 0.99999857 +139 709.5825 713.46 1000 50 0.9597413 +140 717.3375 721.215 1000 50 0.96565163 +141 721.215 725.0925000000001 1000 50 0.9999925 +142 728.97 732.8475000000001 1000 50 0.9619451 +143 732.8475 736.725 1000 50 0.9999738 +144 736.725 740.6025000000001 1000 50 0.700086 +145 740.6025 744.48 1000 50 0.780815 +146 744.48 748.3575000000001 1000 50 0.8791709 +147 748.3575 752.235 1000 50 0.99798405 +148 752.235 756.1125000000001 1000 50 0.5807543 +149 759.99 763.8675000000001 1000 50 0.99924684 +150 763.8675 767.745 1000 50 0.9999186 +151 767.745 771.6225000000001 1000 50 0.9950943 +152 771.6225 775.5 1000 50 0.97397715 +153 775.5 779.3775 1000 50 0.9984434 +154 779.3775 783.2550000000001 1000 50 0.9990024 +155 783.255 787.1325 1000 50 0.91319764 +156 787.1325 791.0100000000001 1000 50 0.7744709 +157 791.01 794.8875 1000 50 0.8659924 +158 798.765 802.6425 1000 50 0.96996593 +159 802.6425 806.5200000000001 1000 50 0.98333734 +160 806.52 810.3975 1000 50 0.9999908 +161 810.3975 814.2750000000001 1000 50 0.9999125 +162 814.275 818.1525 1000 50 0.9894365 +163 818.1525 822.0300000000001 1000 50 0.9999106 +164 822.03 825.9075 1000 50 0.9997434 +165 825.9075 829.7850000000001 1000 50 0.9571778 +166 829.785 833.6625 1000 50 0.9847505 +167 833.6625 837.5400000000001 1000 50 0.9957878 +168 837.54 841.4175 1000 50 0.9924003 +169 841.4175 845.2950000000001 1000 50 0.9993616 +170 845.295 849.1725 1000 50 0.9983718 +171 849.1725 853.0500000000001 1000 50 0.909845 +172 853.05 856.9275 1000 50 0.97575176 +173 856.9275 860.8050000000001 1000 50 0.9999938 +174 860.805 864.6825 1000 50 0.9999956 +175 864.6825 868.5600000000001 1000 50 1.0 +176 868.56 872.4375 1000 50 0.95388067 +177 872.4375 876.315 1000 50 0.9997522 +178 876.315 880.1925000000001 1000 50 0.9115879 +179 880.1925 884.07 1000 50 0.999519 +180 884.07 887.9475000000001 1000 50 0.9999994 +181 887.9475 891.825 1000 50 0.999401 +182 891.825 895.7025000000001 1000 50 0.99894387 +183 895.7025 899.58 1000 50 0.9999876 +184 899.58 903.4575000000001 1000 50 1.0 +185 903.4575 907.335 1000 50 0.52153814 +186 907.335 911.2125000000001 1000 50 0.9977544 +187 911.2125 915.09 1000 50 0.9378161 +188 915.09 918.9675000000001 1000 50 0.6513478 +189 918.9675 922.845 1000 50 0.9987068 +190 922.845 926.7225000000001 1000 50 0.86815834 +191 926.7225 930.6 1000 50 0.89236426 +192 938.355 942.2325000000001 1000 50 0.9814966 +193 942.2325 946.11 1000 50 0.8701578 +194 946.11 949.9875000000001 1000 50 0.9985343 +195 949.9875 953.865 1000 50 0.9960504 +196 957.7425 961.62 1000 50 0.9995098 +197 961.62 965.4975000000001 1000 50 0.69823486 +198 969.375 973.2525 1000 50 0.9933426 +199 973.2525 977.1300000000001 1000 50 0.65112007 +200 981.0075 984.8850000000001 1000 50 0.99996924 +201 988.7625 992.6400000000001 1000 50 0.9679873 +202 992.64 996.5175 1000 50 0.999969 +203 1004.2725 1008.1500000000001 1000 50 0.9998574 +204 1012.0275 1015.9050000000001 1000 50 0.8808052 +205 1015.905 1019.7825 1000 50 0.9999422 +206 1019.7825 1023.6600000000001 1000 50 0.9162495 +207 1023.66 1027.5375 1000 50 0.9977169 +208 1027.5375 1031.415 1000 50 0.99999595 +209 1031.415 1035.2925 1000 50 0.6343671 +210 1035.2925 1039.17 1000 50 1.0 +211 1039.17 1043.0475000000001 1000 50 0.99988294 +212 1046.925 1050.8025 1000 50 0.9936307 +213 1050.8025 1054.68 1000 50 0.99999905 +214 1062.435 1066.3125 1000 50 0.9995401 +215 1066.3125 1070.19 1000 50 0.9996908 +216 1070.19 1074.0675 1000 50 0.99027294 +217 1074.0675 1077.9450000000002 1000 50 0.99999845 +218 1081.8225 1085.7 1000 50 0.99999857 +219 1085.7 1089.5775 1000 50 0.6902885 +220 1089.5775 1093.4550000000002 1000 50 0.93267286 +221 1093.455 1097.3325 1000 50 0.99994123 +222 1097.3325 1101.21 1000 50 0.99759334 +223 1105.0875 1108.9650000000001 1000 50 0.9999529 +224 1108.965 1112.8425 1000 50 0.99978024 +225 1116.72 1120.5975 1000 50 0.9999839 +226 1120.5975 1124.4750000000001 1000 50 0.95882124 +227 1128.3525 1132.23 1000 50 0.99995756 +228 1132.23 1136.1075 1000 50 0.99529994 +229 1136.1075 1139.9850000000001 1000 50 0.9988757 +230 1139.985 1143.8625 1000 50 0.9983925 +231 1143.8625 1147.74 1000 50 0.7081709 +232 1147.74 1151.6175 1000 50 0.9995479 +233 1151.6175 1155.4950000000001 1000 50 0.9999889 +234 1155.495 1159.3725 1000 50 0.99998915 +235 1159.3725 1163.25 1000 50 0.9999999 +236 1163.25 1167.1275 1000 50 0.9999931 +237 1167.1275 1171.005 1000 50 0.9807438 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_16-23-08_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_16-23-08_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..70d546311a89e7450ef4c70f01ddd0302bd2750c --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_16-23-08_annot_2022-11-30_01.txt @@ -0,0 +1,28 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.97380537 +2 7.755 11.6325 1000 50 0.998187 +3 11.6325 15.51 1000 50 0.99948585 +4 15.51 19.3875 1000 50 0.99994123 +5 19.3875 23.265 1000 50 0.99999964 +6 23.265 27.142500000000002 1000 50 0.99999833 +7 27.1425 31.02 1000 50 0.99992347 +8 31.02 34.8975 1000 50 0.9999622 +9 34.8975 38.775 1000 50 0.9835201 +10 38.775 42.652499999999996 1000 50 0.99999654 +11 42.6525 46.53 1000 50 0.9999974 +12 46.53 50.4075 1000 50 0.99954766 +13 50.4075 54.285 1000 50 0.99999964 +14 54.285 58.162499999999994 1000 50 0.9929685 +15 58.1625 62.04 1000 50 0.99999833 +16 62.04 65.9175 1000 50 0.9996598 +17 65.9175 69.795 1000 50 0.999995 +18 69.795 73.6725 1000 50 0.99931717 +19 73.6725 77.55 1000 50 0.9871013 +20 77.55 81.4275 1000 50 0.8715778 +21 81.4275 85.30499999999999 1000 50 0.6389437 +22 89.1825 93.06 1000 50 0.95380056 +23 93.06 96.9375 1000 50 0.98119557 +24 96.9375 100.815 1000 50 0.9962645 +25 100.815 104.6925 1000 50 0.9014857 +26 104.6925 108.57 1000 50 0.6690125 +27 112.4475 116.325 1000 50 0.7685366 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_17-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_17-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..da4fbbe9185de65afde3289d3aaaf3fb45f9877a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_17-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,236 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9959739 +2 3.8775 7.755 1000 50 0.97674257 +3 7.755 11.6325 1000 50 0.96712744 +4 15.51 19.3875 1000 50 0.9999373 +5 23.265 27.142500000000002 1000 50 0.5291925 +6 27.1425 31.02 1000 50 0.99834025 +7 31.02 34.8975 1000 50 0.9993569 +8 34.8975 38.775 1000 50 0.99940145 +9 38.775 42.652499999999996 1000 50 0.8316338 +10 42.6525 46.53 1000 50 0.99899477 +11 50.4075 54.285 1000 50 0.9955509 +12 54.285 58.162499999999994 1000 50 0.9949734 +13 62.04 65.9175 1000 50 0.9754031 +14 65.9175 69.795 1000 50 0.99766845 +15 69.795 73.6725 1000 50 0.9799737 +16 73.6725 77.55 1000 50 0.9589727 +17 77.55 81.4275 1000 50 0.9999006 +18 85.305 89.1825 1000 50 0.94690794 +19 89.1825 93.06 1000 50 0.8118777 +20 93.06 96.9375 1000 50 0.88083005 +21 96.9375 100.815 1000 50 0.99800235 +22 100.815 104.6925 1000 50 0.9775185 +23 104.6925 108.57 1000 50 0.98453265 +24 108.57 112.44749999999999 1000 50 0.9902022 +25 112.4475 116.325 1000 50 0.52892065 +26 116.325 120.2025 1000 50 0.89265996 +27 120.2025 124.08 1000 50 0.99961 +28 127.9575 131.835 1000 50 0.6864405 +29 131.835 135.7125 1000 50 0.9999784 +30 135.7125 139.59 1000 50 0.9496474 +31 143.4675 147.345 1000 50 0.9987785 +32 151.2225 155.1 1000 50 0.9999895 +33 155.1 158.9775 1000 50 0.9999981 +34 162.855 166.7325 1000 50 0.9999999 +35 166.7325 170.60999999999999 1000 50 0.58968204 +36 174.4875 178.365 1000 50 0.58623695 +37 178.365 182.2425 1000 50 0.8396036 +38 186.12 189.9975 1000 50 0.97066814 +39 193.875 197.7525 1000 50 0.9940329 +40 197.7525 201.63 1000 50 0.9999298 +41 205.5075 209.385 1000 50 0.67950326 +42 209.385 213.2625 1000 50 0.82378036 +43 221.0175 224.895 1000 50 0.74513537 +44 224.895 228.7725 1000 50 0.6146519 +45 228.7725 232.65 1000 50 0.75341886 +46 232.65 236.5275 1000 50 0.9993788 +47 252.0375 255.915 1000 50 0.82053137 +48 259.7925 263.67 1000 50 0.86854756 +49 263.67 267.5475 1000 50 0.5747227 +50 271.425 275.3025 1000 50 0.5989592 +51 279.18 283.0575 1000 50 0.5169046 +52 298.5675 302.445 1000 50 0.69316614 +53 302.445 306.3225 1000 50 0.93751013 +54 306.3225 310.2 1000 50 0.5580426 +55 317.955 321.8325 1000 50 0.9997149 +56 321.8325 325.71 1000 50 0.9048202 +57 325.71 329.5875 1000 50 0.9993697 +58 329.5875 333.465 1000 50 0.7349447 +59 333.465 337.3425 1000 50 0.9845114 +60 337.3425 341.21999999999997 1000 50 0.97331256 +61 341.22 345.0975 1000 50 0.7869888 +62 345.0975 348.975 1000 50 0.9999591 +63 348.975 352.8525 1000 50 0.99439234 +64 352.8525 356.73 1000 50 0.99422884 +65 356.73 360.6075 1000 50 0.9999994 +66 360.6075 364.485 1000 50 0.5554366 +67 364.485 368.3625 1000 50 0.6809147 +68 383.8725 387.75 1000 50 0.99040514 +69 387.75 391.6275 1000 50 0.95959204 +70 391.6275 395.505 1000 50 0.9994191 +71 395.505 399.3825 1000 50 0.97649366 +72 403.26 407.1375 1000 50 0.99706393 +73 407.1375 411.015 1000 50 0.89169234 +74 411.015 414.8925 1000 50 0.9182264 +75 414.8925 418.77 1000 50 0.9913918 +76 418.77 422.6475 1000 50 0.9422368 +77 422.6475 426.525 1000 50 0.5534127 +78 430.4025 434.28 1000 50 0.55694735 +79 438.1575 442.035 1000 50 0.5890577 +80 442.035 445.9125 1000 50 0.62289363 +81 449.79 453.6675 1000 50 0.59516627 +82 465.3 469.1775 1000 50 0.71967167 +83 469.1775 473.055 1000 50 0.9177608 +84 473.055 476.9325 1000 50 0.885927 +85 484.6875 488.565 1000 50 0.5053472 +86 488.565 492.4425 1000 50 0.86534876 +87 507.9525 511.83 1000 50 0.9936179 +88 515.7075 519.585 1000 50 0.5304806 +89 523.4625 527.34 1000 50 0.9430288 +90 527.34 531.2175000000001 1000 50 0.9503284 +91 531.2175 535.095 1000 50 0.98792005 +92 535.095 538.9725000000001 1000 50 0.999943 +93 538.9725 542.85 1000 50 0.9972989 +94 542.85 546.7275000000001 1000 50 0.999879 +95 546.7275 550.605 1000 50 0.89455783 +96 550.605 554.4825000000001 1000 50 0.78889036 +97 562.2375 566.115 1000 50 0.94741154 +98 566.115 569.9925000000001 1000 50 0.93123347 +99 569.9925 573.87 1000 50 0.96840245 +100 577.7475 581.625 1000 50 0.64783543 +101 581.625 585.5025 1000 50 0.7257273 +102 585.5025 589.3800000000001 1000 50 0.7472388 +103 589.38 593.2575 1000 50 0.6928921 +104 593.2575 597.1350000000001 1000 50 0.7483022 +105 597.135 601.0125 1000 50 0.58226895 +106 604.89 608.7675 1000 50 0.99829704 +107 616.5225 620.4000000000001 1000 50 0.92768323 +108 628.155 632.0325 1000 50 0.9257808 +109 635.91 639.7875 1000 50 0.66789806 +110 647.5425 651.4200000000001 1000 50 0.95161533 +111 651.42 655.2975 1000 50 0.6525331 +112 655.2975 659.1750000000001 1000 50 0.95868874 +113 666.93 670.8075 1000 50 0.8781411 +114 670.8075 674.6850000000001 1000 50 0.975318 +115 682.44 686.3175000000001 1000 50 0.9999535 +116 686.3175 690.195 1000 50 0.9713789 +117 690.195 694.0725000000001 1000 50 0.9992199 +118 694.0725 697.95 1000 50 0.9998586 +119 701.8275 705.705 1000 50 0.99036413 +120 705.705 709.5825000000001 1000 50 0.9972203 +121 713.46 717.3375000000001 1000 50 0.99978596 +122 717.3375 721.215 1000 50 0.9968777 +123 721.215 725.0925000000001 1000 50 0.5614899 +124 725.0925 728.97 1000 50 0.99009377 +125 728.97 732.8475000000001 1000 50 0.9447668 +126 732.8475 736.725 1000 50 0.51924974 +127 736.725 740.6025000000001 1000 50 0.77664065 +128 740.6025 744.48 1000 50 0.99946886 +129 748.3575 752.235 1000 50 0.8931215 +130 752.235 756.1125000000001 1000 50 0.9086073 +131 767.745 771.6225000000001 1000 50 0.98721826 +132 771.6225 775.5 1000 50 0.626737 +133 775.5 779.3775 1000 50 0.70359313 +134 779.3775 783.2550000000001 1000 50 0.92630225 +135 787.1325 791.0100000000001 1000 50 0.8041132 +136 791.01 794.8875 1000 50 0.9908291 +137 794.8875 798.7650000000001 1000 50 0.6311486 +138 802.6425 806.5200000000001 1000 50 0.55617374 +139 822.03 825.9075 1000 50 0.9727955 +140 825.9075 829.7850000000001 1000 50 0.80688715 +141 829.785 833.6625 1000 50 0.8430088 +142 837.54 841.4175 1000 50 0.998889 +143 841.4175 845.2950000000001 1000 50 0.9970361 +144 845.295 849.1725 1000 50 0.9972486 +145 849.1725 853.0500000000001 1000 50 0.66895294 +146 853.05 856.9275 1000 50 0.9742766 +147 856.9275 860.8050000000001 1000 50 0.99962246 +148 868.56 872.4375 1000 50 0.99521756 +149 872.4375 876.315 1000 50 0.8372799 +150 876.315 880.1925000000001 1000 50 0.99907327 +151 880.1925 884.07 1000 50 0.99629444 +152 891.825 895.7025000000001 1000 50 0.5165798 +153 895.7025 899.58 1000 50 0.90563595 +154 899.58 903.4575000000001 1000 50 0.98392004 +155 903.4575 907.335 1000 50 0.6578755 +156 907.335 911.2125000000001 1000 50 0.8821989 +157 911.2125 915.09 1000 50 0.999076 +158 926.7225 930.6 1000 50 0.89500976 +159 930.6 934.4775000000001 1000 50 0.99686337 +160 934.4775 938.355 1000 50 0.9895962 +161 938.355 942.2325000000001 1000 50 0.97140706 +162 942.2325 946.11 1000 50 0.96655643 +163 946.11 949.9875000000001 1000 50 0.64363456 +164 961.62 965.4975000000001 1000 50 0.97597706 +165 973.2525 977.1300000000001 1000 50 0.65749776 +166 981.0075 984.8850000000001 1000 50 0.57856977 +167 996.5175 1000.3950000000001 1000 50 0.9048198 +168 1008.15 1012.0275 1000 50 0.56915075 +169 1015.905 1019.7825 1000 50 0.99849164 +170 1019.7825 1023.6600000000001 1000 50 0.64780295 +171 1035.2925 1039.17 1000 50 0.9997002 +172 1043.0475 1046.925 1000 50 0.9046056 +173 1046.925 1050.8025 1000 50 0.72605973 +174 1050.8025 1054.68 1000 50 0.995993 +175 1054.68 1058.5575000000001 1000 50 0.99285334 +176 1058.5575 1062.435 1000 50 0.9613289 +177 1062.435 1066.3125 1000 50 0.9738666 +178 1066.3125 1070.19 1000 50 0.9732233 +179 1070.19 1074.0675 1000 50 0.84624255 +180 1074.0675 1077.9450000000002 1000 50 0.6603374 +181 1077.945 1081.8225 1000 50 0.6832814 +182 1081.8225 1085.7 1000 50 0.96410334 +183 1085.7 1089.5775 1000 50 0.77214885 +184 1093.455 1097.3325 1000 50 0.60282856 +185 1097.3325 1101.21 1000 50 0.5635105 +186 1105.0875 1108.9650000000001 1000 50 0.5128291 +187 1108.965 1112.8425 1000 50 0.8326253 +188 1116.72 1120.5975 1000 50 0.6138219 +189 1132.23 1136.1075 1000 50 0.97462875 +190 1147.74 1151.6175 1000 50 0.51761687 +191 1155.495 1159.3725 1000 50 0.98916376 +192 1174.8825 1178.76 1000 50 0.84596246 +193 1186.515 1190.3925000000002 1000 50 0.6529834 +194 1205.9025 1209.78 1000 50 0.6060603 +195 1217.535 1221.4125000000001 1000 50 0.51695085 +196 1229.1675 1233.045 1000 50 0.8907383 +197 1240.8 1244.6775 1000 50 0.8371434 +198 1244.6775 1248.555 1000 50 0.9998566 +199 1252.4325 1256.31 1000 50 0.99629176 +200 1256.31 1260.1875 1000 50 0.9630046 +201 1264.065 1267.9425 1000 50 0.86519927 +202 1275.6975 1279.575 1000 50 0.62912613 +203 1279.575 1283.4525 1000 50 0.6552594 +204 1283.4525 1287.3300000000002 1000 50 0.9885069 +205 1291.2075 1295.085 1000 50 0.9985203 +206 1295.085 1298.9625 1000 50 0.89270663 +207 1298.9625 1302.8400000000001 1000 50 0.66621155 +208 1310.595 1314.4725 1000 50 0.8416339 +209 1318.35 1322.2275 1000 50 0.9811064 +210 1333.86 1337.7375 1000 50 0.8228335 +211 1337.7375 1341.615 1000 50 0.6829903 +212 1341.615 1345.4925 1000 50 0.8853821 +213 1349.37 1353.2475 1000 50 0.78063726 +214 1353.2475 1357.125 1000 50 0.8424175 +215 1376.5125 1380.39 1000 50 0.83281815 +216 1388.145 1392.0225 1000 50 0.63752437 +217 1399.7775 1403.655 1000 50 0.9965418 +218 1403.655 1407.5325 1000 50 0.9843019 +219 1407.5325 1411.41 1000 50 0.99445724 +220 1411.41 1415.2875000000001 1000 50 0.9856812 +221 1415.2875 1419.165 1000 50 0.80846334 +222 1419.165 1423.0425 1000 50 0.99890816 +223 1423.0425 1426.92 1000 50 0.9998658 +224 1430.7975 1434.675 1000 50 0.99999654 +225 1434.675 1438.5525 1000 50 0.9933343 +226 1446.3075 1450.185 1000 50 0.95991063 +227 1450.185 1454.0625 1000 50 0.9933781 +228 1457.94 1461.8175 1000 50 0.9981377 +229 1461.8175 1465.6950000000002 1000 50 0.67440546 +230 1465.695 1469.5725 1000 50 0.90929645 +231 1469.5725 1473.45 1000 50 0.9997272 +232 1473.45 1477.3275 1000 50 0.9245101 +233 1477.3275 1481.2050000000002 1000 50 0.9736409 +234 1481.205 1485.0825 1000 50 0.75483215 +235 1485.0825 1488.96 1000 50 0.9282377 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_18-01-54_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_18-01-54_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b5a0182077c86da0773d574fd4c6793005846ac0 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_18-01-54_annot_2022-11-30_01.txt @@ -0,0 +1,232 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.78513557 +2 7.755 11.6325 1000 50 0.861394 +3 11.6325 15.51 1000 50 0.58241475 +4 15.51 19.3875 1000 50 0.7242926 +5 19.3875 23.265 1000 50 0.98759043 +6 23.265 27.142500000000002 1000 50 0.9999833 +7 27.1425 31.02 1000 50 0.9528991 +8 31.02 34.8975 1000 50 0.60870475 +9 34.8975 38.775 1000 50 0.9517573 +10 38.775 42.652499999999996 1000 50 0.98734283 +11 42.6525 46.53 1000 50 0.7980759 +12 50.4075 54.285 1000 50 0.99930525 +13 58.1625 62.04 1000 50 0.9999294 +14 69.795 73.6725 1000 50 0.9720286 +15 73.6725 77.55 1000 50 0.8423852 +16 89.1825 93.06 1000 50 0.5414836 +17 93.06 96.9375 1000 50 0.9803525 +18 96.9375 100.815 1000 50 0.8083218 +19 100.815 104.6925 1000 50 0.61673456 +20 108.57 112.44749999999999 1000 50 0.7398372 +21 112.4475 116.325 1000 50 0.5660248 +22 116.325 120.2025 1000 50 0.76166517 +23 120.2025 124.08 1000 50 0.5673578 +24 124.08 127.9575 1000 50 0.8421876 +25 127.9575 131.835 1000 50 0.8504767 +26 135.7125 139.59 1000 50 0.9993749 +27 139.59 143.4675 1000 50 0.995891 +28 143.4675 147.345 1000 50 0.99959296 +29 147.345 151.2225 1000 50 0.9999968 +30 158.9775 162.855 1000 50 0.9999542 +31 162.855 166.7325 1000 50 0.99999154 +32 166.7325 170.60999999999999 1000 50 0.80489826 +33 182.2425 186.12 1000 50 0.98439276 +34 186.12 189.9975 1000 50 0.9974879 +35 193.875 197.7525 1000 50 0.99567175 +36 197.7525 201.63 1000 50 0.9931502 +37 209.385 213.2625 1000 50 0.95519865 +38 217.14 221.01749999999998 1000 50 0.9999298 +39 224.895 228.7725 1000 50 0.73495954 +40 228.7725 232.65 1000 50 0.9893427 +41 240.405 244.2825 1000 50 0.9721326 +42 252.0375 255.915 1000 50 0.5053828 +43 255.915 259.7925 1000 50 0.9503289 +44 267.5475 271.425 1000 50 0.85889554 +45 271.425 275.3025 1000 50 0.9990338 +46 275.3025 279.18 1000 50 0.70288414 +47 279.18 283.0575 1000 50 0.97486275 +48 286.935 290.8125 1000 50 0.9695246 +49 290.8125 294.69 1000 50 0.77874815 +50 298.5675 302.445 1000 50 0.9986284 +51 310.2 314.0775 1000 50 0.6153524 +52 314.0775 317.955 1000 50 0.6438559 +53 317.955 321.8325 1000 50 0.99319035 +54 321.8325 325.71 1000 50 0.9954666 +55 325.71 329.5875 1000 50 0.99935204 +56 329.5875 333.465 1000 50 0.83600616 +57 337.3425 341.21999999999997 1000 50 0.8995854 +58 341.22 345.0975 1000 50 0.99967587 +59 345.0975 348.975 1000 50 0.8025585 +60 348.975 352.8525 1000 50 0.95216024 +61 352.8525 356.73 1000 50 0.9889052 +62 360.6075 364.485 1000 50 0.9964592 +63 364.485 368.3625 1000 50 0.76950604 +64 372.24 376.1175 1000 50 0.9211584 +65 376.1175 379.995 1000 50 0.9166486 +66 379.995 383.8725 1000 50 0.8482866 +67 383.8725 387.75 1000 50 0.9968238 +68 387.75 391.6275 1000 50 0.9398617 +69 391.6275 395.505 1000 50 0.8099495 +70 395.505 399.3825 1000 50 0.99800307 +71 399.3825 403.26 1000 50 0.5817476 +72 403.26 407.1375 1000 50 0.5918442 +73 414.8925 418.77 1000 50 0.9932423 +74 418.77 422.6475 1000 50 0.89271396 +75 422.6475 426.525 1000 50 0.51520884 +76 430.4025 434.28 1000 50 0.9321095 +77 434.28 438.15749999999997 1000 50 0.78843725 +78 438.1575 442.035 1000 50 0.8820405 +79 442.035 445.9125 1000 50 0.867571 +80 449.79 453.6675 1000 50 0.5390185 +81 453.6675 457.545 1000 50 0.54732436 +82 457.545 461.4225 1000 50 0.98907125 +83 461.4225 465.3 1000 50 0.70297766 +84 465.3 469.1775 1000 50 0.8327557 +85 469.1775 473.055 1000 50 0.9003802 +86 473.055 476.9325 1000 50 0.6761278 +87 476.9325 480.81 1000 50 0.99455476 +88 480.81 484.6875 1000 50 0.9706481 +89 484.6875 488.565 1000 50 0.9256435 +90 496.32 500.1975 1000 50 0.91231525 +91 504.075 507.9525 1000 50 0.52792794 +92 519.585 523.4625000000001 1000 50 0.9960478 +93 527.34 531.2175000000001 1000 50 0.9950305 +94 535.095 538.9725000000001 1000 50 0.51054347 +95 538.9725 542.85 1000 50 0.95671225 +96 550.605 554.4825000000001 1000 50 0.8245342 +97 554.4825 558.36 1000 50 0.82886255 +98 558.36 562.2375000000001 1000 50 0.9423236 +99 562.2375 566.115 1000 50 0.95535105 +100 566.115 569.9925000000001 1000 50 0.8470438 +101 573.87 577.7475000000001 1000 50 0.9777068 +102 577.7475 581.625 1000 50 0.9944695 +103 585.5025 589.3800000000001 1000 50 0.6685895 +104 589.38 593.2575 1000 50 0.9963482 +105 601.0125 604.8900000000001 1000 50 0.53863275 +106 604.89 608.7675 1000 50 0.97959524 +107 612.645 616.5225 1000 50 0.9999714 +108 616.5225 620.4000000000001 1000 50 0.5860298 +109 620.4 624.2775 1000 50 0.98529 +110 624.2775 628.1550000000001 1000 50 0.99971765 +111 628.155 632.0325 1000 50 0.7967901 +112 635.91 639.7875 1000 50 0.6426362 +113 643.665 647.5425 1000 50 0.56994975 +114 651.42 655.2975 1000 50 0.98146033 +115 659.175 663.0525 1000 50 0.5540976 +116 666.93 670.8075 1000 50 0.9748619 +117 674.685 678.5625 1000 50 0.9979607 +118 678.5625 682.44 1000 50 0.74192727 +119 682.44 686.3175000000001 1000 50 0.99977165 +120 686.3175 690.195 1000 50 0.9673478 +121 690.195 694.0725000000001 1000 50 0.99728143 +122 701.8275 705.705 1000 50 0.9760115 +123 705.705 709.5825000000001 1000 50 0.92083114 +124 709.5825 713.46 1000 50 0.99403447 +125 717.3375 721.215 1000 50 0.6774339 +126 728.97 732.8475000000001 1000 50 0.96729213 +127 744.48 748.3575000000001 1000 50 0.71911764 +128 748.3575 752.235 1000 50 0.9117436 +129 752.235 756.1125000000001 1000 50 0.90968406 +130 763.8675 767.745 1000 50 0.6278131 +131 775.5 779.3775 1000 50 0.98144996 +132 779.3775 783.2550000000001 1000 50 0.9305959 +133 787.1325 791.0100000000001 1000 50 0.9701015 +134 791.01 794.8875 1000 50 0.98838425 +135 798.765 802.6425 1000 50 0.99625707 +136 802.6425 806.5200000000001 1000 50 0.9672095 +137 810.3975 814.2750000000001 1000 50 0.99481803 +138 825.9075 829.7850000000001 1000 50 0.54681003 +139 837.54 841.4175 1000 50 0.9732055 +140 845.295 849.1725 1000 50 0.6497051 +141 853.05 856.9275 1000 50 0.9112628 +142 868.56 872.4375 1000 50 0.94036806 +143 872.4375 876.315 1000 50 0.9991867 +144 876.315 880.1925000000001 1000 50 0.9999734 +145 880.1925 884.07 1000 50 0.6843234 +146 884.07 887.9475000000001 1000 50 0.85005283 +147 891.825 895.7025000000001 1000 50 0.7847652 +148 899.58 903.4575000000001 1000 50 0.92891216 +149 903.4575 907.335 1000 50 0.9635714 +150 907.335 911.2125000000001 1000 50 0.9272498 +151 911.2125 915.09 1000 50 0.5036574 +152 918.9675 922.845 1000 50 0.9908406 +153 930.6 934.4775000000001 1000 50 0.70207 +154 934.4775 938.355 1000 50 0.87260514 +155 938.355 942.2325000000001 1000 50 0.52172494 +156 957.7425 961.62 1000 50 0.9996275 +157 965.4975 969.375 1000 50 0.58466375 +158 969.375 973.2525 1000 50 0.99416536 +159 977.13 981.0075 1000 50 0.8531174 +160 981.0075 984.8850000000001 1000 50 0.99671507 +161 992.64 996.5175 1000 50 0.9335322 +162 996.5175 1000.3950000000001 1000 50 0.5883638 +163 1000.395 1004.2725 1000 50 0.9961456 +164 1004.2725 1008.1500000000001 1000 50 0.9984641 +165 1008.15 1012.0275 1000 50 0.90578175 +166 1015.905 1019.7825 1000 50 0.91158813 +167 1027.5375 1031.415 1000 50 0.97670823 +168 1031.415 1035.2925 1000 50 0.99133694 +169 1035.2925 1039.17 1000 50 0.8400193 +170 1039.17 1043.0475000000001 1000 50 0.99995244 +171 1046.925 1050.8025 1000 50 0.85526156 +172 1050.8025 1054.68 1000 50 0.9992836 +173 1058.5575 1062.435 1000 50 0.9872257 +174 1062.435 1066.3125 1000 50 0.9858316 +175 1066.3125 1070.19 1000 50 0.999987 +176 1070.19 1074.0675 1000 50 0.5425568 +177 1074.0675 1077.9450000000002 1000 50 0.9507677 +178 1077.945 1081.8225 1000 50 0.98123646 +179 1081.8225 1085.7 1000 50 0.99961394 +180 1085.7 1089.5775 1000 50 0.99923205 +181 1093.455 1097.3325 1000 50 0.8817458 +182 1097.3325 1101.21 1000 50 0.97602844 +183 1101.21 1105.0875 1000 50 0.6482368 +184 1105.0875 1108.9650000000001 1000 50 0.99994564 +185 1108.965 1112.8425 1000 50 0.95526665 +186 1112.8425 1116.72 1000 50 0.84893084 +187 1120.5975 1124.4750000000001 1000 50 0.64299005 +188 1124.475 1128.3525 1000 50 0.95986384 +189 1128.3525 1132.23 1000 50 0.5132356 +190 1136.1075 1139.9850000000001 1000 50 0.67622435 +191 1139.985 1143.8625 1000 50 0.761954 +192 1143.8625 1147.74 1000 50 0.9861681 +193 1147.74 1151.6175 1000 50 0.88337916 +194 1155.495 1159.3725 1000 50 0.65998536 +195 1163.25 1167.1275 1000 50 0.58432955 +196 1171.005 1174.8825000000002 1000 50 0.9998267 +197 1174.8825 1178.76 1000 50 0.99349034 +198 1182.6375 1186.515 1000 50 0.98374325 +199 1194.27 1198.1475 1000 50 0.9995049 +200 1213.6575 1217.535 1000 50 0.69871044 +201 1217.535 1221.4125000000001 1000 50 0.9047678 +202 1229.1675 1233.045 1000 50 0.9689933 +203 1248.555 1252.4325000000001 1000 50 0.9999596 +204 1252.4325 1256.31 1000 50 0.96618325 +205 1256.31 1260.1875 1000 50 0.80070996 +206 1260.1875 1264.065 1000 50 0.6426876 +207 1271.82 1275.6975 1000 50 0.9957 +208 1279.575 1283.4525 1000 50 0.584996 +209 1283.4525 1287.3300000000002 1000 50 0.81198835 +210 1295.085 1298.9625 1000 50 0.9708444 +211 1298.9625 1302.8400000000001 1000 50 0.80554 +212 1302.84 1306.7175 1000 50 0.7724423 +213 1306.7175 1310.595 1000 50 0.71316016 +214 1310.595 1314.4725 1000 50 0.86445516 +215 1314.4725 1318.3500000000001 1000 50 0.5596045 +216 1318.35 1322.2275 1000 50 0.98267823 +217 1322.2275 1326.105 1000 50 0.99924266 +218 1326.105 1329.9825 1000 50 0.91335773 +219 1329.9825 1333.8600000000001 1000 50 0.9948715 +220 1333.86 1337.7375 1000 50 0.8882669 +221 1337.7375 1341.615 1000 50 0.9992047 +222 1341.615 1345.4925 1000 50 0.9919186 +223 1345.4925 1349.3700000000001 1000 50 0.8451566 +224 1349.37 1353.2475 1000 50 0.9441082 +225 1353.2475 1357.125 1000 50 0.9986021 +226 1361.0025 1364.88 1000 50 0.83618176 +227 1364.88 1368.7575000000002 1000 50 0.98181725 +228 1368.7575 1372.635 1000 50 0.882335 +229 1376.5125 1380.39 1000 50 0.7936336 +230 1380.39 1384.2675000000002 1000 50 0.9265643 +231 1384.2675 1388.145 1000 50 0.99361885 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_19-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_19-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..635776ca602cb7c7333b05409325ee929e1a09e4 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_19-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,38 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.6182577 +2 11.6325 15.51 1000 50 0.60954446 +3 15.51 19.3875 1000 50 0.7442382 +4 23.265 27.142500000000002 1000 50 0.9967051 +5 34.8975 38.775 1000 50 0.7483067 +6 46.53 50.4075 1000 50 0.8936726 +7 54.285 58.162499999999994 1000 50 0.78898484 +8 58.1625 62.04 1000 50 0.7148806 +9 73.6725 77.55 1000 50 0.80651784 +10 81.4275 85.30499999999999 1000 50 0.76866186 +11 85.305 89.1825 1000 50 0.91847515 +12 89.1825 93.06 1000 50 0.92777085 +13 96.9375 100.815 1000 50 0.9990766 +14 100.815 104.6925 1000 50 0.896849 +15 104.6925 108.57 1000 50 0.9999931 +16 108.57 112.44749999999999 1000 50 0.9266612 +17 112.4475 116.325 1000 50 0.9975017 +18 124.08 127.9575 1000 50 0.9866044 +19 127.9575 131.835 1000 50 0.98735833 +20 131.835 135.7125 1000 50 0.7768692 +21 135.7125 139.59 1000 50 0.9997049 +22 139.59 143.4675 1000 50 0.9998247 +23 143.4675 147.345 1000 50 0.9987155 +24 147.345 151.2225 1000 50 0.995109 +25 151.2225 155.1 1000 50 0.9833183 +26 155.1 158.9775 1000 50 0.9971507 +27 158.9775 162.855 1000 50 0.99969876 +28 162.855 166.7325 1000 50 0.94977474 +29 166.7325 170.60999999999999 1000 50 0.99746597 +30 170.61 174.4875 1000 50 0.9999372 +31 174.4875 178.365 1000 50 0.8924221 +32 178.365 182.2425 1000 50 0.9999962 +33 182.2425 186.12 1000 50 0.9972133 +34 186.12 189.9975 1000 50 0.92151904 +35 189.9975 193.875 1000 50 0.9219598 +36 193.875 197.7525 1000 50 0.96486723 +37 197.7525 201.63 1000 50 0.9816622 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_19-07-02_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_19-07-02_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1e74aecda6f257e0ed9f96ed5d00479e7052bee8 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_19-07-02_annot_2022-11-30_01.txt @@ -0,0 +1,199 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.95384294 +2 3.8775 7.755 1000 50 0.98901796 +3 11.6325 15.51 1000 50 0.8501682 +4 15.51 19.3875 1000 50 0.97488415 +5 19.3875 23.265 1000 50 0.9998983 +6 23.265 27.142500000000002 1000 50 0.9779839 +7 27.1425 31.02 1000 50 0.88423216 +8 31.02 34.8975 1000 50 0.9000159 +9 34.8975 38.775 1000 50 0.5432301 +10 38.775 42.652499999999996 1000 50 0.99771273 +11 42.6525 46.53 1000 50 0.8142909 +12 46.53 50.4075 1000 50 0.94096255 +13 54.285 58.162499999999994 1000 50 0.990364 +14 58.1625 62.04 1000 50 0.5392129 +15 65.9175 69.795 1000 50 0.9633618 +16 77.55 81.4275 1000 50 0.98546773 +17 81.4275 85.30499999999999 1000 50 0.9947149 +18 89.1825 93.06 1000 50 0.99997485 +19 96.9375 100.815 1000 50 0.99983656 +20 100.815 104.6925 1000 50 0.99460477 +21 104.6925 108.57 1000 50 0.99986696 +22 108.57 112.44749999999999 1000 50 0.9160825 +23 112.4475 116.325 1000 50 0.9110692 +24 116.325 120.2025 1000 50 0.9997178 +25 120.2025 124.08 1000 50 0.9998765 +26 127.9575 131.835 1000 50 0.999433 +27 131.835 135.7125 1000 50 0.9992712 +28 135.7125 139.59 1000 50 0.9999994 +29 143.4675 147.345 1000 50 0.99977213 +30 147.345 151.2225 1000 50 0.99967 +31 151.2225 155.1 1000 50 0.9034593 +32 155.1 158.9775 1000 50 0.9997936 +33 158.9775 162.855 1000 50 0.98496073 +34 162.855 166.7325 1000 50 0.9809957 +35 166.7325 170.60999999999999 1000 50 0.99999595 +36 170.61 174.4875 1000 50 0.8233897 +37 174.4875 178.365 1000 50 0.9997763 +38 178.365 182.2425 1000 50 0.99984705 +39 182.2425 186.12 1000 50 0.7186311 +40 186.12 189.9975 1000 50 0.98319834 +41 189.9975 193.875 1000 50 0.996201 +42 193.875 197.7525 1000 50 0.54957193 +43 201.63 205.5075 1000 50 0.9370114 +44 221.0175 224.895 1000 50 0.9662352 +45 228.7725 232.65 1000 50 0.66648626 +46 252.0375 255.915 1000 50 0.89389944 +47 255.915 259.7925 1000 50 0.597929 +48 259.7925 263.67 1000 50 0.95640206 +49 271.425 275.3025 1000 50 0.6638537 +50 279.18 283.0575 1000 50 0.9993993 +51 283.0575 286.935 1000 50 0.85888183 +52 290.8125 294.69 1000 50 0.7347279 +53 294.69 298.5675 1000 50 0.82571864 +54 298.5675 302.445 1000 50 0.8486973 +55 306.3225 310.2 1000 50 0.9871344 +56 310.2 314.0775 1000 50 0.54054916 +57 317.955 321.8325 1000 50 0.9657618 +58 321.8325 325.71 1000 50 0.54611486 +59 337.3425 341.21999999999997 1000 50 0.5391113 +60 360.6075 364.485 1000 50 0.8892142 +61 372.24 376.1175 1000 50 0.57294875 +62 376.1175 379.995 1000 50 0.75734 +63 395.505 399.3825 1000 50 0.9909865 +64 399.3825 403.26 1000 50 0.95627826 +65 403.26 407.1375 1000 50 0.66462165 +66 407.1375 411.015 1000 50 0.98040754 +67 411.015 414.8925 1000 50 0.9999404 +68 418.77 422.6475 1000 50 0.96741253 +69 422.6475 426.525 1000 50 0.9954098 +70 426.525 430.4025 1000 50 0.95362675 +71 430.4025 434.28 1000 50 0.9998714 +72 434.28 438.15749999999997 1000 50 0.5096934 +73 438.1575 442.035 1000 50 0.98874307 +74 442.035 445.9125 1000 50 0.9133174 +75 445.9125 449.79 1000 50 0.5850912 +76 449.79 453.6675 1000 50 0.97918075 +77 453.6675 457.545 1000 50 0.9968555 +78 457.545 461.4225 1000 50 0.8794847 +79 473.055 476.9325 1000 50 0.999897 +80 476.9325 480.81 1000 50 0.94296294 +81 480.81 484.6875 1000 50 0.6148404 +82 492.4425 496.32 1000 50 0.84519655 +83 504.075 507.9525 1000 50 0.5089906 +84 519.585 523.4625000000001 1000 50 0.9999237 +85 531.2175 535.095 1000 50 0.9986004 +86 535.095 538.9725000000001 1000 50 0.5091291 +87 538.9725 542.85 1000 50 0.92750186 +88 542.85 546.7275000000001 1000 50 0.671553 +89 550.605 554.4825000000001 1000 50 0.9998944 +90 554.4825 558.36 1000 50 0.9884609 +91 558.36 562.2375000000001 1000 50 0.66182846 +92 562.2375 566.115 1000 50 0.85345775 +93 566.115 569.9925000000001 1000 50 0.68453574 +94 569.9925 573.87 1000 50 0.96924543 +95 573.87 577.7475000000001 1000 50 0.9998336 +96 577.7475 581.625 1000 50 0.8725067 +97 581.625 585.5025 1000 50 0.8296612 +98 585.5025 589.3800000000001 1000 50 0.99987614 +99 589.38 593.2575 1000 50 0.99960357 +100 593.2575 597.1350000000001 1000 50 0.9464341 +101 597.135 601.0125 1000 50 0.913645 +102 601.0125 604.8900000000001 1000 50 0.99974316 +103 604.89 608.7675 1000 50 0.9858569 +104 612.645 616.5225 1000 50 0.9597004 +105 616.5225 620.4000000000001 1000 50 0.9928188 +106 620.4 624.2775 1000 50 0.5830946 +107 624.2775 628.1550000000001 1000 50 0.9848269 +108 628.155 632.0325 1000 50 0.9748514 +109 632.0325 635.9100000000001 1000 50 0.99958783 +110 635.91 639.7875 1000 50 0.9990939 +111 639.7875 643.6650000000001 1000 50 0.99997306 +112 643.665 647.5425 1000 50 0.80207515 +113 647.5425 651.4200000000001 1000 50 0.99998 +114 651.42 655.2975 1000 50 0.9989618 +115 655.2975 659.1750000000001 1000 50 0.52231365 +116 659.175 663.0525 1000 50 1.0 +117 663.0525 666.9300000000001 1000 50 0.990919 +118 666.93 670.8075 1000 50 0.9821456 +119 670.8075 674.6850000000001 1000 50 0.99957854 +120 674.685 678.5625 1000 50 0.99999654 +121 678.5625 682.44 1000 50 0.99951553 +122 682.44 686.3175000000001 1000 50 0.97085303 +123 686.3175 690.195 1000 50 0.99947506 +124 690.195 694.0725000000001 1000 50 0.8872884 +125 694.0725 697.95 1000 50 0.9982533 +126 697.95 701.8275000000001 1000 50 0.84383595 +127 701.8275 705.705 1000 50 0.9095947 +128 705.705 709.5825000000001 1000 50 0.9960741 +129 709.5825 713.46 1000 50 0.92960495 +130 713.46 717.3375000000001 1000 50 0.99981266 +131 717.3375 721.215 1000 50 0.87503564 +132 721.215 725.0925000000001 1000 50 0.99910104 +133 725.0925 728.97 1000 50 0.99563617 +134 728.97 732.8475000000001 1000 50 0.5002271 +135 732.8475 736.725 1000 50 0.98370695 +136 736.725 740.6025000000001 1000 50 0.9952366 +137 740.6025 744.48 1000 50 0.99429166 +138 744.48 748.3575000000001 1000 50 0.70393425 +139 748.3575 752.235 1000 50 0.5844037 +140 752.235 756.1125000000001 1000 50 0.99923825 +141 756.1125 759.99 1000 50 0.73018694 +142 759.99 763.8675000000001 1000 50 0.9306778 +143 763.8675 767.745 1000 50 0.99895597 +144 767.745 771.6225000000001 1000 50 0.97401243 +145 775.5 779.3775 1000 50 0.85610235 +146 783.255 787.1325 1000 50 0.9996911 +147 787.1325 791.0100000000001 1000 50 0.80915433 +148 791.01 794.8875 1000 50 0.9926448 +149 798.765 802.6425 1000 50 0.8403099 +150 802.6425 806.5200000000001 1000 50 0.9999186 +151 806.52 810.3975 1000 50 0.9999361 +152 814.275 818.1525 1000 50 0.9856625 +153 818.1525 822.0300000000001 1000 50 0.8746896 +154 825.9075 829.7850000000001 1000 50 0.91752416 +155 833.6625 837.5400000000001 1000 50 0.97492087 +156 841.4175 845.2950000000001 1000 50 0.9157883 +157 845.295 849.1725 1000 50 0.99999154 +158 853.05 856.9275 1000 50 0.9917876 +159 856.9275 860.8050000000001 1000 50 0.99997497 +160 860.805 864.6825 1000 50 0.7978843 +161 864.6825 868.5600000000001 1000 50 0.6813115 +162 876.315 880.1925000000001 1000 50 0.99563617 +163 887.9475 891.825 1000 50 0.8666478 +164 895.7025 899.58 1000 50 0.8710811 +165 899.58 903.4575000000001 1000 50 0.99946016 +166 915.09 918.9675000000001 1000 50 0.8411297 +167 918.9675 922.845 1000 50 0.9224443 +168 930.6 934.4775000000001 1000 50 0.97596675 +169 942.2325 946.11 1000 50 0.8252373 +170 949.9875 953.865 1000 50 0.95487595 +171 953.865 957.7425000000001 1000 50 0.98424155 +172 957.7425 961.62 1000 50 0.7528867 +173 961.62 965.4975000000001 1000 50 0.919361 +174 969.375 973.2525 1000 50 0.85594004 +175 973.2525 977.1300000000001 1000 50 0.6119196 +176 977.13 981.0075 1000 50 0.7546053 +177 981.0075 984.8850000000001 1000 50 0.92928714 +178 984.885 988.7625 1000 50 0.99865663 +179 988.7625 992.6400000000001 1000 50 0.9956891 +180 992.64 996.5175 1000 50 0.5390319 +181 996.5175 1000.3950000000001 1000 50 0.99177414 +182 1000.395 1004.2725 1000 50 0.9773422 +183 1004.2725 1008.1500000000001 1000 50 0.5957503 +184 1008.15 1012.0275 1000 50 0.9999466 +185 1012.0275 1015.9050000000001 1000 50 0.9919668 +186 1015.905 1019.7825 1000 50 0.9996062 +187 1019.7825 1023.6600000000001 1000 50 0.8111049 +188 1023.66 1027.5375 1000 50 0.98879516 +189 1027.5375 1031.415 1000 50 0.99968576 +190 1035.2925 1039.17 1000 50 0.98921835 +191 1039.17 1043.0475000000001 1000 50 0.9999989 +192 1043.0475 1046.925 1000 50 0.9000399 +193 1046.925 1050.8025 1000 50 0.98832816 +194 1050.8025 1054.68 1000 50 0.9760226 +195 1058.5575 1062.435 1000 50 0.9190188 +196 1062.435 1066.3125 1000 50 0.62168044 +197 1066.3125 1070.19 1000 50 0.9963266 +198 1074.0675 1077.9450000000002 1000 50 0.92956454 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_20-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_20-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..113fad4ec838fe040248b140b32a545c190fbcd3 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_20-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,65 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.8999056 +2 19.3875 23.265 1000 50 0.99807054 +3 23.265 27.142500000000002 1000 50 0.7179396 +4 46.53 50.4075 1000 50 0.92719936 +5 58.1625 62.04 1000 50 0.5454564 +6 62.04 65.9175 1000 50 0.60713196 +7 69.795 73.6725 1000 50 0.7544422 +8 77.55 81.4275 1000 50 0.63296 +9 89.1825 93.06 1000 50 0.9637587 +10 93.06 96.9375 1000 50 0.88274825 +11 96.9375 100.815 1000 50 0.9820807 +12 100.815 104.6925 1000 50 0.73209107 +13 108.57 112.44749999999999 1000 50 0.5074871 +14 124.08 127.9575 1000 50 0.75526595 +15 127.9575 131.835 1000 50 0.75476813 +16 131.835 135.7125 1000 50 0.80460036 +17 139.59 143.4675 1000 50 0.99947506 +18 143.4675 147.345 1000 50 0.9685098 +19 147.345 151.2225 1000 50 0.97616315 +20 158.9775 162.855 1000 50 0.9879709 +21 162.855 166.7325 1000 50 0.9999695 +22 166.7325 170.60999999999999 1000 50 0.91138774 +23 170.61 174.4875 1000 50 0.7878202 +24 178.365 182.2425 1000 50 0.7185597 +25 182.2425 186.12 1000 50 0.9979366 +26 189.9975 193.875 1000 50 0.90668386 +27 193.875 197.7525 1000 50 0.91276985 +28 201.63 205.5075 1000 50 0.5788972 +29 205.5075 209.385 1000 50 0.8879666 +30 213.2625 217.14 1000 50 0.99816066 +31 221.0175 224.895 1000 50 0.83326674 +32 224.895 228.7725 1000 50 0.9204875 +33 236.5275 240.405 1000 50 0.8767006 +34 240.405 244.2825 1000 50 0.84683436 +35 248.16 252.0375 1000 50 0.9945094 +36 252.0375 255.915 1000 50 0.92194885 +37 259.7925 263.67 1000 50 0.99914217 +38 263.67 267.5475 1000 50 0.7443905 +39 279.18 283.0575 1000 50 0.50830793 +40 283.0575 286.935 1000 50 0.66895217 +41 294.69 298.5675 1000 50 0.7025998 +42 298.5675 302.445 1000 50 0.89483124 +43 302.445 306.3225 1000 50 0.9707187 +44 310.2 314.0775 1000 50 0.5532891 +45 341.22 345.0975 1000 50 0.94151175 +46 345.0975 348.975 1000 50 0.65724385 +47 356.73 360.6075 1000 50 0.80665153 +48 368.3625 372.24 1000 50 0.7947861 +49 372.24 376.1175 1000 50 0.97718096 +50 383.8725 387.75 1000 50 0.93388695 +51 387.75 391.6275 1000 50 0.5187973 +52 391.6275 395.505 1000 50 0.80316377 +53 395.505 399.3825 1000 50 0.74107826 +54 422.6475 426.525 1000 50 0.60651654 +55 434.28 438.15749999999997 1000 50 0.89970195 +56 438.1575 442.035 1000 50 0.6631736 +57 442.035 445.9125 1000 50 0.99183697 +58 461.4225 465.3 1000 50 0.5407723 +59 465.3 469.1775 1000 50 0.61680907 +60 469.1775 473.055 1000 50 0.6984731 +61 476.9325 480.81 1000 50 0.75585395 +62 500.1975 504.075 1000 50 0.6102902 +63 504.075 507.9525 1000 50 0.5382239 +64 507.9525 511.83 1000 50 0.9935946 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_20-14-00_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_20-14-00_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..4023cb425751ae6d47c03555cd18a8c5f932ce7b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_20-14-00_annot_2022-11-30_01.txt @@ -0,0 +1,85 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.65832067 +2 7.755 11.6325 1000 50 0.8053638 +3 15.51 19.3875 1000 50 0.9694072 +4 19.3875 23.265 1000 50 0.97695667 +5 31.02 34.8975 1000 50 0.5924771 +6 34.8975 38.775 1000 50 0.71962756 +7 46.53 50.4075 1000 50 0.7380249 +8 54.285 58.162499999999994 1000 50 0.92169106 +9 58.1625 62.04 1000 50 0.9627603 +10 62.04 65.9175 1000 50 0.988832 +11 85.305 89.1825 1000 50 0.93589664 +12 93.06 96.9375 1000 50 0.9592277 +13 96.9375 100.815 1000 50 0.9902029 +14 104.6925 108.57 1000 50 0.97127724 +15 108.57 112.44749999999999 1000 50 0.77624536 +16 112.4475 116.325 1000 50 0.90863764 +17 120.2025 124.08 1000 50 0.62218356 +18 151.2225 155.1 1000 50 0.8605561 +19 158.9775 162.855 1000 50 0.72658515 +20 162.855 166.7325 1000 50 0.81217617 +21 166.7325 170.60999999999999 1000 50 0.7440315 +22 182.2425 186.12 1000 50 0.50285953 +23 189.9975 193.875 1000 50 0.5661521 +24 193.875 197.7525 1000 50 0.59350216 +25 197.7525 201.63 1000 50 0.79882795 +26 209.385 213.2625 1000 50 0.90023893 +27 213.2625 217.14 1000 50 0.9999788 +28 221.0175 224.895 1000 50 0.8878523 +29 228.7725 232.65 1000 50 0.9684617 +30 232.65 236.5275 1000 50 0.76702523 +31 240.405 244.2825 1000 50 0.9859698 +32 244.2825 248.16 1000 50 0.81883544 +33 252.0375 255.915 1000 50 0.8112772 +34 259.7925 263.67 1000 50 0.66220534 +35 263.67 267.5475 1000 50 0.8051092 +36 275.3025 279.18 1000 50 0.94313926 +37 290.8125 294.69 1000 50 0.6077347 +38 294.69 298.5675 1000 50 0.8732367 +39 329.5875 333.465 1000 50 0.8449111 +40 337.3425 341.21999999999997 1000 50 0.5344087 +41 352.8525 356.73 1000 50 0.98833615 +42 356.73 360.6075 1000 50 0.83894044 +43 360.6075 364.485 1000 50 0.9497742 +44 368.3625 372.24 1000 50 0.95520204 +45 379.995 383.8725 1000 50 0.99885535 +46 383.8725 387.75 1000 50 0.9415404 +47 387.75 391.6275 1000 50 0.99627614 +48 395.505 399.3825 1000 50 0.51085186 +49 399.3825 403.26 1000 50 0.99965084 +50 407.1375 411.015 1000 50 0.749968 +51 414.8925 418.77 1000 50 0.61180407 +52 426.525 430.4025 1000 50 0.64608645 +53 434.28 438.15749999999997 1000 50 0.7917846 +54 442.035 445.9125 1000 50 0.7551901 +55 449.79 453.6675 1000 50 0.65591836 +56 457.545 461.4225 1000 50 0.5899316 +57 465.3 469.1775 1000 50 0.99960023 +58 469.1775 473.055 1000 50 0.91614735 +59 473.055 476.9325 1000 50 0.88012123 +60 476.9325 480.81 1000 50 0.83329564 +61 480.81 484.6875 1000 50 0.9792931 +62 484.6875 488.565 1000 50 0.81740123 +63 488.565 492.4425 1000 50 0.9967353 +64 492.4425 496.32 1000 50 0.7794131 +65 496.32 500.1975 1000 50 0.5166834 +66 500.1975 504.075 1000 50 0.99685967 +67 507.9525 511.83 1000 50 0.80481887 +68 515.7075 519.585 1000 50 0.58046526 +69 523.4625 527.34 1000 50 0.61918414 +70 527.34 531.2175000000001 1000 50 0.76735014 +71 531.2175 535.095 1000 50 0.5608843 +72 546.7275 550.605 1000 50 0.9944291 +73 550.605 554.4825000000001 1000 50 0.75271446 +74 554.4825 558.36 1000 50 0.6027979 +75 562.2375 566.115 1000 50 0.72468764 +76 569.9925 573.87 1000 50 0.7566765 +77 593.2575 597.1350000000001 1000 50 0.94912726 +78 597.135 601.0125 1000 50 0.91551894 +79 608.7675 612.6450000000001 1000 50 0.7781884 +80 624.2775 628.1550000000001 1000 50 0.89246 +81 632.0325 635.9100000000001 1000 50 0.7538129 +82 639.7875 643.6650000000001 1000 50 0.6841582 +83 651.42 655.2975 1000 50 0.99852604 +84 663.0525 666.9300000000001 1000 50 0.9506471 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_21-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_21-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..fbf5783c3578667eecd70db94400bff4f22b0da3 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_21-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,28 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 19.3875 23.265 1000 50 0.79155934 +2 34.8975 38.775 1000 50 0.5109254 +3 96.9375 100.815 1000 50 0.95629257 +4 100.815 104.6925 1000 50 0.64047104 +5 158.9775 162.855 1000 50 0.5756269 +6 162.855 166.7325 1000 50 0.62473935 +7 240.405 244.2825 1000 50 0.5700059 +8 259.7925 263.67 1000 50 0.98950875 +9 279.18 283.0575 1000 50 0.61653095 +10 298.5675 302.445 1000 50 0.77840996 +11 352.8525 356.73 1000 50 0.8546112 +12 360.6075 364.485 1000 50 0.5706873 +13 387.75 391.6275 1000 50 0.673656 +14 399.3825 403.26 1000 50 0.5002904 +15 434.28 438.15749999999997 1000 50 0.67875886 +16 476.9325 480.81 1000 50 0.6944048 +17 527.34 531.2175000000001 1000 50 0.51873136 +18 546.7275 550.605 1000 50 0.61728764 +19 573.87 577.7475000000001 1000 50 0.9676599 +20 585.5025 589.3800000000001 1000 50 0.8117068 +21 628.155 632.0325 1000 50 0.58043253 +22 635.91 639.7875 1000 50 0.5399639 +23 663.0525 666.9300000000001 1000 50 0.52134234 +24 728.97 732.8475000000001 1000 50 0.9556656 +25 868.56 872.4375 1000 50 0.72952944 +26 899.58 903.4575000000001 1000 50 0.7405523 +27 911.2125 915.09 1000 50 0.7447611 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_21-18-59_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_21-18-59_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..64854a34aa123e7607b3f08f3421eb55498256c9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_21-18-59_annot_2022-11-30_01.txt @@ -0,0 +1,10 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 23.265 27.142500000000002 1000 50 0.5415865 +2 50.4075 54.285 1000 50 0.6165017 +3 77.55 81.4275 1000 50 0.5576622 +4 131.835 135.7125 1000 50 0.5639594 +5 170.61 174.4875 1000 50 0.98322636 +6 189.9975 193.875 1000 50 0.69788736 +7 290.8125 294.69 1000 50 0.5044246 +8 337.3425 341.21999999999997 1000 50 0.7387945 +9 345.0975 348.975 1000 50 0.54113877 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_22-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_22-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..595f57f72d008c5b049aa4f7b90bb779714d3931 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_22-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,92 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.56611323 +2 7.755 11.6325 1000 50 0.90220904 +3 15.51 19.3875 1000 50 0.864967 +4 19.3875 23.265 1000 50 0.88780373 +5 23.265 27.142500000000002 1000 50 0.86107713 +6 34.8975 38.775 1000 50 0.5979851 +7 46.53 50.4075 1000 50 0.74102306 +8 77.55 81.4275 1000 50 0.98858494 +9 112.4475 116.325 1000 50 0.8900798 +10 120.2025 124.08 1000 50 0.7583262 +11 124.08 127.9575 1000 50 0.72067666 +12 155.1 158.9775 1000 50 0.87074614 +13 174.4875 178.365 1000 50 0.8390094 +14 178.365 182.2425 1000 50 0.7576526 +15 221.0175 224.895 1000 50 0.6581787 +16 240.405 244.2825 1000 50 0.5936649 +17 263.67 267.5475 1000 50 0.66912216 +18 271.425 275.3025 1000 50 0.5688493 +19 290.8125 294.69 1000 50 0.50671554 +20 302.445 306.3225 1000 50 0.6871523 +21 337.3425 341.21999999999997 1000 50 0.6166624 +22 352.8525 356.73 1000 50 0.76422733 +23 360.6075 364.485 1000 50 0.5867025 +24 364.485 368.3625 1000 50 0.71343595 +25 368.3625 372.24 1000 50 0.5594263 +26 407.1375 411.015 1000 50 0.8211877 +27 453.6675 457.545 1000 50 0.7135248 +28 457.545 461.4225 1000 50 0.95738083 +29 461.4225 465.3 1000 50 0.99362344 +30 469.1775 473.055 1000 50 0.6930467 +31 473.055 476.9325 1000 50 0.6949156 +32 476.9325 480.81 1000 50 0.6259959 +33 488.565 492.4425 1000 50 0.63499725 +34 500.1975 504.075 1000 50 0.6641523 +35 531.2175 535.095 1000 50 0.7062157 +36 546.7275 550.605 1000 50 0.5179667 +37 558.36 562.2375000000001 1000 50 0.94509184 +38 597.135 601.0125 1000 50 0.78009427 +39 601.0125 604.8900000000001 1000 50 0.54188603 +40 624.2775 628.1550000000001 1000 50 0.6479497 +41 632.0325 635.9100000000001 1000 50 0.7596746 +42 639.7875 643.6650000000001 1000 50 0.69717336 +43 647.5425 651.4200000000001 1000 50 0.7605108 +44 655.2975 659.1750000000001 1000 50 0.7773182 +45 670.8075 674.6850000000001 1000 50 0.90609896 +46 694.0725 697.95 1000 50 0.7295929 +47 697.95 701.8275000000001 1000 50 0.8903401 +48 701.8275 705.705 1000 50 0.76164526 +49 717.3375 721.215 1000 50 0.76026565 +50 756.1125 759.99 1000 50 0.9982551 +51 759.99 763.8675000000001 1000 50 0.64743894 +52 763.8675 767.745 1000 50 0.6925897 +53 767.745 771.6225000000001 1000 50 0.9369908 +54 775.5 779.3775 1000 50 0.98870975 +55 787.1325 791.0100000000001 1000 50 0.99937904 +56 802.6425 806.5200000000001 1000 50 0.9968977 +57 806.52 810.3975 1000 50 0.7576291 +58 814.275 818.1525 1000 50 0.9855193 +59 818.1525 822.0300000000001 1000 50 0.9895587 +60 822.03 825.9075 1000 50 0.6438504 +61 833.6625 837.5400000000001 1000 50 0.6839489 +62 837.54 841.4175 1000 50 0.75737745 +63 856.9275 860.8050000000001 1000 50 0.9725519 +64 860.805 864.6825 1000 50 0.5450785 +65 864.6825 868.5600000000001 1000 50 0.87034845 +66 868.56 872.4375 1000 50 0.8394155 +67 880.1925 884.07 1000 50 0.88554543 +68 884.07 887.9475000000001 1000 50 0.5290065 +69 895.7025 899.58 1000 50 0.9788174 +70 907.335 911.2125000000001 1000 50 0.811935 +71 930.6 934.4775000000001 1000 50 0.5144765 +72 934.4775 938.355 1000 50 0.80692047 +73 938.355 942.2325000000001 1000 50 0.97686565 +74 946.11 949.9875000000001 1000 50 0.67196906 +75 949.9875 953.865 1000 50 0.501165 +76 988.7625 992.6400000000001 1000 50 0.5348144 +77 1015.905 1019.7825 1000 50 0.6784006 +78 1031.415 1035.2925 1000 50 0.9164749 +79 1035.2925 1039.17 1000 50 0.8463363 +80 1054.68 1058.5575000000001 1000 50 0.92374563 +81 1066.3125 1070.19 1000 50 0.6334314 +82 1101.21 1105.0875 1000 50 0.5452641 +83 1105.0875 1108.9650000000001 1000 50 0.5210519 +84 1128.3525 1132.23 1000 50 0.6393359 +85 1143.8625 1147.74 1000 50 0.53975844 +86 1171.005 1174.8825000000002 1000 50 0.67962277 +87 1190.3925 1194.27 1000 50 0.99366224 +88 1202.025 1205.9025000000001 1000 50 0.70484847 +89 1205.9025 1209.78 1000 50 0.9634104 +90 1213.6575 1217.535 1000 50 0.6134882 +91 1225.29 1229.1675 1000 50 0.98653144 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_22-24-09_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_22-24-09_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5b39588e583b3c0ab9a1ba8b6f3ab76b9b0d2ad1 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_22-24-09_annot_2022-11-30_01.txt @@ -0,0 +1,6 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.99607277 +2 19.3875 23.265 1000 50 0.78360564 +3 23.265 27.142500000000002 1000 50 0.5264343 +4 27.1425 31.02 1000 50 0.6534998 +5 31.02 34.8975 1000 50 0.61036545 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_23-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_23-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..afea6129010577749c944e2fcf54c0ffdd6075e0 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-16_2kHz/channelA_2021-03-16_23-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,236 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.8963335 +2 11.6325 15.51 1000 50 0.76677763 +3 15.51 19.3875 1000 50 0.9556324 +4 19.3875 23.265 1000 50 0.5417008 +5 23.265 27.142500000000002 1000 50 0.6549252 +6 27.1425 31.02 1000 50 0.9692876 +7 31.02 34.8975 1000 50 0.9461109 +8 34.8975 38.775 1000 50 0.9952356 +9 38.775 42.652499999999996 1000 50 0.9716467 +10 42.6525 46.53 1000 50 0.6730853 +11 50.4075 54.285 1000 50 0.9967764 +12 54.285 58.162499999999994 1000 50 0.9370877 +13 58.1625 62.04 1000 50 0.5537834 +14 62.04 65.9175 1000 50 0.5226687 +15 69.795 73.6725 1000 50 0.7567835 +16 81.4275 85.30499999999999 1000 50 0.8874073 +17 89.1825 93.06 1000 50 0.71267986 +18 93.06 96.9375 1000 50 0.98691654 +19 100.815 104.6925 1000 50 0.7191221 +20 104.6925 108.57 1000 50 0.73834276 +21 108.57 112.44749999999999 1000 50 0.98834085 +22 112.4475 116.325 1000 50 0.8369158 +23 124.08 127.9575 1000 50 0.9781359 +24 127.9575 131.835 1000 50 0.9212602 +25 131.835 135.7125 1000 50 0.9898482 +26 135.7125 139.59 1000 50 0.96573 +27 139.59 143.4675 1000 50 0.9946584 +28 143.4675 147.345 1000 50 0.98630244 +29 147.345 151.2225 1000 50 0.5458837 +30 151.2225 155.1 1000 50 0.7347943 +31 155.1 158.9775 1000 50 0.9628997 +32 158.9775 162.855 1000 50 0.82491195 +33 162.855 166.7325 1000 50 0.52105784 +34 166.7325 170.60999999999999 1000 50 0.72061086 +35 170.61 174.4875 1000 50 0.921735 +36 174.4875 178.365 1000 50 0.9999752 +37 182.2425 186.12 1000 50 0.97283167 +38 189.9975 193.875 1000 50 0.59677285 +39 193.875 197.7525 1000 50 0.9965628 +40 197.7525 201.63 1000 50 0.82986796 +41 201.63 205.5075 1000 50 0.69655377 +42 209.385 213.2625 1000 50 0.8911768 +43 213.2625 217.14 1000 50 0.700881 +44 217.14 221.01749999999998 1000 50 0.9634841 +45 221.0175 224.895 1000 50 0.9224804 +46 232.65 236.5275 1000 50 0.566378 +47 236.5275 240.405 1000 50 0.6560814 +48 240.405 244.2825 1000 50 0.78552866 +49 244.2825 248.16 1000 50 0.51277286 +50 275.3025 279.18 1000 50 0.8572243 +51 286.935 290.8125 1000 50 0.99655247 +52 290.8125 294.69 1000 50 0.6741056 +53 298.5675 302.445 1000 50 0.51900506 +54 310.2 314.0775 1000 50 0.83030427 +55 314.0775 317.955 1000 50 0.76432145 +56 325.71 329.5875 1000 50 0.6175593 +57 329.5875 333.465 1000 50 0.91075194 +58 333.465 337.3425 1000 50 0.9816042 +59 337.3425 341.21999999999997 1000 50 0.99637765 +60 341.22 345.0975 1000 50 0.99568653 +61 345.0975 348.975 1000 50 0.959288 +62 348.975 352.8525 1000 50 0.9085672 +63 360.6075 364.485 1000 50 0.910382 +64 364.485 368.3625 1000 50 0.99005157 +65 368.3625 372.24 1000 50 0.886333 +66 376.1175 379.995 1000 50 0.5234396 +67 379.995 383.8725 1000 50 0.8162147 +68 383.8725 387.75 1000 50 0.9147236 +69 418.77 422.6475 1000 50 0.6379485 +70 438.1575 442.035 1000 50 0.60484 +71 445.9125 449.79 1000 50 0.98815674 +72 453.6675 457.545 1000 50 0.6854098 +73 457.545 461.4225 1000 50 0.99947315 +74 461.4225 465.3 1000 50 0.9773286 +75 465.3 469.1775 1000 50 0.9659045 +76 469.1775 473.055 1000 50 0.9920598 +77 473.055 476.9325 1000 50 0.90930086 +78 476.9325 480.81 1000 50 0.5712204 +79 480.81 484.6875 1000 50 0.9998696 +80 484.6875 488.565 1000 50 0.50751024 +81 488.565 492.4425 1000 50 0.58962387 +82 492.4425 496.32 1000 50 0.7409987 +83 504.075 507.9525 1000 50 0.5236368 +84 507.9525 511.83 1000 50 0.5493337 +85 515.7075 519.585 1000 50 0.9063973 +86 523.4625 527.34 1000 50 0.83526874 +87 531.2175 535.095 1000 50 0.59973854 +88 538.9725 542.85 1000 50 0.7084717 +89 542.85 546.7275000000001 1000 50 0.90437824 +90 558.36 562.2375000000001 1000 50 0.6595534 +91 566.115 569.9925000000001 1000 50 0.58502054 +92 581.625 585.5025 1000 50 0.80009514 +93 589.38 593.2575 1000 50 0.70632976 +94 593.2575 597.1350000000001 1000 50 0.7093062 +95 601.0125 604.8900000000001 1000 50 0.9452136 +96 608.7675 612.6450000000001 1000 50 0.9970823 +97 632.0325 635.9100000000001 1000 50 0.99454087 +98 635.91 639.7875 1000 50 0.8381153 +99 639.7875 643.6650000000001 1000 50 0.689305 +100 643.665 647.5425 1000 50 0.980827 +101 647.5425 651.4200000000001 1000 50 0.7733031 +102 655.2975 659.1750000000001 1000 50 0.9269299 +103 666.93 670.8075 1000 50 0.58087057 +104 670.8075 674.6850000000001 1000 50 0.9899889 +105 674.685 678.5625 1000 50 0.69601226 +106 678.5625 682.44 1000 50 0.87290543 +107 682.44 686.3175000000001 1000 50 0.9828516 +108 690.195 694.0725000000001 1000 50 0.8880557 +109 694.0725 697.95 1000 50 0.810306 +110 713.46 717.3375000000001 1000 50 0.64414525 +111 717.3375 721.215 1000 50 0.6433112 +112 725.0925 728.97 1000 50 0.80641717 +113 744.48 748.3575000000001 1000 50 0.8154812 +114 752.235 756.1125000000001 1000 50 0.56631863 +115 759.99 763.8675000000001 1000 50 0.9623051 +116 763.8675 767.745 1000 50 0.5120582 +117 767.745 771.6225000000001 1000 50 0.82477146 +118 775.5 779.3775 1000 50 0.68676466 +119 791.01 794.8875 1000 50 0.83635575 +120 794.8875 798.7650000000001 1000 50 0.88496995 +121 798.765 802.6425 1000 50 0.8542101 +122 802.6425 806.5200000000001 1000 50 0.8589962 +123 810.3975 814.2750000000001 1000 50 0.6402457 +124 814.275 818.1525 1000 50 0.700374 +125 818.1525 822.0300000000001 1000 50 0.60353816 +126 829.785 833.6625 1000 50 0.7111432 +127 833.6625 837.5400000000001 1000 50 0.7486859 +128 868.56 872.4375 1000 50 0.96501076 +129 876.315 880.1925000000001 1000 50 0.96008825 +130 880.1925 884.07 1000 50 0.6285238 +131 884.07 887.9475000000001 1000 50 0.6517686 +132 887.9475 891.825 1000 50 0.95746005 +133 895.7025 899.58 1000 50 0.97507846 +134 899.58 903.4575000000001 1000 50 0.9988269 +135 907.335 911.2125000000001 1000 50 0.98949194 +136 911.2125 915.09 1000 50 0.7649144 +137 922.845 926.7225000000001 1000 50 0.8109798 +138 930.6 934.4775000000001 1000 50 0.995769 +139 934.4775 938.355 1000 50 0.8878295 +140 942.2325 946.11 1000 50 0.97383296 +141 957.7425 961.62 1000 50 0.76344776 +142 961.62 965.4975000000001 1000 50 0.5429835 +143 965.4975 969.375 1000 50 0.998409 +144 969.375 973.2525 1000 50 0.8789848 +145 977.13 981.0075 1000 50 0.9768027 +146 981.0075 984.8850000000001 1000 50 0.596817 +147 988.7625 992.6400000000001 1000 50 0.7100503 +148 996.5175 1000.3950000000001 1000 50 0.72013533 +149 1000.395 1004.2725 1000 50 0.9800284 +150 1008.15 1012.0275 1000 50 0.6538583 +151 1012.0275 1015.9050000000001 1000 50 0.9928173 +152 1015.905 1019.7825 1000 50 0.5338824 +153 1019.7825 1023.6600000000001 1000 50 0.74250305 +154 1031.415 1035.2925 1000 50 0.98867863 +155 1035.2925 1039.17 1000 50 0.6318885 +156 1039.17 1043.0475000000001 1000 50 0.9996716 +157 1043.0475 1046.925 1000 50 0.8212718 +158 1046.925 1050.8025 1000 50 0.75777423 +159 1050.8025 1054.68 1000 50 0.9631625 +160 1054.68 1058.5575000000001 1000 50 0.9995999 +161 1062.435 1066.3125 1000 50 0.73101455 +162 1066.3125 1070.19 1000 50 0.96087074 +163 1074.0675 1077.9450000000002 1000 50 0.9940386 +164 1077.945 1081.8225 1000 50 0.58527714 +165 1081.8225 1085.7 1000 50 0.51287085 +166 1085.7 1089.5775 1000 50 0.99702126 +167 1093.455 1097.3325 1000 50 0.9129859 +168 1101.21 1105.0875 1000 50 0.9539052 +169 1105.0875 1108.9650000000001 1000 50 0.58902246 +170 1108.965 1112.8425 1000 50 0.91003895 +171 1112.8425 1116.72 1000 50 0.5048577 +172 1116.72 1120.5975 1000 50 0.85653836 +173 1120.5975 1124.4750000000001 1000 50 0.9989623 +174 1124.475 1128.3525 1000 50 0.9140964 +175 1128.3525 1132.23 1000 50 0.9634717 +176 1132.23 1136.1075 1000 50 0.99764866 +177 1136.1075 1139.9850000000001 1000 50 0.98741174 +178 1139.985 1143.8625 1000 50 0.9241401 +179 1143.8625 1147.74 1000 50 0.7472954 +180 1147.74 1151.6175 1000 50 0.99741995 +181 1151.6175 1155.4950000000001 1000 50 0.9256402 +182 1155.495 1159.3725 1000 50 0.9997323 +183 1159.3725 1163.25 1000 50 0.7760843 +184 1163.25 1167.1275 1000 50 0.7410202 +185 1167.1275 1171.005 1000 50 0.7525679 +186 1171.005 1174.8825000000002 1000 50 0.5358995 +187 1174.8825 1178.76 1000 50 0.5977455 +188 1186.515 1190.3925000000002 1000 50 0.9614015 +189 1190.3925 1194.27 1000 50 0.7002517 +190 1198.1475 1202.025 1000 50 0.6232892 +191 1202.025 1205.9025000000001 1000 50 0.5323987 +192 1209.78 1213.6575 1000 50 0.59454983 +193 1221.4125 1225.29 1000 50 0.9999639 +194 1229.1675 1233.045 1000 50 0.9706197 +195 1233.045 1236.9225000000001 1000 50 0.8932147 +196 1240.8 1244.6775 1000 50 0.9956027 +197 1244.6775 1248.555 1000 50 0.8583348 +198 1248.555 1252.4325000000001 1000 50 0.981861 +199 1252.4325 1256.31 1000 50 0.85171765 +200 1256.31 1260.1875 1000 50 0.931301 +201 1260.1875 1264.065 1000 50 0.99640214 +202 1267.9425 1271.8200000000002 1000 50 0.95611775 +203 1271.82 1275.6975 1000 50 0.907659 +204 1275.6975 1279.575 1000 50 0.99586666 +205 1279.575 1283.4525 1000 50 0.9975539 +206 1283.4525 1287.3300000000002 1000 50 0.99924916 +207 1302.84 1306.7175 1000 50 0.8191515 +208 1306.7175 1310.595 1000 50 0.57415056 +209 1310.595 1314.4725 1000 50 0.8661655 +210 1322.2275 1326.105 1000 50 0.7681124 +211 1326.105 1329.9825 1000 50 0.72365755 +212 1333.86 1337.7375 1000 50 0.82646865 +213 1337.7375 1341.615 1000 50 0.54144627 +214 1345.4925 1349.3700000000001 1000 50 0.53809834 +215 1353.2475 1357.125 1000 50 0.64434886 +216 1364.88 1368.7575000000002 1000 50 0.8930449 +217 1368.7575 1372.635 1000 50 0.51238906 +218 1376.5125 1380.39 1000 50 0.7989593 +219 1388.145 1392.0225 1000 50 0.99856573 +220 1392.0225 1395.9 1000 50 0.673685 +221 1407.5325 1411.41 1000 50 0.98549324 +222 1415.2875 1419.165 1000 50 0.59353244 +223 1423.0425 1426.92 1000 50 0.51019096 +224 1434.675 1438.5525 1000 50 0.93941575 +225 1438.5525 1442.43 1000 50 0.9457006 +226 1442.43 1446.3075000000001 1000 50 0.96708673 +227 1446.3075 1450.185 1000 50 0.999913 +228 1450.185 1454.0625 1000 50 0.9994797 +229 1461.8175 1465.6950000000002 1000 50 0.9841754 +230 1469.5725 1473.45 1000 50 0.99519956 +231 1473.45 1477.3275 1000 50 0.9990208 +232 1477.3275 1481.2050000000002 1000 50 0.9999291 +233 1485.0825 1488.96 1000 50 0.9952018 +234 1488.96 1492.8375 1000 50 0.9817758 +235 1492.8375 1496.7150000000001 1000 50 0.9965419 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_00-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_00-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..7a1ecdc949a6651378d571637c649c980d2cc8db --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_00-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,8 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.5422508 +2 15.51 19.3875 1000 50 0.9989022 +3 19.3875 23.265 1000 50 0.57564837 +4 23.265 27.142500000000002 1000 50 0.9962747 +5 27.1425 31.02 1000 50 0.9802188 +6 31.02 34.8975 1000 50 0.99951625 +7 34.8975 38.775 1000 50 0.9222133 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_00-04-23_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_00-04-23_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..7ad60a314577eaeb96414169a79a9da7bf011e7c --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_00-04-23_annot_2022-11-30_01.txt @@ -0,0 +1,269 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.5365782 +2 3.8775 7.755 1000 50 0.97592396 +3 7.755 11.6325 1000 50 0.99998033 +4 11.6325 15.51 1000 50 0.984697 +5 15.51 19.3875 1000 50 0.7950233 +6 19.3875 23.265 1000 50 0.6228503 +7 23.265 27.142500000000002 1000 50 0.9970355 +8 31.02 34.8975 1000 50 0.5372731 +9 34.8975 38.775 1000 50 0.98627895 +10 42.6525 46.53 1000 50 0.53335834 +11 46.53 50.4075 1000 50 0.51229185 +12 50.4075 54.285 1000 50 0.99957746 +13 54.285 58.162499999999994 1000 50 0.9999304 +14 58.1625 62.04 1000 50 0.99717075 +15 62.04 65.9175 1000 50 0.97756314 +16 65.9175 69.795 1000 50 0.99906725 +17 69.795 73.6725 1000 50 0.8965258 +18 73.6725 77.55 1000 50 0.99999964 +19 77.55 81.4275 1000 50 0.9973629 +20 81.4275 85.30499999999999 1000 50 0.99297196 +21 85.305 89.1825 1000 50 0.98807865 +22 89.1825 93.06 1000 50 0.96708953 +23 93.06 96.9375 1000 50 0.98098546 +24 96.9375 100.815 1000 50 0.99501604 +25 100.815 104.6925 1000 50 0.8080821 +26 104.6925 108.57 1000 50 0.7952537 +27 108.57 112.44749999999999 1000 50 0.87877375 +28 112.4475 116.325 1000 50 0.99796873 +29 116.325 120.2025 1000 50 0.85534745 +30 120.2025 124.08 1000 50 0.9900393 +31 124.08 127.9575 1000 50 0.9942478 +32 127.9575 131.835 1000 50 0.9997311 +33 131.835 135.7125 1000 50 0.9999827 +34 135.7125 139.59 1000 50 0.99946207 +35 139.59 143.4675 1000 50 0.9922275 +36 143.4675 147.345 1000 50 0.9998555 +37 147.345 151.2225 1000 50 0.9997595 +38 158.9775 162.855 1000 50 0.9876794 +39 166.7325 170.60999999999999 1000 50 0.9941385 +40 170.61 174.4875 1000 50 0.98877513 +41 174.4875 178.365 1000 50 0.99493533 +42 186.12 189.9975 1000 50 0.70291 +43 189.9975 193.875 1000 50 0.981233 +44 197.7525 201.63 1000 50 0.96983486 +45 201.63 205.5075 1000 50 0.88735485 +46 205.5075 209.385 1000 50 0.527247 +47 209.385 213.2625 1000 50 0.9995128 +48 213.2625 217.14 1000 50 0.98168004 +49 221.0175 224.895 1000 50 0.9992449 +50 224.895 228.7725 1000 50 0.895917 +51 228.7725 232.65 1000 50 0.54547864 +52 232.65 236.5275 1000 50 0.8966086 +53 240.405 244.2825 1000 50 0.99821645 +54 248.16 252.0375 1000 50 0.996014 +55 252.0375 255.915 1000 50 0.7581249 +56 255.915 259.7925 1000 50 0.9540596 +57 259.7925 263.67 1000 50 0.8478993 +58 267.5475 271.425 1000 50 0.88755333 +59 271.425 275.3025 1000 50 0.95840853 +60 279.18 283.0575 1000 50 0.9999138 +61 286.935 290.8125 1000 50 0.9998319 +62 290.8125 294.69 1000 50 0.7145564 +63 298.5675 302.445 1000 50 0.8557395 +64 302.445 306.3225 1000 50 0.9721444 +65 310.2 314.0775 1000 50 0.99591464 +66 317.955 321.8325 1000 50 0.67374486 +67 321.8325 325.71 1000 50 0.8777592 +68 329.5875 333.465 1000 50 0.9736753 +69 341.22 345.0975 1000 50 0.9709526 +70 345.0975 348.975 1000 50 0.67724717 +71 364.485 368.3625 1000 50 0.9104377 +72 368.3625 372.24 1000 50 0.8911355 +73 372.24 376.1175 1000 50 0.999464 +74 376.1175 379.995 1000 50 0.99573034 +75 379.995 383.8725 1000 50 0.9997762 +76 383.8725 387.75 1000 50 0.9794408 +77 387.75 391.6275 1000 50 0.6617735 +78 391.6275 395.505 1000 50 0.999757 +79 395.505 399.3825 1000 50 0.9998609 +80 399.3825 403.26 1000 50 0.537604 +81 403.26 407.1375 1000 50 0.56550777 +82 407.1375 411.015 1000 50 0.53830236 +83 411.015 414.8925 1000 50 0.998063 +84 414.8925 418.77 1000 50 0.920604 +85 418.77 422.6475 1000 50 0.94570494 +86 422.6475 426.525 1000 50 0.9983542 +87 426.525 430.4025 1000 50 0.99484915 +88 434.28 438.15749999999997 1000 50 0.9981071 +89 438.1575 442.035 1000 50 0.99938965 +90 445.9125 449.79 1000 50 0.99429893 +91 449.79 453.6675 1000 50 0.99978596 +92 453.6675 457.545 1000 50 0.99880826 +93 457.545 461.4225 1000 50 0.99782467 +94 461.4225 465.3 1000 50 0.96064657 +95 465.3 469.1775 1000 50 0.9996947 +96 469.1775 473.055 1000 50 0.9997378 +97 473.055 476.9325 1000 50 0.9871563 +98 476.9325 480.81 1000 50 0.99984837 +99 480.81 484.6875 1000 50 0.99932027 +100 484.6875 488.565 1000 50 0.99999094 +101 488.565 492.4425 1000 50 0.996463 +102 492.4425 496.32 1000 50 0.9005155 +103 496.32 500.1975 1000 50 0.75512475 +104 500.1975 504.075 1000 50 0.91017777 +105 504.075 507.9525 1000 50 0.91157436 +106 507.9525 511.83 1000 50 0.81351554 +107 511.83 515.7075 1000 50 0.9999559 +108 515.7075 519.585 1000 50 0.99131763 +109 519.585 523.4625000000001 1000 50 0.72435594 +110 523.4625 527.34 1000 50 0.9959174 +111 531.2175 535.095 1000 50 0.6027578 +112 535.095 538.9725000000001 1000 50 0.9831182 +113 542.85 546.7275000000001 1000 50 0.8898654 +114 546.7275 550.605 1000 50 0.8163992 +115 550.605 554.4825000000001 1000 50 0.99859744 +116 554.4825 558.36 1000 50 0.99040306 +117 558.36 562.2375000000001 1000 50 0.5413405 +118 562.2375 566.115 1000 50 0.9965546 +119 566.115 569.9925000000001 1000 50 0.9446285 +120 569.9925 573.87 1000 50 0.8824987 +121 573.87 577.7475000000001 1000 50 0.7275476 +122 577.7475 581.625 1000 50 0.999775 +123 581.625 585.5025 1000 50 0.9911566 +124 585.5025 589.3800000000001 1000 50 0.99994993 +125 589.38 593.2575 1000 50 0.9998938 +126 593.2575 597.1350000000001 1000 50 0.99971336 +127 597.135 601.0125 1000 50 0.9935335 +128 601.0125 604.8900000000001 1000 50 0.8320688 +129 604.89 608.7675 1000 50 0.99903476 +130 608.7675 612.6450000000001 1000 50 0.9206334 +131 612.645 616.5225 1000 50 0.99979705 +132 616.5225 620.4000000000001 1000 50 0.9999789 +133 620.4 624.2775 1000 50 0.93017095 +134 624.2775 628.1550000000001 1000 50 0.9999653 +135 632.0325 635.9100000000001 1000 50 0.96008736 +136 635.91 639.7875 1000 50 0.9993824 +137 639.7875 643.6650000000001 1000 50 0.5019489 +138 643.665 647.5425 1000 50 0.98927236 +139 647.5425 651.4200000000001 1000 50 0.9987112 +140 651.42 655.2975 1000 50 0.99919635 +141 655.2975 659.1750000000001 1000 50 0.7154778 +142 659.175 663.0525 1000 50 0.9908818 +143 663.0525 666.9300000000001 1000 50 0.7502375 +144 666.93 670.8075 1000 50 0.99999464 +145 670.8075 674.6850000000001 1000 50 0.999941 +146 674.685 678.5625 1000 50 0.9999418 +147 678.5625 682.44 1000 50 0.932987 +148 682.44 686.3175000000001 1000 50 0.94995594 +149 686.3175 690.195 1000 50 0.977629 +150 690.195 694.0725000000001 1000 50 0.9990369 +151 694.0725 697.95 1000 50 0.9060466 +152 697.95 701.8275000000001 1000 50 0.873977 +153 701.8275 705.705 1000 50 0.9789215 +154 705.705 709.5825000000001 1000 50 0.981316 +155 709.5825 713.46 1000 50 0.99656516 +156 713.46 717.3375000000001 1000 50 0.9950199 +157 717.3375 721.215 1000 50 0.98454165 +158 721.215 725.0925000000001 1000 50 0.99374086 +159 725.0925 728.97 1000 50 0.9644809 +160 728.97 732.8475000000001 1000 50 0.5693285 +161 732.8475 736.725 1000 50 0.99946064 +162 736.725 740.6025000000001 1000 50 0.9969441 +163 740.6025 744.48 1000 50 0.9995372 +164 744.48 748.3575000000001 1000 50 0.9822807 +165 748.3575 752.235 1000 50 0.9933804 +166 752.235 756.1125000000001 1000 50 0.9774251 +167 756.1125 759.99 1000 50 0.99975187 +168 759.99 763.8675000000001 1000 50 0.84212124 +169 763.8675 767.745 1000 50 0.9909191 +170 767.745 771.6225000000001 1000 50 0.5361827 +171 771.6225 775.5 1000 50 0.92962956 +172 775.5 779.3775 1000 50 0.9999566 +173 779.3775 783.2550000000001 1000 50 0.9857771 +174 783.255 787.1325 1000 50 0.9999324 +175 787.1325 791.0100000000001 1000 50 0.99993956 +176 791.01 794.8875 1000 50 0.9887892 +177 794.8875 798.7650000000001 1000 50 0.980273 +178 798.765 802.6425 1000 50 0.7773347 +179 810.3975 814.2750000000001 1000 50 0.9830474 +180 825.9075 829.7850000000001 1000 50 0.68922895 +181 829.785 833.6625 1000 50 0.54898113 +182 837.54 841.4175 1000 50 0.8416875 +183 845.295 849.1725 1000 50 0.72449017 +184 849.1725 853.0500000000001 1000 50 0.5788943 +185 864.6825 868.5600000000001 1000 50 0.885131 +186 868.56 872.4375 1000 50 0.99878913 +187 872.4375 876.315 1000 50 0.7539131 +188 876.315 880.1925000000001 1000 50 0.8142232 +189 880.1925 884.07 1000 50 0.9738099 +190 887.9475 891.825 1000 50 0.99856216 +191 891.825 895.7025000000001 1000 50 0.94321746 +192 895.7025 899.58 1000 50 0.88760775 +193 899.58 903.4575000000001 1000 50 0.9807215 +194 903.4575 907.335 1000 50 0.6242929 +195 907.335 911.2125000000001 1000 50 0.99795663 +196 911.2125 915.09 1000 50 0.94102156 +197 915.09 918.9675000000001 1000 50 0.8920658 +198 918.9675 922.845 1000 50 0.84313524 +199 930.6 934.4775000000001 1000 50 0.8290297 +200 938.355 942.2325000000001 1000 50 0.6079905 +201 942.2325 946.11 1000 50 0.9575655 +202 946.11 949.9875000000001 1000 50 0.96997774 +203 949.9875 953.865 1000 50 0.9999279 +204 957.7425 961.62 1000 50 0.99999464 +205 961.62 965.4975000000001 1000 50 0.9999132 +206 965.4975 969.375 1000 50 0.9995091 +207 969.375 973.2525 1000 50 0.9993856 +208 973.2525 977.1300000000001 1000 50 0.9996644 +209 977.13 981.0075 1000 50 0.99605185 +210 981.0075 984.8850000000001 1000 50 0.9998987 +211 984.885 988.7625 1000 50 0.9911175 +212 988.7625 992.6400000000001 1000 50 0.7621038 +213 992.64 996.5175 1000 50 0.9431343 +214 996.5175 1000.3950000000001 1000 50 0.965869 +215 1000.395 1004.2725 1000 50 0.9733148 +216 1004.2725 1008.1500000000001 1000 50 0.9994925 +217 1008.15 1012.0275 1000 50 0.9967319 +218 1019.7825 1023.6600000000001 1000 50 0.99779093 +219 1023.66 1027.5375 1000 50 0.99998224 +220 1027.5375 1031.415 1000 50 0.9673594 +221 1031.415 1035.2925 1000 50 0.5000373 +222 1035.2925 1039.17 1000 50 0.99878794 +223 1039.17 1043.0475000000001 1000 50 0.6075831 +224 1043.0475 1046.925 1000 50 0.5890992 +225 1046.925 1050.8025 1000 50 0.96928954 +226 1050.8025 1054.68 1000 50 0.9987243 +227 1058.5575 1062.435 1000 50 0.99712914 +228 1062.435 1066.3125 1000 50 0.7930213 +229 1066.3125 1070.19 1000 50 0.79829943 +230 1070.19 1074.0675 1000 50 0.89188915 +231 1074.0675 1077.9450000000002 1000 50 0.69590944 +232 1077.945 1081.8225 1000 50 0.9159537 +233 1081.8225 1085.7 1000 50 0.8801046 +234 1085.7 1089.5775 1000 50 0.9922529 +235 1089.5775 1093.4550000000002 1000 50 0.9985625 +236 1093.455 1097.3325 1000 50 0.9941402 +237 1097.3325 1101.21 1000 50 0.99671483 +238 1101.21 1105.0875 1000 50 0.6429135 +239 1105.0875 1108.9650000000001 1000 50 0.93106943 +240 1108.965 1112.8425 1000 50 0.99787736 +241 1112.8425 1116.72 1000 50 0.99289024 +242 1116.72 1120.5975 1000 50 0.99499327 +243 1120.5975 1124.4750000000001 1000 50 0.9999814 +244 1124.475 1128.3525 1000 50 0.926964 +245 1128.3525 1132.23 1000 50 0.9600196 +246 1132.23 1136.1075 1000 50 0.998611 +247 1136.1075 1139.9850000000001 1000 50 0.7209594 +248 1143.8625 1147.74 1000 50 0.86096895 +249 1151.6175 1155.4950000000001 1000 50 0.67760897 +250 1155.495 1159.3725 1000 50 0.99999833 +251 1159.3725 1163.25 1000 50 0.9820255 +252 1163.25 1167.1275 1000 50 0.9507221 +253 1167.1275 1171.005 1000 50 0.99831116 +254 1171.005 1174.8825000000002 1000 50 0.6907693 +255 1174.8825 1178.76 1000 50 0.98926187 +256 1178.76 1182.6375 1000 50 0.7518977 +257 1182.6375 1186.515 1000 50 0.9998332 +258 1190.3925 1194.27 1000 50 0.56929564 +259 1194.27 1198.1475 1000 50 0.9355696 +260 1202.025 1205.9025000000001 1000 50 0.9872699 +261 1205.9025 1209.78 1000 50 0.71099246 +262 1213.6575 1217.535 1000 50 0.8121776 +263 1217.535 1221.4125000000001 1000 50 0.99918574 +264 1221.4125 1225.29 1000 50 0.97532165 +265 1225.29 1229.1675 1000 50 0.9995441 +266 1229.1675 1233.045 1000 50 0.9964006 +267 1233.045 1236.9225000000001 1000 50 0.99671894 +268 1236.9225 1240.8 1000 50 0.99894387 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_01-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_01-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..6a2c5d7a162cb786f408172354ea287a78f20651 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_01-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,72 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99670273 +2 3.8775 7.755 1000 50 0.9922374 +3 7.755 11.6325 1000 50 0.99997294 +4 11.6325 15.51 1000 50 0.9999665 +5 15.51 19.3875 1000 50 0.99996245 +6 19.3875 23.265 1000 50 0.9978498 +7 23.265 27.142500000000002 1000 50 0.98221165 +8 27.1425 31.02 1000 50 0.6103437 +9 31.02 34.8975 1000 50 0.8641112 +10 34.8975 38.775 1000 50 0.9947849 +11 38.775 42.652499999999996 1000 50 0.75590664 +12 46.53 50.4075 1000 50 0.9870034 +13 50.4075 54.285 1000 50 0.80112445 +14 54.285 58.162499999999994 1000 50 0.81548935 +15 58.1625 62.04 1000 50 0.9997613 +16 62.04 65.9175 1000 50 0.81517446 +17 65.9175 69.795 1000 50 0.9221613 +18 73.6725 77.55 1000 50 0.5667018 +19 77.55 81.4275 1000 50 0.8360063 +20 81.4275 85.30499999999999 1000 50 0.9761336 +21 85.305 89.1825 1000 50 0.61753076 +22 104.6925 108.57 1000 50 0.93321824 +23 108.57 112.44749999999999 1000 50 0.7967828 +24 112.4475 116.325 1000 50 0.52158886 +25 116.325 120.2025 1000 50 0.9789337 +26 124.08 127.9575 1000 50 0.87464654 +27 127.9575 131.835 1000 50 0.99981636 +28 131.835 135.7125 1000 50 0.73318064 +29 135.7125 139.59 1000 50 0.9458856 +30 139.59 143.4675 1000 50 0.99542904 +31 151.2225 155.1 1000 50 0.9995357 +32 155.1 158.9775 1000 50 0.98610145 +33 158.9775 162.855 1000 50 0.9963875 +34 162.855 166.7325 1000 50 0.9071105 +35 170.61 174.4875 1000 50 0.52425355 +36 174.4875 178.365 1000 50 0.99991 +37 182.2425 186.12 1000 50 0.80712867 +38 186.12 189.9975 1000 50 0.8275533 +39 189.9975 193.875 1000 50 0.99203825 +40 193.875 197.7525 1000 50 0.999132 +41 201.63 205.5075 1000 50 0.80447465 +42 205.5075 209.385 1000 50 0.6993633 +43 209.385 213.2625 1000 50 0.5305079 +44 217.14 221.01749999999998 1000 50 0.9899922 +45 224.895 228.7725 1000 50 0.9564272 +46 232.65 236.5275 1000 50 0.7537188 +47 236.5275 240.405 1000 50 0.9846885 +48 244.2825 248.16 1000 50 0.99701524 +49 248.16 252.0375 1000 50 0.9470886 +50 252.0375 255.915 1000 50 0.9993137 +51 255.915 259.7925 1000 50 0.9999163 +52 271.425 275.3025 1000 50 0.85844827 +53 275.3025 279.18 1000 50 0.9131527 +54 283.0575 286.935 1000 50 0.9878225 +55 286.935 290.8125 1000 50 0.92843676 +56 290.8125 294.69 1000 50 0.9999589 +57 294.69 298.5675 1000 50 0.9976006 +58 302.445 306.3225 1000 50 0.8067459 +59 306.3225 310.2 1000 50 0.9701055 +60 310.2 314.0775 1000 50 0.7230505 +61 317.955 321.8325 1000 50 0.94341654 +62 321.8325 325.71 1000 50 0.55218583 +63 325.71 329.5875 1000 50 0.87146467 +64 329.5875 333.465 1000 50 0.8498643 +65 333.465 337.3425 1000 50 0.9958411 +66 337.3425 341.21999999999997 1000 50 0.7342847 +67 341.22 345.0975 1000 50 0.9946689 +68 345.0975 348.975 1000 50 0.99804246 +69 348.975 352.8525 1000 50 0.9561414 +70 356.73 360.6075 1000 50 0.9981982 +71 360.6075 364.485 1000 50 0.9568481 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_01-09-42_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_01-09-42_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0a40839e59c8b88010922151dbe5f618e0fa4963 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_01-09-42_annot_2022-11-30_01.txt @@ -0,0 +1,174 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9997918 +2 3.8775 7.755 1000 50 0.9999999 +3 7.755 11.6325 1000 50 0.99722505 +4 11.6325 15.51 1000 50 0.99914384 +5 15.51 19.3875 1000 50 0.99990773 +6 19.3875 23.265 1000 50 0.99998486 +7 23.265 27.142500000000002 1000 50 0.9999342 +8 27.1425 31.02 1000 50 0.9999708 +9 31.02 34.8975 1000 50 0.9992811 +10 34.8975 38.775 1000 50 0.99999726 +11 38.775 42.652499999999996 1000 50 0.9994536 +12 42.6525 46.53 1000 50 0.9996075 +13 46.53 50.4075 1000 50 0.98941094 +14 50.4075 54.285 1000 50 0.9999591 +15 54.285 58.162499999999994 1000 50 0.9899539 +16 58.1625 62.04 1000 50 0.9997975 +17 62.04 65.9175 1000 50 0.99675876 +18 65.9175 69.795 1000 50 0.9991135 +19 69.795 73.6725 1000 50 0.9936852 +20 73.6725 77.55 1000 50 0.99764305 +21 77.55 81.4275 1000 50 0.99996924 +22 81.4275 85.30499999999999 1000 50 0.9999826 +23 85.305 89.1825 1000 50 0.9986619 +24 89.1825 93.06 1000 50 0.99136436 +25 93.06 96.9375 1000 50 0.9998354 +26 96.9375 100.815 1000 50 0.99998844 +27 100.815 104.6925 1000 50 0.98552716 +28 104.6925 108.57 1000 50 0.9988055 +29 108.57 112.44749999999999 1000 50 0.98880893 +30 112.4475 116.325 1000 50 0.9705382 +31 131.835 135.7125 1000 50 0.89743245 +32 135.7125 139.59 1000 50 0.9772372 +33 139.59 143.4675 1000 50 0.9960621 +34 143.4675 147.345 1000 50 0.721737 +35 147.345 151.2225 1000 50 0.9998596 +36 151.2225 155.1 1000 50 0.9816451 +37 155.1 158.9775 1000 50 0.50014824 +38 158.9775 162.855 1000 50 0.9978865 +39 162.855 166.7325 1000 50 0.99368286 +40 166.7325 170.60999999999999 1000 50 0.6197734 +41 170.61 174.4875 1000 50 0.60251164 +42 174.4875 178.365 1000 50 0.9661723 +43 178.365 182.2425 1000 50 0.9910026 +44 182.2425 186.12 1000 50 0.7034975 +45 186.12 189.9975 1000 50 0.706459 +46 189.9975 193.875 1000 50 0.7629234 +47 201.63 205.5075 1000 50 0.9988745 +48 205.5075 209.385 1000 50 0.8837326 +49 213.2625 217.14 1000 50 0.5950647 +50 217.14 221.01749999999998 1000 50 0.99231625 +51 228.7725 232.65 1000 50 0.98526025 +52 232.65 236.5275 1000 50 0.8387096 +53 236.5275 240.405 1000 50 0.86893415 +54 244.2825 248.16 1000 50 0.8635462 +55 248.16 252.0375 1000 50 0.72027284 +56 252.0375 255.915 1000 50 0.5877935 +57 255.915 259.7925 1000 50 0.83340716 +58 263.67 267.5475 1000 50 0.6395454 +59 271.425 275.3025 1000 50 0.84318346 +60 283.0575 286.935 1000 50 0.9408218 +61 290.8125 294.69 1000 50 0.9768734 +62 294.69 298.5675 1000 50 0.98942435 +63 310.2 314.0775 1000 50 0.94687146 +64 314.0775 317.955 1000 50 0.594702 +65 317.955 321.8325 1000 50 0.5227685 +66 321.8325 325.71 1000 50 0.6831093 +67 337.3425 341.21999999999997 1000 50 0.9267068 +68 348.975 352.8525 1000 50 0.6996826 +69 352.8525 356.73 1000 50 0.99864846 +70 360.6075 364.485 1000 50 0.97631127 +71 364.485 368.3625 1000 50 0.9996124 +72 372.24 376.1175 1000 50 0.9965804 +73 376.1175 379.995 1000 50 0.7779692 +74 387.75 391.6275 1000 50 0.80122197 +75 391.6275 395.505 1000 50 0.9031833 +76 395.505 399.3825 1000 50 0.9702073 +77 407.1375 411.015 1000 50 0.68274724 +78 411.015 414.8925 1000 50 0.99241966 +79 414.8925 418.77 1000 50 0.740351 +80 418.77 422.6475 1000 50 0.9996166 +81 422.6475 426.525 1000 50 0.81768703 +82 426.525 430.4025 1000 50 0.7917743 +83 430.4025 434.28 1000 50 0.9868507 +84 434.28 438.15749999999997 1000 50 0.99941504 +85 438.1575 442.035 1000 50 0.7218755 +86 442.035 445.9125 1000 50 0.99553525 +87 445.9125 449.79 1000 50 0.99822575 +88 449.79 453.6675 1000 50 0.99999976 +89 453.6675 457.545 1000 50 0.99751866 +90 457.545 461.4225 1000 50 0.99858886 +91 469.1775 473.055 1000 50 0.7613461 +92 473.055 476.9325 1000 50 0.98274684 +93 480.81 484.6875 1000 50 0.85078746 +94 484.6875 488.565 1000 50 0.8848351 +95 488.565 492.4425 1000 50 0.99990475 +96 492.4425 496.32 1000 50 0.99645567 +97 496.32 500.1975 1000 50 0.997292 +98 507.9525 511.83 1000 50 0.95521945 +99 511.83 515.7075 1000 50 0.9936273 +100 515.7075 519.585 1000 50 0.780501 +101 519.585 523.4625000000001 1000 50 0.9946162 +102 523.4625 527.34 1000 50 0.8229347 +103 527.34 531.2175000000001 1000 50 0.9178153 +104 531.2175 535.095 1000 50 0.60035914 +105 535.095 538.9725000000001 1000 50 0.9999913 +106 538.9725 542.85 1000 50 0.9941783 +107 546.7275 550.605 1000 50 0.9990319 +108 550.605 554.4825000000001 1000 50 0.99928385 +109 558.36 562.2375000000001 1000 50 0.9999815 +110 562.2375 566.115 1000 50 0.92577773 +111 566.115 569.9925000000001 1000 50 0.8449215 +112 569.9925 573.87 1000 50 0.9996233 +113 573.87 577.7475000000001 1000 50 0.9991129 +114 577.7475 581.625 1000 50 0.9068369 +115 581.625 585.5025 1000 50 0.9999877 +116 585.5025 589.3800000000001 1000 50 0.99988425 +117 589.38 593.2575 1000 50 0.7689391 +118 593.2575 597.1350000000001 1000 50 0.9999 +119 597.135 601.0125 1000 50 0.9245238 +120 601.0125 604.8900000000001 1000 50 0.975248 +121 604.89 608.7675 1000 50 0.9952153 +122 608.7675 612.6450000000001 1000 50 0.9369344 +123 612.645 616.5225 1000 50 0.966691 +124 616.5225 620.4000000000001 1000 50 0.99860126 +125 620.4 624.2775 1000 50 0.85220706 +126 624.2775 628.1550000000001 1000 50 0.83019537 +127 632.0325 635.9100000000001 1000 50 0.96803844 +128 639.7875 643.6650000000001 1000 50 0.6326885 +129 643.665 647.5425 1000 50 0.55808574 +130 655.2975 659.1750000000001 1000 50 0.95047003 +131 659.175 663.0525 1000 50 0.872102 +132 670.8075 674.6850000000001 1000 50 0.9948074 +133 682.44 686.3175000000001 1000 50 0.91627115 +134 690.195 694.0725000000001 1000 50 0.827969 +135 694.0725 697.95 1000 50 0.88724774 +136 709.5825 713.46 1000 50 0.6241726 +137 713.46 717.3375000000001 1000 50 0.77321583 +138 717.3375 721.215 1000 50 0.8856652 +139 721.215 725.0925000000001 1000 50 0.7502846 +140 725.0925 728.97 1000 50 0.65425044 +141 728.97 732.8475000000001 1000 50 0.9868494 +142 736.725 740.6025000000001 1000 50 0.76642007 +143 740.6025 744.48 1000 50 0.99390936 +144 756.1125 759.99 1000 50 0.5599569 +145 759.99 763.8675000000001 1000 50 0.99971265 +146 771.6225 775.5 1000 50 0.9745812 +147 775.5 779.3775 1000 50 0.6746651 +148 783.255 787.1325 1000 50 0.6180708 +149 787.1325 791.0100000000001 1000 50 0.78355527 +150 791.01 794.8875 1000 50 0.50825226 +151 794.8875 798.7650000000001 1000 50 0.7949815 +152 802.6425 806.5200000000001 1000 50 0.58815014 +153 810.3975 814.2750000000001 1000 50 0.8205232 +154 814.275 818.1525 1000 50 0.91945475 +155 818.1525 822.0300000000001 1000 50 0.8277978 +156 822.03 825.9075 1000 50 0.7630115 +157 829.785 833.6625 1000 50 0.7941351 +158 833.6625 837.5400000000001 1000 50 0.82281333 +159 837.54 841.4175 1000 50 0.5768605 +160 841.4175 845.2950000000001 1000 50 0.5165176 +161 845.295 849.1725 1000 50 0.5099036 +162 856.9275 860.8050000000001 1000 50 0.5974935 +163 876.315 880.1925000000001 1000 50 0.5030091 +164 880.1925 884.07 1000 50 0.81899464 +165 887.9475 891.825 1000 50 0.99993765 +166 891.825 895.7025000000001 1000 50 0.99989104 +167 895.7025 899.58 1000 50 0.72544324 +168 899.58 903.4575000000001 1000 50 0.9965186 +169 903.4575 907.335 1000 50 0.9225497 +170 907.335 911.2125000000001 1000 50 0.5602076 +171 911.2125 915.09 1000 50 0.8213763 +172 915.09 918.9675000000001 1000 50 0.93574595 +173 918.9675 922.845 1000 50 0.9710688 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_02-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_02-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..c2add9ede4eb36744c2e9d3356832d2436d0bdf9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_02-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,134 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.8958476 +2 7.755 11.6325 1000 50 0.98371834 +3 11.6325 15.51 1000 50 0.8287968 +4 15.51 19.3875 1000 50 0.64656055 +5 19.3875 23.265 1000 50 0.99222356 +6 31.02 34.8975 1000 50 0.5287749 +7 34.8975 38.775 1000 50 0.722909 +8 38.775 42.652499999999996 1000 50 0.5692336 +9 42.6525 46.53 1000 50 0.5353219 +10 62.04 65.9175 1000 50 0.90137 +11 65.9175 69.795 1000 50 0.7013205 +12 69.795 73.6725 1000 50 0.51818204 +13 73.6725 77.55 1000 50 0.6147367 +14 77.55 81.4275 1000 50 0.98739225 +15 81.4275 85.30499999999999 1000 50 0.95029485 +16 85.305 89.1825 1000 50 0.8642259 +17 89.1825 93.06 1000 50 0.6274743 +18 93.06 96.9375 1000 50 0.668022 +19 96.9375 100.815 1000 50 0.6290224 +20 100.815 104.6925 1000 50 0.8985332 +21 104.6925 108.57 1000 50 0.9476778 +22 108.57 112.44749999999999 1000 50 0.9978846 +23 112.4475 116.325 1000 50 0.68661165 +24 116.325 120.2025 1000 50 0.6499629 +25 120.2025 124.08 1000 50 0.6486301 +26 131.835 135.7125 1000 50 0.9196001 +27 135.7125 139.59 1000 50 0.50156134 +28 139.59 143.4675 1000 50 0.6319177 +29 143.4675 147.345 1000 50 0.68455297 +30 147.345 151.2225 1000 50 0.9871273 +31 151.2225 155.1 1000 50 0.7210002 +32 158.9775 162.855 1000 50 0.93248075 +33 162.855 166.7325 1000 50 0.6423382 +34 166.7325 170.60999999999999 1000 50 0.5787382 +35 178.365 182.2425 1000 50 0.774636 +36 186.12 189.9975 1000 50 0.5425397 +37 193.875 197.7525 1000 50 0.58139575 +38 197.7525 201.63 1000 50 0.5887515 +39 201.63 205.5075 1000 50 0.97700876 +40 205.5075 209.385 1000 50 0.87681663 +41 209.385 213.2625 1000 50 0.8973812 +42 221.0175 224.895 1000 50 0.72977364 +43 228.7725 232.65 1000 50 0.9994721 +44 232.65 236.5275 1000 50 0.84737986 +45 236.5275 240.405 1000 50 0.91530746 +46 240.405 244.2825 1000 50 0.98638284 +47 244.2825 248.16 1000 50 0.54860073 +48 248.16 252.0375 1000 50 0.8291438 +49 252.0375 255.915 1000 50 0.9987149 +50 255.915 259.7925 1000 50 0.6483269 +51 259.7925 263.67 1000 50 0.51073176 +52 263.67 267.5475 1000 50 0.69039214 +53 267.5475 271.425 1000 50 0.9999778 +54 271.425 275.3025 1000 50 0.9908669 +55 275.3025 279.18 1000 50 0.78372467 +56 279.18 283.0575 1000 50 0.9881557 +57 283.0575 286.935 1000 50 0.99999976 +58 286.935 290.8125 1000 50 0.96074855 +59 290.8125 294.69 1000 50 0.9919767 +60 294.69 298.5675 1000 50 0.99914384 +61 298.5675 302.445 1000 50 0.79859394 +62 306.3225 310.2 1000 50 0.999907 +63 310.2 314.0775 1000 50 0.999969 +64 314.0775 317.955 1000 50 0.76030815 +65 317.955 321.8325 1000 50 0.9999969 +66 321.8325 325.71 1000 50 0.9999633 +67 325.71 329.5875 1000 50 0.8097565 +68 329.5875 333.465 1000 50 0.89712703 +69 333.465 337.3425 1000 50 0.9572447 +70 337.3425 341.21999999999997 1000 50 0.999734 +71 341.22 345.0975 1000 50 0.9999857 +72 345.0975 348.975 1000 50 0.999998 +73 348.975 352.8525 1000 50 0.82620114 +74 352.8525 356.73 1000 50 0.99989784 +75 356.73 360.6075 1000 50 0.983827 +76 360.6075 364.485 1000 50 0.99343663 +77 364.485 368.3625 1000 50 0.9997373 +78 368.3625 372.24 1000 50 0.99395233 +79 372.24 376.1175 1000 50 0.99125695 +80 376.1175 379.995 1000 50 0.9973412 +81 383.8725 387.75 1000 50 0.99983764 +82 387.75 391.6275 1000 50 0.999974 +83 391.6275 395.505 1000 50 0.9763999 +84 395.505 399.3825 1000 50 0.9940042 +85 399.3825 403.26 1000 50 0.99230266 +86 403.26 407.1375 1000 50 0.9982881 +87 407.1375 411.015 1000 50 0.98741883 +88 411.015 414.8925 1000 50 0.9998969 +89 414.8925 418.77 1000 50 0.99220467 +90 418.77 422.6475 1000 50 0.85430217 +91 422.6475 426.525 1000 50 0.99862885 +92 426.525 430.4025 1000 50 0.99978703 +93 430.4025 434.28 1000 50 0.9993754 +94 434.28 438.15749999999997 1000 50 0.9100457 +95 438.1575 442.035 1000 50 0.9853124 +96 445.9125 449.79 1000 50 0.9215637 +97 449.79 453.6675 1000 50 0.999974 +98 453.6675 457.545 1000 50 0.9993926 +99 457.545 461.4225 1000 50 0.98966473 +100 461.4225 465.3 1000 50 0.9830117 +101 465.3 469.1775 1000 50 0.9970354 +102 469.1775 473.055 1000 50 0.8642086 +103 473.055 476.9325 1000 50 0.9758893 +104 480.81 484.6875 1000 50 0.54532516 +105 484.6875 488.565 1000 50 0.74996334 +106 492.4425 496.32 1000 50 0.97035104 +107 496.32 500.1975 1000 50 0.8221053 +108 500.1975 504.075 1000 50 0.99472976 +109 511.83 515.7075 1000 50 0.6549713 +110 519.585 523.4625000000001 1000 50 0.99683857 +111 538.9725 542.85 1000 50 0.98981255 +112 542.85 546.7275000000001 1000 50 0.9725772 +113 550.605 554.4825000000001 1000 50 0.96466243 +114 558.36 562.2375000000001 1000 50 0.9440825 +115 562.2375 566.115 1000 50 0.6153905 +116 566.115 569.9925000000001 1000 50 0.55391103 +117 569.9925 573.87 1000 50 0.6067582 +118 573.87 577.7475000000001 1000 50 0.9499062 +119 577.7475 581.625 1000 50 0.9875185 +120 585.5025 589.3800000000001 1000 50 0.9453851 +121 589.38 593.2575 1000 50 0.7791671 +122 593.2575 597.1350000000001 1000 50 0.9307287 +123 597.135 601.0125 1000 50 0.99884725 +124 601.0125 604.8900000000001 1000 50 0.809591 +125 604.89 608.7675 1000 50 0.9956825 +126 620.4 624.2775 1000 50 0.99560475 +127 624.2775 628.1550000000001 1000 50 0.8098662 +128 628.155 632.0325 1000 50 0.6024039 +129 632.0325 635.9100000000001 1000 50 0.73036075 +130 639.7875 643.6650000000001 1000 50 0.8515363 +131 655.2975 659.1750000000001 1000 50 0.62068844 +132 666.93 670.8075 1000 50 0.5135027 +133 678.5625 682.44 1000 50 0.7668353 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_02-15-02_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_02-15-02_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..9cd3d486e38f797d6d4055301ffa25b2d026e497 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_02-15-02_annot_2022-11-30_01.txt @@ -0,0 +1,109 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.6550821 +2 7.755 11.6325 1000 50 0.845925 +3 11.6325 15.51 1000 50 0.83677065 +4 23.265 27.142500000000002 1000 50 0.5654085 +5 27.1425 31.02 1000 50 0.7936172 +6 31.02 34.8975 1000 50 0.6433473 +7 34.8975 38.775 1000 50 0.96827525 +8 38.775 42.652499999999996 1000 50 0.8955847 +9 42.6525 46.53 1000 50 0.9952678 +10 54.285 58.162499999999994 1000 50 0.7751554 +11 58.1625 62.04 1000 50 0.8313582 +12 65.9175 69.795 1000 50 0.74495876 +13 69.795 73.6725 1000 50 0.99676216 +14 73.6725 77.55 1000 50 0.93458575 +15 77.55 81.4275 1000 50 0.8533539 +16 81.4275 85.30499999999999 1000 50 0.67518127 +17 85.305 89.1825 1000 50 0.9999969 +18 89.1825 93.06 1000 50 0.6301307 +19 93.06 96.9375 1000 50 0.8865545 +20 96.9375 100.815 1000 50 0.99981254 +21 104.6925 108.57 1000 50 0.64314103 +22 108.57 112.44749999999999 1000 50 0.99991906 +23 112.4475 116.325 1000 50 0.9979475 +24 120.2025 124.08 1000 50 0.99901974 +25 124.08 127.9575 1000 50 0.9494838 +26 127.9575 131.835 1000 50 0.69196206 +27 131.835 135.7125 1000 50 0.9973911 +28 135.7125 139.59 1000 50 0.99868613 +29 143.4675 147.345 1000 50 0.9993824 +30 147.345 151.2225 1000 50 0.9718755 +31 151.2225 155.1 1000 50 0.5753416 +32 155.1 158.9775 1000 50 0.84095126 +33 158.9775 162.855 1000 50 0.8616892 +34 166.7325 170.60999999999999 1000 50 0.9997874 +35 170.61 174.4875 1000 50 0.99134845 +36 178.365 182.2425 1000 50 0.9807546 +37 182.2425 186.12 1000 50 0.82919365 +38 189.9975 193.875 1000 50 0.9119632 +39 197.7525 201.63 1000 50 0.8697029 +40 201.63 205.5075 1000 50 0.91805094 +41 205.5075 209.385 1000 50 0.84903634 +42 209.385 213.2625 1000 50 0.74183476 +43 213.2625 217.14 1000 50 0.79711175 +44 217.14 221.01749999999998 1000 50 0.72277874 +45 224.895 228.7725 1000 50 0.83664995 +46 228.7725 232.65 1000 50 0.58605343 +47 236.5275 240.405 1000 50 0.62630767 +48 240.405 244.2825 1000 50 0.9388124 +49 244.2825 248.16 1000 50 0.6744594 +50 248.16 252.0375 1000 50 0.61539954 +51 252.0375 255.915 1000 50 0.9586836 +52 255.915 259.7925 1000 50 0.99999523 +53 259.7925 263.67 1000 50 0.93392795 +54 267.5475 271.425 1000 50 0.7235902 +55 271.425 275.3025 1000 50 0.50293887 +56 275.3025 279.18 1000 50 0.9985611 +57 290.8125 294.69 1000 50 0.78623176 +58 294.69 298.5675 1000 50 0.6767485 +59 302.445 306.3225 1000 50 0.88606614 +60 306.3225 310.2 1000 50 0.99562657 +61 314.0775 317.955 1000 50 0.9275346 +62 317.955 321.8325 1000 50 0.99916387 +63 321.8325 325.71 1000 50 0.9811078 +64 333.465 337.3425 1000 50 0.8888037 +65 337.3425 341.21999999999997 1000 50 0.8218953 +66 341.22 345.0975 1000 50 0.94439125 +67 348.975 352.8525 1000 50 0.94111013 +68 352.8525 356.73 1000 50 0.70766467 +69 360.6075 364.485 1000 50 0.61985976 +70 372.24 376.1175 1000 50 0.65360326 +71 376.1175 379.995 1000 50 0.911884 +72 379.995 383.8725 1000 50 0.9977538 +73 387.75 391.6275 1000 50 0.6863301 +74 391.6275 395.505 1000 50 0.64958274 +75 395.505 399.3825 1000 50 0.54801226 +76 399.3825 403.26 1000 50 0.9858947 +77 403.26 407.1375 1000 50 0.79915893 +78 411.015 414.8925 1000 50 0.76562583 +79 418.77 422.6475 1000 50 0.6020362 +80 422.6475 426.525 1000 50 0.94481146 +81 430.4025 434.28 1000 50 0.68500495 +82 438.1575 442.035 1000 50 0.9150143 +83 445.9125 449.79 1000 50 0.7052408 +84 449.79 453.6675 1000 50 0.61804533 +85 461.4225 465.3 1000 50 0.7467064 +86 465.3 469.1775 1000 50 0.64258045 +87 469.1775 473.055 1000 50 0.6082112 +88 484.6875 488.565 1000 50 0.8808977 +89 488.565 492.4425 1000 50 0.8224535 +90 492.4425 496.32 1000 50 0.9747961 +91 496.32 500.1975 1000 50 0.66665745 +92 500.1975 504.075 1000 50 0.553757 +93 504.075 507.9525 1000 50 0.7474026 +94 515.7075 519.585 1000 50 0.999071 +95 523.4625 527.34 1000 50 0.9938611 +96 527.34 531.2175000000001 1000 50 0.7364686 +97 535.095 538.9725000000001 1000 50 0.9630485 +98 538.9725 542.85 1000 50 0.99532986 +99 546.7275 550.605 1000 50 0.6597008 +100 550.605 554.4825000000001 1000 50 0.988064 +101 554.4825 558.36 1000 50 0.9973354 +102 558.36 562.2375000000001 1000 50 0.9518994 +103 562.2375 566.115 1000 50 0.79581004 +104 566.115 569.9925000000001 1000 50 0.6255904 +105 569.9925 573.87 1000 50 0.9945661 +106 577.7475 581.625 1000 50 0.8347403 +107 585.5025 589.3800000000001 1000 50 0.9006986 +108 589.38 593.2575 1000 50 0.97584426 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_03-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_03-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e9db1aa6f898dadab1f14cd15d0a12a6ca34f7aa --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_03-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,217 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.5080105 +2 11.6325 15.51 1000 50 0.5590737 +3 15.51 19.3875 1000 50 0.9260269 +4 23.265 27.142500000000002 1000 50 0.8896523 +5 27.1425 31.02 1000 50 0.9694587 +6 31.02 34.8975 1000 50 0.51631874 +7 34.8975 38.775 1000 50 0.6245593 +8 38.775 42.652499999999996 1000 50 0.9085884 +9 42.6525 46.53 1000 50 0.736053 +10 46.53 50.4075 1000 50 0.5804818 +11 58.1625 62.04 1000 50 0.8545465 +12 62.04 65.9175 1000 50 0.75669956 +13 65.9175 69.795 1000 50 0.7388176 +14 69.795 73.6725 1000 50 0.64146125 +15 77.55 81.4275 1000 50 0.79940605 +16 81.4275 85.30499999999999 1000 50 0.8159225 +17 93.06 96.9375 1000 50 0.91461027 +18 96.9375 100.815 1000 50 0.9977156 +19 100.815 104.6925 1000 50 0.9975889 +20 104.6925 108.57 1000 50 0.9998149 +21 108.57 112.44749999999999 1000 50 0.9955283 +22 112.4475 116.325 1000 50 0.997855 +23 116.325 120.2025 1000 50 0.59381515 +24 120.2025 124.08 1000 50 0.99990463 +25 124.08 127.9575 1000 50 0.9903859 +26 127.9575 131.835 1000 50 0.9279643 +27 131.835 135.7125 1000 50 0.9999914 +28 135.7125 139.59 1000 50 0.9999999 +29 139.59 143.4675 1000 50 0.999749 +30 143.4675 147.345 1000 50 0.99998593 +31 147.345 151.2225 1000 50 0.99992776 +32 151.2225 155.1 1000 50 1.0 +33 155.1 158.9775 1000 50 0.99999905 +34 158.9775 162.855 1000 50 0.9999999 +35 162.855 166.7325 1000 50 0.99999976 +36 166.7325 170.60999999999999 1000 50 1.0 +37 170.61 174.4875 1000 50 1.0 +38 174.4875 178.365 1000 50 0.9999994 +39 178.365 182.2425 1000 50 0.9999857 +40 182.2425 186.12 1000 50 0.9998815 +41 186.12 189.9975 1000 50 0.99796057 +42 189.9975 193.875 1000 50 0.99998665 +43 193.875 197.7525 1000 50 1.0 +44 197.7525 201.63 1000 50 0.9999988 +45 201.63 205.5075 1000 50 1.0 +46 205.5075 209.385 1000 50 0.99998677 +47 209.385 213.2625 1000 50 0.9999999 +48 213.2625 217.14 1000 50 0.999987 +49 217.14 221.01749999999998 1000 50 0.99999964 +50 221.0175 224.895 1000 50 0.99999833 +51 224.895 228.7725 1000 50 0.9999956 +52 228.7725 232.65 1000 50 0.99861634 +53 232.65 236.5275 1000 50 0.99999154 +54 236.5275 240.405 1000 50 0.97597367 +55 240.405 244.2825 1000 50 0.9999782 +56 244.2825 248.16 1000 50 0.99949586 +57 248.16 252.0375 1000 50 0.9982834 +58 252.0375 255.915 1000 50 0.9922753 +59 255.915 259.7925 1000 50 0.9969574 +60 259.7925 263.67 1000 50 0.9999999 +61 263.67 267.5475 1000 50 0.99935347 +62 267.5475 271.425 1000 50 0.99634606 +63 271.425 275.3025 1000 50 0.99999964 +64 275.3025 279.18 1000 50 0.9999689 +65 279.18 283.0575 1000 50 0.99967504 +66 283.0575 286.935 1000 50 0.99998915 +67 286.935 290.8125 1000 50 0.9998165 +68 290.8125 294.69 1000 50 0.99999976 +69 294.69 298.5675 1000 50 0.9985843 +70 298.5675 302.445 1000 50 0.9999889 +71 302.445 306.3225 1000 50 0.9995534 +72 306.3225 310.2 1000 50 0.99944514 +73 310.2 314.0775 1000 50 0.99997187 +74 314.0775 317.955 1000 50 0.99964845 +75 317.955 321.8325 1000 50 0.9999608 +76 321.8325 325.71 1000 50 0.99954957 +77 325.71 329.5875 1000 50 0.9999994 +78 329.5875 333.465 1000 50 0.998171 +79 333.465 337.3425 1000 50 0.9988651 +80 337.3425 341.21999999999997 1000 50 0.7728884 +81 341.22 345.0975 1000 50 0.99981517 +82 345.0975 348.975 1000 50 0.97345686 +83 348.975 352.8525 1000 50 0.8401308 +84 352.8525 356.73 1000 50 0.9990876 +85 356.73 360.6075 1000 50 0.5216516 +86 360.6075 364.485 1000 50 0.68942726 +87 372.24 376.1175 1000 50 0.9927395 +88 376.1175 379.995 1000 50 0.84906435 +89 379.995 383.8725 1000 50 0.7232128 +90 383.8725 387.75 1000 50 0.98521996 +91 387.75 391.6275 1000 50 0.8798599 +92 391.6275 395.505 1000 50 0.58159924 +93 399.3825 403.26 1000 50 0.8345261 +94 403.26 407.1375 1000 50 0.9987367 +95 414.8925 418.77 1000 50 0.5152427 +96 422.6475 426.525 1000 50 0.98862886 +97 426.525 430.4025 1000 50 0.9934144 +98 430.4025 434.28 1000 50 0.877953 +99 434.28 438.15749999999997 1000 50 0.7924846 +100 442.035 445.9125 1000 50 0.58119786 +101 445.9125 449.79 1000 50 0.99455345 +102 457.545 461.4225 1000 50 0.9657847 +103 465.3 469.1775 1000 50 0.73828083 +104 473.055 476.9325 1000 50 0.9761663 +105 480.81 484.6875 1000 50 0.7609328 +106 484.6875 488.565 1000 50 0.9999999 +107 488.565 492.4425 1000 50 0.9995591 +108 492.4425 496.32 1000 50 0.9998227 +109 500.1975 504.075 1000 50 1.0 +110 504.075 507.9525 1000 50 0.99999523 +111 507.9525 511.83 1000 50 0.9800853 +112 511.83 515.7075 1000 50 0.9998324 +113 515.7075 519.585 1000 50 0.96195143 +114 519.585 523.4625000000001 1000 50 0.99987054 +115 523.4625 527.34 1000 50 0.63743186 +116 527.34 531.2175000000001 1000 50 0.9999734 +117 531.2175 535.095 1000 50 0.988074 +118 542.85 546.7275000000001 1000 50 1.0 +119 546.7275 550.605 1000 50 0.9996014 +120 550.605 554.4825000000001 1000 50 0.99254084 +121 554.4825 558.36 1000 50 0.999997 +122 558.36 562.2375000000001 1000 50 0.99989474 +123 562.2375 566.115 1000 50 0.8282112 +124 566.115 569.9925000000001 1000 50 0.9999063 +125 569.9925 573.87 1000 50 0.9997688 +126 573.87 577.7475000000001 1000 50 0.99999654 +127 577.7475 581.625 1000 50 1.0 +128 581.625 585.5025 1000 50 0.99998355 +129 585.5025 589.3800000000001 1000 50 0.99999976 +130 589.38 593.2575 1000 50 1.0 +131 593.2575 597.1350000000001 1000 50 0.99999964 +132 597.135 601.0125 1000 50 1.0 +133 601.0125 604.8900000000001 1000 50 1.0 +134 604.89 608.7675 1000 50 0.99998486 +135 608.7675 612.6450000000001 1000 50 0.9999429 +136 612.645 616.5225 1000 50 1.0 +137 616.5225 620.4000000000001 1000 50 0.9999732 +138 620.4 624.2775 1000 50 0.99998474 +139 624.2775 628.1550000000001 1000 50 1.0 +140 628.155 632.0325 1000 50 0.99999917 +141 632.0325 635.9100000000001 1000 50 0.99999225 +142 635.91 639.7875 1000 50 1.0 +143 639.7875 643.6650000000001 1000 50 0.9997391 +144 643.665 647.5425 1000 50 0.99978274 +145 647.5425 651.4200000000001 1000 50 1.0 +146 651.42 655.2975 1000 50 0.99999 +147 655.2975 659.1750000000001 1000 50 0.9999217 +148 659.175 663.0525 1000 50 0.9999995 +149 663.0525 666.9300000000001 1000 50 0.9999999 +150 666.93 670.8075 1000 50 0.999907 +151 670.8075 674.6850000000001 1000 50 0.99997604 +152 674.685 678.5625 1000 50 0.9999995 +153 678.5625 682.44 1000 50 0.9999862 +154 682.44 686.3175000000001 1000 50 0.99999917 +155 686.3175 690.195 1000 50 0.99997926 +156 690.195 694.0725000000001 1000 50 0.99999213 +157 694.0725 697.95 1000 50 0.9999975 +158 697.95 701.8275000000001 1000 50 0.9999993 +159 701.8275 705.705 1000 50 0.9999633 +160 705.705 709.5825000000001 1000 50 0.99999714 +161 709.5825 713.46 1000 50 0.9999757 +162 713.46 717.3375000000001 1000 50 0.9998939 +163 717.3375 721.215 1000 50 0.99915946 +164 721.215 725.0925000000001 1000 50 0.9999552 +165 725.0925 728.97 1000 50 1.0 +166 728.97 732.8475000000001 1000 50 0.99999094 +167 732.8475 736.725 1000 50 0.99999774 +168 736.725 740.6025000000001 1000 50 0.9985246 +169 740.6025 744.48 1000 50 0.99868673 +170 744.48 748.3575000000001 1000 50 0.9983297 +171 748.3575 752.235 1000 50 0.9999931 +172 752.235 756.1125000000001 1000 50 0.99999976 +173 756.1125 759.99 1000 50 0.9999478 +174 759.99 763.8675000000001 1000 50 0.99998486 +175 763.8675 767.745 1000 50 0.99994695 +176 767.745 771.6225000000001 1000 50 0.9998386 +177 771.6225 775.5 1000 50 0.99866176 +178 775.5 779.3775 1000 50 0.99999547 +179 779.3775 783.2550000000001 1000 50 0.9959371 +180 783.255 787.1325 1000 50 0.99969494 +181 787.1325 791.0100000000001 1000 50 0.99999774 +182 791.01 794.8875 1000 50 0.99776053 +183 794.8875 798.7650000000001 1000 50 0.8598166 +184 798.765 802.6425 1000 50 0.9999981 +185 802.6425 806.5200000000001 1000 50 0.9999945 +186 806.52 810.3975 1000 50 0.9999049 +187 810.3975 814.2750000000001 1000 50 0.99900335 +188 814.275 818.1525 1000 50 0.9985563 +189 818.1525 822.0300000000001 1000 50 0.99998605 +190 822.03 825.9075 1000 50 0.99384826 +191 825.9075 829.7850000000001 1000 50 0.97291034 +192 829.785 833.6625 1000 50 0.89806634 +193 833.6625 837.5400000000001 1000 50 0.9999999 +194 837.54 841.4175 1000 50 0.98516375 +195 841.4175 845.2950000000001 1000 50 0.8151091 +196 845.295 849.1725 1000 50 0.6239533 +197 849.1725 853.0500000000001 1000 50 0.92066056 +198 856.9275 860.8050000000001 1000 50 0.8431544 +199 860.805 864.6825 1000 50 0.994439 +200 864.6825 868.5600000000001 1000 50 0.98257023 +201 872.4375 876.315 1000 50 0.9987937 +202 880.1925 884.07 1000 50 0.7136162 +203 884.07 887.9475000000001 1000 50 0.9830239 +204 899.58 903.4575000000001 1000 50 0.57169336 +205 903.4575 907.335 1000 50 0.7002167 +206 907.335 911.2125000000001 1000 50 0.92399734 +207 911.2125 915.09 1000 50 0.7350823 +208 918.9675 922.845 1000 50 0.90677184 +209 926.7225 930.6 1000 50 0.7894815 +210 942.2325 946.11 1000 50 0.7514445 +211 953.865 957.7425000000001 1000 50 0.5832516 +212 957.7425 961.62 1000 50 0.7450011 +213 961.62 965.4975000000001 1000 50 0.52250093 +214 977.13 981.0075 1000 50 0.56716675 +215 984.885 988.7625 1000 50 0.53735125 +216 988.7625 992.6400000000001 1000 50 0.99989676 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_03-20-22_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_03-20-22_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..c4339ed024039e1756c2a39ed2b1c2db3cebf4ed --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_03-20-22_annot_2022-11-30_01.txt @@ -0,0 +1,61 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9995882 +2 3.8775 7.755 1000 50 1.0 +3 7.755 11.6325 1000 50 0.9913039 +4 11.6325 15.51 1000 50 0.9997069 +5 15.51 19.3875 1000 50 0.9999908 +6 19.3875 23.265 1000 50 0.99994564 +7 23.265 27.142500000000002 1000 50 0.9996412 +8 27.1425 31.02 1000 50 0.9997911 +9 31.02 34.8975 1000 50 0.9999963 +10 34.8975 38.775 1000 50 0.99601173 +11 38.775 42.652499999999996 1000 50 0.9983896 +12 42.6525 46.53 1000 50 0.9999598 +13 46.53 50.4075 1000 50 0.99999976 +14 50.4075 54.285 1000 50 0.9968665 +15 54.285 58.162499999999994 1000 50 0.99875414 +16 58.1625 62.04 1000 50 0.9947536 +17 62.04 65.9175 1000 50 0.9999722 +18 65.9175 69.795 1000 50 0.99936825 +19 69.795 73.6725 1000 50 0.9999964 +20 73.6725 77.55 1000 50 0.9986582 +21 77.55 81.4275 1000 50 0.99999654 +22 81.4275 85.30499999999999 1000 50 0.9958549 +23 85.305 89.1825 1000 50 0.9999552 +24 89.1825 93.06 1000 50 0.9894322 +25 93.06 96.9375 1000 50 0.99999344 +26 96.9375 100.815 1000 50 0.9857355 +27 100.815 104.6925 1000 50 0.9997466 +28 104.6925 108.57 1000 50 0.9979069 +29 108.57 112.44749999999999 1000 50 0.999985 +30 112.4475 116.325 1000 50 0.99363494 +31 116.325 120.2025 1000 50 0.83225304 +32 120.2025 124.08 1000 50 0.9664413 +33 124.08 127.9575 1000 50 0.99999154 +34 127.9575 131.835 1000 50 0.89800406 +35 131.835 135.7125 1000 50 0.99967766 +36 135.7125 139.59 1000 50 0.9999722 +37 139.59 143.4675 1000 50 0.9701394 +38 143.4675 147.345 1000 50 0.9970636 +39 147.345 151.2225 1000 50 0.94586927 +40 151.2225 155.1 1000 50 0.5807045 +41 155.1 158.9775 1000 50 0.864421 +42 162.855 166.7325 1000 50 0.68614054 +43 170.61 174.4875 1000 50 0.5765999 +44 174.4875 178.365 1000 50 0.76307976 +45 178.365 182.2425 1000 50 0.69006324 +46 182.2425 186.12 1000 50 0.58239436 +47 197.7525 201.63 1000 50 0.9855445 +48 201.63 205.5075 1000 50 0.5566925 +49 213.2625 217.14 1000 50 0.7105365 +50 221.0175 224.895 1000 50 0.95701873 +51 224.895 228.7725 1000 50 0.72174156 +52 232.65 236.5275 1000 50 0.6647949 +53 236.5275 240.405 1000 50 0.534971 +54 244.2825 248.16 1000 50 0.6278571 +55 255.915 259.7925 1000 50 0.5593526 +56 259.7925 263.67 1000 50 0.9099613 +57 267.5475 271.425 1000 50 0.50063014 +58 271.425 275.3025 1000 50 0.53243303 +59 275.3025 279.18 1000 50 0.73990923 +60 279.18 283.0575 1000 50 0.696702 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_04-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_04-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a5aabca2ad018bf11bbdce28420f16e00eef1c62 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_04-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,249 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.99520737 +2 7.755 11.6325 1000 50 0.9964085 +3 11.6325 15.51 1000 50 0.5204032 +4 15.51 19.3875 1000 50 0.9999989 +5 19.3875 23.265 1000 50 0.6184117 +6 27.1425 31.02 1000 50 0.9639884 +7 31.02 34.8975 1000 50 0.9998615 +8 34.8975 38.775 1000 50 0.9980854 +9 38.775 42.652499999999996 1000 50 0.9932981 +10 42.6525 46.53 1000 50 0.61919713 +11 46.53 50.4075 1000 50 0.74877536 +12 50.4075 54.285 1000 50 0.99805814 +13 54.285 58.162499999999994 1000 50 0.99329937 +14 58.1625 62.04 1000 50 0.99982053 +15 62.04 65.9175 1000 50 0.56881607 +16 65.9175 69.795 1000 50 0.9453167 +17 69.795 73.6725 1000 50 0.9925788 +18 73.6725 77.55 1000 50 0.8618303 +19 77.55 81.4275 1000 50 0.9995109 +20 81.4275 85.30499999999999 1000 50 0.9998362 +21 85.305 89.1825 1000 50 0.99840647 +22 89.1825 93.06 1000 50 0.99921584 +23 93.06 96.9375 1000 50 0.9990723 +24 96.9375 100.815 1000 50 0.95204246 +25 100.815 104.6925 1000 50 0.9999913 +26 104.6925 108.57 1000 50 0.99698144 +27 108.57 112.44749999999999 1000 50 0.9999931 +28 112.4475 116.325 1000 50 0.9565455 +29 116.325 120.2025 1000 50 0.99916434 +30 120.2025 124.08 1000 50 0.99944884 +31 124.08 127.9575 1000 50 0.9999982 +32 127.9575 131.835 1000 50 0.9992085 +33 131.835 135.7125 1000 50 0.9967079 +34 135.7125 139.59 1000 50 0.7794819 +35 139.59 143.4675 1000 50 0.9998975 +36 143.4675 147.345 1000 50 0.99495596 +37 147.345 151.2225 1000 50 0.9992029 +38 151.2225 155.1 1000 50 0.99998784 +39 155.1 158.9775 1000 50 0.94389075 +40 158.9775 162.855 1000 50 0.9989982 +41 162.855 166.7325 1000 50 0.8494223 +42 170.61 174.4875 1000 50 0.84417456 +43 178.365 182.2425 1000 50 0.67306685 +44 182.2425 186.12 1000 50 0.88353163 +45 189.9975 193.875 1000 50 0.51478696 +46 201.63 205.5075 1000 50 0.69957644 +47 252.0375 255.915 1000 50 0.6429262 +48 259.7925 263.67 1000 50 0.5046165 +49 286.935 290.8125 1000 50 0.53409827 +50 290.8125 294.69 1000 50 0.591352 +51 302.445 306.3225 1000 50 0.656886 +52 310.2 314.0775 1000 50 0.81346744 +53 314.0775 317.955 1000 50 0.6872922 +54 321.8325 325.71 1000 50 0.6569772 +55 325.71 329.5875 1000 50 0.9999932 +56 329.5875 333.465 1000 50 0.99954236 +57 333.465 337.3425 1000 50 0.9999924 +58 341.22 345.0975 1000 50 0.9999995 +59 345.0975 348.975 1000 50 0.9968984 +60 348.975 352.8525 1000 50 0.99999154 +61 352.8525 356.73 1000 50 0.99999857 +62 356.73 360.6075 1000 50 0.65854585 +63 360.6075 364.485 1000 50 0.9993174 +64 364.485 368.3625 1000 50 0.9985726 +65 368.3625 372.24 1000 50 0.99998236 +66 372.24 376.1175 1000 50 0.99999833 +67 376.1175 379.995 1000 50 0.9922112 +68 379.995 383.8725 1000 50 0.999744 +69 383.8725 387.75 1000 50 0.9999987 +70 387.75 391.6275 1000 50 0.9999807 +71 391.6275 395.505 1000 50 0.9999794 +72 395.505 399.3825 1000 50 1.0 +73 399.3825 403.26 1000 50 0.9937977 +74 403.26 407.1375 1000 50 0.99999976 +75 407.1375 411.015 1000 50 0.9999999 +76 411.015 414.8925 1000 50 0.99833614 +77 414.8925 418.77 1000 50 1.0 +78 418.77 422.6475 1000 50 0.9999944 +79 422.6475 426.525 1000 50 0.9999962 +80 426.525 430.4025 1000 50 0.99999905 +81 430.4025 434.28 1000 50 0.9997508 +82 434.28 438.15749999999997 1000 50 0.9993007 +83 438.1575 442.035 1000 50 0.99999964 +84 442.035 445.9125 1000 50 0.9999982 +85 445.9125 449.79 1000 50 0.9991497 +86 449.79 453.6675 1000 50 0.99931026 +87 453.6675 457.545 1000 50 0.9999913 +88 457.545 461.4225 1000 50 0.9873312 +89 461.4225 465.3 1000 50 0.9972722 +90 465.3 469.1775 1000 50 0.99925 +91 469.1775 473.055 1000 50 0.9418284 +92 473.055 476.9325 1000 50 0.9684983 +93 476.9325 480.81 1000 50 0.9969024 +94 480.81 484.6875 1000 50 0.99970704 +95 484.6875 488.565 1000 50 0.96259826 +96 488.565 492.4425 1000 50 0.9999645 +97 492.4425 496.32 1000 50 0.9997863 +98 496.32 500.1975 1000 50 0.98551905 +99 500.1975 504.075 1000 50 0.992183 +100 504.075 507.9525 1000 50 0.99900335 +101 507.9525 511.83 1000 50 0.99128145 +102 511.83 515.7075 1000 50 0.95846516 +103 515.7075 519.585 1000 50 0.9984701 +104 519.585 523.4625000000001 1000 50 0.9989391 +105 523.4625 527.34 1000 50 0.99976796 +106 527.34 531.2175000000001 1000 50 0.99999356 +107 531.2175 535.095 1000 50 0.99958533 +108 535.095 538.9725000000001 1000 50 0.99925894 +109 542.85 546.7275000000001 1000 50 0.9909105 +110 546.7275 550.605 1000 50 0.9999888 +111 550.605 554.4825000000001 1000 50 0.98613054 +112 554.4825 558.36 1000 50 0.99997425 +113 558.36 562.2375000000001 1000 50 0.92501444 +114 562.2375 566.115 1000 50 0.9999914 +115 566.115 569.9925000000001 1000 50 0.9616945 +116 569.9925 573.87 1000 50 0.99626726 +117 573.87 577.7475000000001 1000 50 0.9999863 +118 577.7475 581.625 1000 50 0.9964837 +119 581.625 585.5025 1000 50 0.99999857 +120 585.5025 589.3800000000001 1000 50 0.9696526 +121 589.38 593.2575 1000 50 0.9928559 +122 593.2575 597.1350000000001 1000 50 0.9640177 +123 597.135 601.0125 1000 50 0.9999856 +124 601.0125 604.8900000000001 1000 50 0.97331595 +125 604.89 608.7675 1000 50 0.8001073 +126 608.7675 612.6450000000001 1000 50 0.9997347 +127 612.645 616.5225 1000 50 0.99973804 +128 616.5225 620.4000000000001 1000 50 0.9999391 +129 620.4 624.2775 1000 50 0.9225473 +130 624.2775 628.1550000000001 1000 50 0.9989371 +131 632.0325 635.9100000000001 1000 50 0.6282534 +132 635.91 639.7875 1000 50 0.8200911 +133 647.5425 651.4200000000001 1000 50 0.61578006 +134 651.42 655.2975 1000 50 0.9651006 +135 659.175 663.0525 1000 50 0.79377466 +136 666.93 670.8075 1000 50 0.65531474 +137 678.5625 682.44 1000 50 0.9170533 +138 686.3175 690.195 1000 50 0.9455946 +139 690.195 694.0725000000001 1000 50 0.51269203 +140 694.0725 697.95 1000 50 0.5494777 +141 728.97 732.8475000000001 1000 50 0.71875805 +142 732.8475 736.725 1000 50 0.57476544 +143 744.48 748.3575000000001 1000 50 0.54571927 +144 759.99 763.8675000000001 1000 50 0.85065436 +145 763.8675 767.745 1000 50 0.62424684 +146 775.5 779.3775 1000 50 0.7898069 +147 779.3775 783.2550000000001 1000 50 0.65355855 +148 783.255 787.1325 1000 50 0.7673753 +149 794.8875 798.7650000000001 1000 50 0.58208007 +150 798.765 802.6425 1000 50 0.7984945 +151 802.6425 806.5200000000001 1000 50 0.9997018 +152 806.52 810.3975 1000 50 0.99994695 +153 810.3975 814.2750000000001 1000 50 0.9999291 +154 814.275 818.1525 1000 50 0.9997845 +155 818.1525 822.0300000000001 1000 50 1.0 +156 822.03 825.9075 1000 50 0.99996114 +157 825.9075 829.7850000000001 1000 50 0.9999995 +158 829.785 833.6625 1000 50 0.9944541 +159 833.6625 837.5400000000001 1000 50 0.99983156 +160 841.4175 845.2950000000001 1000 50 0.9998658 +161 845.295 849.1725 1000 50 0.98343235 +162 853.05 856.9275 1000 50 0.50493574 +163 856.9275 860.8050000000001 1000 50 0.9999931 +164 860.805 864.6825 1000 50 0.9958825 +165 868.56 872.4375 1000 50 0.9999552 +166 872.4375 876.315 1000 50 0.99599636 +167 880.1925 884.07 1000 50 0.9998883 +168 884.07 887.9475000000001 1000 50 0.9990596 +169 891.825 895.7025000000001 1000 50 0.9999924 +170 895.7025 899.58 1000 50 0.9999999 +171 899.58 903.4575000000001 1000 50 0.9632792 +172 903.4575 907.335 1000 50 1.0 +173 907.335 911.2125000000001 1000 50 0.9998042 +174 911.2125 915.09 1000 50 0.5092908 +175 915.09 918.9675000000001 1000 50 0.9999405 +176 918.9675 922.845 1000 50 0.97703606 +177 922.845 926.7225000000001 1000 50 0.9996921 +178 926.7225 930.6 1000 50 0.99961936 +179 930.6 934.4775000000001 1000 50 0.99999905 +180 934.4775 938.355 1000 50 0.81514704 +181 938.355 942.2325000000001 1000 50 0.9911703 +182 942.2325 946.11 1000 50 0.9997975 +183 946.11 949.9875000000001 1000 50 0.95648175 +184 949.9875 953.865 1000 50 0.999974 +185 953.865 957.7425000000001 1000 50 0.9706706 +186 957.7425 961.62 1000 50 0.99884593 +187 961.62 965.4975000000001 1000 50 0.9898803 +188 965.4975 969.375 1000 50 0.9996916 +189 969.375 973.2525 1000 50 0.99999976 +190 977.13 981.0075 1000 50 0.9998714 +191 981.0075 984.8850000000001 1000 50 0.9999207 +192 984.885 988.7625 1000 50 0.99991345 +193 988.7625 992.6400000000001 1000 50 0.99890673 +194 992.64 996.5175 1000 50 0.99893636 +195 1000.395 1004.2725 1000 50 0.99958044 +196 1004.2725 1008.1500000000001 1000 50 0.99942964 +197 1008.15 1012.0275 1000 50 0.9971079 +198 1027.5375 1031.415 1000 50 0.9645953 +199 1031.415 1035.2925 1000 50 0.9547185 +200 1035.2925 1039.17 1000 50 0.99980515 +201 1039.17 1043.0475000000001 1000 50 0.9984492 +202 1043.0475 1046.925 1000 50 0.6308705 +203 1046.925 1050.8025 1000 50 0.99999356 +204 1050.8025 1054.68 1000 50 0.9999317 +205 1054.68 1058.5575000000001 1000 50 0.99997807 +206 1058.5575 1062.435 1000 50 1.0 +207 1062.435 1066.3125 1000 50 0.9999956 +208 1066.3125 1070.19 1000 50 1.0 +209 1070.19 1074.0675 1000 50 0.99999917 +210 1074.0675 1077.9450000000002 1000 50 0.9999932 +211 1077.945 1081.8225 1000 50 0.999764 +212 1081.8225 1085.7 1000 50 0.9997224 +213 1085.7 1089.5775 1000 50 0.9995018 +214 1089.5775 1093.4550000000002 1000 50 0.9999999 +215 1093.455 1097.3325 1000 50 0.9987901 +216 1097.3325 1101.21 1000 50 0.9077989 +217 1101.21 1105.0875 1000 50 0.9998553 +218 1105.0875 1108.9650000000001 1000 50 0.6932111 +219 1108.965 1112.8425 1000 50 0.50007415 +220 1112.8425 1116.72 1000 50 0.81547016 +221 1116.72 1120.5975 1000 50 0.9988907 +222 1120.5975 1124.4750000000001 1000 50 0.9907789 +223 1124.475 1128.3525 1000 50 0.99803954 +224 1128.3525 1132.23 1000 50 0.99504435 +225 1132.23 1136.1075 1000 50 0.99275416 +226 1143.8625 1147.74 1000 50 0.99999046 +227 1151.6175 1155.4950000000001 1000 50 0.9999856 +228 1159.3725 1163.25 1000 50 0.6613034 +229 1167.1275 1171.005 1000 50 0.9145392 +230 1174.8825 1178.76 1000 50 0.99797314 +231 1178.76 1182.6375 1000 50 0.84709305 +232 1182.6375 1186.515 1000 50 0.60712487 +233 1186.515 1190.3925000000002 1000 50 0.72065395 +234 1202.025 1205.9025000000001 1000 50 0.99955577 +235 1213.6575 1217.535 1000 50 0.91551596 +236 1217.535 1221.4125000000001 1000 50 0.61270887 +237 1225.29 1229.1675 1000 50 0.98162776 +238 1236.9225 1240.8 1000 50 0.9704521 +239 1240.8 1244.6775 1000 50 0.9944326 +240 1244.6775 1248.555 1000 50 0.78766036 +241 1248.555 1252.4325000000001 1000 50 0.8934243 +242 1252.4325 1256.31 1000 50 0.8786595 +243 1260.1875 1264.065 1000 50 0.98097575 +244 1264.065 1267.9425 1000 50 0.58022296 +245 1271.82 1275.6975 1000 50 0.58820474 +246 1283.4525 1287.3300000000002 1000 50 0.993838 +247 1295.085 1298.9625 1000 50 0.9999765 +248 1306.7175 1310.595 1000 50 0.76734686 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_05-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_05-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0b2634e53d1fc316d5dea32d500d00ca90c9539b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_05-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,317 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999844 +2 3.8775 7.755 1000 50 1.0 +3 7.755 11.6325 1000 50 0.9363593 +4 11.6325 15.51 1000 50 0.99999833 +5 15.51 19.3875 1000 50 0.9999999 +6 19.3875 23.265 1000 50 0.99996793 +7 23.265 27.142500000000002 1000 50 1.0 +8 27.1425 31.02 1000 50 0.99999535 +9 31.02 34.8975 1000 50 0.99998295 +10 34.8975 38.775 1000 50 1.0 +11 42.6525 46.53 1000 50 0.9999988 +12 46.53 50.4075 1000 50 0.99999857 +13 50.4075 54.285 1000 50 0.99999094 +14 54.285 58.162499999999994 1000 50 0.9990212 +15 58.1625 62.04 1000 50 0.99871266 +16 62.04 65.9175 1000 50 0.9999995 +17 65.9175 69.795 1000 50 0.9952525 +18 69.795 73.6725 1000 50 0.99989784 +19 73.6725 77.55 1000 50 0.9999976 +20 77.55 81.4275 1000 50 0.99999356 +21 81.4275 85.30499999999999 1000 50 0.9997795 +22 85.305 89.1825 1000 50 0.9999994 +23 89.1825 93.06 1000 50 0.9999579 +24 93.06 96.9375 1000 50 0.99897313 +25 96.9375 100.815 1000 50 0.9999999 +26 100.815 104.6925 1000 50 0.99999523 +27 104.6925 108.57 1000 50 0.99999964 +28 108.57 112.44749999999999 1000 50 0.99979943 +29 112.4475 116.325 1000 50 1.0 +30 116.325 120.2025 1000 50 1.0 +31 120.2025 124.08 1000 50 0.9999999 +32 124.08 127.9575 1000 50 0.9999999 +33 127.9575 131.835 1000 50 0.9999522 +34 131.835 135.7125 1000 50 0.9999968 +35 135.7125 139.59 1000 50 1.0 +36 139.59 143.4675 1000 50 0.999933 +37 143.4675 147.345 1000 50 0.9999999 +38 147.345 151.2225 1000 50 0.99999976 +39 151.2225 155.1 1000 50 0.99999964 +40 155.1 158.9775 1000 50 0.99999964 +41 158.9775 162.855 1000 50 0.9341428 +42 162.855 166.7325 1000 50 0.93352056 +43 166.7325 170.60999999999999 1000 50 1.0 +44 170.61 174.4875 1000 50 0.99999774 +45 174.4875 178.365 1000 50 0.9999974 +46 178.365 182.2425 1000 50 0.77454376 +47 182.2425 186.12 1000 50 0.9998617 +48 186.12 189.9975 1000 50 0.99860317 +49 189.9975 193.875 1000 50 0.99765426 +50 193.875 197.7525 1000 50 0.99967563 +51 197.7525 201.63 1000 50 0.99983096 +52 201.63 205.5075 1000 50 1.0 +53 205.5075 209.385 1000 50 0.9999504 +54 209.385 213.2625 1000 50 0.993331 +55 217.14 221.01749999999998 1000 50 0.58164173 +56 221.0175 224.895 1000 50 0.898687 +57 228.7725 232.65 1000 50 0.8641984 +58 244.2825 248.16 1000 50 0.767619 +59 255.915 259.7925 1000 50 0.7739399 +60 275.3025 279.18 1000 50 0.9827245 +61 286.935 290.8125 1000 50 0.6820861 +62 290.8125 294.69 1000 50 0.74602455 +63 314.0775 317.955 1000 50 0.97411954 +64 317.955 321.8325 1000 50 0.9977818 +65 321.8325 325.71 1000 50 0.8473359 +66 329.5875 333.465 1000 50 0.94777715 +67 333.465 337.3425 1000 50 0.9491765 +68 345.0975 348.975 1000 50 0.998009 +69 356.73 360.6075 1000 50 0.9574937 +70 364.485 368.3625 1000 50 0.66342163 +71 368.3625 372.24 1000 50 0.8411521 +72 376.1175 379.995 1000 50 0.9944712 +73 387.75 391.6275 1000 50 0.9869602 +74 399.3825 403.26 1000 50 0.8693627 +75 411.015 414.8925 1000 50 0.9991411 +76 414.8925 418.77 1000 50 0.9999466 +77 418.77 422.6475 1000 50 0.99990785 +78 422.6475 426.525 1000 50 0.99846005 +79 426.525 430.4025 1000 50 0.99993134 +80 430.4025 434.28 1000 50 0.99964917 +81 434.28 438.15749999999997 1000 50 0.73444426 +82 438.1575 442.035 1000 50 0.99991727 +83 442.035 445.9125 1000 50 0.9999999 +84 445.9125 449.79 1000 50 0.99967 +85 449.79 453.6675 1000 50 0.99772805 +86 453.6675 457.545 1000 50 0.9990138 +87 457.545 461.4225 1000 50 0.99854964 +88 461.4225 465.3 1000 50 0.9928348 +89 465.3 469.1775 1000 50 0.9999361 +90 469.1775 473.055 1000 50 0.95035785 +91 473.055 476.9325 1000 50 0.9999869 +92 476.9325 480.81 1000 50 0.9999051 +93 480.81 484.6875 1000 50 0.9999951 +94 484.6875 488.565 1000 50 0.9999858 +95 488.565 492.4425 1000 50 0.9999939 +96 492.4425 496.32 1000 50 0.99999833 +97 496.32 500.1975 1000 50 0.99999917 +98 500.1975 504.075 1000 50 1.0 +99 504.075 507.9525 1000 50 0.9998264 +100 507.9525 511.83 1000 50 1.0 +101 511.83 515.7075 1000 50 1.0 +102 515.7075 519.585 1000 50 0.99727815 +103 519.585 523.4625000000001 1000 50 1.0 +104 523.4625 527.34 1000 50 0.99999976 +105 527.34 531.2175000000001 1000 50 0.9957799 +106 531.2175 535.095 1000 50 1.0 +107 535.095 538.9725000000001 1000 50 0.9999614 +108 538.9725 542.85 1000 50 0.9732097 +109 542.85 546.7275000000001 1000 50 1.0 +110 546.7275 550.605 1000 50 1.0 +111 550.605 554.4825000000001 1000 50 0.999997 +112 554.4825 558.36 1000 50 0.9999987 +113 558.36 562.2375000000001 1000 50 1.0 +114 562.2375 566.115 1000 50 0.9999995 +115 566.115 569.9925000000001 1000 50 1.0 +116 569.9925 573.87 1000 50 1.0 +117 573.87 577.7475000000001 1000 50 1.0 +118 577.7475 581.625 1000 50 1.0 +119 581.625 585.5025 1000 50 0.99992585 +120 585.5025 589.3800000000001 1000 50 0.9999963 +121 589.38 593.2575 1000 50 1.0 +122 593.2575 597.1350000000001 1000 50 0.9999962 +123 597.135 601.0125 1000 50 0.9991881 +124 601.0125 604.8900000000001 1000 50 1.0 +125 604.89 608.7675 1000 50 0.99999726 +126 608.7675 612.6450000000001 1000 50 0.9999988 +127 612.645 616.5225 1000 50 0.9999988 +128 616.5225 620.4000000000001 1000 50 0.99991393 +129 620.4 624.2775 1000 50 0.99942505 +130 624.2775 628.1550000000001 1000 50 1.0 +131 628.155 632.0325 1000 50 0.99998534 +132 632.0325 635.9100000000001 1000 50 0.99999106 +133 635.91 639.7875 1000 50 1.0 +134 639.7875 643.6650000000001 1000 50 0.9999895 +135 643.665 647.5425 1000 50 0.99935704 +136 647.5425 651.4200000000001 1000 50 1.0 +137 651.42 655.2975 1000 50 0.999856 +138 655.2975 659.1750000000001 1000 50 1.0 +139 659.175 663.0525 1000 50 1.0 +140 663.0525 666.9300000000001 1000 50 0.928327 +141 666.93 670.8075 1000 50 0.99998355 +142 670.8075 674.6850000000001 1000 50 0.999819 +143 674.685 678.5625 1000 50 0.93280387 +144 678.5625 682.44 1000 50 0.9999995 +145 682.44 686.3175000000001 1000 50 0.99887913 +146 686.3175 690.195 1000 50 0.99999595 +147 690.195 694.0725000000001 1000 50 0.99986696 +148 694.0725 697.95 1000 50 0.9999995 +149 697.95 701.8275000000001 1000 50 0.99999154 +150 701.8275 705.705 1000 50 0.9995115 +151 705.705 709.5825000000001 1000 50 0.9847925 +152 709.5825 713.46 1000 50 0.9999925 +153 713.46 717.3375000000001 1000 50 0.99997747 +154 717.3375 721.215 1000 50 0.99987686 +155 721.215 725.0925000000001 1000 50 0.9995303 +156 725.0925 728.97 1000 50 0.9991411 +157 728.97 732.8475000000001 1000 50 0.9953478 +158 732.8475 736.725 1000 50 0.99997914 +159 736.725 740.6025000000001 1000 50 0.99999225 +160 740.6025 744.48 1000 50 0.9999999 +161 744.48 748.3575000000001 1000 50 0.99997973 +162 748.3575 752.235 1000 50 0.99989045 +163 752.235 756.1125000000001 1000 50 0.99993026 +164 756.1125 759.99 1000 50 0.99935764 +165 759.99 763.8675000000001 1000 50 0.9999813 +166 763.8675 767.745 1000 50 0.9978219 +167 767.745 771.6225000000001 1000 50 0.99949193 +168 771.6225 775.5 1000 50 0.9999999 +169 775.5 779.3775 1000 50 0.99999666 +170 779.3775 783.2550000000001 1000 50 0.9999937 +171 783.255 787.1325 1000 50 0.99608827 +172 787.1325 791.0100000000001 1000 50 0.9999962 +173 791.01 794.8875 1000 50 0.998114 +174 798.765 802.6425 1000 50 0.99982566 +175 802.6425 806.5200000000001 1000 50 0.99998057 +176 806.52 810.3975 1000 50 0.99727875 +177 810.3975 814.2750000000001 1000 50 0.9999833 +178 814.275 818.1525 1000 50 0.89466995 +179 818.1525 822.0300000000001 1000 50 0.9568357 +180 822.03 825.9075 1000 50 0.99999976 +181 825.9075 829.7850000000001 1000 50 0.9993368 +182 829.785 833.6625 1000 50 0.99999917 +183 833.6625 837.5400000000001 1000 50 0.9967663 +184 837.54 841.4175 1000 50 0.9641009 +185 841.4175 845.2950000000001 1000 50 0.99708194 +186 845.295 849.1725 1000 50 0.5352896 +187 849.1725 853.0500000000001 1000 50 0.97776765 +188 853.05 856.9275 1000 50 0.9801399 +189 860.805 864.6825 1000 50 0.5983824 +190 864.6825 868.5600000000001 1000 50 0.57607824 +191 868.56 872.4375 1000 50 0.95824623 +192 872.4375 876.315 1000 50 0.900848 +193 876.315 880.1925000000001 1000 50 0.68543124 +194 887.9475 891.825 1000 50 0.6619691 +195 891.825 895.7025000000001 1000 50 0.9267804 +196 895.7025 899.58 1000 50 0.82888985 +197 899.58 903.4575000000001 1000 50 0.61395884 +198 911.2125 915.09 1000 50 0.61402625 +199 926.7225 930.6 1000 50 0.868632 +200 930.6 934.4775000000001 1000 50 0.5685934 +201 934.4775 938.355 1000 50 0.9989103 +202 938.355 942.2325000000001 1000 50 0.5324403 +203 946.11 949.9875000000001 1000 50 0.70231766 +204 949.9875 953.865 1000 50 0.7989974 +205 953.865 957.7425000000001 1000 50 0.9791293 +206 957.7425 961.62 1000 50 0.7950434 +207 965.4975 969.375 1000 50 0.66595936 +208 969.375 973.2525 1000 50 0.6980832 +209 973.2525 977.1300000000001 1000 50 0.8249216 +210 977.13 981.0075 1000 50 0.9450444 +211 981.0075 984.8850000000001 1000 50 0.8786911 +212 992.64 996.5175 1000 50 0.8923041 +213 996.5175 1000.3950000000001 1000 50 0.91791284 +214 1000.395 1004.2725 1000 50 0.77120763 +215 1012.0275 1015.9050000000001 1000 50 0.82429385 +216 1015.905 1019.7825 1000 50 0.9996166 +217 1019.7825 1023.6600000000001 1000 50 0.8597947 +218 1023.66 1027.5375 1000 50 0.9999999 +219 1027.5375 1031.415 1000 50 0.9999696 +220 1031.415 1035.2925 1000 50 0.9999999 +221 1035.2925 1039.17 1000 50 0.9985104 +222 1039.17 1043.0475000000001 1000 50 0.9997849 +223 1043.0475 1046.925 1000 50 0.99999785 +224 1046.925 1050.8025 1000 50 0.99993396 +225 1050.8025 1054.68 1000 50 0.9996718 +226 1054.68 1058.5575000000001 1000 50 1.0 +227 1058.5575 1062.435 1000 50 0.99999845 +228 1062.435 1066.3125 1000 50 0.99999654 +229 1066.3125 1070.19 1000 50 1.0 +230 1070.19 1074.0675 1000 50 0.99998486 +231 1074.0675 1077.9450000000002 1000 50 0.9130017 +232 1077.945 1081.8225 1000 50 0.99977297 +233 1081.8225 1085.7 1000 50 1.0 +234 1085.7 1089.5775 1000 50 0.9999826 +235 1089.5775 1093.4550000000002 1000 50 1.0 +236 1093.455 1097.3325 1000 50 1.0 +237 1097.3325 1101.21 1000 50 1.0 +238 1101.21 1105.0875 1000 50 0.9999957 +239 1105.0875 1108.9650000000001 1000 50 1.0 +240 1108.965 1112.8425 1000 50 0.999967 +241 1112.8425 1116.72 1000 50 1.0 +242 1116.72 1120.5975 1000 50 0.9999988 +243 1120.5975 1124.4750000000001 1000 50 0.9999956 +244 1124.475 1128.3525 1000 50 0.99999976 +245 1128.3525 1132.23 1000 50 0.9999999 +246 1132.23 1136.1075 1000 50 0.9999995 +247 1136.1075 1139.9850000000001 1000 50 0.9999726 +248 1139.985 1143.8625 1000 50 0.9999442 +249 1143.8625 1147.74 1000 50 0.9999616 +250 1147.74 1151.6175 1000 50 0.9999987 +251 1151.6175 1155.4950000000001 1000 50 0.98763126 +252 1155.495 1159.3725 1000 50 0.9999474 +253 1159.3725 1163.25 1000 50 0.99984574 +254 1163.25 1167.1275 1000 50 0.9999988 +255 1167.1275 1171.005 1000 50 0.9996898 +256 1171.005 1174.8825000000002 1000 50 0.99899644 +257 1174.8825 1178.76 1000 50 0.99970967 +258 1178.76 1182.6375 1000 50 0.9999962 +259 1182.6375 1186.515 1000 50 0.9974848 +260 1186.515 1190.3925000000002 1000 50 0.99998 +261 1190.3925 1194.27 1000 50 1.0 +262 1194.27 1198.1475 1000 50 0.99999225 +263 1198.1475 1202.025 1000 50 0.9999995 +264 1202.025 1205.9025000000001 1000 50 0.999995 +265 1205.9025 1209.78 1000 50 0.999744 +266 1209.78 1213.6575 1000 50 0.9999999 +267 1213.6575 1217.535 1000 50 0.9999473 +268 1217.535 1221.4125000000001 1000 50 0.9993507 +269 1221.4125 1225.29 1000 50 0.9999957 +270 1225.29 1229.1675 1000 50 0.99999976 +271 1229.1675 1233.045 1000 50 0.99999475 +272 1233.045 1236.9225000000001 1000 50 0.99999297 +273 1236.9225 1240.8 1000 50 0.99999714 +274 1240.8 1244.6775 1000 50 0.9999981 +275 1244.6775 1248.555 1000 50 0.9999999 +276 1248.555 1252.4325000000001 1000 50 0.9999546 +277 1252.4325 1256.31 1000 50 0.99999666 +278 1256.31 1260.1875 1000 50 0.99999714 +279 1260.1875 1264.065 1000 50 0.9999995 +280 1264.065 1267.9425 1000 50 0.9999982 +281 1267.9425 1271.8200000000002 1000 50 0.99575233 +282 1271.82 1275.6975 1000 50 0.99972254 +283 1275.6975 1279.575 1000 50 0.9999726 +284 1279.575 1283.4525 1000 50 0.99949276 +285 1283.4525 1287.3300000000002 1000 50 0.9999869 +286 1287.33 1291.2075 1000 50 0.9988852 +287 1291.2075 1295.085 1000 50 1.0 +288 1295.085 1298.9625 1000 50 0.99998534 +289 1298.9625 1302.8400000000001 1000 50 0.9994523 +290 1302.84 1306.7175 1000 50 0.999337 +291 1306.7175 1310.595 1000 50 0.99999464 +292 1310.595 1314.4725 1000 50 0.8940575 +293 1314.4725 1318.3500000000001 1000 50 0.55913657 +294 1322.2275 1326.105 1000 50 0.527414 +295 1341.615 1345.4925 1000 50 0.72902024 +296 1349.37 1353.2475 1000 50 0.7321253 +297 1364.88 1368.7575000000002 1000 50 0.58169943 +298 1372.635 1376.5125 1000 50 0.9795394 +299 1376.5125 1380.39 1000 50 0.54901457 +300 1392.0225 1395.9 1000 50 0.97639114 +301 1438.5525 1442.43 1000 50 0.73252743 +302 1442.43 1446.3075000000001 1000 50 0.8213916 +303 1446.3075 1450.185 1000 50 0.99999833 +304 1450.185 1454.0625 1000 50 0.99992275 +305 1454.0625 1457.94 1000 50 0.9999708 +306 1457.94 1461.8175 1000 50 0.9998603 +307 1461.8175 1465.6950000000002 1000 50 0.99945086 +308 1465.695 1469.5725 1000 50 0.9999683 +309 1469.5725 1473.45 1000 50 0.99999523 +310 1473.45 1477.3275 1000 50 0.9999999 +311 1477.3275 1481.2050000000002 1000 50 0.99975985 +312 1481.205 1485.0825 1000 50 0.9687627 +313 1485.0825 1488.96 1000 50 0.9996592 +314 1488.96 1492.8375 1000 50 0.99996316 +315 1492.8375 1496.7150000000001 1000 50 0.99995863 +316 1496.715 1500.5925 1000 50 0.9998996 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_06-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_06-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..34dbf8e3a83f4700e915c61f36f170cdd658ec11 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_06-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,29 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.62035435 +2 3.8775 7.755 1000 50 0.9887938 +3 7.755 11.6325 1000 50 0.9998362 +4 11.6325 15.51 1000 50 0.99980503 +5 15.51 19.3875 1000 50 0.99960774 +6 19.3875 23.265 1000 50 0.99161714 +7 23.265 27.142500000000002 1000 50 0.9999987 +8 27.1425 31.02 1000 50 0.99999857 +9 31.02 34.8975 1000 50 0.99999976 +10 34.8975 38.775 1000 50 0.99928707 +11 38.775 42.652499999999996 1000 50 0.9909073 +12 42.6525 46.53 1000 50 0.9999865 +13 46.53 50.4075 1000 50 0.99784744 +14 50.4075 54.285 1000 50 0.9992636 +15 54.285 58.162499999999994 1000 50 0.8698354 +16 58.1625 62.04 1000 50 0.99999976 +17 62.04 65.9175 1000 50 0.99727243 +18 65.9175 69.795 1000 50 0.9999001 +19 69.795 73.6725 1000 50 1.0 +20 73.6725 77.55 1000 50 1.0 +21 77.55 81.4275 1000 50 0.9806316 +22 81.4275 85.30499999999999 1000 50 0.99999917 +23 85.305 89.1825 1000 50 1.0 +24 89.1825 93.06 1000 50 0.9999995 +25 93.06 96.9375 1000 50 0.9999999 +26 96.9375 100.815 1000 50 0.9999981 +27 100.815 104.6925 1000 50 0.9999976 +28 104.6925 108.57 1000 50 0.9362961 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_06-05-23_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_06-05-23_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..51957c38f61a2aa9c8367d1749baa89f6548987b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_06-05-23_annot_2022-11-30_01.txt @@ -0,0 +1,264 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99984014 +2 3.8775 7.755 1000 50 0.9996178 +3 7.755 11.6325 1000 50 0.999869 +4 11.6325 15.51 1000 50 1.0 +5 19.3875 23.265 1000 50 0.99996257 +6 23.265 27.142500000000002 1000 50 0.9995141 +7 27.1425 31.02 1000 50 0.99999964 +8 31.02 34.8975 1000 50 0.99999976 +9 34.8975 38.775 1000 50 0.9825482 +10 38.775 42.652499999999996 1000 50 0.99998736 +11 42.6525 46.53 1000 50 0.9999558 +12 46.53 50.4075 1000 50 1.0 +13 50.4075 54.285 1000 50 1.0 +14 54.285 58.162499999999994 1000 50 0.9999994 +15 58.1625 62.04 1000 50 0.9998117 +16 62.04 65.9175 1000 50 1.0 +17 65.9175 69.795 1000 50 0.99999857 +18 69.795 73.6725 1000 50 0.9999975 +19 73.6725 77.55 1000 50 0.99999714 +20 81.4275 85.30499999999999 1000 50 0.8568416 +21 85.305 89.1825 1000 50 0.9968497 +22 89.1825 93.06 1000 50 0.99755955 +23 93.06 96.9375 1000 50 0.99488235 +24 96.9375 100.815 1000 50 0.79285717 +25 100.815 104.6925 1000 50 0.9115683 +26 112.4475 116.325 1000 50 0.6262806 +27 116.325 120.2025 1000 50 0.69112855 +28 124.08 127.9575 1000 50 0.6136161 +29 127.9575 131.835 1000 50 0.6377519 +30 131.835 135.7125 1000 50 0.6923013 +31 143.4675 147.345 1000 50 0.51813483 +32 166.7325 170.60999999999999 1000 50 0.6517076 +33 170.61 174.4875 1000 50 0.93829703 +34 178.365 182.2425 1000 50 0.70192456 +35 182.2425 186.12 1000 50 0.6815278 +36 189.9975 193.875 1000 50 0.9964999 +37 201.63 205.5075 1000 50 0.70705175 +38 205.5075 209.385 1000 50 0.9996542 +39 209.385 213.2625 1000 50 0.9724668 +40 213.2625 217.14 1000 50 0.98140866 +41 217.14 221.01749999999998 1000 50 0.9416401 +42 221.0175 224.895 1000 50 0.99943334 +43 224.895 228.7725 1000 50 0.760975 +44 228.7725 232.65 1000 50 0.99598014 +45 232.65 236.5275 1000 50 0.93727255 +46 236.5275 240.405 1000 50 0.9994118 +47 240.405 244.2825 1000 50 0.98361266 +48 244.2825 248.16 1000 50 0.9806778 +49 248.16 252.0375 1000 50 0.99479717 +50 252.0375 255.915 1000 50 0.99999857 +51 255.915 259.7925 1000 50 0.99024147 +52 259.7925 263.67 1000 50 0.99435496 +53 263.67 267.5475 1000 50 0.99999964 +54 267.5475 271.425 1000 50 0.9999918 +55 271.425 275.3025 1000 50 0.99806386 +56 275.3025 279.18 1000 50 0.99998105 +57 279.18 283.0575 1000 50 0.9999999 +58 283.0575 286.935 1000 50 0.9999993 +59 286.935 290.8125 1000 50 0.999736 +60 290.8125 294.69 1000 50 0.99991345 +61 294.69 298.5675 1000 50 0.99998677 +62 298.5675 302.445 1000 50 0.87279737 +63 302.445 306.3225 1000 50 0.99957067 +64 306.3225 310.2 1000 50 0.9999995 +65 310.2 314.0775 1000 50 0.99999917 +66 314.0775 317.955 1000 50 1.0 +67 317.955 321.8325 1000 50 0.9999763 +68 321.8325 325.71 1000 50 0.99995923 +69 325.71 329.5875 1000 50 0.999941 +70 329.5875 333.465 1000 50 0.99999845 +71 333.465 337.3425 1000 50 0.9999987 +72 337.3425 341.21999999999997 1000 50 1.0 +73 341.22 345.0975 1000 50 0.9815616 +74 345.0975 348.975 1000 50 0.9963468 +75 348.975 352.8525 1000 50 1.0 +76 352.8525 356.73 1000 50 0.71729445 +77 356.73 360.6075 1000 50 0.9999999 +78 360.6075 364.485 1000 50 1.0 +79 364.485 368.3625 1000 50 0.9998921 +80 368.3625 372.24 1000 50 0.9999994 +81 372.24 376.1175 1000 50 1.0 +82 376.1175 379.995 1000 50 0.99998426 +83 379.995 383.8725 1000 50 0.99998295 +84 383.8725 387.75 1000 50 1.0 +85 387.75 391.6275 1000 50 0.9981943 +86 391.6275 395.505 1000 50 1.0 +87 395.505 399.3825 1000 50 1.0 +88 399.3825 403.26 1000 50 0.9999999 +89 403.26 407.1375 1000 50 0.9999975 +90 407.1375 411.015 1000 50 1.0 +91 411.015 414.8925 1000 50 0.99999857 +92 414.8925 418.77 1000 50 1.0 +93 418.77 422.6475 1000 50 0.99999726 +94 422.6475 426.525 1000 50 0.98929185 +95 426.525 430.4025 1000 50 1.0 +96 430.4025 434.28 1000 50 0.99998224 +97 434.28 438.15749999999997 1000 50 0.9999995 +98 438.1575 442.035 1000 50 0.999995 +99 442.035 445.9125 1000 50 0.9999925 +100 445.9125 449.79 1000 50 1.0 +101 449.79 453.6675 1000 50 1.0 +102 453.6675 457.545 1000 50 0.99994826 +103 457.545 461.4225 1000 50 0.99999976 +104 461.4225 465.3 1000 50 0.9999989 +105 465.3 469.1775 1000 50 0.9999912 +106 469.1775 473.055 1000 50 0.99999726 +107 473.055 476.9325 1000 50 0.99999034 +108 476.9325 480.81 1000 50 1.0 +109 480.81 484.6875 1000 50 0.9999999 +110 484.6875 488.565 1000 50 0.99996495 +111 488.565 492.4425 1000 50 0.99999666 +112 492.4425 496.32 1000 50 0.99999976 +113 496.32 500.1975 1000 50 0.9999994 +114 500.1975 504.075 1000 50 0.99999356 +115 504.075 507.9525 1000 50 0.9999964 +116 507.9525 511.83 1000 50 0.9999374 +117 511.83 515.7075 1000 50 0.9999342 +118 515.7075 519.585 1000 50 0.9999938 +119 519.585 523.4625000000001 1000 50 0.9999999 +120 523.4625 527.34 1000 50 0.9999993 +121 527.34 531.2175000000001 1000 50 0.9999995 +122 531.2175 535.095 1000 50 1.0 +123 535.095 538.9725000000001 1000 50 0.9999982 +124 538.9725 542.85 1000 50 0.999941 +125 542.85 546.7275000000001 1000 50 0.99999225 +126 546.7275 550.605 1000 50 0.99999154 +127 550.605 554.4825000000001 1000 50 0.9991942 +128 554.4825 558.36 1000 50 0.99999976 +129 558.36 562.2375000000001 1000 50 0.99998295 +130 562.2375 566.115 1000 50 0.99999166 +131 566.115 569.9925000000001 1000 50 0.9999919 +132 569.9925 573.87 1000 50 0.9891412 +133 573.87 577.7475000000001 1000 50 0.9999896 +134 577.7475 581.625 1000 50 0.9999999 +135 581.625 585.5025 1000 50 0.99995685 +136 585.5025 589.3800000000001 1000 50 0.99999964 +137 589.38 593.2575 1000 50 0.9999988 +138 593.2575 597.1350000000001 1000 50 0.99999785 +139 597.135 601.0125 1000 50 0.9987085 +140 601.0125 604.8900000000001 1000 50 0.9994241 +141 604.89 608.7675 1000 50 0.99999964 +142 608.7675 612.6450000000001 1000 50 0.9999944 +143 612.645 616.5225 1000 50 0.9999751 +144 616.5225 620.4000000000001 1000 50 0.99998987 +145 620.4 624.2775 1000 50 0.9999993 +146 624.2775 628.1550000000001 1000 50 0.99415106 +147 628.155 632.0325 1000 50 0.99761474 +148 632.0325 635.9100000000001 1000 50 0.9998442 +149 635.91 639.7875 1000 50 0.99946445 +150 639.7875 643.6650000000001 1000 50 0.99978 +151 643.665 647.5425 1000 50 0.9999981 +152 647.5425 651.4200000000001 1000 50 0.98042417 +153 651.42 655.2975 1000 50 0.98238486 +154 655.2975 659.1750000000001 1000 50 0.9868292 +155 659.175 663.0525 1000 50 0.9913566 +156 663.0525 666.9300000000001 1000 50 0.8642488 +157 670.8075 674.6850000000001 1000 50 0.762288 +158 674.685 678.5625 1000 50 0.9127819 +159 690.195 694.0725000000001 1000 50 0.5116663 +160 721.215 725.0925000000001 1000 50 0.78554267 +161 740.6025 744.48 1000 50 0.5887119 +162 771.6225 775.5 1000 50 0.95774394 +163 783.255 787.1325 1000 50 0.92924875 +164 787.1325 791.0100000000001 1000 50 0.7860147 +165 794.8875 798.7650000000001 1000 50 0.99943835 +166 798.765 802.6425 1000 50 0.808982 +167 802.6425 806.5200000000001 1000 50 0.97340775 +168 806.52 810.3975 1000 50 0.6197789 +169 810.3975 814.2750000000001 1000 50 0.95861 +170 814.275 818.1525 1000 50 0.994426 +171 818.1525 822.0300000000001 1000 50 0.999778 +172 822.03 825.9075 1000 50 0.99566036 +173 825.9075 829.7850000000001 1000 50 0.51422083 +174 829.785 833.6625 1000 50 0.57854944 +175 833.6625 837.5400000000001 1000 50 0.9999995 +176 841.4175 845.2950000000001 1000 50 0.9999043 +177 845.295 849.1725 1000 50 0.9998909 +178 849.1725 853.0500000000001 1000 50 0.99994516 +179 853.05 856.9275 1000 50 0.99999964 +180 856.9275 860.8050000000001 1000 50 0.6732553 +181 860.805 864.6825 1000 50 0.99999976 +182 864.6825 868.5600000000001 1000 50 0.9999913 +183 868.56 872.4375 1000 50 0.99999607 +184 872.4375 876.315 1000 50 0.99999666 +185 876.315 880.1925000000001 1000 50 0.9988863 +186 880.1925 884.07 1000 50 0.9997806 +187 884.07 887.9475000000001 1000 50 0.99750453 +188 887.9475 891.825 1000 50 0.9999987 +189 891.825 895.7025000000001 1000 50 0.9999974 +190 895.7025 899.58 1000 50 0.9999999 +191 899.58 903.4575000000001 1000 50 1.0 +192 903.4575 907.335 1000 50 0.9999999 +193 907.335 911.2125000000001 1000 50 1.0 +194 911.2125 915.09 1000 50 0.9999994 +195 915.09 918.9675000000001 1000 50 0.9997211 +196 918.9675 922.845 1000 50 0.99999356 +197 922.845 926.7225000000001 1000 50 0.9999999 +198 926.7225 930.6 1000 50 0.99999964 +199 930.6 934.4775000000001 1000 50 1.0 +200 934.4775 938.355 1000 50 0.9999999 +201 938.355 942.2325000000001 1000 50 0.99999976 +202 942.2325 946.11 1000 50 1.0 +203 946.11 949.9875000000001 1000 50 0.99993396 +204 949.9875 953.865 1000 50 0.9999989 +205 953.865 957.7425000000001 1000 50 1.0 +206 957.7425 961.62 1000 50 0.99999785 +207 961.62 965.4975000000001 1000 50 1.0 +208 965.4975 969.375 1000 50 0.99996257 +209 969.375 973.2525 1000 50 1.0 +210 973.2525 977.1300000000001 1000 50 0.9999521 +211 977.13 981.0075 1000 50 0.99980253 +212 981.0075 984.8850000000001 1000 50 0.99947137 +213 984.885 988.7625 1000 50 0.9999999 +214 988.7625 992.6400000000001 1000 50 1.0 +215 992.64 996.5175 1000 50 0.9999645 +216 996.5175 1000.3950000000001 1000 50 0.9995486 +217 1000.395 1004.2725 1000 50 0.9999999 +218 1004.2725 1008.1500000000001 1000 50 0.99988186 +219 1008.15 1012.0275 1000 50 0.99574286 +220 1012.0275 1015.9050000000001 1000 50 0.9999995 +221 1015.905 1019.7825 1000 50 0.99999964 +222 1019.7825 1023.6600000000001 1000 50 0.999992 +223 1023.66 1027.5375 1000 50 0.9999957 +224 1027.5375 1031.415 1000 50 0.99999976 +225 1031.415 1035.2925 1000 50 0.9998375 +226 1035.2925 1039.17 1000 50 0.999995 +227 1039.17 1043.0475000000001 1000 50 0.9998945 +228 1043.0475 1046.925 1000 50 0.9999999 +229 1046.925 1050.8025 1000 50 0.9999999 +230 1050.8025 1054.68 1000 50 0.9999244 +231 1054.68 1058.5575000000001 1000 50 0.99999785 +232 1058.5575 1062.435 1000 50 0.9216212 +233 1062.435 1066.3125 1000 50 0.9999962 +234 1066.3125 1070.19 1000 50 0.9999999 +235 1070.19 1074.0675 1000 50 0.9999974 +236 1074.0675 1077.9450000000002 1000 50 0.99999917 +237 1077.945 1081.8225 1000 50 0.99999964 +238 1081.8225 1085.7 1000 50 0.9999995 +239 1085.7 1089.5775 1000 50 0.9999995 +240 1089.5775 1093.4550000000002 1000 50 0.99991333 +241 1093.455 1097.3325 1000 50 0.99998724 +242 1097.3325 1101.21 1000 50 0.9999958 +243 1101.21 1105.0875 1000 50 0.99898034 +244 1105.0875 1108.9650000000001 1000 50 0.99991524 +245 1108.965 1112.8425 1000 50 0.9999777 +246 1112.8425 1116.72 1000 50 0.9997725 +247 1116.72 1120.5975 1000 50 0.99998796 +248 1120.5975 1124.4750000000001 1000 50 0.9999999 +249 1124.475 1128.3525 1000 50 0.9996536 +250 1128.3525 1132.23 1000 50 0.99970514 +251 1132.23 1136.1075 1000 50 0.9999927 +252 1136.1075 1139.9850000000001 1000 50 0.99991846 +253 1139.985 1143.8625 1000 50 0.99999654 +254 1143.8625 1147.74 1000 50 0.9999759 +255 1147.74 1151.6175 1000 50 0.9999193 +256 1151.6175 1155.4950000000001 1000 50 0.99999726 +257 1155.495 1159.3725 1000 50 0.99999917 +258 1159.3725 1163.25 1000 50 0.99994767 +259 1163.25 1167.1275 1000 50 0.9999999 +260 1167.1275 1171.005 1000 50 0.9999839 +261 1171.005 1174.8825000000002 1000 50 0.99999547 +262 1174.8825 1178.76 1000 50 0.99837637 +263 1178.76 1182.6375 1000 50 0.70916575 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_07-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_07-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..3de93caac73c22719afe659f14edadff0c170a80 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_07-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,82 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9961701 +2 3.8775 7.755 1000 50 1.0 +3 7.755 11.6325 1000 50 0.9938261 +4 11.6325 15.51 1000 50 0.9998604 +5 15.51 19.3875 1000 50 0.9999974 +6 19.3875 23.265 1000 50 0.99975175 +7 23.265 27.142500000000002 1000 50 0.99998224 +8 27.1425 31.02 1000 50 0.97314024 +9 34.8975 38.775 1000 50 0.99992824 +10 38.775 42.652499999999996 1000 50 0.99999976 +11 42.6525 46.53 1000 50 0.99957925 +12 46.53 50.4075 1000 50 0.99996626 +13 50.4075 54.285 1000 50 0.99997866 +14 54.285 58.162499999999994 1000 50 1.0 +15 58.1625 62.04 1000 50 0.99997115 +16 62.04 65.9175 1000 50 0.99961555 +17 65.9175 69.795 1000 50 0.99999845 +18 69.795 73.6725 1000 50 0.99999976 +19 73.6725 77.55 1000 50 0.9999989 +20 77.55 81.4275 1000 50 0.99999917 +21 81.4275 85.30499999999999 1000 50 0.78806394 +22 85.305 89.1825 1000 50 0.99849904 +23 89.1825 93.06 1000 50 0.9999621 +24 93.06 96.9375 1000 50 0.9999951 +25 96.9375 100.815 1000 50 0.98949885 +26 100.815 104.6925 1000 50 0.9999987 +27 104.6925 108.57 1000 50 0.9996797 +28 108.57 112.44749999999999 1000 50 0.9995851 +29 112.4475 116.325 1000 50 0.99999285 +30 116.325 120.2025 1000 50 0.9992213 +31 120.2025 124.08 1000 50 0.9988921 +32 124.08 127.9575 1000 50 0.9999963 +33 127.9575 131.835 1000 50 0.9997501 +34 131.835 135.7125 1000 50 0.9925587 +35 135.7125 139.59 1000 50 0.99998856 +36 139.59 143.4675 1000 50 0.99999523 +37 143.4675 147.345 1000 50 0.9999988 +38 151.2225 155.1 1000 50 0.9996952 +39 155.1 158.9775 1000 50 1.0 +40 158.9775 162.855 1000 50 0.8893777 +41 162.855 166.7325 1000 50 0.9974585 +42 166.7325 170.60999999999999 1000 50 0.9981102 +43 170.61 174.4875 1000 50 0.99693334 +44 174.4875 178.365 1000 50 0.99910337 +45 182.2425 186.12 1000 50 0.9954764 +46 186.12 189.9975 1000 50 0.88185865 +47 189.9975 193.875 1000 50 0.5388955 +48 209.385 213.2625 1000 50 0.793488 +49 228.7725 232.65 1000 50 0.9510057 +50 236.5275 240.405 1000 50 0.79863554 +51 248.16 252.0375 1000 50 0.64534736 +52 259.7925 263.67 1000 50 0.5746945 +53 263.67 267.5475 1000 50 0.55545133 +54 279.18 283.0575 1000 50 0.91609335 +55 283.0575 286.935 1000 50 0.5983186 +56 310.2 314.0775 1000 50 0.9346246 +57 314.0775 317.955 1000 50 0.80494785 +58 317.955 321.8325 1000 50 0.99418217 +59 333.465 337.3425 1000 50 0.9796596 +60 337.3425 341.21999999999997 1000 50 0.9930133 +61 341.22 345.0975 1000 50 0.999997 +62 345.0975 348.975 1000 50 0.99999166 +63 348.975 352.8525 1000 50 0.9997172 +64 352.8525 356.73 1000 50 0.99984515 +65 356.73 360.6075 1000 50 0.9999999 +66 360.6075 364.485 1000 50 0.9999927 +67 364.485 368.3625 1000 50 0.999992 +68 368.3625 372.24 1000 50 0.9999038 +69 372.24 376.1175 1000 50 0.9999956 +70 376.1175 379.995 1000 50 0.9994561 +71 379.995 383.8725 1000 50 0.9999995 +72 383.8725 387.75 1000 50 0.9999993 +73 387.75 391.6275 1000 50 0.9999993 +74 391.6275 395.505 1000 50 1.0 +75 395.505 399.3825 1000 50 0.99284256 +76 399.3825 403.26 1000 50 0.9999994 +77 403.26 407.1375 1000 50 1.0 +78 407.1375 411.015 1000 50 0.99550134 +79 411.015 414.8925 1000 50 0.9999999 +80 414.8925 418.77 1000 50 1.0 +81 418.77 422.6475 1000 50 0.99874085 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_07-10-42_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_07-10-42_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5fa3a72daec234f49fc80936d6b88d7e62078be8 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_07-10-42_annot_2022-11-30_01.txt @@ -0,0 +1,193 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99999785 +2 3.8775 7.755 1000 50 0.99965715 +3 7.755 11.6325 1000 50 0.9999969 +4 11.6325 15.51 1000 50 0.97803247 +5 15.51 19.3875 1000 50 0.6358296 +6 19.3875 23.265 1000 50 0.999589 +7 23.265 27.142500000000002 1000 50 0.9999689 +8 27.1425 31.02 1000 50 0.9661072 +9 31.02 34.8975 1000 50 0.7538247 +10 34.8975 38.775 1000 50 0.5051512 +11 38.775 42.652499999999996 1000 50 0.9961265 +12 42.6525 46.53 1000 50 0.85653454 +13 46.53 50.4075 1000 50 0.9937079 +14 54.285 58.162499999999994 1000 50 0.9170533 +15 69.795 73.6725 1000 50 0.99734515 +16 89.1825 93.06 1000 50 0.9999964 +17 93.06 96.9375 1000 50 0.94738024 +18 100.815 104.6925 1000 50 0.97191894 +19 104.6925 108.57 1000 50 0.9981463 +20 108.57 112.44749999999999 1000 50 0.9912743 +21 112.4475 116.325 1000 50 0.98302037 +22 120.2025 124.08 1000 50 0.91528517 +23 124.08 127.9575 1000 50 0.75176996 +24 131.835 135.7125 1000 50 0.5992322 +25 139.59 143.4675 1000 50 0.96523696 +26 143.4675 147.345 1000 50 0.9982338 +27 151.2225 155.1 1000 50 0.99788934 +28 158.9775 162.855 1000 50 0.5047096 +29 162.855 166.7325 1000 50 0.9911033 +30 166.7325 170.60999999999999 1000 50 0.9433859 +31 170.61 174.4875 1000 50 0.99996376 +32 174.4875 178.365 1000 50 0.8052677 +33 178.365 182.2425 1000 50 0.93399584 +34 182.2425 186.12 1000 50 0.8280093 +35 189.9975 193.875 1000 50 0.96238756 +36 193.875 197.7525 1000 50 0.99867165 +37 197.7525 201.63 1000 50 0.9363527 +38 201.63 205.5075 1000 50 0.93791306 +39 205.5075 209.385 1000 50 0.99999905 +40 209.385 213.2625 1000 50 0.9999622 +41 213.2625 217.14 1000 50 0.99999714 +42 217.14 221.01749999999998 1000 50 0.87275875 +43 221.0175 224.895 1000 50 1.0 +44 224.895 228.7725 1000 50 0.9999486 +45 228.7725 232.65 1000 50 0.99911076 +46 232.65 236.5275 1000 50 1.0 +47 236.5275 240.405 1000 50 1.0 +48 240.405 244.2825 1000 50 0.99999285 +49 244.2825 248.16 1000 50 1.0 +50 248.16 252.0375 1000 50 0.99993527 +51 252.0375 255.915 1000 50 0.9998648 +52 255.915 259.7925 1000 50 0.9999993 +53 259.7925 263.67 1000 50 0.99999905 +54 263.67 267.5475 1000 50 1.0 +55 267.5475 271.425 1000 50 0.9997969 +56 271.425 275.3025 1000 50 0.9965592 +57 275.3025 279.18 1000 50 0.9951828 +58 279.18 283.0575 1000 50 0.99896944 +59 283.0575 286.935 1000 50 0.999982 +60 286.935 290.8125 1000 50 0.99999547 +61 294.69 298.5675 1000 50 1.0 +62 298.5675 302.445 1000 50 1.0 +63 302.445 306.3225 1000 50 0.9977981 +64 306.3225 310.2 1000 50 0.9999945 +65 310.2 314.0775 1000 50 0.9643274 +66 314.0775 317.955 1000 50 0.9999988 +67 317.955 321.8325 1000 50 0.99999905 +68 321.8325 325.71 1000 50 0.9932613 +69 325.71 329.5875 1000 50 0.958684 +70 329.5875 333.465 1000 50 0.9999987 +71 333.465 337.3425 1000 50 0.9999999 +72 337.3425 341.21999999999997 1000 50 0.9999201 +73 341.22 345.0975 1000 50 0.99987364 +74 345.0975 348.975 1000 50 0.9999876 +75 348.975 352.8525 1000 50 0.99825495 +76 352.8525 356.73 1000 50 0.99873513 +77 356.73 360.6075 1000 50 0.98181283 +78 360.6075 364.485 1000 50 0.99978846 +79 364.485 368.3625 1000 50 0.99999416 +80 368.3625 372.24 1000 50 0.9913701 +81 372.24 376.1175 1000 50 0.9999981 +82 376.1175 379.995 1000 50 0.9978036 +83 379.995 383.8725 1000 50 0.99999285 +84 383.8725 387.75 1000 50 1.0 +85 387.75 391.6275 1000 50 0.9999739 +86 391.6275 395.505 1000 50 0.9999372 +87 395.505 399.3825 1000 50 0.999864 +88 399.3825 403.26 1000 50 0.9999912 +89 403.26 407.1375 1000 50 1.0 +90 407.1375 411.015 1000 50 0.99999106 +91 411.015 414.8925 1000 50 0.99998987 +92 414.8925 418.77 1000 50 0.999997 +93 418.77 422.6475 1000 50 0.9999919 +94 422.6475 426.525 1000 50 0.99856734 +95 426.525 430.4025 1000 50 0.99988747 +96 430.4025 434.28 1000 50 0.99998343 +97 434.28 438.15749999999997 1000 50 0.99998987 +98 438.1575 442.035 1000 50 0.9999988 +99 442.035 445.9125 1000 50 0.9999994 +100 445.9125 449.79 1000 50 0.9999995 +101 449.79 453.6675 1000 50 0.9999447 +102 453.6675 457.545 1000 50 0.99999964 +103 457.545 461.4225 1000 50 0.999997 +104 461.4225 465.3 1000 50 0.9999989 +105 465.3 469.1775 1000 50 0.9999999 +106 469.1775 473.055 1000 50 0.9989095 +107 473.055 476.9325 1000 50 0.9999844 +108 476.9325 480.81 1000 50 1.0 +109 480.81 484.6875 1000 50 0.9999987 +110 484.6875 488.565 1000 50 0.99999607 +111 488.565 492.4425 1000 50 0.9999999 +112 492.4425 496.32 1000 50 0.9999995 +113 496.32 500.1975 1000 50 0.9999995 +114 500.1975 504.075 1000 50 0.99987245 +115 504.075 507.9525 1000 50 0.9999999 +116 507.9525 511.83 1000 50 0.99866784 +117 511.83 515.7075 1000 50 0.5735093 +118 515.7075 519.585 1000 50 0.89353275 +119 519.585 523.4625000000001 1000 50 0.999752 +120 523.4625 527.34 1000 50 0.95745623 +121 527.34 531.2175000000001 1000 50 0.9974771 +122 531.2175 535.095 1000 50 0.99184436 +123 535.095 538.9725000000001 1000 50 0.99092406 +124 538.9725 542.85 1000 50 0.9997795 +125 542.85 546.7275000000001 1000 50 0.59993225 +126 558.36 562.2375000000001 1000 50 0.98878306 +127 566.115 569.9925000000001 1000 50 0.9403077 +128 569.9925 573.87 1000 50 0.80817676 +129 597.135 601.0125 1000 50 0.63819134 +130 601.0125 604.8900000000001 1000 50 0.6344951 +131 604.89 608.7675 1000 50 0.9461222 +132 616.5225 620.4000000000001 1000 50 0.817612 +133 624.2775 628.1550000000001 1000 50 0.58281267 +134 628.155 632.0325 1000 50 0.99926096 +135 632.0325 635.9100000000001 1000 50 0.9447373 +136 639.7875 643.6650000000001 1000 50 0.99964106 +137 643.665 647.5425 1000 50 0.9669864 +138 651.42 655.2975 1000 50 0.99716467 +139 655.2975 659.1750000000001 1000 50 1.0 +140 659.175 663.0525 1000 50 0.9997259 +141 663.0525 666.9300000000001 1000 50 0.99998045 +142 666.93 670.8075 1000 50 0.9960045 +143 670.8075 674.6850000000001 1000 50 0.99999833 +144 674.685 678.5625 1000 50 0.9998241 +145 678.5625 682.44 1000 50 0.998901 +146 682.44 686.3175000000001 1000 50 0.99989605 +147 686.3175 690.195 1000 50 0.99407685 +148 690.195 694.0725000000001 1000 50 0.9999155 +149 694.0725 697.95 1000 50 0.99999976 +150 697.95 701.8275000000001 1000 50 1.0 +151 701.8275 705.705 1000 50 0.99997556 +152 705.705 709.5825000000001 1000 50 0.9999286 +153 709.5825 713.46 1000 50 0.9999993 +154 713.46 717.3375000000001 1000 50 0.9998994 +155 717.3375 721.215 1000 50 0.9992194 +156 721.215 725.0925000000001 1000 50 1.0 +157 725.0925 728.97 1000 50 0.9999999 +158 728.97 732.8475000000001 1000 50 0.99998844 +159 732.8475 736.725 1000 50 1.0 +160 736.725 740.6025000000001 1000 50 0.99998975 +161 740.6025 744.48 1000 50 0.99999976 +162 744.48 748.3575000000001 1000 50 1.0 +163 748.3575 752.235 1000 50 0.9999926 +164 752.235 756.1125000000001 1000 50 0.9998516 +165 756.1125 759.99 1000 50 0.9999999 +166 759.99 763.8675000000001 1000 50 0.9999881 +167 763.8675 767.745 1000 50 0.99998903 +168 767.745 771.6225000000001 1000 50 0.99987483 +169 771.6225 775.5 1000 50 1.0 +170 775.5 779.3775 1000 50 0.99999964 +171 779.3775 783.2550000000001 1000 50 0.99998736 +172 783.255 787.1325 1000 50 1.0 +173 787.1325 791.0100000000001 1000 50 0.9999981 +174 791.01 794.8875 1000 50 0.99999774 +175 794.8875 798.7650000000001 1000 50 1.0 +176 798.765 802.6425 1000 50 0.9928356 +177 802.6425 806.5200000000001 1000 50 1.0 +178 806.52 810.3975 1000 50 0.99999726 +179 810.3975 814.2750000000001 1000 50 0.9966127 +180 814.275 818.1525 1000 50 1.0 +181 818.1525 822.0300000000001 1000 50 0.99999917 +182 822.03 825.9075 1000 50 0.99997187 +183 825.9075 829.7850000000001 1000 50 0.9999989 +184 829.785 833.6625 1000 50 0.9775244 +185 833.6625 837.5400000000001 1000 50 1.0 +186 837.54 841.4175 1000 50 0.9999653 +187 841.4175 845.2950000000001 1000 50 0.99624264 +188 845.295 849.1725 1000 50 0.99999964 +189 849.1725 853.0500000000001 1000 50 1.0 +190 853.05 856.9275 1000 50 0.99999976 +191 856.9275 860.8050000000001 1000 50 0.9994836 +192 860.805 864.6825 1000 50 0.9697092 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_08-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_08-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f2dc4007b5b9887ac845699b7db54a75375c188d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_08-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,189 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999304 +2 3.8775 7.755 1000 50 0.99916816 +3 7.755 11.6325 1000 50 1.0 +4 11.6325 15.51 1000 50 0.99999917 +5 15.51 19.3875 1000 50 0.9999957 +6 19.3875 23.265 1000 50 0.99962187 +7 23.265 27.142500000000002 1000 50 1.0 +8 27.1425 31.02 1000 50 0.9999958 +9 31.02 34.8975 1000 50 0.99997306 +10 34.8975 38.775 1000 50 0.9639541 +11 38.775 42.652499999999996 1000 50 0.99999917 +12 42.6525 46.53 1000 50 0.99999523 +13 46.53 50.4075 1000 50 0.9999182 +14 50.4075 54.285 1000 50 0.92391837 +15 54.285 58.162499999999994 1000 50 0.9990662 +16 58.1625 62.04 1000 50 0.9990644 +17 62.04 65.9175 1000 50 0.99216837 +18 65.9175 69.795 1000 50 0.9998085 +19 69.795 73.6725 1000 50 0.9999931 +20 73.6725 77.55 1000 50 0.99977964 +21 77.55 81.4275 1000 50 0.9999596 +22 81.4275 85.30499999999999 1000 50 0.99998236 +23 85.305 89.1825 1000 50 0.9996742 +24 89.1825 93.06 1000 50 0.98735166 +25 93.06 96.9375 1000 50 0.99999654 +26 96.9375 100.815 1000 50 0.98481095 +27 100.815 104.6925 1000 50 0.9998969 +28 104.6925 108.57 1000 50 0.99999225 +29 108.57 112.44749999999999 1000 50 1.0 +30 112.4475 116.325 1000 50 0.9999933 +31 116.325 120.2025 1000 50 0.9996766 +32 120.2025 124.08 1000 50 0.97116727 +33 124.08 127.9575 1000 50 0.9971505 +34 127.9575 131.835 1000 50 0.9973205 +35 131.835 135.7125 1000 50 0.9996481 +36 135.7125 139.59 1000 50 0.9982127 +37 143.4675 147.345 1000 50 0.99896 +38 147.345 151.2225 1000 50 0.99999774 +39 151.2225 155.1 1000 50 0.9729019 +40 155.1 158.9775 1000 50 0.9990283 +41 158.9775 162.855 1000 50 0.99985516 +42 162.855 166.7325 1000 50 0.99999845 +43 166.7325 170.60999999999999 1000 50 0.99999774 +44 170.61 174.4875 1000 50 0.99999845 +45 174.4875 178.365 1000 50 0.9999715 +46 178.365 182.2425 1000 50 0.9991755 +47 182.2425 186.12 1000 50 1.0 +48 186.12 189.9975 1000 50 0.9999461 +49 189.9975 193.875 1000 50 1.0 +50 193.875 197.7525 1000 50 0.9999999 +51 197.7525 201.63 1000 50 0.9999962 +52 201.63 205.5075 1000 50 0.9999726 +53 205.5075 209.385 1000 50 1.0 +54 209.385 213.2625 1000 50 0.9884193 +55 213.2625 217.14 1000 50 0.9999999 +56 217.14 221.01749999999998 1000 50 1.0 +57 221.0175 224.895 1000 50 0.99951386 +58 224.895 228.7725 1000 50 1.0 +59 228.7725 232.65 1000 50 0.999995 +60 232.65 236.5275 1000 50 0.9999999 +61 236.5275 240.405 1000 50 0.9999833 +62 240.405 244.2825 1000 50 0.99999976 +63 244.2825 248.16 1000 50 1.0 +64 248.16 252.0375 1000 50 0.9999492 +65 252.0375 255.915 1000 50 1.0 +66 255.915 259.7925 1000 50 1.0 +67 259.7925 263.67 1000 50 1.0 +68 263.67 267.5475 1000 50 1.0 +69 267.5475 271.425 1000 50 0.9999999 +70 271.425 275.3025 1000 50 0.9999999 +71 275.3025 279.18 1000 50 1.0 +72 279.18 283.0575 1000 50 0.9999918 +73 283.0575 286.935 1000 50 1.0 +74 286.935 290.8125 1000 50 0.9999118 +75 290.8125 294.69 1000 50 1.0 +76 294.69 298.5675 1000 50 1.0 +77 298.5675 302.445 1000 50 0.99965644 +78 302.445 306.3225 1000 50 1.0 +79 306.3225 310.2 1000 50 1.0 +80 310.2 314.0775 1000 50 0.99999774 +81 314.0775 317.955 1000 50 1.0 +82 317.955 321.8325 1000 50 0.9999999 +83 321.8325 325.71 1000 50 1.0 +84 325.71 329.5875 1000 50 1.0 +85 329.5875 333.465 1000 50 0.99954695 +86 333.465 337.3425 1000 50 1.0 +87 337.3425 341.21999999999997 1000 50 0.9999994 +88 341.22 345.0975 1000 50 0.99998367 +89 345.0975 348.975 1000 50 1.0 +90 348.975 352.8525 1000 50 0.9999995 +91 352.8525 356.73 1000 50 0.9999981 +92 356.73 360.6075 1000 50 0.9999994 +93 360.6075 364.485 1000 50 0.9999708 +94 364.485 368.3625 1000 50 0.99999964 +95 368.3625 372.24 1000 50 0.99774146 +96 372.24 376.1175 1000 50 0.9601858 +97 376.1175 379.995 1000 50 0.99995244 +98 379.995 383.8725 1000 50 0.9999999 +99 383.8725 387.75 1000 50 0.9999734 +100 387.75 391.6275 1000 50 0.995723 +101 391.6275 395.505 1000 50 0.99999905 +102 395.505 399.3825 1000 50 0.9999993 +103 399.3825 403.26 1000 50 0.9998791 +104 403.26 407.1375 1000 50 0.99938285 +105 407.1375 411.015 1000 50 0.9999747 +106 411.015 414.8925 1000 50 0.9999963 +107 414.8925 418.77 1000 50 0.999979 +108 418.77 422.6475 1000 50 0.99873155 +109 422.6475 426.525 1000 50 0.99959844 +110 426.525 430.4025 1000 50 1.0 +111 430.4025 434.28 1000 50 0.9999479 +112 434.28 438.15749999999997 1000 50 0.99999976 +113 438.1575 442.035 1000 50 1.0 +114 442.035 445.9125 1000 50 0.9999994 +115 445.9125 449.79 1000 50 0.9999875 +116 449.79 453.6675 1000 50 0.9984048 +117 453.6675 457.545 1000 50 0.99972457 +118 457.545 461.4225 1000 50 0.9993604 +119 461.4225 465.3 1000 50 0.9999999 +120 465.3 469.1775 1000 50 0.9999999 +121 469.1775 473.055 1000 50 0.9999379 +122 473.055 476.9325 1000 50 0.9999995 +123 476.9325 480.81 1000 50 0.9999987 +124 480.81 484.6875 1000 50 1.0 +125 484.6875 488.565 1000 50 1.0 +126 488.565 492.4425 1000 50 0.9999995 +127 492.4425 496.32 1000 50 0.99999917 +128 496.32 500.1975 1000 50 1.0 +129 500.1975 504.075 1000 50 0.9999932 +130 504.075 507.9525 1000 50 0.9999926 +131 507.9525 511.83 1000 50 0.97739923 +132 511.83 515.7075 1000 50 0.99887365 +133 515.7075 519.585 1000 50 0.9995152 +134 519.585 523.4625000000001 1000 50 0.99973947 +135 523.4625 527.34 1000 50 0.9997471 +136 527.34 531.2175000000001 1000 50 0.99981314 +137 538.9725 542.85 1000 50 0.9999994 +138 542.85 546.7275000000001 1000 50 0.70842236 +139 546.7275 550.605 1000 50 0.9999989 +140 550.605 554.4825000000001 1000 50 0.9999243 +141 554.4825 558.36 1000 50 0.9955526 +142 558.36 562.2375000000001 1000 50 0.9998292 +143 562.2375 566.115 1000 50 0.8537342 +144 566.115 569.9925000000001 1000 50 0.9999628 +145 569.9925 573.87 1000 50 0.99886537 +146 573.87 577.7475000000001 1000 50 0.9868634 +147 577.7475 581.625 1000 50 0.998738 +148 581.625 585.5025 1000 50 0.99994457 +149 585.5025 589.3800000000001 1000 50 0.9998882 +150 589.38 593.2575 1000 50 0.56915647 +151 593.2575 597.1350000000001 1000 50 0.9999994 +152 597.135 601.0125 1000 50 0.94663393 +153 601.0125 604.8900000000001 1000 50 0.8221468 +154 604.89 608.7675 1000 50 0.99988854 +155 608.7675 612.6450000000001 1000 50 0.9889197 +156 612.645 616.5225 1000 50 0.57417244 +157 616.5225 620.4000000000001 1000 50 0.97441727 +158 620.4 624.2775 1000 50 0.993937 +159 624.2775 628.1550000000001 1000 50 0.99962485 +160 632.0325 635.9100000000001 1000 50 0.9999918 +161 635.91 639.7875 1000 50 0.99828476 +162 639.7875 643.6650000000001 1000 50 0.99999106 +163 643.665 647.5425 1000 50 0.999851 +164 647.5425 651.4200000000001 1000 50 0.99999225 +165 651.42 655.2975 1000 50 0.9998535 +166 655.2975 659.1750000000001 1000 50 0.9999331 +167 659.175 663.0525 1000 50 0.99987805 +168 663.0525 666.9300000000001 1000 50 0.9999788 +169 666.93 670.8075 1000 50 0.99668485 +170 670.8075 674.6850000000001 1000 50 1.0 +171 674.685 678.5625 1000 50 0.99999666 +172 678.5625 682.44 1000 50 1.0 +173 682.44 686.3175000000001 1000 50 0.99999475 +174 686.3175 690.195 1000 50 0.99999976 +175 690.195 694.0725000000001 1000 50 0.99963975 +176 694.0725 697.95 1000 50 0.999864 +177 697.95 701.8275000000001 1000 50 1.0 +178 701.8275 705.705 1000 50 0.99999976 +179 705.705 709.5825000000001 1000 50 0.99999714 +180 709.5825 713.46 1000 50 1.0 +181 713.46 717.3375000000001 1000 50 1.0 +182 717.3375 721.215 1000 50 0.9999999 +183 721.215 725.0925000000001 1000 50 0.9999999 +184 725.0925 728.97 1000 50 1.0 +185 728.97 732.8475000000001 1000 50 1.0 +186 732.8475 736.725 1000 50 1.0 +187 736.725 740.6025000000001 1000 50 1.0 +188 740.6025 744.48 1000 50 1.0 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_08-17-53_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_08-17-53_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b741baf2b9f9dbb94794b1f26dce4b4346dde583 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_08-17-53_annot_2022-11-30_01.txt @@ -0,0 +1,110 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.7666321 +2 3.8775 7.755 1000 50 0.9781627 +3 7.755 11.6325 1000 50 0.528876 +4 11.6325 15.51 1000 50 0.9998265 +5 15.51 19.3875 1000 50 0.99681216 +6 19.3875 23.265 1000 50 0.9832304 +7 23.265 27.142500000000002 1000 50 0.9999418 +8 31.02 34.8975 1000 50 0.99998116 +9 34.8975 38.775 1000 50 0.99999964 +10 42.6525 46.53 1000 50 0.9999994 +11 46.53 50.4075 1000 50 0.99108607 +12 50.4075 54.285 1000 50 0.99944586 +13 54.285 58.162499999999994 1000 50 0.99962604 +14 58.1625 62.04 1000 50 0.98382354 +15 62.04 65.9175 1000 50 0.9980763 +16 65.9175 69.795 1000 50 0.99976414 +17 69.795 73.6725 1000 50 0.9757008 +18 73.6725 77.55 1000 50 0.99847037 +19 77.55 81.4275 1000 50 0.9718997 +20 81.4275 85.30499999999999 1000 50 0.82477415 +21 85.305 89.1825 1000 50 0.97361696 +22 89.1825 93.06 1000 50 0.9998085 +23 93.06 96.9375 1000 50 0.9866578 +24 96.9375 100.815 1000 50 0.9999609 +25 100.815 104.6925 1000 50 0.9990934 +26 104.6925 108.57 1000 50 0.99999726 +27 108.57 112.44749999999999 1000 50 0.9995092 +28 112.4475 116.325 1000 50 1.0 +29 116.325 120.2025 1000 50 0.99997425 +30 120.2025 124.08 1000 50 0.9999994 +31 124.08 127.9575 1000 50 0.99999964 +32 127.9575 131.835 1000 50 0.9999968 +33 131.835 135.7125 1000 50 1.0 +34 135.7125 139.59 1000 50 0.99999905 +35 139.59 143.4675 1000 50 0.9999999 +36 143.4675 147.345 1000 50 0.9999981 +37 147.345 151.2225 1000 50 0.9999987 +38 151.2225 155.1 1000 50 1.0 +39 155.1 158.9775 1000 50 1.0 +40 158.9775 162.855 1000 50 0.9999913 +41 162.855 166.7325 1000 50 1.0 +42 166.7325 170.60999999999999 1000 50 0.9998988 +43 170.61 174.4875 1000 50 1.0 +44 174.4875 178.365 1000 50 0.9999999 +45 178.365 182.2425 1000 50 0.99999774 +46 182.2425 186.12 1000 50 1.0 +47 186.12 189.9975 1000 50 0.9999999 +48 189.9975 193.875 1000 50 0.99999666 +49 193.875 197.7525 1000 50 1.0 +50 197.7525 201.63 1000 50 1.0 +51 201.63 205.5075 1000 50 0.99999 +52 205.5075 209.385 1000 50 0.9999999 +53 209.385 213.2625 1000 50 0.99949694 +54 213.2625 217.14 1000 50 0.9999999 +55 217.14 221.01749999999998 1000 50 0.99999964 +56 221.0175 224.895 1000 50 1.0 +57 224.895 228.7725 1000 50 1.0 +58 228.7725 232.65 1000 50 0.99978465 +59 232.65 236.5275 1000 50 0.9999989 +60 236.5275 240.405 1000 50 0.9999647 +61 240.405 244.2825 1000 50 1.0 +62 244.2825 248.16 1000 50 0.9999378 +63 248.16 252.0375 1000 50 0.9997497 +64 252.0375 255.915 1000 50 0.9998091 +65 255.915 259.7925 1000 50 0.99999857 +66 259.7925 263.67 1000 50 0.9999863 +67 263.67 267.5475 1000 50 0.9998982 +68 267.5475 271.425 1000 50 0.99989057 +69 271.425 275.3025 1000 50 0.9999999 +70 275.3025 279.18 1000 50 0.99158853 +71 279.18 283.0575 1000 50 0.93034077 +72 283.0575 286.935 1000 50 1.0 +73 286.935 290.8125 1000 50 0.9999856 +74 290.8125 294.69 1000 50 0.981841 +75 294.69 298.5675 1000 50 0.72247565 +76 298.5675 302.445 1000 50 1.0 +77 302.445 306.3225 1000 50 0.9219062 +78 306.3225 310.2 1000 50 0.9996093 +79 310.2 314.0775 1000 50 0.99193877 +80 314.0775 317.955 1000 50 0.99999976 +81 317.955 321.8325 1000 50 0.9999995 +82 321.8325 325.71 1000 50 0.9998503 +83 325.71 329.5875 1000 50 0.9997731 +84 329.5875 333.465 1000 50 1.0 +85 333.465 337.3425 1000 50 0.9999999 +86 337.3425 341.21999999999997 1000 50 0.99999845 +87 341.22 345.0975 1000 50 0.9999999 +88 345.0975 348.975 1000 50 0.99999857 +89 348.975 352.8525 1000 50 0.999998 +90 352.8525 356.73 1000 50 0.9999615 +91 356.73 360.6075 1000 50 0.9999974 +92 360.6075 364.485 1000 50 0.99999774 +93 364.485 368.3625 1000 50 0.99999905 +94 368.3625 372.24 1000 50 0.99953234 +95 372.24 376.1175 1000 50 0.99987876 +96 376.1175 379.995 1000 50 1.0 +97 379.995 383.8725 1000 50 0.99998677 +98 383.8725 387.75 1000 50 0.9999795 +99 387.75 391.6275 1000 50 0.99990106 +100 391.6275 395.505 1000 50 0.99980587 +101 395.505 399.3825 1000 50 1.0 +102 399.3825 403.26 1000 50 0.9999449 +103 403.26 407.1375 1000 50 0.99979025 +104 407.1375 411.015 1000 50 0.9998474 +105 411.015 414.8925 1000 50 0.99995184 +106 414.8925 418.77 1000 50 0.9966487 +107 418.77 422.6475 1000 50 0.9999945 +108 422.6475 426.525 1000 50 0.90057486 +109 430.4025 434.28 1000 50 0.91510266 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_09-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_09-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..98dffd2f29174f9a8b837b2e8e9e7ffeee69855b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_09-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,249 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9969229 +2 7.755 11.6325 1000 50 0.72189695 +3 11.6325 15.51 1000 50 0.9752994 +4 15.51 19.3875 1000 50 0.7102969 +5 19.3875 23.265 1000 50 0.99997723 +6 23.265 27.142500000000002 1000 50 0.9999927 +7 27.1425 31.02 1000 50 0.5764936 +8 31.02 34.8975 1000 50 0.90967274 +9 34.8975 38.775 1000 50 0.8769595 +10 42.6525 46.53 1000 50 0.9999943 +11 46.53 50.4075 1000 50 0.9999573 +12 50.4075 54.285 1000 50 0.86425674 +13 54.285 58.162499999999994 1000 50 0.5728468 +14 58.1625 62.04 1000 50 0.99360126 +15 62.04 65.9175 1000 50 0.9875581 +16 65.9175 69.795 1000 50 0.9988825 +17 69.795 73.6725 1000 50 0.9975273 +18 73.6725 77.55 1000 50 0.9967694 +19 77.55 81.4275 1000 50 0.99985075 +20 81.4275 85.30499999999999 1000 50 0.9999902 +21 85.305 89.1825 1000 50 0.9995547 +22 89.1825 93.06 1000 50 0.99999905 +23 93.06 96.9375 1000 50 0.99139005 +24 100.815 104.6925 1000 50 0.9917257 +25 104.6925 108.57 1000 50 0.999987 +26 108.57 112.44749999999999 1000 50 0.99992394 +27 112.4475 116.325 1000 50 0.5201959 +28 116.325 120.2025 1000 50 0.9999689 +29 120.2025 124.08 1000 50 0.9976515 +30 124.08 127.9575 1000 50 0.8500377 +31 127.9575 131.835 1000 50 0.60600567 +32 131.835 135.7125 1000 50 0.84714043 +33 135.7125 139.59 1000 50 0.9914801 +34 139.59 143.4675 1000 50 0.9937629 +35 143.4675 147.345 1000 50 0.9892419 +36 147.345 151.2225 1000 50 0.9419666 +37 151.2225 155.1 1000 50 0.9998398 +38 155.1 158.9775 1000 50 0.99497104 +39 158.9775 162.855 1000 50 0.9970091 +40 162.855 166.7325 1000 50 0.92543966 +41 166.7325 170.60999999999999 1000 50 0.97615016 +42 170.61 174.4875 1000 50 0.99670416 +43 174.4875 178.365 1000 50 0.710371 +44 178.365 182.2425 1000 50 0.9989938 +45 182.2425 186.12 1000 50 0.84817237 +46 186.12 189.9975 1000 50 0.99550915 +47 189.9975 193.875 1000 50 0.66020155 +48 193.875 197.7525 1000 50 0.9991641 +49 197.7525 201.63 1000 50 0.99871373 +50 201.63 205.5075 1000 50 0.9609953 +51 205.5075 209.385 1000 50 0.7738512 +52 209.385 213.2625 1000 50 0.9996418 +53 213.2625 217.14 1000 50 0.99248695 +54 217.14 221.01749999999998 1000 50 0.9999988 +55 221.0175 224.895 1000 50 0.9990361 +56 224.895 228.7725 1000 50 0.99783593 +57 228.7725 232.65 1000 50 0.98779976 +58 232.65 236.5275 1000 50 0.99991226 +59 236.5275 240.405 1000 50 0.9999013 +60 240.405 244.2825 1000 50 0.9973953 +61 244.2825 248.16 1000 50 0.9983778 +62 252.0375 255.915 1000 50 0.8789583 +63 255.915 259.7925 1000 50 0.99258584 +64 259.7925 263.67 1000 50 0.9982395 +65 263.67 267.5475 1000 50 0.9989619 +66 267.5475 271.425 1000 50 0.95809716 +67 271.425 275.3025 1000 50 0.9999875 +68 275.3025 279.18 1000 50 0.91588086 +69 279.18 283.0575 1000 50 0.9999889 +70 283.0575 286.935 1000 50 0.9998673 +71 286.935 290.8125 1000 50 0.9825586 +72 290.8125 294.69 1000 50 0.9998684 +73 294.69 298.5675 1000 50 0.9787636 +74 298.5675 302.445 1000 50 0.99990773 +75 302.445 306.3225 1000 50 0.85888624 +76 306.3225 310.2 1000 50 0.99995995 +77 310.2 314.0775 1000 50 0.9998877 +78 314.0775 317.955 1000 50 0.92502433 +79 317.955 321.8325 1000 50 0.9492625 +80 321.8325 325.71 1000 50 0.99957496 +81 325.71 329.5875 1000 50 0.9979214 +82 329.5875 333.465 1000 50 0.9971209 +83 333.465 337.3425 1000 50 0.9999672 +84 337.3425 341.21999999999997 1000 50 0.9766693 +85 341.22 345.0975 1000 50 0.9997315 +86 345.0975 348.975 1000 50 0.99967444 +87 348.975 352.8525 1000 50 0.56294495 +88 352.8525 356.73 1000 50 0.9998989 +89 356.73 360.6075 1000 50 0.9964108 +90 360.6075 364.485 1000 50 0.8298012 +91 364.485 368.3625 1000 50 0.9943709 +92 368.3625 372.24 1000 50 0.99939764 +93 372.24 376.1175 1000 50 0.8512144 +94 376.1175 379.995 1000 50 0.9837855 +95 379.995 383.8725 1000 50 0.827479 +96 387.75 391.6275 1000 50 0.9890098 +97 391.6275 395.505 1000 50 0.999962 +98 399.3825 403.26 1000 50 0.99672854 +99 403.26 407.1375 1000 50 0.9999769 +100 407.1375 411.015 1000 50 0.9859292 +101 411.015 414.8925 1000 50 0.8957462 +102 414.8925 418.77 1000 50 0.9964167 +103 418.77 422.6475 1000 50 0.89867306 +104 422.6475 426.525 1000 50 0.9999672 +105 426.525 430.4025 1000 50 0.9991062 +106 434.28 438.15749999999997 1000 50 0.99991333 +107 438.1575 442.035 1000 50 0.9956625 +108 442.035 445.9125 1000 50 0.78731805 +109 445.9125 449.79 1000 50 0.8498966 +110 449.79 453.6675 1000 50 0.7376458 +111 453.6675 457.545 1000 50 0.99451506 +112 461.4225 465.3 1000 50 0.9514631 +113 465.3 469.1775 1000 50 0.99584985 +114 469.1775 473.055 1000 50 0.9994929 +115 473.055 476.9325 1000 50 0.5804749 +116 476.9325 480.81 1000 50 0.9981741 +117 480.81 484.6875 1000 50 0.99995494 +118 484.6875 488.565 1000 50 0.9998599 +119 488.565 492.4425 1000 50 0.7499051 +120 492.4425 496.32 1000 50 0.60681945 +121 496.32 500.1975 1000 50 0.5894247 +122 507.9525 511.83 1000 50 0.5685488 +123 511.83 515.7075 1000 50 0.56883305 +124 515.7075 519.585 1000 50 0.51061094 +125 523.4625 527.34 1000 50 0.71555555 +126 531.2175 535.095 1000 50 0.5672847 +127 542.85 546.7275000000001 1000 50 0.5584392 +128 546.7275 550.605 1000 50 0.6319485 +129 550.605 554.4825000000001 1000 50 0.6700354 +130 554.4825 558.36 1000 50 0.7264047 +131 558.36 562.2375000000001 1000 50 0.5461246 +132 562.2375 566.115 1000 50 0.9454011 +133 569.9925 573.87 1000 50 0.8640701 +134 573.87 577.7475000000001 1000 50 0.59666735 +135 577.7475 581.625 1000 50 0.5389286 +136 589.38 593.2575 1000 50 0.7261259 +137 593.2575 597.1350000000001 1000 50 0.5182439 +138 597.135 601.0125 1000 50 0.8366147 +139 601.0125 604.8900000000001 1000 50 0.96740013 +140 608.7675 612.6450000000001 1000 50 0.9891561 +141 616.5225 620.4000000000001 1000 50 0.5175099 +142 620.4 624.2775 1000 50 0.99588877 +143 624.2775 628.1550000000001 1000 50 0.89970595 +144 628.155 632.0325 1000 50 0.80942345 +145 635.91 639.7875 1000 50 0.8654143 +146 639.7875 643.6650000000001 1000 50 0.70002323 +147 643.665 647.5425 1000 50 0.9495326 +148 647.5425 651.4200000000001 1000 50 0.97603786 +149 651.42 655.2975 1000 50 0.50947356 +150 655.2975 659.1750000000001 1000 50 0.565606 +151 659.175 663.0525 1000 50 0.686552 +152 666.93 670.8075 1000 50 0.9476693 +153 670.8075 674.6850000000001 1000 50 0.95686656 +154 674.685 678.5625 1000 50 0.9996755 +155 694.0725 697.95 1000 50 0.9297334 +156 717.3375 721.215 1000 50 0.96169734 +157 725.0925 728.97 1000 50 0.58195233 +158 732.8475 736.725 1000 50 0.8447407 +159 736.725 740.6025000000001 1000 50 0.6051745 +160 744.48 748.3575000000001 1000 50 0.60631174 +161 748.3575 752.235 1000 50 0.9998437 +162 752.235 756.1125000000001 1000 50 0.751366 +163 756.1125 759.99 1000 50 0.96812236 +164 759.99 763.8675000000001 1000 50 0.99999285 +165 763.8675 767.745 1000 50 0.8676683 +166 767.745 771.6225000000001 1000 50 0.93558955 +167 779.3775 783.2550000000001 1000 50 0.6634269 +168 783.255 787.1325 1000 50 0.97246474 +169 787.1325 791.0100000000001 1000 50 0.8119308 +170 791.01 794.8875 1000 50 0.9956897 +171 794.8875 798.7650000000001 1000 50 0.8595637 +172 798.765 802.6425 1000 50 0.9999794 +173 802.6425 806.5200000000001 1000 50 0.99991953 +174 806.52 810.3975 1000 50 0.9468209 +175 810.3975 814.2750000000001 1000 50 0.99977463 +176 822.03 825.9075 1000 50 0.99829394 +177 829.785 833.6625 1000 50 0.89930373 +178 833.6625 837.5400000000001 1000 50 0.97599036 +179 837.54 841.4175 1000 50 0.99988616 +180 841.4175 845.2950000000001 1000 50 0.98241615 +181 845.295 849.1725 1000 50 0.6999517 +182 849.1725 853.0500000000001 1000 50 0.73881334 +183 853.05 856.9275 1000 50 0.5178993 +184 856.9275 860.8050000000001 1000 50 0.99429 +185 860.805 864.6825 1000 50 0.99980205 +186 864.6825 868.5600000000001 1000 50 0.99843925 +187 868.56 872.4375 1000 50 0.99611855 +188 872.4375 876.315 1000 50 0.9911307 +189 876.315 880.1925000000001 1000 50 0.9961046 +190 880.1925 884.07 1000 50 0.94060165 +191 884.07 887.9475000000001 1000 50 0.57173085 +192 887.9475 891.825 1000 50 0.99871707 +193 891.825 895.7025000000001 1000 50 0.93171775 +194 895.7025 899.58 1000 50 0.99639255 +195 899.58 903.4575000000001 1000 50 0.9995166 +196 903.4575 907.335 1000 50 0.99996006 +197 907.335 911.2125000000001 1000 50 0.9997702 +198 911.2125 915.09 1000 50 0.99996257 +199 915.09 918.9675000000001 1000 50 0.9996679 +200 918.9675 922.845 1000 50 0.9998543 +201 922.845 926.7225000000001 1000 50 0.9992293 +202 926.7225 930.6 1000 50 0.99999404 +203 930.6 934.4775000000001 1000 50 0.9999999 +204 934.4775 938.355 1000 50 0.9987821 +205 938.355 942.2325000000001 1000 50 0.99989283 +206 942.2325 946.11 1000 50 0.89494056 +207 949.9875 953.865 1000 50 0.99977404 +208 953.865 957.7425000000001 1000 50 0.9990637 +209 969.375 973.2525 1000 50 0.6474516 +210 973.2525 977.1300000000001 1000 50 0.9965468 +211 977.13 981.0075 1000 50 0.9990337 +212 981.0075 984.8850000000001 1000 50 0.9439451 +213 984.885 988.7625 1000 50 0.9999703 +214 988.7625 992.6400000000001 1000 50 0.98305154 +215 992.64 996.5175 1000 50 0.8259533 +216 996.5175 1000.3950000000001 1000 50 0.79589385 +217 1000.395 1004.2725 1000 50 0.8383314 +218 1004.2725 1008.1500000000001 1000 50 0.87927455 +219 1008.15 1012.0275 1000 50 0.99431413 +220 1012.0275 1015.9050000000001 1000 50 0.76477015 +221 1015.905 1019.7825 1000 50 0.89377725 +222 1019.7825 1023.6600000000001 1000 50 0.99837565 +223 1023.66 1027.5375 1000 50 0.9886326 +224 1027.5375 1031.415 1000 50 0.5852979 +225 1031.415 1035.2925 1000 50 0.997549 +226 1035.2925 1039.17 1000 50 0.9732048 +227 1043.0475 1046.925 1000 50 0.8919869 +228 1046.925 1050.8025 1000 50 0.74817216 +229 1050.8025 1054.68 1000 50 0.9998412 +230 1054.68 1058.5575000000001 1000 50 0.89692646 +231 1062.435 1066.3125 1000 50 0.91325253 +232 1066.3125 1070.19 1000 50 0.94038117 +233 1070.19 1074.0675 1000 50 0.925171 +234 1074.0675 1077.9450000000002 1000 50 0.9997938 +235 1077.945 1081.8225 1000 50 0.9946208 +236 1081.8225 1085.7 1000 50 0.9990251 +237 1085.7 1089.5775 1000 50 0.96813715 +238 1093.455 1097.3325 1000 50 0.78214204 +239 1097.3325 1101.21 1000 50 0.99704486 +240 1101.21 1105.0875 1000 50 0.63274956 +241 1105.0875 1108.9650000000001 1000 50 0.99966896 +242 1108.965 1112.8425 1000 50 0.9902458 +243 1112.8425 1116.72 1000 50 0.9333838 +244 1116.72 1120.5975 1000 50 0.99990606 +245 1120.5975 1124.4750000000001 1000 50 0.95377225 +246 1124.475 1128.3525 1000 50 0.5937468 +247 1128.3525 1132.23 1000 50 0.99912816 +248 1132.23 1136.1075 1000 50 0.9175975 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_09-22-41_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_09-22-41_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..8e9db09257c0863533c1d41a3a604d0bb7893a28 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_09-22-41_annot_2022-11-30_01.txt @@ -0,0 +1,32 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99963355 +2 7.755 11.6325 1000 50 0.98412293 +3 15.51 19.3875 1000 50 0.9323455 +4 23.265 27.142500000000002 1000 50 0.99907684 +5 27.1425 31.02 1000 50 0.5144343 +6 38.775 42.652499999999996 1000 50 0.6163179 +7 42.6525 46.53 1000 50 0.5932673 +8 46.53 50.4075 1000 50 0.89755076 +9 50.4075 54.285 1000 50 0.72917104 +10 54.285 58.162499999999994 1000 50 0.99991214 +11 58.1625 62.04 1000 50 0.9967206 +12 62.04 65.9175 1000 50 0.96879476 +13 65.9175 69.795 1000 50 0.7250346 +14 69.795 73.6725 1000 50 0.9834831 +15 73.6725 77.55 1000 50 0.99870694 +16 81.4275 85.30499999999999 1000 50 0.9999994 +17 85.305 89.1825 1000 50 0.90878725 +18 89.1825 93.06 1000 50 0.978633 +19 93.06 96.9375 1000 50 0.8096496 +20 96.9375 100.815 1000 50 0.99979943 +21 100.815 104.6925 1000 50 0.9920736 +22 104.6925 108.57 1000 50 0.5748579 +23 108.57 112.44749999999999 1000 50 0.9953434 +24 112.4475 116.325 1000 50 0.99983263 +25 116.325 120.2025 1000 50 0.99970394 +26 120.2025 124.08 1000 50 0.997134 +27 124.08 127.9575 1000 50 0.99958915 +28 127.9575 131.835 1000 50 0.9986865 +29 131.835 135.7125 1000 50 0.9995995 +30 135.7125 139.59 1000 50 0.9987049 +31 139.59 143.4675 1000 50 0.9919877 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_10-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_10-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..8fa13b9231fea661257dd32ee45e36795c1843e6 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_10-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,330 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99999976 +2 3.8775 7.755 1000 50 0.99999857 +3 7.755 11.6325 1000 50 0.9999993 +4 11.6325 15.51 1000 50 0.99999964 +5 15.51 19.3875 1000 50 0.99772626 +6 19.3875 23.265 1000 50 0.99999785 +7 23.265 27.142500000000002 1000 50 0.99999833 +8 27.1425 31.02 1000 50 0.9999974 +9 31.02 34.8975 1000 50 0.99999404 +10 34.8975 38.775 1000 50 0.9999424 +11 38.775 42.652499999999996 1000 50 0.99999905 +12 42.6525 46.53 1000 50 0.9999864 +13 46.53 50.4075 1000 50 0.9999999 +14 50.4075 54.285 1000 50 0.9996686 +15 54.285 58.162499999999994 1000 50 0.997926 +16 58.1625 62.04 1000 50 1.0 +17 62.04 65.9175 1000 50 0.9999988 +18 65.9175 69.795 1000 50 0.99999404 +19 69.795 73.6725 1000 50 0.99976474 +20 73.6725 77.55 1000 50 0.99999964 +21 77.55 81.4275 1000 50 0.9999988 +22 81.4275 85.30499999999999 1000 50 0.98850584 +23 85.305 89.1825 1000 50 0.99999917 +24 89.1825 93.06 1000 50 0.9955017 +25 93.06 96.9375 1000 50 0.999995 +26 96.9375 100.815 1000 50 0.9998431 +27 100.815 104.6925 1000 50 0.99998474 +28 104.6925 108.57 1000 50 0.9845472 +29 108.57 112.44749999999999 1000 50 0.999974 +30 112.4475 116.325 1000 50 0.9544988 +31 116.325 120.2025 1000 50 0.99844956 +32 120.2025 124.08 1000 50 0.99980134 +33 124.08 127.9575 1000 50 0.99998534 +34 127.9575 131.835 1000 50 0.9999672 +35 131.835 135.7125 1000 50 0.9998085 +36 135.7125 139.59 1000 50 0.5334467 +37 139.59 143.4675 1000 50 0.96189463 +38 143.4675 147.345 1000 50 0.9863673 +39 147.345 151.2225 1000 50 0.93588567 +40 151.2225 155.1 1000 50 0.8629679 +41 155.1 158.9775 1000 50 0.96471745 +42 170.61 174.4875 1000 50 0.86928564 +43 174.4875 178.365 1000 50 0.8545862 +44 182.2425 186.12 1000 50 0.9380572 +45 189.9975 193.875 1000 50 0.60596806 +46 197.7525 201.63 1000 50 0.80624825 +47 201.63 205.5075 1000 50 0.8591417 +48 205.5075 209.385 1000 50 0.7491559 +49 209.385 213.2625 1000 50 0.86355376 +50 213.2625 217.14 1000 50 0.9621719 +51 217.14 221.01749999999998 1000 50 0.99983895 +52 221.0175 224.895 1000 50 0.5259297 +53 224.895 228.7725 1000 50 0.61721385 +54 228.7725 232.65 1000 50 0.99640536 +55 236.5275 240.405 1000 50 0.9960316 +56 240.405 244.2825 1000 50 0.9902446 +57 244.2825 248.16 1000 50 0.99880517 +58 248.16 252.0375 1000 50 0.9510152 +59 252.0375 255.915 1000 50 0.9900058 +60 255.915 259.7925 1000 50 0.99970067 +61 259.7925 263.67 1000 50 0.99986005 +62 263.67 267.5475 1000 50 0.9999914 +63 267.5475 271.425 1000 50 0.99714345 +64 271.425 275.3025 1000 50 0.9998343 +65 275.3025 279.18 1000 50 1.0 +66 279.18 283.0575 1000 50 0.99975854 +67 283.0575 286.935 1000 50 0.9999058 +68 286.935 290.8125 1000 50 0.9999999 +69 290.8125 294.69 1000 50 0.9999999 +70 294.69 298.5675 1000 50 0.9999496 +71 298.5675 302.445 1000 50 0.9999999 +72 302.445 306.3225 1000 50 0.9999989 +73 306.3225 310.2 1000 50 0.9999896 +74 310.2 314.0775 1000 50 0.99999917 +75 314.0775 317.955 1000 50 1.0 +76 317.955 321.8325 1000 50 0.99999905 +77 321.8325 325.71 1000 50 0.99997044 +78 325.71 329.5875 1000 50 1.0 +79 329.5875 333.465 1000 50 0.9942095 +80 333.465 337.3425 1000 50 0.9999871 +81 337.3425 341.21999999999997 1000 50 1.0 +82 341.22 345.0975 1000 50 0.9998516 +83 345.0975 348.975 1000 50 0.9999963 +84 348.975 352.8525 1000 50 0.9999206 +85 352.8525 356.73 1000 50 0.99984396 +86 356.73 360.6075 1000 50 0.9997546 +87 360.6075 364.485 1000 50 1.0 +88 364.485 368.3625 1000 50 0.99997425 +89 368.3625 372.24 1000 50 0.9999993 +90 372.24 376.1175 1000 50 0.9958268 +91 376.1175 379.995 1000 50 0.99996567 +92 379.995 383.8725 1000 50 0.9734031 +93 383.8725 387.75 1000 50 1.0 +94 387.75 391.6275 1000 50 0.9893439 +95 391.6275 395.505 1000 50 0.9962704 +96 395.505 399.3825 1000 50 0.9999999 +97 399.3825 403.26 1000 50 0.9999809 +98 403.26 407.1375 1000 50 0.999987 +99 407.1375 411.015 1000 50 0.9998878 +100 411.015 414.8925 1000 50 0.99968064 +101 414.8925 418.77 1000 50 1.0 +102 418.77 422.6475 1000 50 0.9999312 +103 422.6475 426.525 1000 50 0.9990151 +104 426.525 430.4025 1000 50 0.9999975 +105 430.4025 434.28 1000 50 0.99950516 +106 434.28 438.15749999999997 1000 50 0.99999857 +107 438.1575 442.035 1000 50 1.0 +108 442.035 445.9125 1000 50 0.99959666 +109 445.9125 449.79 1000 50 0.9999995 +110 449.79 453.6675 1000 50 0.99998105 +111 453.6675 457.545 1000 50 0.99805754 +112 457.545 461.4225 1000 50 0.99999547 +113 461.4225 465.3 1000 50 0.9951316 +114 465.3 469.1775 1000 50 0.9998871 +115 469.1775 473.055 1000 50 0.99997187 +116 473.055 476.9325 1000 50 0.9999759 +117 476.9325 480.81 1000 50 0.9999708 +118 480.81 484.6875 1000 50 0.9926472 +119 484.6875 488.565 1000 50 0.99999785 +120 488.565 492.4425 1000 50 0.99999785 +121 492.4425 496.32 1000 50 0.9997831 +122 496.32 500.1975 1000 50 0.9999733 +123 500.1975 504.075 1000 50 0.99999976 +124 504.075 507.9525 1000 50 0.99996674 +125 507.9525 511.83 1000 50 0.9999994 +126 511.83 515.7075 1000 50 0.99999964 +127 515.7075 519.585 1000 50 0.9999995 +128 519.585 523.4625000000001 1000 50 0.9996228 +129 523.4625 527.34 1000 50 0.99991953 +130 527.34 531.2175000000001 1000 50 0.9999839 +131 531.2175 535.095 1000 50 0.99997604 +132 535.095 538.9725000000001 1000 50 0.9999685 +133 538.9725 542.85 1000 50 0.99984074 +134 542.85 546.7275000000001 1000 50 0.9999963 +135 546.7275 550.605 1000 50 0.99999833 +136 550.605 554.4825000000001 1000 50 0.9999454 +137 554.4825 558.36 1000 50 0.9879632 +138 558.36 562.2375000000001 1000 50 0.9821415 +139 562.2375 566.115 1000 50 0.9929537 +140 566.115 569.9925000000001 1000 50 0.99999964 +141 569.9925 573.87 1000 50 0.9997732 +142 573.87 577.7475000000001 1000 50 0.99994564 +143 577.7475 581.625 1000 50 0.9977642 +144 581.625 585.5025 1000 50 0.9980755 +145 585.5025 589.3800000000001 1000 50 0.9999989 +146 589.38 593.2575 1000 50 0.9999484 +147 593.2575 597.1350000000001 1000 50 0.9916509 +148 597.135 601.0125 1000 50 0.7131986 +149 601.0125 604.8900000000001 1000 50 0.9999194 +150 604.89 608.7675 1000 50 0.9985159 +151 608.7675 612.6450000000001 1000 50 0.8478004 +152 612.645 616.5225 1000 50 0.9999938 +153 616.5225 620.4000000000001 1000 50 0.99997365 +154 620.4 624.2775 1000 50 0.9999819 +155 624.2775 628.1550000000001 1000 50 0.9998976 +156 628.155 632.0325 1000 50 0.9765438 +157 632.0325 635.9100000000001 1000 50 0.9999893 +158 635.91 639.7875 1000 50 0.9779995 +159 639.7875 643.6650000000001 1000 50 0.999183 +160 643.665 647.5425 1000 50 0.9999869 +161 647.5425 651.4200000000001 1000 50 0.9999989 +162 651.42 655.2975 1000 50 0.99525154 +163 655.2975 659.1750000000001 1000 50 0.9998274 +164 659.175 663.0525 1000 50 0.99612194 +165 663.0525 666.9300000000001 1000 50 0.97955894 +166 666.93 670.8075 1000 50 0.9999956 +167 670.8075 674.6850000000001 1000 50 0.9999982 +168 674.685 678.5625 1000 50 0.93152326 +169 678.5625 682.44 1000 50 0.9886891 +170 682.44 686.3175000000001 1000 50 0.9895635 +171 686.3175 690.195 1000 50 0.9999722 +172 690.195 694.0725000000001 1000 50 0.9340679 +173 701.8275 705.705 1000 50 0.9650655 +174 705.705 709.5825000000001 1000 50 0.93070996 +175 709.5825 713.46 1000 50 0.9610442 +176 713.46 717.3375000000001 1000 50 0.99284935 +177 732.8475 736.725 1000 50 0.70291287 +178 736.725 740.6025000000001 1000 50 0.6582245 +179 779.3775 783.2550000000001 1000 50 0.9099339 +180 787.1325 791.0100000000001 1000 50 0.8285566 +181 810.3975 814.2750000000001 1000 50 0.85454947 +182 814.275 818.1525 1000 50 0.94065446 +183 818.1525 822.0300000000001 1000 50 0.58272344 +184 822.03 825.9075 1000 50 0.9999547 +185 825.9075 829.7850000000001 1000 50 0.99947053 +186 829.785 833.6625 1000 50 0.999185 +187 833.6625 837.5400000000001 1000 50 0.9968496 +188 837.54 841.4175 1000 50 0.9993749 +189 841.4175 845.2950000000001 1000 50 1.0 +190 845.295 849.1725 1000 50 0.9811194 +191 849.1725 853.0500000000001 1000 50 0.99999964 +192 853.05 856.9275 1000 50 0.9999957 +193 856.9275 860.8050000000001 1000 50 0.9977933 +194 860.805 864.6825 1000 50 0.9977325 +195 864.6825 868.5600000000001 1000 50 1.0 +196 868.56 872.4375 1000 50 1.0 +197 872.4375 876.315 1000 50 1.0 +198 876.315 880.1925000000001 1000 50 0.99999785 +199 880.1925 884.07 1000 50 1.0 +200 884.07 887.9475000000001 1000 50 1.0 +201 887.9475 891.825 1000 50 0.9999627 +202 891.825 895.7025000000001 1000 50 1.0 +203 895.7025 899.58 1000 50 1.0 +204 899.58 903.4575000000001 1000 50 0.99999535 +205 903.4575 907.335 1000 50 1.0 +206 907.335 911.2125000000001 1000 50 1.0 +207 911.2125 915.09 1000 50 0.9999707 +208 915.09 918.9675000000001 1000 50 0.99995685 +209 918.9675 922.845 1000 50 0.9890154 +210 922.845 926.7225000000001 1000 50 0.999879 +211 926.7225 930.6 1000 50 0.99996424 +212 930.6 934.4775000000001 1000 50 0.9991204 +213 934.4775 938.355 1000 50 0.99047136 +214 938.355 942.2325000000001 1000 50 0.99996674 +215 942.2325 946.11 1000 50 0.9999722 +216 946.11 949.9875000000001 1000 50 0.68302995 +217 949.9875 953.865 1000 50 0.9999993 +218 953.865 957.7425000000001 1000 50 0.9978631 +219 957.7425 961.62 1000 50 1.0 +220 961.62 965.4975000000001 1000 50 0.99999964 +221 965.4975 969.375 1000 50 0.99893886 +222 969.375 973.2525 1000 50 1.0 +223 973.2525 977.1300000000001 1000 50 1.0 +224 977.13 981.0075 1000 50 0.9999924 +225 981.0075 984.8850000000001 1000 50 1.0 +226 984.885 988.7625 1000 50 0.9934696 +227 988.7625 992.6400000000001 1000 50 1.0 +228 992.64 996.5175 1000 50 1.0 +229 996.5175 1000.3950000000001 1000 50 0.9999999 +230 1000.395 1004.2725 1000 50 1.0 +231 1004.2725 1008.1500000000001 1000 50 0.9996526 +232 1008.15 1012.0275 1000 50 0.99999213 +233 1012.0275 1015.9050000000001 1000 50 0.99999905 +234 1015.905 1019.7825 1000 50 0.99970347 +235 1019.7825 1023.6600000000001 1000 50 0.9996785 +236 1023.66 1027.5375 1000 50 0.999995 +237 1027.5375 1031.415 1000 50 0.998725 +238 1031.415 1035.2925 1000 50 0.99995935 +239 1035.2925 1039.17 1000 50 0.99809355 +240 1039.17 1043.0475000000001 1000 50 0.9999988 +241 1043.0475 1046.925 1000 50 0.9991153 +242 1046.925 1050.8025 1000 50 0.99561113 +243 1050.8025 1054.68 1000 50 0.9999982 +244 1054.68 1058.5575000000001 1000 50 0.9992736 +245 1058.5575 1062.435 1000 50 0.9999982 +246 1062.435 1066.3125 1000 50 0.9997422 +247 1066.3125 1070.19 1000 50 0.9999169 +248 1070.19 1074.0675 1000 50 0.99828327 +249 1074.0675 1077.9450000000002 1000 50 0.9916659 +250 1077.945 1081.8225 1000 50 0.9997962 +251 1081.8225 1085.7 1000 50 0.9999764 +252 1085.7 1089.5775 1000 50 0.9999541 +253 1089.5775 1093.4550000000002 1000 50 0.9999362 +254 1093.455 1097.3325 1000 50 0.99999976 +255 1097.3325 1101.21 1000 50 0.99989414 +256 1101.21 1105.0875 1000 50 0.9987093 +257 1105.0875 1108.9650000000001 1000 50 0.99999547 +258 1108.965 1112.8425 1000 50 0.9999981 +259 1112.8425 1116.72 1000 50 0.99997556 +260 1116.72 1120.5975 1000 50 0.9979023 +261 1120.5975 1124.4750000000001 1000 50 0.9996922 +262 1124.475 1128.3525 1000 50 0.9999881 +263 1128.3525 1132.23 1000 50 0.9999999 +264 1132.23 1136.1075 1000 50 0.9957137 +265 1136.1075 1139.9850000000001 1000 50 0.9996482 +266 1139.985 1143.8625 1000 50 0.99977857 +267 1143.8625 1147.74 1000 50 1.0 +268 1147.74 1151.6175 1000 50 0.9998667 +269 1151.6175 1155.4950000000001 1000 50 0.99998486 +270 1155.495 1159.3725 1000 50 0.9999677 +271 1159.3725 1163.25 1000 50 0.99999857 +272 1163.25 1167.1275 1000 50 0.9997185 +273 1167.1275 1171.005 1000 50 0.9999647 +274 1171.005 1174.8825000000002 1000 50 0.9998983 +275 1174.8825 1178.76 1000 50 1.0 +276 1178.76 1182.6375 1000 50 0.9999931 +277 1182.6375 1186.515 1000 50 0.99987185 +278 1186.515 1190.3925000000002 1000 50 0.99999964 +279 1190.3925 1194.27 1000 50 0.99999905 +280 1194.27 1198.1475 1000 50 0.9890013 +281 1198.1475 1202.025 1000 50 0.8379318 +282 1202.025 1205.9025000000001 1000 50 0.9425732 +283 1205.9025 1209.78 1000 50 0.7785681 +284 1209.78 1213.6575 1000 50 0.9508512 +285 1213.6575 1217.535 1000 50 0.83133495 +286 1236.9225 1240.8 1000 50 0.6289427 +287 1240.8 1244.6775 1000 50 0.99916184 +288 1244.6775 1248.555 1000 50 0.97571874 +289 1256.31 1260.1875 1000 50 0.99814236 +290 1260.1875 1264.065 1000 50 0.6070837 +291 1264.065 1267.9425 1000 50 0.95480627 +292 1267.9425 1271.8200000000002 1000 50 0.7372741 +293 1271.82 1275.6975 1000 50 0.73307693 +294 1275.6975 1279.575 1000 50 0.9585173 +295 1279.575 1283.4525 1000 50 0.9450156 +296 1283.4525 1287.3300000000002 1000 50 0.9466101 +297 1287.33 1291.2075 1000 50 0.8735937 +298 1291.2075 1295.085 1000 50 0.96139246 +299 1295.085 1298.9625 1000 50 0.9539554 +300 1298.9625 1302.8400000000001 1000 50 0.95464504 +301 1310.595 1314.4725 1000 50 0.9855811 +302 1318.35 1322.2275 1000 50 0.55582744 +303 1322.2275 1326.105 1000 50 0.9645514 +304 1326.105 1329.9825 1000 50 0.87698346 +305 1329.9825 1333.8600000000001 1000 50 0.8329951 +306 1333.86 1337.7375 1000 50 0.9999875 +307 1337.7375 1341.615 1000 50 0.9999901 +308 1341.615 1345.4925 1000 50 0.99996066 +309 1345.4925 1349.3700000000001 1000 50 0.9893618 +310 1353.2475 1357.125 1000 50 0.999199 +311 1357.125 1361.0025 1000 50 0.99971205 +312 1361.0025 1364.88 1000 50 0.99995184 +313 1364.88 1368.7575000000002 1000 50 1.0 +314 1368.7575 1372.635 1000 50 0.99997485 +315 1372.635 1376.5125 1000 50 0.999767 +316 1376.5125 1380.39 1000 50 0.9999999 +317 1380.39 1384.2675000000002 1000 50 0.9998733 +318 1384.2675 1388.145 1000 50 0.9997998 +319 1388.145 1392.0225 1000 50 1.0 +320 1392.0225 1395.9 1000 50 1.0 +321 1395.9 1399.7775000000001 1000 50 0.999907 +322 1399.7775 1403.655 1000 50 0.98526645 +323 1403.655 1407.5325 1000 50 0.9999875 +324 1407.5325 1411.41 1000 50 1.0 +325 1411.41 1415.2875000000001 1000 50 0.9998933 +326 1415.2875 1419.165 1000 50 1.0 +327 1419.165 1423.0425 1000 50 1.0 +328 1423.0425 1426.92 1000 50 0.9964534 +329 1426.92 1430.7975000000001 1000 50 0.99999154 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_11-01-54_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_11-01-54_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f251d8ebe763745e9e95cf783115658603b3fbed --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_11-01-54_annot_2022-11-30_01.txt @@ -0,0 +1,340 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9998934 +2 3.8775 7.755 1000 50 0.9044353 +3 7.755 11.6325 1000 50 0.99999785 +4 11.6325 15.51 1000 50 0.9999944 +5 15.51 19.3875 1000 50 0.9999987 +6 19.3875 23.265 1000 50 0.9998764 +7 23.265 27.142500000000002 1000 50 1.0 +8 27.1425 31.02 1000 50 0.9999993 +9 31.02 34.8975 1000 50 0.9999126 +10 34.8975 38.775 1000 50 0.99999654 +11 38.775 42.652499999999996 1000 50 0.9999162 +12 42.6525 46.53 1000 50 0.8750159 +13 46.53 50.4075 1000 50 0.99999976 +14 50.4075 54.285 1000 50 0.9999999 +15 54.285 58.162499999999994 1000 50 0.99995816 +16 58.1625 62.04 1000 50 0.9996742 +17 62.04 65.9175 1000 50 1.0 +18 65.9175 69.795 1000 50 0.9999738 +19 69.795 73.6725 1000 50 0.9999999 +20 73.6725 77.55 1000 50 0.9999988 +21 77.55 81.4275 1000 50 0.99999034 +22 81.4275 85.30499999999999 1000 50 1.0 +23 85.305 89.1825 1000 50 0.8897138 +24 89.1825 93.06 1000 50 0.99986076 +25 93.06 96.9375 1000 50 0.99999475 +26 96.9375 100.815 1000 50 0.99999845 +27 100.815 104.6925 1000 50 0.99996054 +28 104.6925 108.57 1000 50 0.9999994 +29 108.57 112.44749999999999 1000 50 0.9999726 +30 112.4475 116.325 1000 50 1.0 +31 116.325 120.2025 1000 50 0.9999852 +32 120.2025 124.08 1000 50 0.9999995 +33 124.08 127.9575 1000 50 0.9999987 +34 127.9575 131.835 1000 50 0.99992836 +35 131.835 135.7125 1000 50 1.0 +36 135.7125 139.59 1000 50 0.99999607 +37 139.59 143.4675 1000 50 0.9999602 +38 143.4675 147.345 1000 50 0.9999999 +39 147.345 151.2225 1000 50 0.9916198 +40 151.2225 155.1 1000 50 0.99998367 +41 155.1 158.9775 1000 50 0.9999906 +42 158.9775 162.855 1000 50 0.9997038 +43 162.855 166.7325 1000 50 0.9998783 +44 166.7325 170.60999999999999 1000 50 0.9999844 +45 170.61 174.4875 1000 50 0.9999242 +46 174.4875 178.365 1000 50 0.9999995 +47 178.365 182.2425 1000 50 0.9762555 +48 182.2425 186.12 1000 50 0.99999964 +49 186.12 189.9975 1000 50 0.9999987 +50 189.9975 193.875 1000 50 0.9999429 +51 193.875 197.7525 1000 50 0.9998442 +52 197.7525 201.63 1000 50 0.9999155 +53 201.63 205.5075 1000 50 0.99993503 +54 205.5075 209.385 1000 50 0.99992967 +55 209.385 213.2625 1000 50 0.99998856 +56 213.2625 217.14 1000 50 0.9999856 +57 217.14 221.01749999999998 1000 50 1.0 +58 221.0175 224.895 1000 50 0.99998665 +59 224.895 228.7725 1000 50 0.9999976 +60 228.7725 232.65 1000 50 0.99999905 +61 232.65 236.5275 1000 50 0.9999471 +62 236.5275 240.405 1000 50 0.99997854 +63 240.405 244.2825 1000 50 0.9992902 +64 244.2825 248.16 1000 50 0.9975068 +65 248.16 252.0375 1000 50 0.99533856 +66 252.0375 255.915 1000 50 0.99932504 +67 255.915 259.7925 1000 50 0.9999976 +68 259.7925 263.67 1000 50 0.9999914 +69 263.67 267.5475 1000 50 0.9293487 +70 267.5475 271.425 1000 50 0.99941516 +71 271.425 275.3025 1000 50 0.99990714 +72 275.3025 279.18 1000 50 0.9538281 +73 279.18 283.0575 1000 50 0.99999356 +74 283.0575 286.935 1000 50 0.9998714 +75 286.935 290.8125 1000 50 0.9995778 +76 290.8125 294.69 1000 50 0.99998176 +77 294.69 298.5675 1000 50 0.998459 +78 298.5675 302.445 1000 50 0.99919885 +79 302.445 306.3225 1000 50 0.9999999 +80 306.3225 310.2 1000 50 0.8443759 +81 314.0775 317.955 1000 50 0.57004553 +82 317.955 321.8325 1000 50 0.8362644 +83 321.8325 325.71 1000 50 0.72662795 +84 325.71 329.5875 1000 50 0.70147836 +85 329.5875 333.465 1000 50 0.9987054 +86 341.22 345.0975 1000 50 0.7730045 +87 345.0975 348.975 1000 50 0.99430436 +88 348.975 352.8525 1000 50 0.9001878 +89 352.8525 356.73 1000 50 0.7348072 +90 356.73 360.6075 1000 50 0.907322 +91 372.24 376.1175 1000 50 0.75069577 +92 376.1175 379.995 1000 50 0.6209219 +93 387.75 391.6275 1000 50 0.95605975 +94 395.505 399.3825 1000 50 0.9693366 +95 399.3825 403.26 1000 50 0.5853716 +96 403.26 407.1375 1000 50 0.7620059 +97 418.77 422.6475 1000 50 0.7115207 +98 426.525 430.4025 1000 50 0.5919922 +99 438.1575 442.035 1000 50 0.5713064 +100 442.035 445.9125 1000 50 0.53940034 +101 453.6675 457.545 1000 50 0.6820226 +102 457.545 461.4225 1000 50 0.66125226 +103 461.4225 465.3 1000 50 0.5944679 +104 465.3 469.1775 1000 50 0.98315436 +105 469.1775 473.055 1000 50 0.9965049 +106 473.055 476.9325 1000 50 0.9663073 +107 476.9325 480.81 1000 50 0.99134445 +108 480.81 484.6875 1000 50 0.9999795 +109 484.6875 488.565 1000 50 0.9999908 +110 488.565 492.4425 1000 50 0.9977977 +111 492.4425 496.32 1000 50 0.9997876 +112 496.32 500.1975 1000 50 1.0 +113 500.1975 504.075 1000 50 0.99999976 +114 504.075 507.9525 1000 50 0.9999752 +115 507.9525 511.83 1000 50 0.9980413 +116 511.83 515.7075 1000 50 0.99999976 +117 515.7075 519.585 1000 50 0.99972504 +118 519.585 523.4625000000001 1000 50 0.84991264 +119 523.4625 527.34 1000 50 0.99861383 +120 527.34 531.2175000000001 1000 50 0.99991715 +121 531.2175 535.095 1000 50 0.99999535 +122 535.095 538.9725000000001 1000 50 0.9999999 +123 538.9725 542.85 1000 50 0.99999964 +124 542.85 546.7275000000001 1000 50 0.9997335 +125 546.7275 550.605 1000 50 1.0 +126 550.605 554.4825000000001 1000 50 0.9999926 +127 554.4825 558.36 1000 50 0.9981571 +128 558.36 562.2375000000001 1000 50 0.9999999 +129 562.2375 566.115 1000 50 1.0 +130 566.115 569.9925000000001 1000 50 0.99976236 +131 569.9925 573.87 1000 50 0.99999523 +132 573.87 577.7475000000001 1000 50 1.0 +133 577.7475 581.625 1000 50 1.0 +134 581.625 585.5025 1000 50 0.9999876 +135 585.5025 589.3800000000001 1000 50 0.99994373 +136 589.38 593.2575 1000 50 0.9998473 +137 593.2575 597.1350000000001 1000 50 1.0 +138 597.135 601.0125 1000 50 0.9999981 +139 601.0125 604.8900000000001 1000 50 1.0 +140 604.89 608.7675 1000 50 0.9999999 +141 608.7675 612.6450000000001 1000 50 0.9968624 +142 612.645 616.5225 1000 50 1.0 +143 616.5225 620.4000000000001 1000 50 1.0 +144 620.4 624.2775 1000 50 0.99999475 +145 624.2775 628.1550000000001 1000 50 0.9999999 +146 628.155 632.0325 1000 50 1.0 +147 632.0325 635.9100000000001 1000 50 0.9999826 +148 635.91 639.7875 1000 50 0.99998665 +149 639.7875 643.6650000000001 1000 50 0.999881 +150 643.665 647.5425 1000 50 1.0 +151 647.5425 651.4200000000001 1000 50 0.9999994 +152 651.42 655.2975 1000 50 1.0 +153 655.2975 659.1750000000001 1000 50 0.9999999 +154 659.175 663.0525 1000 50 0.9999999 +155 663.0525 666.9300000000001 1000 50 0.99999976 +156 666.93 670.8075 1000 50 1.0 +157 670.8075 674.6850000000001 1000 50 0.9999701 +158 674.685 678.5625 1000 50 0.99999905 +159 678.5625 682.44 1000 50 0.9999994 +160 682.44 686.3175000000001 1000 50 0.99999726 +161 686.3175 690.195 1000 50 0.99599826 +162 690.195 694.0725000000001 1000 50 0.9935545 +163 694.0725 697.95 1000 50 0.99999785 +164 697.95 701.8275000000001 1000 50 0.9999999 +165 701.8275 705.705 1000 50 0.99999976 +166 705.705 709.5825000000001 1000 50 0.99999464 +167 709.5825 713.46 1000 50 0.99999714 +168 713.46 717.3375000000001 1000 50 0.9985373 +169 717.3375 721.215 1000 50 0.9999875 +170 721.215 725.0925000000001 1000 50 0.9984937 +171 725.0925 728.97 1000 50 0.99996567 +172 728.97 732.8475000000001 1000 50 0.9999759 +173 732.8475 736.725 1000 50 0.99999225 +174 736.725 740.6025000000001 1000 50 0.9987061 +175 740.6025 744.48 1000 50 0.9999969 +176 744.48 748.3575000000001 1000 50 0.9991831 +177 748.3575 752.235 1000 50 0.997355 +178 752.235 756.1125000000001 1000 50 0.99993706 +179 756.1125 759.99 1000 50 0.9999999 +180 759.99 763.8675000000001 1000 50 0.9884914 +181 763.8675 767.745 1000 50 0.98716134 +182 767.745 771.6225000000001 1000 50 0.99898106 +183 771.6225 775.5 1000 50 0.99999523 +184 775.5 779.3775 1000 50 0.9999788 +185 779.3775 783.2550000000001 1000 50 0.9098641 +186 783.255 787.1325 1000 50 0.9999968 +187 787.1325 791.0100000000001 1000 50 0.9999527 +188 791.01 794.8875 1000 50 0.9988732 +189 794.8875 798.7650000000001 1000 50 0.9937032 +190 798.765 802.6425 1000 50 0.98711944 +191 802.6425 806.5200000000001 1000 50 0.98645556 +192 806.52 810.3975 1000 50 0.9999896 +193 810.3975 814.2750000000001 1000 50 0.98180056 +194 814.275 818.1525 1000 50 0.9578687 +195 818.1525 822.0300000000001 1000 50 0.9941018 +196 822.03 825.9075 1000 50 0.9763398 +197 825.9075 829.7850000000001 1000 50 0.9136302 +198 829.785 833.6625 1000 50 0.8387148 +199 833.6625 837.5400000000001 1000 50 0.9900448 +200 837.54 841.4175 1000 50 0.738511 +201 841.4175 845.2950000000001 1000 50 0.77433115 +202 845.295 849.1725 1000 50 0.891578 +203 849.1725 853.0500000000001 1000 50 0.9898072 +204 853.05 856.9275 1000 50 0.9981918 +205 856.9275 860.8050000000001 1000 50 0.99975663 +206 860.805 864.6825 1000 50 0.9964831 +207 864.6825 868.5600000000001 1000 50 0.9924232 +208 868.56 872.4375 1000 50 0.9268114 +209 876.315 880.1925000000001 1000 50 0.99432135 +210 880.1925 884.07 1000 50 0.94834656 +211 887.9475 891.825 1000 50 0.9972187 +212 891.825 895.7025000000001 1000 50 0.99095917 +213 895.7025 899.58 1000 50 0.9523547 +214 899.58 903.4575000000001 1000 50 0.5574383 +215 903.4575 907.335 1000 50 0.9999144 +216 907.335 911.2125000000001 1000 50 0.815064 +217 911.2125 915.09 1000 50 0.99145293 +218 915.09 918.9675000000001 1000 50 0.9999292 +219 918.9675 922.845 1000 50 0.9978818 +220 922.845 926.7225000000001 1000 50 0.93409497 +221 926.7225 930.6 1000 50 0.996994 +222 930.6 934.4775000000001 1000 50 0.9984518 +223 934.4775 938.355 1000 50 0.94865435 +224 938.355 942.2325000000001 1000 50 0.9992725 +225 942.2325 946.11 1000 50 0.9999988 +226 946.11 949.9875000000001 1000 50 0.9999962 +227 949.9875 953.865 1000 50 0.9999999 +228 953.865 957.7425000000001 1000 50 0.9999975 +229 957.7425 961.62 1000 50 0.99998355 +230 961.62 965.4975000000001 1000 50 0.9999989 +231 965.4975 969.375 1000 50 0.9990645 +232 969.375 973.2525 1000 50 0.9999535 +233 973.2525 977.1300000000001 1000 50 0.98950243 +234 977.13 981.0075 1000 50 0.99994516 +235 981.0075 984.8850000000001 1000 50 0.9994474 +236 984.885 988.7625 1000 50 0.99991524 +237 988.7625 992.6400000000001 1000 50 0.9969944 +238 992.64 996.5175 1000 50 0.99999714 +239 996.5175 1000.3950000000001 1000 50 0.99841166 +240 1000.395 1004.2725 1000 50 0.9999925 +241 1004.2725 1008.1500000000001 1000 50 0.9999418 +242 1008.15 1012.0275 1000 50 0.9999217 +243 1012.0275 1015.9050000000001 1000 50 1.0 +244 1015.905 1019.7825 1000 50 0.9997682 +245 1019.7825 1023.6600000000001 1000 50 0.9725441 +246 1023.66 1027.5375 1000 50 1.0 +247 1027.5375 1031.415 1000 50 0.99999356 +248 1031.415 1035.2925 1000 50 0.99999535 +249 1035.2925 1039.17 1000 50 1.0 +250 1039.17 1043.0475000000001 1000 50 0.99995816 +251 1043.0475 1046.925 1000 50 0.78893363 +252 1046.925 1050.8025 1000 50 1.0 +253 1050.8025 1054.68 1000 50 0.9999987 +254 1054.68 1058.5575000000001 1000 50 0.9999995 +255 1058.5575 1062.435 1000 50 1.0 +256 1062.435 1066.3125 1000 50 0.999998 +257 1066.3125 1070.19 1000 50 0.99999905 +258 1070.19 1074.0675 1000 50 0.9999987 +259 1074.0675 1077.9450000000002 1000 50 0.99999547 +260 1077.945 1081.8225 1000 50 0.9999819 +261 1081.8225 1085.7 1000 50 0.9999962 +262 1085.7 1089.5775 1000 50 0.99908686 +263 1089.5775 1093.4550000000002 1000 50 0.9999982 +264 1093.455 1097.3325 1000 50 1.0 +265 1097.3325 1101.21 1000 50 0.99999535 +266 1101.21 1105.0875 1000 50 0.99999976 +267 1105.0875 1108.9650000000001 1000 50 0.99997604 +268 1108.965 1112.8425 1000 50 1.0 +269 1112.8425 1116.72 1000 50 1.0 +270 1116.72 1120.5975 1000 50 0.99941456 +271 1120.5975 1124.4750000000001 1000 50 1.0 +272 1124.475 1128.3525 1000 50 0.9999999 +273 1128.3525 1132.23 1000 50 1.0 +274 1132.23 1136.1075 1000 50 0.99993956 +275 1136.1075 1139.9850000000001 1000 50 0.9999974 +276 1139.985 1143.8625 1000 50 0.99990964 +277 1143.8625 1147.74 1000 50 0.99999964 +278 1147.74 1151.6175 1000 50 0.9999863 +279 1151.6175 1155.4950000000001 1000 50 0.9999989 +280 1155.495 1159.3725 1000 50 0.9966042 +281 1159.3725 1163.25 1000 50 0.99999976 +282 1163.25 1167.1275 1000 50 0.9999981 +283 1167.1275 1171.005 1000 50 0.9998578 +284 1171.005 1174.8825000000002 1000 50 0.999984 +285 1174.8825 1178.76 1000 50 0.9999962 +286 1178.76 1182.6375 1000 50 0.9999988 +287 1182.6375 1186.515 1000 50 0.9999993 +288 1186.515 1190.3925000000002 1000 50 0.99987745 +289 1190.3925 1194.27 1000 50 0.99983776 +290 1194.27 1198.1475 1000 50 0.99999905 +291 1198.1475 1202.025 1000 50 0.9992855 +292 1202.025 1205.9025000000001 1000 50 0.9987451 +293 1205.9025 1209.78 1000 50 0.9998093 +294 1209.78 1213.6575 1000 50 0.9993678 +295 1213.6575 1217.535 1000 50 0.9999962 +296 1217.535 1221.4125000000001 1000 50 0.9998561 +297 1221.4125 1225.29 1000 50 0.99931383 +298 1225.29 1229.1675 1000 50 0.9999995 +299 1229.1675 1233.045 1000 50 0.99999523 +300 1233.045 1236.9225000000001 1000 50 0.9999999 +301 1236.9225 1240.8 1000 50 0.9996506 +302 1240.8 1244.6775 1000 50 0.99982077 +303 1244.6775 1248.555 1000 50 1.0 +304 1248.555 1252.4325000000001 1000 50 0.9999901 +305 1252.4325 1256.31 1000 50 0.99998987 +306 1256.31 1260.1875 1000 50 0.99999094 +307 1260.1875 1264.065 1000 50 0.99884903 +308 1264.065 1267.9425 1000 50 0.99795145 +309 1267.9425 1271.8200000000002 1000 50 0.9998024 +310 1271.82 1275.6975 1000 50 0.99999285 +311 1275.6975 1279.575 1000 50 0.99967206 +312 1279.575 1283.4525 1000 50 0.99999964 +313 1283.4525 1287.3300000000002 1000 50 0.9999628 +314 1287.33 1291.2075 1000 50 0.94247955 +315 1291.2075 1295.085 1000 50 0.8953678 +316 1295.085 1298.9625 1000 50 0.9543353 +317 1298.9625 1302.8400000000001 1000 50 0.9941461 +318 1302.84 1306.7175 1000 50 0.99444735 +319 1306.7175 1310.595 1000 50 0.97871333 +320 1310.595 1314.4725 1000 50 0.9696344 +321 1314.4725 1318.3500000000001 1000 50 0.9935347 +322 1318.35 1322.2275 1000 50 0.92497915 +323 1322.2275 1326.105 1000 50 0.9785684 +324 1326.105 1329.9825 1000 50 0.9993919 +325 1329.9825 1333.8600000000001 1000 50 0.58248574 +326 1337.7375 1341.615 1000 50 0.99917966 +327 1341.615 1345.4925 1000 50 0.9783466 +328 1345.4925 1349.3700000000001 1000 50 0.9965913 +329 1349.37 1353.2475 1000 50 0.98542815 +330 1353.2475 1357.125 1000 50 0.9981364 +331 1357.125 1361.0025 1000 50 0.9606818 +332 1361.0025 1364.88 1000 50 0.9987029 +333 1364.88 1368.7575000000002 1000 50 0.9997273 +334 1368.7575 1372.635 1000 50 0.8533612 +335 1372.635 1376.5125 1000 50 0.99996376 +336 1376.5125 1380.39 1000 50 0.999757 +337 1380.39 1384.2675000000002 1000 50 0.99882156 +338 1384.2675 1388.145 1000 50 0.99961627 +339 1388.145 1392.0225 1000 50 0.98846346 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_12-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_12-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..17d264c7bc200d137d2541017ac98b4812d0f421 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_12-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,55 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999865 +2 3.8775 7.755 1000 50 0.9999995 +3 7.755 11.6325 1000 50 0.9999784 +4 11.6325 15.51 1000 50 1.0 +5 15.51 19.3875 1000 50 0.9983956 +6 23.265 27.142500000000002 1000 50 1.0 +7 27.1425 31.02 1000 50 0.99995077 +8 31.02 34.8975 1000 50 0.9999995 +9 34.8975 38.775 1000 50 0.9999802 +10 38.775 42.652499999999996 1000 50 0.9999999 +11 42.6525 46.53 1000 50 0.9999919 +12 46.53 50.4075 1000 50 1.0 +13 50.4075 54.285 1000 50 1.0 +14 54.285 58.162499999999994 1000 50 0.99999917 +15 58.1625 62.04 1000 50 1.0 +16 62.04 65.9175 1000 50 0.9999969 +17 65.9175 69.795 1000 50 0.9980726 +18 69.795 73.6725 1000 50 0.9999995 +19 73.6725 77.55 1000 50 0.99925095 +20 77.55 81.4275 1000 50 1.0 +21 81.4275 85.30499999999999 1000 50 0.99997234 +22 85.305 89.1825 1000 50 0.99991834 +23 89.1825 93.06 1000 50 0.99998 +24 93.06 96.9375 1000 50 1.0 +25 96.9375 100.815 1000 50 1.0 +26 100.815 104.6925 1000 50 0.9999647 +27 104.6925 108.57 1000 50 0.99999523 +28 108.57 112.44749999999999 1000 50 1.0 +29 112.4475 116.325 1000 50 0.9999949 +30 116.325 120.2025 1000 50 0.9999862 +31 120.2025 124.08 1000 50 0.9999994 +32 124.08 127.9575 1000 50 0.9999585 +33 127.9575 131.835 1000 50 0.9999994 +34 131.835 135.7125 1000 50 0.9999875 +35 135.7125 139.59 1000 50 0.99975365 +36 139.59 143.4675 1000 50 0.9901536 +37 143.4675 147.345 1000 50 0.99995553 +38 147.345 151.2225 1000 50 0.9990522 +39 151.2225 155.1 1000 50 0.99979955 +40 155.1 158.9775 1000 50 0.99980193 +41 158.9775 162.855 1000 50 0.9999969 +42 162.855 166.7325 1000 50 0.99997115 +43 166.7325 170.60999999999999 1000 50 0.99928194 +44 170.61 174.4875 1000 50 0.99961156 +45 174.4875 178.365 1000 50 0.99995816 +46 178.365 182.2425 1000 50 0.99999833 +47 182.2425 186.12 1000 50 0.999998 +48 186.12 189.9975 1000 50 0.9521302 +49 189.9975 193.875 1000 50 0.99994123 +50 193.875 197.7525 1000 50 0.9999943 +51 197.7525 201.63 1000 50 0.99997354 +52 201.63 205.5075 1000 50 0.9999982 +53 205.5075 209.385 1000 50 0.9999993 +54 209.385 213.2625 1000 50 0.9999758 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_12-07-12_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_12-07-12_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..df9514a30af5c1fd6f48d12c9ab0b23fa3754c42 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_12-07-12_annot_2022-11-30_01.txt @@ -0,0 +1,257 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.801018 +2 3.8775 7.755 1000 50 0.99956375 +3 7.755 11.6325 1000 50 0.99953854 +4 11.6325 15.51 1000 50 0.9998654 +5 15.51 19.3875 1000 50 0.98700804 +6 19.3875 23.265 1000 50 0.99999976 +7 23.265 27.142500000000002 1000 50 0.9999739 +8 27.1425 31.02 1000 50 0.9999523 +9 31.02 34.8975 1000 50 0.9975515 +10 34.8975 38.775 1000 50 0.99321556 +11 38.775 42.652499999999996 1000 50 0.9536973 +12 42.6525 46.53 1000 50 0.99999857 +13 46.53 50.4075 1000 50 0.9999882 +14 50.4075 54.285 1000 50 0.9999496 +15 54.285 58.162499999999994 1000 50 0.9999423 +16 58.1625 62.04 1000 50 0.9999275 +17 62.04 65.9175 1000 50 0.98766035 +18 65.9175 69.795 1000 50 0.99999857 +19 69.795 73.6725 1000 50 0.9999089 +20 73.6725 77.55 1000 50 0.99999726 +21 77.55 81.4275 1000 50 0.99999917 +22 81.4275 85.30499999999999 1000 50 0.9999968 +23 85.305 89.1825 1000 50 0.9999813 +24 89.1825 93.06 1000 50 1.0 +25 93.06 96.9375 1000 50 0.99572134 +26 96.9375 100.815 1000 50 0.99998045 +27 100.815 104.6925 1000 50 1.0 +28 104.6925 108.57 1000 50 0.9982048 +29 108.57 112.44749999999999 1000 50 1.0 +30 112.4475 116.325 1000 50 0.99929047 +31 116.325 120.2025 1000 50 0.98865265 +32 120.2025 124.08 1000 50 0.99142635 +33 124.08 127.9575 1000 50 0.9945042 +34 127.9575 131.835 1000 50 0.99944466 +35 131.835 135.7125 1000 50 0.9999994 +36 135.7125 139.59 1000 50 0.999998 +37 139.59 143.4675 1000 50 0.99992967 +38 143.4675 147.345 1000 50 0.9999995 +39 147.345 151.2225 1000 50 0.9999858 +40 151.2225 155.1 1000 50 0.9999964 +41 155.1 158.9775 1000 50 0.99999964 +42 158.9775 162.855 1000 50 0.9999999 +43 162.855 166.7325 1000 50 0.99952126 +44 166.7325 170.60999999999999 1000 50 0.988366 +45 170.61 174.4875 1000 50 0.99994636 +46 174.4875 178.365 1000 50 0.9999994 +47 178.365 182.2425 1000 50 0.9999455 +48 182.2425 186.12 1000 50 0.8734802 +49 186.12 189.9975 1000 50 0.99999726 +50 189.9975 193.875 1000 50 1.0 +51 193.875 197.7525 1000 50 0.9999999 +52 197.7525 201.63 1000 50 1.0 +53 201.63 205.5075 1000 50 0.999215 +54 205.5075 209.385 1000 50 0.9999218 +55 209.385 213.2625 1000 50 0.99427116 +56 213.2625 217.14 1000 50 1.0 +57 217.14 221.01749999999998 1000 50 0.99967754 +58 221.0175 224.895 1000 50 0.99848 +59 224.895 228.7725 1000 50 0.9982413 +60 228.7725 232.65 1000 50 0.9997582 +61 232.65 236.5275 1000 50 0.9988649 +62 236.5275 240.405 1000 50 0.99770194 +63 240.405 244.2825 1000 50 0.58909374 +64 248.16 252.0375 1000 50 0.9730906 +65 252.0375 255.915 1000 50 0.99997485 +66 255.915 259.7925 1000 50 0.99937266 +67 259.7925 263.67 1000 50 0.88651705 +68 267.5475 271.425 1000 50 0.9289027 +69 279.18 283.0575 1000 50 0.999887 +70 283.0575 286.935 1000 50 0.9984774 +71 286.935 290.8125 1000 50 0.684162 +72 294.69 298.5675 1000 50 0.9996438 +73 302.445 306.3225 1000 50 0.7694576 +74 310.2 314.0775 1000 50 0.8262489 +75 314.0775 317.955 1000 50 0.9221749 +76 321.8325 325.71 1000 50 0.81339115 +77 325.71 329.5875 1000 50 0.9444162 +78 329.5875 333.465 1000 50 0.5770875 +79 337.3425 341.21999999999997 1000 50 0.9804067 +80 341.22 345.0975 1000 50 0.9876195 +81 345.0975 348.975 1000 50 0.87736005 +82 352.8525 356.73 1000 50 0.8403767 +83 356.73 360.6075 1000 50 0.7644675 +84 364.485 368.3625 1000 50 0.9362358 +85 372.24 376.1175 1000 50 0.98295283 +86 379.995 383.8725 1000 50 0.82658494 +87 383.8725 387.75 1000 50 0.81124353 +88 395.505 399.3825 1000 50 0.9731333 +89 399.3825 403.26 1000 50 0.74988353 +90 403.26 407.1375 1000 50 0.939504 +91 411.015 414.8925 1000 50 0.998885 +92 414.8925 418.77 1000 50 0.974311 +93 418.77 422.6475 1000 50 0.9984773 +94 422.6475 426.525 1000 50 0.9967175 +95 426.525 430.4025 1000 50 0.9824501 +96 430.4025 434.28 1000 50 0.9995147 +97 434.28 438.15749999999997 1000 50 0.99786985 +98 438.1575 442.035 1000 50 0.99987733 +99 442.035 445.9125 1000 50 0.99999344 +100 445.9125 449.79 1000 50 0.50576186 +101 449.79 453.6675 1000 50 0.9987895 +102 453.6675 457.545 1000 50 0.99995446 +103 457.545 461.4225 1000 50 0.9999809 +104 461.4225 465.3 1000 50 0.92568564 +105 465.3 469.1775 1000 50 0.9978927 +106 469.1775 473.055 1000 50 0.9972778 +107 473.055 476.9325 1000 50 0.75509965 +108 476.9325 480.81 1000 50 0.9913025 +109 480.81 484.6875 1000 50 0.99892884 +110 488.565 492.4425 1000 50 0.9999937 +111 492.4425 496.32 1000 50 0.9661908 +112 496.32 500.1975 1000 50 0.9998816 +113 500.1975 504.075 1000 50 0.9999795 +114 504.075 507.9525 1000 50 0.99986005 +115 507.9525 511.83 1000 50 0.9999968 +116 511.83 515.7075 1000 50 0.99999714 +117 515.7075 519.585 1000 50 0.9999989 +118 519.585 523.4625000000001 1000 50 0.98563623 +119 523.4625 527.34 1000 50 0.9999999 +120 527.34 531.2175000000001 1000 50 0.9999565 +121 531.2175 535.095 1000 50 0.99882144 +122 535.095 538.9725000000001 1000 50 0.99953103 +123 538.9725 542.85 1000 50 0.99999774 +124 542.85 546.7275000000001 1000 50 1.0 +125 546.7275 550.605 1000 50 0.99999976 +126 550.605 554.4825000000001 1000 50 0.9999993 +127 554.4825 558.36 1000 50 0.9999993 +128 558.36 562.2375000000001 1000 50 0.9997869 +129 562.2375 566.115 1000 50 0.9993067 +130 566.115 569.9925000000001 1000 50 0.9854037 +131 569.9925 573.87 1000 50 0.78867936 +132 573.87 577.7475000000001 1000 50 0.9999894 +133 577.7475 581.625 1000 50 0.99978846 +134 581.625 585.5025 1000 50 0.99998116 +135 585.5025 589.3800000000001 1000 50 0.99999976 +136 589.38 593.2575 1000 50 0.9999945 +137 593.2575 597.1350000000001 1000 50 0.99999523 +138 597.135 601.0125 1000 50 0.9999995 +139 601.0125 604.8900000000001 1000 50 0.99995613 +140 604.89 608.7675 1000 50 0.99999857 +141 608.7675 612.6450000000001 1000 50 0.9999999 +142 612.645 616.5225 1000 50 0.99979216 +143 616.5225 620.4000000000001 1000 50 0.9999776 +144 620.4 624.2775 1000 50 0.99999964 +145 624.2775 628.1550000000001 1000 50 1.0 +146 628.155 632.0325 1000 50 0.99999964 +147 632.0325 635.9100000000001 1000 50 0.99993503 +148 635.91 639.7875 1000 50 0.9999995 +149 639.7875 643.6650000000001 1000 50 0.99999917 +150 643.665 647.5425 1000 50 0.99935645 +151 647.5425 651.4200000000001 1000 50 0.9980837 +152 651.42 655.2975 1000 50 0.9922908 +153 655.2975 659.1750000000001 1000 50 0.9999901 +154 659.175 663.0525 1000 50 0.9998933 +155 663.0525 666.9300000000001 1000 50 0.99999976 +156 666.93 670.8075 1000 50 0.99999964 +157 670.8075 674.6850000000001 1000 50 0.9999144 +158 674.685 678.5625 1000 50 0.9999676 +159 678.5625 682.44 1000 50 0.9995585 +160 682.44 686.3175000000001 1000 50 0.99993145 +161 686.3175 690.195 1000 50 0.9999989 +162 690.195 694.0725000000001 1000 50 1.0 +163 694.0725 697.95 1000 50 0.99999905 +164 697.95 701.8275000000001 1000 50 0.99913615 +165 701.8275 705.705 1000 50 0.9995604 +166 705.705 709.5825000000001 1000 50 1.0 +167 709.5825 713.46 1000 50 0.99900526 +168 713.46 717.3375000000001 1000 50 0.998855 +169 717.3375 721.215 1000 50 0.9999988 +170 721.215 725.0925000000001 1000 50 0.99994195 +171 725.0925 728.97 1000 50 0.99998367 +172 728.97 732.8475000000001 1000 50 0.9999999 +173 732.8475 736.725 1000 50 0.9999981 +174 736.725 740.6025000000001 1000 50 0.9999975 +175 740.6025 744.48 1000 50 0.9999354 +176 744.48 748.3575000000001 1000 50 0.99999976 +177 748.3575 752.235 1000 50 0.9999223 +178 752.235 756.1125000000001 1000 50 1.0 +179 756.1125 759.99 1000 50 0.9893091 +180 759.99 763.8675000000001 1000 50 0.9999994 +181 763.8675 767.745 1000 50 1.0 +182 767.745 771.6225000000001 1000 50 0.99999595 +183 771.6225 775.5 1000 50 0.9999021 +184 775.5 779.3775 1000 50 0.9953839 +185 779.3775 783.2550000000001 1000 50 0.99999785 +186 783.255 787.1325 1000 50 0.99999964 +187 787.1325 791.0100000000001 1000 50 0.9999292 +188 791.01 794.8875 1000 50 0.99999654 +189 794.8875 798.7650000000001 1000 50 0.9916775 +190 798.765 802.6425 1000 50 0.99987805 +191 802.6425 806.5200000000001 1000 50 0.9999995 +192 806.52 810.3975 1000 50 1.0 +193 810.3975 814.2750000000001 1000 50 0.99999857 +194 814.275 818.1525 1000 50 0.999997 +195 818.1525 822.0300000000001 1000 50 0.9999758 +196 822.03 825.9075 1000 50 1.0 +197 825.9075 829.7850000000001 1000 50 0.9999962 +198 829.785 833.6625 1000 50 0.9999999 +199 833.6625 837.5400000000001 1000 50 0.9999969 +200 837.54 841.4175 1000 50 0.9965809 +201 841.4175 845.2950000000001 1000 50 1.0 +202 845.295 849.1725 1000 50 0.99999666 +203 849.1725 853.0500000000001 1000 50 0.99777764 +204 853.05 856.9275 1000 50 0.999998 +205 856.9275 860.8050000000001 1000 50 1.0 +206 860.805 864.6825 1000 50 0.9999999 +207 864.6825 868.5600000000001 1000 50 0.9998522 +208 868.56 872.4375 1000 50 0.99999845 +209 872.4375 876.315 1000 50 0.9999975 +210 876.315 880.1925000000001 1000 50 0.99999857 +211 880.1925 884.07 1000 50 0.99999857 +212 884.07 887.9475000000001 1000 50 0.98479146 +213 887.9475 891.825 1000 50 0.98459345 +214 895.7025 899.58 1000 50 0.80145556 +215 899.58 903.4575000000001 1000 50 0.9995229 +216 903.4575 907.335 1000 50 0.9447315 +217 907.335 911.2125000000001 1000 50 0.87123114 +218 911.2125 915.09 1000 50 0.98986536 +219 915.09 918.9675000000001 1000 50 0.9950186 +220 922.845 926.7225000000001 1000 50 0.94408333 +221 926.7225 930.6 1000 50 0.99986684 +222 930.6 934.4775000000001 1000 50 0.9999856 +223 934.4775 938.355 1000 50 0.9999503 +224 938.355 942.2325000000001 1000 50 0.9596373 +225 942.2325 946.11 1000 50 0.99953604 +226 946.11 949.9875000000001 1000 50 0.9999813 +227 949.9875 953.865 1000 50 0.99989414 +228 953.865 957.7425000000001 1000 50 0.9995665 +229 957.7425 961.62 1000 50 0.99858046 +230 961.62 965.4975000000001 1000 50 0.99983644 +231 965.4975 969.375 1000 50 0.8728326 +232 969.375 973.2525 1000 50 0.99421823 +233 973.2525 977.1300000000001 1000 50 0.9809545 +234 977.13 981.0075 1000 50 0.99992144 +235 981.0075 984.8850000000001 1000 50 0.92166615 +236 984.885 988.7625 1000 50 0.9984079 +237 988.7625 992.6400000000001 1000 50 0.9999397 +238 992.64 996.5175 1000 50 0.7506956 +239 996.5175 1000.3950000000001 1000 50 0.99647444 +240 1000.395 1004.2725 1000 50 0.995619 +241 1004.2725 1008.1500000000001 1000 50 0.9738573 +242 1008.15 1012.0275 1000 50 0.99784315 +243 1012.0275 1015.9050000000001 1000 50 0.9997316 +244 1015.905 1019.7825 1000 50 0.99813277 +245 1019.7825 1023.6600000000001 1000 50 0.9999714 +246 1023.66 1027.5375 1000 50 0.9865833 +247 1027.5375 1031.415 1000 50 0.80388325 +248 1031.415 1035.2925 1000 50 0.99922276 +249 1035.2925 1039.17 1000 50 0.9245301 +250 1039.17 1043.0475000000001 1000 50 0.6436073 +251 1043.0475 1046.925 1000 50 0.9998227 +252 1046.925 1050.8025 1000 50 0.9701866 +253 1050.8025 1054.68 1000 50 0.9996282 +254 1058.5575 1062.435 1000 50 0.9998536 +255 1062.435 1066.3125 1000 50 0.9042081 +256 1070.19 1074.0675 1000 50 0.9064022 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_13-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_13-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1ea4ddc39f4c2fc8a90f3be7cceeabeb0b4534e6 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_13-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,17 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 69.795 73.6725 1000 50 0.73339146 +2 104.6925 108.57 1000 50 0.61326337 +3 228.7725 232.65 1000 50 0.5354638 +4 286.935 290.8125 1000 50 0.56141704 +5 310.2 314.0775 1000 50 0.9997142 +6 321.8325 325.71 1000 50 0.98097974 +7 345.0975 348.975 1000 50 0.99986017 +8 352.8525 356.73 1000 50 0.6521567 +9 356.73 360.6075 1000 50 0.74756247 +10 360.6075 364.485 1000 50 0.7676327 +11 368.3625 372.24 1000 50 0.8374624 +12 391.6275 395.505 1000 50 0.5587479 +13 407.1375 411.015 1000 50 0.6594127 +14 434.28 438.15749999999997 1000 50 0.51819724 +15 442.035 445.9125 1000 50 0.98010546 +16 492.4425 496.32 1000 50 0.98918813 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_13-12-31_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_13-12-31_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..781e0bf60c5d82442617b905d4a306a4cb1035cc --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_13-12-31_annot_2022-11-30_01.txt @@ -0,0 +1,134 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 42.6525 46.53 1000 50 0.959897 +2 46.53 50.4075 1000 50 0.93585664 +3 54.285 58.162499999999994 1000 50 0.77297753 +4 69.795 73.6725 1000 50 0.5903093 +5 73.6725 77.55 1000 50 0.91943824 +6 85.305 89.1825 1000 50 0.525446 +7 116.325 120.2025 1000 50 0.86751014 +8 120.2025 124.08 1000 50 0.6999881 +9 124.08 127.9575 1000 50 0.9953886 +10 131.835 135.7125 1000 50 0.9402034 +11 139.59 143.4675 1000 50 0.798693 +12 147.345 151.2225 1000 50 0.980962 +13 151.2225 155.1 1000 50 0.98229754 +14 155.1 158.9775 1000 50 0.9678124 +15 162.855 166.7325 1000 50 0.6114566 +16 170.61 174.4875 1000 50 0.5891369 +17 193.875 197.7525 1000 50 0.7117096 +18 201.63 205.5075 1000 50 0.9837377 +19 209.385 213.2625 1000 50 0.6922501 +20 217.14 221.01749999999998 1000 50 0.58523154 +21 221.0175 224.895 1000 50 0.5303477 +22 224.895 228.7725 1000 50 0.96313584 +23 232.65 236.5275 1000 50 0.8558117 +24 236.5275 240.405 1000 50 0.883114 +25 248.16 252.0375 1000 50 0.55748004 +26 267.5475 271.425 1000 50 0.99994683 +27 271.425 275.3025 1000 50 0.74798584 +28 275.3025 279.18 1000 50 0.66765136 +29 279.18 283.0575 1000 50 0.9264391 +30 290.8125 294.69 1000 50 0.9984036 +31 294.69 298.5675 1000 50 0.76386124 +32 298.5675 302.445 1000 50 0.9997875 +33 302.445 306.3225 1000 50 0.9902818 +34 306.3225 310.2 1000 50 0.9692017 +35 310.2 314.0775 1000 50 0.9864378 +36 314.0775 317.955 1000 50 0.95015955 +37 321.8325 325.71 1000 50 0.93726677 +38 325.71 329.5875 1000 50 0.9912723 +39 333.465 337.3425 1000 50 0.8651106 +40 341.22 345.0975 1000 50 0.9513619 +41 348.975 352.8525 1000 50 0.9829344 +42 352.8525 356.73 1000 50 0.99672997 +43 356.73 360.6075 1000 50 0.51551026 +44 360.6075 364.485 1000 50 0.90228015 +45 364.485 368.3625 1000 50 0.6905309 +46 368.3625 372.24 1000 50 0.5477762 +47 376.1175 379.995 1000 50 0.99790585 +48 383.8725 387.75 1000 50 0.9979436 +49 391.6275 395.505 1000 50 0.99880505 +50 395.505 399.3825 1000 50 0.99876887 +51 399.3825 403.26 1000 50 0.997512 +52 403.26 407.1375 1000 50 0.80447 +53 411.015 414.8925 1000 50 0.93824244 +54 414.8925 418.77 1000 50 0.96654963 +55 418.77 422.6475 1000 50 0.98385584 +56 422.6475 426.525 1000 50 0.9953271 +57 426.525 430.4025 1000 50 0.98869985 +58 430.4025 434.28 1000 50 0.99950325 +59 434.28 438.15749999999997 1000 50 0.9997305 +60 438.1575 442.035 1000 50 0.7850034 +61 442.035 445.9125 1000 50 0.999925 +62 445.9125 449.79 1000 50 0.99524623 +63 449.79 453.6675 1000 50 0.9991566 +64 453.6675 457.545 1000 50 0.9993149 +65 457.545 461.4225 1000 50 0.9999907 +66 461.4225 465.3 1000 50 0.99982315 +67 465.3 469.1775 1000 50 0.99986064 +68 469.1775 473.055 1000 50 0.9980476 +69 473.055 476.9325 1000 50 0.9859854 +70 476.9325 480.81 1000 50 0.99784315 +71 480.81 484.6875 1000 50 0.94215 +72 484.6875 488.565 1000 50 0.86705554 +73 488.565 492.4425 1000 50 0.9993025 +74 492.4425 496.32 1000 50 0.9969259 +75 500.1975 504.075 1000 50 0.9978179 +76 504.075 507.9525 1000 50 0.9991215 +77 511.83 515.7075 1000 50 0.81566715 +78 515.7075 519.585 1000 50 0.9999963 +79 519.585 523.4625000000001 1000 50 0.99996173 +80 523.4625 527.34 1000 50 0.9717947 +81 527.34 531.2175000000001 1000 50 0.99994326 +82 531.2175 535.095 1000 50 0.9588028 +83 535.095 538.9725000000001 1000 50 0.99987006 +84 538.9725 542.85 1000 50 0.9999684 +85 542.85 546.7275000000001 1000 50 0.9801311 +86 546.7275 550.605 1000 50 0.98808414 +87 550.605 554.4825000000001 1000 50 0.9998739 +88 554.4825 558.36 1000 50 0.99984837 +89 558.36 562.2375000000001 1000 50 0.99943537 +90 562.2375 566.115 1000 50 0.9987795 +91 566.115 569.9925000000001 1000 50 0.9999999 +92 569.9925 573.87 1000 50 0.9867359 +93 573.87 577.7475000000001 1000 50 0.9999987 +94 577.7475 581.625 1000 50 0.99999964 +95 585.5025 589.3800000000001 1000 50 0.99987364 +96 589.38 593.2575 1000 50 0.9950192 +97 593.2575 597.1350000000001 1000 50 0.99967945 +98 597.135 601.0125 1000 50 0.99990165 +99 601.0125 604.8900000000001 1000 50 0.98805785 +100 604.89 608.7675 1000 50 0.8565467 +101 608.7675 612.6450000000001 1000 50 0.97046196 +102 616.5225 620.4000000000001 1000 50 0.9010058 +103 620.4 624.2775 1000 50 0.9174779 +104 624.2775 628.1550000000001 1000 50 0.9998572 +105 628.155 632.0325 1000 50 0.9991949 +106 632.0325 635.9100000000001 1000 50 0.9999504 +107 635.91 639.7875 1000 50 0.99999523 +108 639.7875 643.6650000000001 1000 50 0.7819598 +109 643.665 647.5425 1000 50 0.9999602 +110 647.5425 651.4200000000001 1000 50 0.9923734 +111 655.2975 659.1750000000001 1000 50 0.99888355 +112 663.0525 666.9300000000001 1000 50 0.99975616 +113 666.93 670.8075 1000 50 0.9999217 +114 670.8075 674.6850000000001 1000 50 0.97450453 +115 674.685 678.5625 1000 50 0.9996088 +116 678.5625 682.44 1000 50 0.9970799 +117 682.44 686.3175000000001 1000 50 0.9856066 +118 686.3175 690.195 1000 50 0.99577004 +119 690.195 694.0725000000001 1000 50 0.6990161 +120 694.0725 697.95 1000 50 0.9637432 +121 697.95 701.8275000000001 1000 50 0.9303721 +122 701.8275 705.705 1000 50 0.9975133 +123 705.705 709.5825000000001 1000 50 0.99578875 +124 709.5825 713.46 1000 50 0.96555585 +125 713.46 717.3375000000001 1000 50 0.9964742 +126 721.215 725.0925000000001 1000 50 0.970916 +127 725.0925 728.97 1000 50 0.9587976 +128 728.97 732.8475000000001 1000 50 0.9844727 +129 732.8475 736.725 1000 50 0.933112 +130 736.725 740.6025000000001 1000 50 0.94535524 +131 740.6025 744.48 1000 50 0.99064165 +132 744.48 748.3575000000001 1000 50 0.8042175 +133 748.3575 752.235 1000 50 0.9992649 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_14-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_14-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..c4c1b954ffa01f5a9b6ac51014c4f843a05bae31 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_14-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,218 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99950814 +2 3.8775 7.755 1000 50 0.9996082 +3 7.755 11.6325 1000 50 0.9858294 +4 11.6325 15.51 1000 50 0.99999964 +5 15.51 19.3875 1000 50 0.9996549 +6 19.3875 23.265 1000 50 0.9982492 +7 23.265 27.142500000000002 1000 50 0.99936503 +8 27.1425 31.02 1000 50 0.99999714 +9 31.02 34.8975 1000 50 0.99999464 +10 34.8975 38.775 1000 50 0.99580526 +11 38.775 42.652499999999996 1000 50 0.99991953 +12 42.6525 46.53 1000 50 0.93577564 +13 46.53 50.4075 1000 50 0.9999994 +14 50.4075 54.285 1000 50 0.99993634 +15 54.285 58.162499999999994 1000 50 1.0 +16 58.1625 62.04 1000 50 0.99998736 +17 62.04 65.9175 1000 50 0.99999905 +18 65.9175 69.795 1000 50 0.9999846 +19 69.795 73.6725 1000 50 0.89458483 +20 73.6725 77.55 1000 50 0.9778763 +21 77.55 81.4275 1000 50 0.66281724 +22 81.4275 85.30499999999999 1000 50 0.9999999 +23 85.305 89.1825 1000 50 0.999995 +24 89.1825 93.06 1000 50 0.9999459 +25 93.06 96.9375 1000 50 0.9999944 +26 96.9375 100.815 1000 50 0.99999964 +27 100.815 104.6925 1000 50 0.999961 +28 104.6925 108.57 1000 50 0.9999919 +29 108.57 112.44749999999999 1000 50 0.99066025 +30 112.4475 116.325 1000 50 0.99999714 +31 116.325 120.2025 1000 50 0.9889072 +32 120.2025 124.08 1000 50 0.99062866 +33 124.08 127.9575 1000 50 0.9967907 +34 127.9575 131.835 1000 50 0.95463413 +35 131.835 135.7125 1000 50 0.9987037 +36 135.7125 139.59 1000 50 0.626971 +37 139.59 143.4675 1000 50 0.9994708 +38 143.4675 147.345 1000 50 0.9999584 +39 147.345 151.2225 1000 50 0.9972132 +40 151.2225 155.1 1000 50 0.9997248 +41 155.1 158.9775 1000 50 0.9961373 +42 158.9775 162.855 1000 50 0.99782157 +43 162.855 166.7325 1000 50 0.99792504 +44 166.7325 170.60999999999999 1000 50 0.9906624 +45 170.61 174.4875 1000 50 0.9981421 +46 174.4875 178.365 1000 50 0.9999968 +47 178.365 182.2425 1000 50 0.98267704 +48 182.2425 186.12 1000 50 0.885487 +49 186.12 189.9975 1000 50 0.9351073 +50 189.9975 193.875 1000 50 0.9999862 +51 193.875 197.7525 1000 50 0.994729 +52 197.7525 201.63 1000 50 0.9638759 +53 201.63 205.5075 1000 50 0.99775666 +54 205.5075 209.385 1000 50 0.99860686 +55 209.385 213.2625 1000 50 0.9992906 +56 213.2625 217.14 1000 50 0.9993042 +57 217.14 221.01749999999998 1000 50 0.6693851 +58 221.0175 224.895 1000 50 0.99845695 +59 224.895 228.7725 1000 50 0.8709671 +60 228.7725 232.65 1000 50 0.9958288 +61 232.65 236.5275 1000 50 0.99921775 +62 236.5275 240.405 1000 50 0.9969702 +63 240.405 244.2825 1000 50 0.9987513 +64 244.2825 248.16 1000 50 0.69000846 +65 248.16 252.0375 1000 50 0.9993191 +66 252.0375 255.915 1000 50 0.73908937 +67 255.915 259.7925 1000 50 0.7527012 +68 263.67 267.5475 1000 50 0.84332585 +69 267.5475 271.425 1000 50 0.6511752 +70 271.425 275.3025 1000 50 0.99832255 +71 275.3025 279.18 1000 50 0.7351917 +72 283.0575 286.935 1000 50 0.99991214 +73 286.935 290.8125 1000 50 0.5217235 +74 290.8125 294.69 1000 50 0.96744865 +75 294.69 298.5675 1000 50 0.73730713 +76 298.5675 302.445 1000 50 0.8934294 +77 302.445 306.3225 1000 50 0.7198343 +78 306.3225 310.2 1000 50 0.99088824 +79 310.2 314.0775 1000 50 0.99946505 +80 314.0775 317.955 1000 50 0.983174 +81 317.955 321.8325 1000 50 0.9997305 +82 321.8325 325.71 1000 50 0.74753183 +83 325.71 329.5875 1000 50 0.9997782 +84 329.5875 333.465 1000 50 0.99477357 +85 333.465 337.3425 1000 50 0.9999163 +86 337.3425 341.21999999999997 1000 50 0.9996141 +87 341.22 345.0975 1000 50 0.99999905 +88 345.0975 348.975 1000 50 0.794163 +89 348.975 352.8525 1000 50 0.9986091 +90 352.8525 356.73 1000 50 0.9921595 +91 356.73 360.6075 1000 50 0.9968947 +92 360.6075 364.485 1000 50 0.99998164 +93 364.485 368.3625 1000 50 0.99977654 +94 368.3625 372.24 1000 50 0.9993018 +95 372.24 376.1175 1000 50 0.99999964 +96 376.1175 379.995 1000 50 0.99981135 +97 379.995 383.8725 1000 50 0.99999726 +98 383.8725 387.75 1000 50 0.99999976 +99 387.75 391.6275 1000 50 0.9999981 +100 391.6275 395.505 1000 50 0.99999905 +101 395.505 399.3825 1000 50 0.9508228 +102 399.3825 403.26 1000 50 0.9959053 +103 403.26 407.1375 1000 50 0.99999917 +104 407.1375 411.015 1000 50 0.981261 +105 411.015 414.8925 1000 50 0.99975497 +106 414.8925 418.77 1000 50 0.9998696 +107 418.77 422.6475 1000 50 0.99994826 +108 422.6475 426.525 1000 50 0.9999975 +109 426.525 430.4025 1000 50 0.99999094 +110 430.4025 434.28 1000 50 0.9920398 +111 434.28 438.15749999999997 1000 50 0.99999654 +112 438.1575 442.035 1000 50 0.9999988 +113 442.035 445.9125 1000 50 0.99472946 +114 445.9125 449.79 1000 50 1.0 +115 449.79 453.6675 1000 50 0.9993093 +116 453.6675 457.545 1000 50 0.99888664 +117 457.545 461.4225 1000 50 0.99999976 +118 461.4225 465.3 1000 50 0.99943036 +119 465.3 469.1775 1000 50 0.99999964 +120 469.1775 473.055 1000 50 0.99959856 +121 473.055 476.9325 1000 50 0.9992568 +122 476.9325 480.81 1000 50 0.9998778 +123 480.81 484.6875 1000 50 0.9998646 +124 484.6875 488.565 1000 50 0.9999682 +125 488.565 492.4425 1000 50 0.9982048 +126 492.4425 496.32 1000 50 0.99996066 +127 496.32 500.1975 1000 50 0.9999862 +128 500.1975 504.075 1000 50 1.0 +129 504.075 507.9525 1000 50 0.9999993 +130 507.9525 511.83 1000 50 0.65423036 +131 511.83 515.7075 1000 50 0.99999976 +132 515.7075 519.585 1000 50 0.9999913 +133 519.585 523.4625000000001 1000 50 0.99999976 +134 523.4625 527.34 1000 50 1.0 +135 527.34 531.2175000000001 1000 50 0.999044 +136 531.2175 535.095 1000 50 1.0 +137 535.095 538.9725000000001 1000 50 0.9999989 +138 538.9725 542.85 1000 50 0.9940012 +139 542.85 546.7275000000001 1000 50 0.9999951 +140 546.7275 550.605 1000 50 1.0 +141 550.605 554.4825000000001 1000 50 1.0 +142 554.4825 558.36 1000 50 1.0 +143 558.36 562.2375000000001 1000 50 0.99996316 +144 562.2375 566.115 1000 50 0.9999999 +145 566.115 569.9925000000001 1000 50 0.9999999 +146 569.9925 573.87 1000 50 0.9999931 +147 573.87 577.7475000000001 1000 50 1.0 +148 577.7475 581.625 1000 50 1.0 +149 581.625 585.5025 1000 50 0.99907684 +150 585.5025 589.3800000000001 1000 50 0.9998449 +151 589.38 593.2575 1000 50 1.0 +152 593.2575 597.1350000000001 1000 50 0.99915826 +153 597.135 601.0125 1000 50 0.9965406 +154 601.0125 604.8900000000001 1000 50 0.9999746 +155 604.89 608.7675 1000 50 0.9956185 +156 608.7675 612.6450000000001 1000 50 0.9999999 +157 612.645 616.5225 1000 50 0.99999285 +158 616.5225 620.4000000000001 1000 50 0.9999988 +159 620.4 624.2775 1000 50 1.0 +160 624.2775 628.1550000000001 1000 50 0.99926764 +161 628.155 632.0325 1000 50 0.9998746 +162 632.0325 635.9100000000001 1000 50 0.999866 +163 635.91 639.7875 1000 50 0.99999535 +164 643.665 647.5425 1000 50 0.9999733 +165 647.5425 651.4200000000001 1000 50 0.99981314 +166 651.42 655.2975 1000 50 0.99986494 +167 655.2975 659.1750000000001 1000 50 0.99944466 +168 659.175 663.0525 1000 50 0.99993443 +169 663.0525 666.9300000000001 1000 50 0.99975985 +170 666.93 670.8075 1000 50 0.99972206 +171 670.8075 674.6850000000001 1000 50 0.9999999 +172 674.685 678.5625 1000 50 0.9999863 +173 678.5625 682.44 1000 50 0.99300545 +174 682.44 686.3175000000001 1000 50 0.99973327 +175 686.3175 690.195 1000 50 0.9999678 +176 690.195 694.0725000000001 1000 50 1.0 +177 694.0725 697.95 1000 50 0.99999607 +178 697.95 701.8275000000001 1000 50 0.99999976 +179 701.8275 705.705 1000 50 0.9999981 +180 705.705 709.5825000000001 1000 50 1.0 +181 709.5825 713.46 1000 50 0.99996173 +182 713.46 717.3375000000001 1000 50 0.9987632 +183 717.3375 721.215 1000 50 1.0 +184 721.215 725.0925000000001 1000 50 0.9968321 +185 725.0925 728.97 1000 50 0.99999726 +186 728.97 732.8475000000001 1000 50 0.9999999 +187 732.8475 736.725 1000 50 0.99999917 +188 736.725 740.6025000000001 1000 50 0.99997485 +189 740.6025 744.48 1000 50 0.9999981 +190 744.48 748.3575000000001 1000 50 0.99790263 +191 748.3575 752.235 1000 50 0.9999993 +192 752.235 756.1125000000001 1000 50 0.99998736 +193 756.1125 759.99 1000 50 0.90689313 +194 759.99 763.8675000000001 1000 50 0.99999726 +195 763.8675 767.745 1000 50 0.9999838 +196 767.745 771.6225000000001 1000 50 0.99950004 +197 771.6225 775.5 1000 50 0.9999236 +198 775.5 779.3775 1000 50 0.9999107 +199 779.3775 783.2550000000001 1000 50 0.99999917 +200 783.255 787.1325 1000 50 1.0 +201 787.1325 791.0100000000001 1000 50 1.0 +202 791.01 794.8875 1000 50 0.7140116 +203 794.8875 798.7650000000001 1000 50 0.99880326 +204 798.765 802.6425 1000 50 0.9999968 +205 802.6425 806.5200000000001 1000 50 0.9999099 +206 806.52 810.3975 1000 50 0.9999995 +207 810.3975 814.2750000000001 1000 50 0.9999851 +208 814.275 818.1525 1000 50 0.99999917 +209 818.1525 822.0300000000001 1000 50 0.9999603 +210 822.03 825.9075 1000 50 0.99999976 +211 825.9075 829.7850000000001 1000 50 0.9999994 +212 829.785 833.6625 1000 50 0.9759646 +213 833.6625 837.5400000000001 1000 50 0.9999999 +214 837.54 841.4175 1000 50 0.9999453 +215 841.4175 845.2950000000001 1000 50 0.9986432 +216 845.295 849.1725 1000 50 1.0 +217 849.1725 853.0500000000001 1000 50 0.99489564 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_14-17-50_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_14-17-50_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a621fb6281de0f8ae9c6e683541493bcf58b82d3 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_14-17-50_annot_2022-11-30_01.txt @@ -0,0 +1,111 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9990127 +2 3.8775 7.755 1000 50 0.99937135 +3 7.755 11.6325 1000 50 0.98072904 +4 11.6325 15.51 1000 50 0.9992907 +5 15.51 19.3875 1000 50 0.9999956 +6 19.3875 23.265 1000 50 0.9999857 +7 23.265 27.142500000000002 1000 50 0.9933036 +8 27.1425 31.02 1000 50 0.9996138 +9 31.02 34.8975 1000 50 0.9999815 +10 34.8975 38.775 1000 50 0.999985 +11 42.6525 46.53 1000 50 0.9916413 +12 46.53 50.4075 1000 50 0.834254 +13 50.4075 54.285 1000 50 0.9795044 +14 54.285 58.162499999999994 1000 50 0.9970861 +15 58.1625 62.04 1000 50 0.9582925 +16 62.04 65.9175 1000 50 0.9999827 +17 65.9175 69.795 1000 50 0.9992471 +18 69.795 73.6725 1000 50 0.9645594 +19 73.6725 77.55 1000 50 0.9998814 +20 77.55 81.4275 1000 50 0.9980641 +21 81.4275 85.30499999999999 1000 50 0.9999969 +22 85.305 89.1825 1000 50 0.8834887 +23 89.1825 93.06 1000 50 0.9995765 +24 93.06 96.9375 1000 50 0.99996793 +25 96.9375 100.815 1000 50 0.99632853 +26 100.815 104.6925 1000 50 0.9991565 +27 104.6925 108.57 1000 50 0.9999423 +28 108.57 112.44749999999999 1000 50 0.99868184 +29 112.4475 116.325 1000 50 0.98846996 +30 116.325 120.2025 1000 50 0.9977714 +31 120.2025 124.08 1000 50 0.9995055 +32 124.08 127.9575 1000 50 0.95323175 +33 127.9575 131.835 1000 50 0.9999857 +34 131.835 135.7125 1000 50 0.99999225 +35 135.7125 139.59 1000 50 0.79162014 +36 139.59 143.4675 1000 50 0.9975419 +37 143.4675 147.345 1000 50 0.75396514 +38 147.345 151.2225 1000 50 0.99932563 +39 151.2225 155.1 1000 50 0.9997824 +40 155.1 158.9775 1000 50 0.999881 +41 158.9775 162.855 1000 50 0.9029365 +42 162.855 166.7325 1000 50 0.99998105 +43 166.7325 170.60999999999999 1000 50 0.9984401 +44 170.61 174.4875 1000 50 0.9997992 +45 174.4875 178.365 1000 50 0.97024286 +46 178.365 182.2425 1000 50 0.9996792 +47 186.12 189.9975 1000 50 0.97349244 +48 189.9975 193.875 1000 50 0.9912043 +49 193.875 197.7525 1000 50 0.9975483 +50 197.7525 201.63 1000 50 0.99499065 +51 201.63 205.5075 1000 50 0.99651766 +52 205.5075 209.385 1000 50 0.99769884 +53 209.385 213.2625 1000 50 0.99966764 +54 213.2625 217.14 1000 50 0.99999964 +55 217.14 221.01749999999998 1000 50 0.9996408 +56 221.0175 224.895 1000 50 0.99866354 +57 224.895 228.7725 1000 50 0.99424595 +58 228.7725 232.65 1000 50 1.0 +59 232.65 236.5275 1000 50 0.99999976 +60 236.5275 240.405 1000 50 0.9999932 +61 240.405 244.2825 1000 50 0.9999995 +62 244.2825 248.16 1000 50 0.99997544 +63 248.16 252.0375 1000 50 0.99999666 +64 252.0375 255.915 1000 50 0.99999523 +65 255.915 259.7925 1000 50 0.9996082 +66 259.7925 263.67 1000 50 0.9997975 +67 263.67 267.5475 1000 50 0.9999908 +68 267.5475 271.425 1000 50 0.99931586 +69 271.425 275.3025 1000 50 0.9963425 +70 275.3025 279.18 1000 50 1.0 +71 279.18 283.0575 1000 50 1.0 +72 283.0575 286.935 1000 50 0.9999951 +73 286.935 290.8125 1000 50 1.0 +74 290.8125 294.69 1000 50 0.9981223 +75 294.69 298.5675 1000 50 0.9999964 +76 298.5675 302.445 1000 50 0.9999852 +77 302.445 306.3225 1000 50 0.9999784 +78 306.3225 310.2 1000 50 0.9999994 +79 310.2 314.0775 1000 50 0.9999994 +80 314.0775 317.955 1000 50 0.99999976 +81 317.955 321.8325 1000 50 0.9999217 +82 321.8325 325.71 1000 50 0.99999774 +83 325.71 329.5875 1000 50 1.0 +84 329.5875 333.465 1000 50 0.7755633 +85 333.465 337.3425 1000 50 0.99999917 +86 337.3425 341.21999999999997 1000 50 0.99961567 +87 341.22 345.0975 1000 50 0.99780685 +88 345.0975 348.975 1000 50 0.99999976 +89 348.975 352.8525 1000 50 0.99968815 +90 352.8525 356.73 1000 50 0.98571014 +91 356.73 360.6075 1000 50 1.0 +92 360.6075 364.485 1000 50 0.99999905 +93 364.485 368.3625 1000 50 0.99769837 +94 368.3625 372.24 1000 50 0.9999999 +95 372.24 376.1175 1000 50 1.0 +96 376.1175 379.995 1000 50 0.99997556 +97 379.995 383.8725 1000 50 0.9999999 +98 383.8725 387.75 1000 50 0.9999995 +99 387.75 391.6275 1000 50 1.0 +100 391.6275 395.505 1000 50 0.9999974 +101 395.505 399.3825 1000 50 0.9998677 +102 399.3825 403.26 1000 50 1.0 +103 403.26 407.1375 1000 50 0.9999999 +104 407.1375 411.015 1000 50 0.99999964 +105 411.015 414.8925 1000 50 0.9999957 +106 414.8925 418.77 1000 50 0.9998324 +107 418.77 422.6475 1000 50 1.0 +108 422.6475 426.525 1000 50 0.9999989 +109 426.525 430.4025 1000 50 0.99999905 +110 430.4025 434.28 1000 50 0.9999995 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_15-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_15-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d8dd22f10f7ce16bdea17a059a47c2178c595558 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_15-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,299 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9863201 +2 3.8775 7.755 1000 50 0.9931538 +3 7.755 11.6325 1000 50 0.9868339 +4 11.6325 15.51 1000 50 0.9991825 +5 15.51 19.3875 1000 50 0.9962048 +6 19.3875 23.265 1000 50 0.99912685 +7 23.265 27.142500000000002 1000 50 0.99946827 +8 27.1425 31.02 1000 50 0.99998367 +9 31.02 34.8975 1000 50 0.9839752 +10 34.8975 38.775 1000 50 0.99635845 +11 38.775 42.652499999999996 1000 50 0.99655175 +12 42.6525 46.53 1000 50 0.999982 +13 46.53 50.4075 1000 50 0.9997569 +14 50.4075 54.285 1000 50 0.9999882 +15 54.285 58.162499999999994 1000 50 0.99704224 +16 58.1625 62.04 1000 50 0.9969349 +17 62.04 65.9175 1000 50 0.9997278 +18 65.9175 69.795 1000 50 0.99999785 +19 69.795 73.6725 1000 50 0.9998739 +20 73.6725 77.55 1000 50 0.97345656 +21 77.55 81.4275 1000 50 0.9990971 +22 81.4275 85.30499999999999 1000 50 0.99993956 +23 85.305 89.1825 1000 50 0.9406995 +24 89.1825 93.06 1000 50 0.9999894 +25 93.06 96.9375 1000 50 0.94291526 +26 96.9375 100.815 1000 50 0.99965334 +27 100.815 104.6925 1000 50 0.6790143 +28 104.6925 108.57 1000 50 0.75356257 +29 108.57 112.44749999999999 1000 50 0.9998017 +30 112.4475 116.325 1000 50 0.8879388 +31 116.325 120.2025 1000 50 0.9999378 +32 120.2025 124.08 1000 50 0.99963915 +33 124.08 127.9575 1000 50 0.9862905 +34 127.9575 131.835 1000 50 0.99988973 +35 131.835 135.7125 1000 50 0.99997246 +36 135.7125 139.59 1000 50 0.9999726 +37 139.59 143.4675 1000 50 0.99999475 +38 143.4675 147.345 1000 50 0.99999094 +39 147.345 151.2225 1000 50 0.9987827 +40 151.2225 155.1 1000 50 0.9999746 +41 155.1 158.9775 1000 50 0.9994673 +42 158.9775 162.855 1000 50 0.9998658 +43 162.855 166.7325 1000 50 0.99994993 +44 166.7325 170.60999999999999 1000 50 1.0 +45 170.61 174.4875 1000 50 0.9997092 +46 174.4875 178.365 1000 50 0.9999994 +47 178.365 182.2425 1000 50 0.9999819 +48 182.2425 186.12 1000 50 0.999995 +49 186.12 189.9975 1000 50 0.99999607 +50 189.9975 193.875 1000 50 0.9999999 +51 193.875 197.7525 1000 50 1.0 +52 197.7525 201.63 1000 50 0.99996305 +53 201.63 205.5075 1000 50 1.0 +54 205.5075 209.385 1000 50 0.99999976 +55 209.385 213.2625 1000 50 0.99818206 +56 213.2625 217.14 1000 50 1.0 +57 217.14 221.01749999999998 1000 50 0.99999976 +58 221.0175 224.895 1000 50 0.9961719 +59 224.895 228.7725 1000 50 1.0 +60 228.7725 232.65 1000 50 0.99999034 +61 232.65 236.5275 1000 50 0.9999995 +62 236.5275 240.405 1000 50 0.99998605 +63 240.405 244.2825 1000 50 0.9999949 +64 244.2825 248.16 1000 50 0.99999976 +65 248.16 252.0375 1000 50 0.99999905 +66 252.0375 255.915 1000 50 0.9999989 +67 255.915 259.7925 1000 50 0.99999654 +68 259.7925 263.67 1000 50 1.0 +69 263.67 267.5475 1000 50 0.9999598 +70 267.5475 271.425 1000 50 0.9999888 +71 271.425 275.3025 1000 50 1.0 +72 275.3025 279.18 1000 50 0.9994252 +73 279.18 283.0575 1000 50 1.0 +74 283.0575 286.935 1000 50 0.9999988 +75 286.935 290.8125 1000 50 0.99968135 +76 290.8125 294.69 1000 50 1.0 +77 294.69 298.5675 1000 50 0.9999987 +78 298.5675 302.445 1000 50 0.9999987 +79 302.445 306.3225 1000 50 1.0 +80 306.3225 310.2 1000 50 1.0 +81 310.2 314.0775 1000 50 0.99999225 +82 314.0775 317.955 1000 50 0.9999975 +83 317.955 321.8325 1000 50 0.9999969 +84 321.8325 325.71 1000 50 0.99999833 +85 325.71 329.5875 1000 50 0.9999988 +86 329.5875 333.465 1000 50 0.94287944 +87 333.465 337.3425 1000 50 0.999997 +88 337.3425 341.21999999999997 1000 50 0.99999225 +89 341.22 345.0975 1000 50 1.0 +90 345.0975 348.975 1000 50 0.99999917 +91 348.975 352.8525 1000 50 0.96989506 +92 352.8525 356.73 1000 50 1.0 +93 356.73 360.6075 1000 50 0.99992144 +94 360.6075 364.485 1000 50 0.99996245 +95 364.485 368.3625 1000 50 0.99834764 +96 368.3625 372.24 1000 50 0.9999876 +97 372.24 376.1175 1000 50 1.0 +98 376.1175 379.995 1000 50 0.9994431 +99 379.995 383.8725 1000 50 0.99951077 +100 383.8725 387.75 1000 50 0.9999647 +101 387.75 391.6275 1000 50 0.99999714 +102 391.6275 395.505 1000 50 0.99981827 +103 395.505 399.3825 1000 50 0.9998223 +104 399.3825 403.26 1000 50 0.9999255 +105 403.26 407.1375 1000 50 0.9992161 +106 407.1375 411.015 1000 50 0.99942577 +107 411.015 414.8925 1000 50 0.9999963 +108 414.8925 418.77 1000 50 0.9999286 +109 418.77 422.6475 1000 50 0.99925166 +110 422.6475 426.525 1000 50 0.9999989 +111 426.525 430.4025 1000 50 0.99971837 +112 430.4025 434.28 1000 50 0.999944 +113 434.28 438.15749999999997 1000 50 0.9999708 +114 438.1575 442.035 1000 50 0.99998903 +115 442.035 445.9125 1000 50 0.9999994 +116 445.9125 449.79 1000 50 0.9992939 +117 449.79 453.6675 1000 50 0.9999912 +118 453.6675 457.545 1000 50 1.0 +119 457.545 461.4225 1000 50 0.9998216 +120 461.4225 465.3 1000 50 0.999998 +121 465.3 469.1775 1000 50 0.9999982 +122 469.1775 473.055 1000 50 0.99819905 +123 473.055 476.9325 1000 50 0.99999976 +124 476.9325 480.81 1000 50 0.9796708 +125 480.81 484.6875 1000 50 0.9999988 +126 484.6875 488.565 1000 50 1.0 +127 488.565 492.4425 1000 50 0.9999988 +128 492.4425 496.32 1000 50 0.99997354 +129 496.32 500.1975 1000 50 1.0 +130 500.1975 504.075 1000 50 0.99973744 +131 504.075 507.9525 1000 50 0.9999862 +132 507.9525 511.83 1000 50 0.99999964 +133 511.83 515.7075 1000 50 0.999998 +134 515.7075 519.585 1000 50 0.9942819 +135 519.585 523.4625000000001 1000 50 0.9999573 +136 523.4625 527.34 1000 50 0.9999999 +137 527.34 531.2175000000001 1000 50 0.99076873 +138 531.2175 535.095 1000 50 1.0 +139 535.095 538.9725000000001 1000 50 0.9991381 +140 538.9725 542.85 1000 50 1.0 +141 542.85 546.7275000000001 1000 50 1.0 +142 546.7275 550.605 1000 50 0.99998736 +143 550.605 554.4825000000001 1000 50 1.0 +144 554.4825 558.36 1000 50 0.9997112 +145 558.36 562.2375000000001 1000 50 0.9999981 +146 562.2375 566.115 1000 50 1.0 +147 566.115 569.9925000000001 1000 50 0.9995889 +148 569.9925 573.87 1000 50 0.99996567 +149 573.87 577.7475000000001 1000 50 0.99999785 +150 577.7475 581.625 1000 50 0.99999857 +151 585.5025 589.3800000000001 1000 50 1.0 +152 589.38 593.2575 1000 50 0.99990714 +153 593.2575 597.1350000000001 1000 50 0.9995283 +154 597.135 601.0125 1000 50 0.9957675 +155 601.0125 604.8900000000001 1000 50 0.9999938 +156 604.89 608.7675 1000 50 0.99999964 +157 608.7675 612.6450000000001 1000 50 0.9747464 +158 612.645 616.5225 1000 50 0.9999999 +159 616.5225 620.4000000000001 1000 50 1.0 +160 620.4 624.2775 1000 50 0.99999905 +161 624.2775 628.1550000000001 1000 50 1.0 +162 628.155 632.0325 1000 50 0.9998159 +163 632.0325 635.9100000000001 1000 50 1.0 +164 635.91 639.7875 1000 50 0.99999464 +165 639.7875 643.6650000000001 1000 50 0.9999701 +166 643.665 647.5425 1000 50 0.9998933 +167 647.5425 651.4200000000001 1000 50 0.99886864 +168 651.42 655.2975 1000 50 0.9999944 +169 655.2975 659.1750000000001 1000 50 0.99999547 +170 659.175 663.0525 1000 50 0.9999522 +171 663.0525 666.9300000000001 1000 50 0.99999917 +172 666.93 670.8075 1000 50 0.999982 +173 670.8075 674.6850000000001 1000 50 0.9999994 +174 674.685 678.5625 1000 50 0.99999726 +175 678.5625 682.44 1000 50 0.9999802 +176 682.44 686.3175000000001 1000 50 0.99999607 +177 686.3175 690.195 1000 50 0.9999076 +178 690.195 694.0725000000001 1000 50 1.0 +179 694.0725 697.95 1000 50 0.9999335 +180 697.95 701.8275000000001 1000 50 0.9999994 +181 701.8275 705.705 1000 50 0.9999689 +182 705.705 709.5825000000001 1000 50 0.9999999 +183 709.5825 713.46 1000 50 1.0 +184 713.46 717.3375000000001 1000 50 0.99989283 +185 717.3375 721.215 1000 50 0.99999785 +186 721.215 725.0925000000001 1000 50 0.99999964 +187 725.0925 728.97 1000 50 0.99948657 +188 728.97 732.8475000000001 1000 50 0.9999939 +189 732.8475 736.725 1000 50 0.99999976 +190 736.725 740.6025000000001 1000 50 0.9999999 +191 740.6025 744.48 1000 50 0.9999989 +192 744.48 748.3575000000001 1000 50 0.9999478 +193 748.3575 752.235 1000 50 0.99995744 +194 752.235 756.1125000000001 1000 50 1.0 +195 756.1125 759.99 1000 50 0.9999988 +196 759.99 763.8675000000001 1000 50 0.9970963 +197 763.8675 767.745 1000 50 1.0 +198 767.745 771.6225000000001 1000 50 1.0 +199 771.6225 775.5 1000 50 0.9999976 +200 775.5 779.3775 1000 50 0.9999963 +201 779.3775 783.2550000000001 1000 50 1.0 +202 783.255 787.1325 1000 50 0.99999976 +203 787.1325 791.0100000000001 1000 50 0.9998549 +204 791.01 794.8875 1000 50 0.9924374 +205 794.8875 798.7650000000001 1000 50 0.99941564 +206 798.765 802.6425 1000 50 0.9982486 +207 802.6425 806.5200000000001 1000 50 0.99975127 +208 806.52 810.3975 1000 50 0.99172544 +209 810.3975 814.2750000000001 1000 50 0.99995995 +210 814.275 818.1525 1000 50 0.9997993 +211 818.1525 822.0300000000001 1000 50 0.99994504 +212 822.03 825.9075 1000 50 0.99938333 +213 825.9075 829.7850000000001 1000 50 0.9998869 +214 833.6625 837.5400000000001 1000 50 0.99996364 +215 837.54 841.4175 1000 50 0.99999964 +216 841.4175 845.2950000000001 1000 50 0.9999937 +217 845.295 849.1725 1000 50 0.99789494 +218 849.1725 853.0500000000001 1000 50 0.9999603 +219 853.05 856.9275 1000 50 0.9996393 +220 856.9275 860.8050000000001 1000 50 0.98189247 +221 860.805 864.6825 1000 50 1.0 +222 864.6825 868.5600000000001 1000 50 0.9999292 +223 868.56 872.4375 1000 50 0.99917966 +224 872.4375 876.315 1000 50 0.99996865 +225 876.315 880.1925000000001 1000 50 0.99976283 +226 880.1925 884.07 1000 50 0.99987185 +227 884.07 887.9475000000001 1000 50 0.9999989 +228 887.9475 891.825 1000 50 0.99940217 +229 891.825 895.7025000000001 1000 50 0.99792284 +230 895.7025 899.58 1000 50 0.9989104 +231 899.58 903.4575000000001 1000 50 0.99999845 +232 903.4575 907.335 1000 50 0.9981554 +233 907.335 911.2125000000001 1000 50 0.9975363 +234 911.2125 915.09 1000 50 0.99999833 +235 915.09 918.9675000000001 1000 50 0.9999397 +236 918.9675 922.845 1000 50 0.99963653 +237 922.845 926.7225000000001 1000 50 0.9622914 +238 926.7225 930.6 1000 50 0.9999633 +239 930.6 934.4775000000001 1000 50 0.9999373 +240 934.4775 938.355 1000 50 1.0 +241 938.355 942.2325000000001 1000 50 0.9999474 +242 942.2325 946.11 1000 50 0.9999957 +243 946.11 949.9875000000001 1000 50 0.99997985 +244 949.9875 953.865 1000 50 0.9995229 +245 953.865 957.7425000000001 1000 50 0.99973315 +246 957.7425 961.62 1000 50 0.9995988 +247 961.62 965.4975000000001 1000 50 0.9999136 +248 965.4975 969.375 1000 50 0.99647766 +249 969.375 973.2525 1000 50 0.99991167 +250 973.2525 977.1300000000001 1000 50 0.9983494 +251 977.13 981.0075 1000 50 0.9992368 +252 981.0075 984.8850000000001 1000 50 0.9999995 +253 984.885 988.7625 1000 50 0.9999572 +254 988.7625 992.6400000000001 1000 50 0.9996916 +255 992.64 996.5175 1000 50 0.9998648 +256 996.5175 1000.3950000000001 1000 50 0.99998593 +257 1000.395 1004.2725 1000 50 0.99969935 +258 1004.2725 1008.1500000000001 1000 50 0.99987316 +259 1008.15 1012.0275 1000 50 0.9989631 +260 1012.0275 1015.9050000000001 1000 50 0.5089424 +261 1015.905 1019.7825 1000 50 0.99134237 +262 1019.7825 1023.6600000000001 1000 50 0.94139016 +263 1023.66 1027.5375 1000 50 0.59831464 +264 1027.5375 1031.415 1000 50 0.996977 +265 1031.415 1035.2925 1000 50 0.99856 +266 1035.2925 1039.17 1000 50 0.9997912 +267 1039.17 1043.0475000000001 1000 50 0.99996185 +268 1043.0475 1046.925 1000 50 0.993808 +269 1046.925 1050.8025 1000 50 0.98836946 +270 1050.8025 1054.68 1000 50 0.9975343 +271 1054.68 1058.5575000000001 1000 50 0.99838233 +272 1058.5575 1062.435 1000 50 0.99888545 +273 1062.435 1066.3125 1000 50 0.9623824 +274 1066.3125 1070.19 1000 50 0.99982977 +275 1070.19 1074.0675 1000 50 0.9996842 +276 1074.0675 1077.9450000000002 1000 50 0.9964365 +277 1077.945 1081.8225 1000 50 0.99986494 +278 1081.8225 1085.7 1000 50 1.0 +279 1085.7 1089.5775 1000 50 0.976935 +280 1089.5775 1093.4550000000002 1000 50 0.9275283 +281 1093.455 1097.3325 1000 50 0.9863689 +282 1097.3325 1101.21 1000 50 0.99883586 +283 1105.0875 1108.9650000000001 1000 50 0.797083 +284 1108.965 1112.8425 1000 50 0.9917943 +285 1112.8425 1116.72 1000 50 0.5528026 +286 1116.72 1120.5975 1000 50 0.6895077 +287 1120.5975 1124.4750000000001 1000 50 0.98437446 +288 1124.475 1128.3525 1000 50 0.9746995 +289 1128.3525 1132.23 1000 50 0.96457815 +290 1132.23 1136.1075 1000 50 0.64118934 +291 1136.1075 1139.9850000000001 1000 50 0.994001 +292 1143.8625 1147.74 1000 50 0.97037596 +293 1147.74 1151.6175 1000 50 0.999995 +294 1151.6175 1155.4950000000001 1000 50 0.7240887 +295 1155.495 1159.3725 1000 50 0.9674858 +296 1159.3725 1163.25 1000 50 0.9775378 +297 1163.25 1167.1275 1000 50 0.99233294 +298 1167.1275 1171.005 1000 50 0.9996706 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_15-23-10_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_15-23-10_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0512e5d549ce23baead85440af83a06b3f0f82e1 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_15-23-10_annot_2022-11-30_01.txt @@ -0,0 +1,28 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.98210657 +2 3.8775 7.755 1000 50 1.0 +3 7.755 11.6325 1000 50 0.9999993 +4 11.6325 15.51 1000 50 0.9999968 +5 15.51 19.3875 1000 50 0.99993455 +6 19.3875 23.265 1000 50 0.99999964 +7 23.265 27.142500000000002 1000 50 0.99998975 +8 31.02 34.8975 1000 50 0.99997115 +9 34.8975 38.775 1000 50 0.9647132 +10 42.6525 46.53 1000 50 0.9965481 +11 46.53 50.4075 1000 50 0.99904615 +12 50.4075 54.285 1000 50 0.9999974 +13 54.285 58.162499999999994 1000 50 0.9999919 +14 58.1625 62.04 1000 50 1.0 +15 62.04 65.9175 1000 50 0.999992 +16 65.9175 69.795 1000 50 0.9989293 +17 69.795 73.6725 1000 50 0.78074574 +18 73.6725 77.55 1000 50 0.8957698 +19 77.55 81.4275 1000 50 0.9999931 +20 81.4275 85.30499999999999 1000 50 0.99999785 +21 89.1825 93.06 1000 50 0.9999981 +22 93.06 96.9375 1000 50 0.99985933 +23 96.9375 100.815 1000 50 0.995481 +24 100.815 104.6925 1000 50 0.999567 +25 104.6925 108.57 1000 50 0.99971205 +26 108.57 112.44749999999999 1000 50 1.0 +27 112.4475 116.325 1000 50 0.9999908 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_16-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_16-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..54e080f6dc8631d806adeeebe74c53e7aa84da8e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_16-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,373 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9864717 +2 3.8775 7.755 1000 50 0.9996667 +3 7.755 11.6325 1000 50 0.99875236 +4 11.6325 15.51 1000 50 0.7736189 +5 15.51 19.3875 1000 50 0.9907838 +6 19.3875 23.265 1000 50 0.99931955 +7 23.265 27.142500000000002 1000 50 0.9999713 +8 27.1425 31.02 1000 50 0.99999905 +9 31.02 34.8975 1000 50 0.99922335 +10 34.8975 38.775 1000 50 0.92058975 +11 38.775 42.652499999999996 1000 50 0.99986935 +12 42.6525 46.53 1000 50 0.9999651 +13 46.53 50.4075 1000 50 0.99999964 +14 50.4075 54.285 1000 50 0.99957794 +15 54.285 58.162499999999994 1000 50 1.0 +16 58.1625 62.04 1000 50 0.9999329 +17 62.04 65.9175 1000 50 0.9999838 +18 65.9175 69.795 1000 50 0.99981385 +19 69.795 73.6725 1000 50 0.99994576 +20 73.6725 77.55 1000 50 0.99999845 +21 77.55 81.4275 1000 50 0.9999925 +22 81.4275 85.30499999999999 1000 50 0.9999927 +23 85.305 89.1825 1000 50 0.9999995 +24 89.1825 93.06 1000 50 0.99991643 +25 93.06 96.9375 1000 50 0.99896336 +26 96.9375 100.815 1000 50 0.9996018 +27 100.815 104.6925 1000 50 1.0 +28 104.6925 108.57 1000 50 0.99996495 +29 108.57 112.44749999999999 1000 50 0.9999832 +30 112.4475 116.325 1000 50 0.9999999 +31 116.325 120.2025 1000 50 0.99986994 +32 120.2025 124.08 1000 50 0.9999163 +33 124.08 127.9575 1000 50 0.9999882 +34 127.9575 131.835 1000 50 0.999984 +35 131.835 135.7125 1000 50 0.99998736 +36 135.7125 139.59 1000 50 1.0 +37 139.59 143.4675 1000 50 0.9996019 +38 143.4675 147.345 1000 50 0.9999999 +39 147.345 151.2225 1000 50 0.9999938 +40 151.2225 155.1 1000 50 0.9935968 +41 155.1 158.9775 1000 50 1.0 +42 158.9775 162.855 1000 50 0.9997414 +43 162.855 166.7325 1000 50 0.9998592 +44 166.7325 170.60999999999999 1000 50 0.9989511 +45 170.61 174.4875 1000 50 0.99898607 +46 174.4875 178.365 1000 50 0.99999857 +47 178.365 182.2425 1000 50 0.9999957 +48 182.2425 186.12 1000 50 0.9997476 +49 186.12 189.9975 1000 50 0.9999969 +50 189.9975 193.875 1000 50 0.9988501 +51 193.875 197.7525 1000 50 0.99997246 +52 197.7525 201.63 1000 50 0.9999988 +53 201.63 205.5075 1000 50 0.99998987 +54 205.5075 209.385 1000 50 0.99873644 +55 209.385 213.2625 1000 50 0.9999995 +56 213.2625 217.14 1000 50 0.99981576 +57 217.14 221.01749999999998 1000 50 0.9987734 +58 221.0175 224.895 1000 50 0.9999995 +59 224.895 228.7725 1000 50 0.6434146 +60 228.7725 232.65 1000 50 0.9998 +61 232.65 236.5275 1000 50 0.999522 +62 236.5275 240.405 1000 50 0.9884249 +63 240.405 244.2825 1000 50 0.99998975 +64 244.2825 248.16 1000 50 0.9999924 +65 248.16 252.0375 1000 50 0.97466177 +66 252.0375 255.915 1000 50 0.9999989 +67 255.915 259.7925 1000 50 0.9999999 +68 259.7925 263.67 1000 50 0.9968574 +69 263.67 267.5475 1000 50 0.99999774 +70 267.5475 271.425 1000 50 0.9999311 +71 271.425 275.3025 1000 50 0.9858937 +72 275.3025 279.18 1000 50 0.967651 +73 279.18 283.0575 1000 50 0.99991167 +74 283.0575 286.935 1000 50 0.99972504 +75 290.8125 294.69 1000 50 0.9999273 +76 294.69 298.5675 1000 50 0.99999106 +77 298.5675 302.445 1000 50 0.99998224 +78 302.445 306.3225 1000 50 0.99990845 +79 306.3225 310.2 1000 50 0.900757 +80 310.2 314.0775 1000 50 0.99986005 +81 314.0775 317.955 1000 50 0.96704495 +82 317.955 321.8325 1000 50 0.9997868 +83 321.8325 325.71 1000 50 0.9993911 +84 325.71 329.5875 1000 50 0.5950616 +85 329.5875 333.465 1000 50 0.99995124 +86 333.465 337.3425 1000 50 0.95594156 +87 337.3425 341.21999999999997 1000 50 0.9986008 +88 341.22 345.0975 1000 50 0.98102045 +89 345.0975 348.975 1000 50 0.99971277 +90 348.975 352.8525 1000 50 0.94480807 +91 352.8525 356.73 1000 50 0.999826 +92 356.73 360.6075 1000 50 0.99994254 +93 360.6075 364.485 1000 50 0.9983719 +94 364.485 368.3625 1000 50 0.9976102 +95 368.3625 372.24 1000 50 0.9999931 +96 372.24 376.1175 1000 50 0.9939766 +97 376.1175 379.995 1000 50 0.9997696 +98 379.995 383.8725 1000 50 0.9921467 +99 383.8725 387.75 1000 50 0.9999927 +100 387.75 391.6275 1000 50 0.9999802 +101 391.6275 395.505 1000 50 0.99999857 +102 395.505 399.3825 1000 50 0.9998939 +103 399.3825 403.26 1000 50 1.0 +104 403.26 407.1375 1000 50 0.9999987 +105 407.1375 411.015 1000 50 0.9936919 +106 411.015 414.8925 1000 50 0.9997949 +107 414.8925 418.77 1000 50 0.9999963 +108 418.77 422.6475 1000 50 0.9999999 +109 422.6475 426.525 1000 50 0.9998492 +110 426.525 430.4025 1000 50 0.9770939 +111 430.4025 434.28 1000 50 0.99494666 +112 434.28 438.15749999999997 1000 50 0.72836745 +113 438.1575 442.035 1000 50 0.67916334 +114 442.035 445.9125 1000 50 0.9987275 +115 445.9125 449.79 1000 50 0.99706995 +116 449.79 453.6675 1000 50 0.9999962 +117 453.6675 457.545 1000 50 0.99939513 +118 457.545 461.4225 1000 50 0.9999002 +119 461.4225 465.3 1000 50 0.999863 +120 469.1775 473.055 1000 50 0.66847867 +121 473.055 476.9325 1000 50 0.99999726 +122 476.9325 480.81 1000 50 0.99068236 +123 480.81 484.6875 1000 50 0.96699345 +124 484.6875 488.565 1000 50 0.89998275 +125 488.565 492.4425 1000 50 0.99994063 +126 492.4425 496.32 1000 50 0.999936 +127 496.32 500.1975 1000 50 0.9589338 +128 500.1975 504.075 1000 50 0.99674076 +129 504.075 507.9525 1000 50 0.99930036 +130 507.9525 511.83 1000 50 0.9998646 +131 511.83 515.7075 1000 50 0.8015084 +132 519.585 523.4625000000001 1000 50 0.9579238 +133 523.4625 527.34 1000 50 0.9846771 +134 527.34 531.2175000000001 1000 50 0.9995714 +135 535.095 538.9725000000001 1000 50 0.98858297 +136 538.9725 542.85 1000 50 0.70220727 +137 542.85 546.7275000000001 1000 50 0.9996387 +138 546.7275 550.605 1000 50 0.9988226 +139 550.605 554.4825000000001 1000 50 0.9999702 +140 554.4825 558.36 1000 50 0.9982346 +141 558.36 562.2375000000001 1000 50 0.9999982 +142 562.2375 566.115 1000 50 0.9999982 +143 566.115 569.9925000000001 1000 50 0.9763089 +144 569.9925 573.87 1000 50 0.6754226 +145 573.87 577.7475000000001 1000 50 0.999998 +146 577.7475 581.625 1000 50 0.99917346 +147 581.625 585.5025 1000 50 0.9848551 +148 585.5025 589.3800000000001 1000 50 0.9998585 +149 589.38 593.2575 1000 50 0.99990344 +150 593.2575 597.1350000000001 1000 50 0.9984604 +151 597.135 601.0125 1000 50 0.99722254 +152 601.0125 604.8900000000001 1000 50 0.99987924 +153 604.89 608.7675 1000 50 0.99998033 +154 608.7675 612.6450000000001 1000 50 0.93745416 +155 612.645 616.5225 1000 50 0.9999993 +156 616.5225 620.4000000000001 1000 50 0.99966395 +157 620.4 624.2775 1000 50 0.9999721 +158 624.2775 628.1550000000001 1000 50 0.99995863 +159 628.155 632.0325 1000 50 0.99985945 +160 635.91 639.7875 1000 50 0.9997992 +161 639.7875 643.6650000000001 1000 50 0.99941206 +162 643.665 647.5425 1000 50 0.9960516 +163 647.5425 651.4200000000001 1000 50 0.99999857 +164 651.42 655.2975 1000 50 0.99995124 +165 655.2975 659.1750000000001 1000 50 0.99698 +166 659.175 663.0525 1000 50 0.9996811 +167 663.0525 666.9300000000001 1000 50 0.99993443 +168 666.93 670.8075 1000 50 0.99986887 +169 670.8075 674.6850000000001 1000 50 0.9999994 +170 674.685 678.5625 1000 50 0.99999976 +171 678.5625 682.44 1000 50 0.99998784 +172 682.44 686.3175000000001 1000 50 0.99999857 +173 686.3175 690.195 1000 50 0.99664706 +174 690.195 694.0725000000001 1000 50 0.9999325 +175 694.0725 697.95 1000 50 0.99869734 +176 697.95 701.8275000000001 1000 50 0.9999162 +177 701.8275 705.705 1000 50 1.0 +178 705.705 709.5825000000001 1000 50 0.9999813 +179 709.5825 713.46 1000 50 0.9999974 +180 713.46 717.3375000000001 1000 50 0.9999882 +181 717.3375 721.215 1000 50 0.99938774 +182 721.215 725.0925000000001 1000 50 0.98597634 +183 725.0925 728.97 1000 50 0.9999999 +184 728.97 732.8475000000001 1000 50 0.9915104 +185 732.8475 736.725 1000 50 0.9999871 +186 736.725 740.6025000000001 1000 50 0.9999932 +187 740.6025 744.48 1000 50 0.9956553 +188 744.48 748.3575000000001 1000 50 0.99878865 +189 748.3575 752.235 1000 50 0.99846715 +190 752.235 756.1125000000001 1000 50 0.99999356 +191 756.1125 759.99 1000 50 0.9994912 +192 759.99 763.8675000000001 1000 50 0.9994228 +193 763.8675 767.745 1000 50 0.9999995 +194 767.745 771.6225000000001 1000 50 0.99949706 +195 771.6225 775.5 1000 50 0.8898163 +196 775.5 779.3775 1000 50 0.9999652 +197 779.3775 783.2550000000001 1000 50 0.97935265 +198 783.255 787.1325 1000 50 0.99999917 +199 787.1325 791.0100000000001 1000 50 0.99998295 +200 791.01 794.8875 1000 50 0.99724776 +201 794.8875 798.7650000000001 1000 50 0.9999951 +202 798.765 802.6425 1000 50 0.9999987 +203 802.6425 806.5200000000001 1000 50 0.9999976 +204 806.52 810.3975 1000 50 0.9983298 +205 810.3975 814.2750000000001 1000 50 0.9999598 +206 814.275 818.1525 1000 50 0.999998 +207 818.1525 822.0300000000001 1000 50 0.95629376 +208 822.03 825.9075 1000 50 0.9999703 +209 825.9075 829.7850000000001 1000 50 1.0 +210 833.6625 837.5400000000001 1000 50 0.99999523 +211 837.54 841.4175 1000 50 0.99999654 +212 841.4175 845.2950000000001 1000 50 0.9980683 +213 845.295 849.1725 1000 50 0.9996736 +214 849.1725 853.0500000000001 1000 50 0.9999343 +215 853.05 856.9275 1000 50 0.9996001 +216 856.9275 860.8050000000001 1000 50 1.0 +217 860.805 864.6825 1000 50 0.99995244 +218 864.6825 868.5600000000001 1000 50 0.9996524 +219 868.56 872.4375 1000 50 0.9999695 +220 872.4375 876.315 1000 50 1.0 +221 876.315 880.1925000000001 1000 50 0.99999964 +222 880.1925 884.07 1000 50 0.9998103 +223 884.07 887.9475000000001 1000 50 1.0 +224 887.9475 891.825 1000 50 0.9990853 +225 891.825 895.7025000000001 1000 50 0.9999938 +226 895.7025 899.58 1000 50 0.9999995 +227 899.58 903.4575000000001 1000 50 0.9999989 +228 903.4575 907.335 1000 50 0.9856176 +229 907.335 911.2125000000001 1000 50 1.0 +230 911.2125 915.09 1000 50 0.99994206 +231 915.09 918.9675000000001 1000 50 0.9999988 +232 918.9675 922.845 1000 50 0.99993134 +233 922.845 926.7225000000001 1000 50 0.99998176 +234 926.7225 930.6 1000 50 0.9994709 +235 930.6 934.4775000000001 1000 50 1.0 +236 934.4775 938.355 1000 50 0.9999918 +237 938.355 942.2325000000001 1000 50 0.99998677 +238 942.2325 946.11 1000 50 0.9999784 +239 946.11 949.9875000000001 1000 50 1.0 +240 949.9875 953.865 1000 50 0.99814594 +241 953.865 957.7425000000001 1000 50 0.9997799 +242 957.7425 961.62 1000 50 0.99990916 +243 961.62 965.4975000000001 1000 50 0.9999932 +244 965.4975 969.375 1000 50 1.0 +245 969.375 973.2525 1000 50 0.9999994 +246 973.2525 977.1300000000001 1000 50 0.99346524 +247 977.13 981.0075 1000 50 0.9999974 +248 981.0075 984.8850000000001 1000 50 0.99998546 +249 984.885 988.7625 1000 50 1.0 +250 988.7625 992.6400000000001 1000 50 0.820549 +251 992.64 996.5175 1000 50 0.99033093 +252 996.5175 1000.3950000000001 1000 50 0.84132344 +253 1000.395 1004.2725 1000 50 0.99706763 +254 1004.2725 1008.1500000000001 1000 50 0.9399412 +255 1008.15 1012.0275 1000 50 0.9141233 +256 1012.0275 1015.9050000000001 1000 50 0.9958947 +257 1015.905 1019.7825 1000 50 0.9996362 +258 1019.7825 1023.6600000000001 1000 50 0.98953396 +259 1023.66 1027.5375 1000 50 0.98422354 +260 1027.5375 1031.415 1000 50 0.9996729 +261 1031.415 1035.2925 1000 50 0.9991334 +262 1035.2925 1039.17 1000 50 0.99745506 +263 1039.17 1043.0475000000001 1000 50 0.99963427 +264 1043.0475 1046.925 1000 50 0.98644686 +265 1046.925 1050.8025 1000 50 0.9996952 +266 1054.68 1058.5575000000001 1000 50 0.99999964 +267 1058.5575 1062.435 1000 50 1.0 +268 1062.435 1066.3125 1000 50 0.99999976 +269 1066.3125 1070.19 1000 50 0.9999919 +270 1070.19 1074.0675 1000 50 0.9997936 +271 1074.0675 1077.9450000000002 1000 50 0.990511 +272 1077.945 1081.8225 1000 50 0.9999993 +273 1081.8225 1085.7 1000 50 0.99501956 +274 1085.7 1089.5775 1000 50 0.9996618 +275 1089.5775 1093.4550000000002 1000 50 0.9999994 +276 1093.455 1097.3325 1000 50 0.9999839 +277 1097.3325 1101.21 1000 50 0.9999975 +278 1101.21 1105.0875 1000 50 0.99997663 +279 1105.0875 1108.9650000000001 1000 50 0.9483946 +280 1108.965 1112.8425 1000 50 0.9998996 +281 1112.8425 1116.72 1000 50 0.99810493 +282 1116.72 1120.5975 1000 50 0.986133 +283 1120.5975 1124.4750000000001 1000 50 0.9997749 +284 1124.475 1128.3525 1000 50 0.99384695 +285 1128.3525 1132.23 1000 50 0.99997663 +286 1132.23 1136.1075 1000 50 1.0 +287 1136.1075 1139.9850000000001 1000 50 0.99965334 +288 1139.985 1143.8625 1000 50 0.9985701 +289 1143.8625 1147.74 1000 50 0.99725705 +290 1147.74 1151.6175 1000 50 0.99998546 +291 1151.6175 1155.4950000000001 1000 50 0.9999057 +292 1155.495 1159.3725 1000 50 0.99524707 +293 1159.3725 1163.25 1000 50 0.9646873 +294 1163.25 1167.1275 1000 50 0.9984511 +295 1167.1275 1171.005 1000 50 0.9999863 +296 1171.005 1174.8825000000002 1000 50 0.9997358 +297 1174.8825 1178.76 1000 50 0.9905813 +298 1178.76 1182.6375 1000 50 0.9999807 +299 1182.6375 1186.515 1000 50 0.99990284 +300 1186.515 1190.3925000000002 1000 50 0.9776529 +301 1194.27 1198.1475 1000 50 0.9957496 +302 1198.1475 1202.025 1000 50 0.9998222 +303 1202.025 1205.9025000000001 1000 50 0.99501234 +304 1205.9025 1209.78 1000 50 0.83596075 +305 1209.78 1213.6575 1000 50 0.59357345 +306 1213.6575 1217.535 1000 50 0.7654969 +307 1217.535 1221.4125000000001 1000 50 0.52165484 +308 1221.4125 1225.29 1000 50 0.98320425 +309 1225.29 1229.1675 1000 50 0.89005595 +310 1229.1675 1233.045 1000 50 0.7803016 +311 1233.045 1236.9225000000001 1000 50 0.99923885 +312 1236.9225 1240.8 1000 50 0.90799373 +313 1240.8 1244.6775 1000 50 0.9483397 +314 1244.6775 1248.555 1000 50 0.98585355 +315 1248.555 1252.4325000000001 1000 50 0.84509623 +316 1252.4325 1256.31 1000 50 0.9998946 +317 1256.31 1260.1875 1000 50 0.9995179 +318 1260.1875 1264.065 1000 50 0.9999329 +319 1264.065 1267.9425 1000 50 0.9999924 +320 1267.9425 1271.8200000000002 1000 50 0.92363924 +321 1271.82 1275.6975 1000 50 0.9133272 +322 1275.6975 1279.575 1000 50 0.9989279 +323 1279.575 1283.4525 1000 50 0.7761608 +324 1283.4525 1287.3300000000002 1000 50 0.9992866 +325 1287.33 1291.2075 1000 50 0.9957359 +326 1291.2075 1295.085 1000 50 0.9945715 +327 1295.085 1298.9625 1000 50 0.9999758 +328 1298.9625 1302.8400000000001 1000 50 0.94990844 +329 1302.84 1306.7175 1000 50 0.99819845 +330 1306.7175 1310.595 1000 50 0.98708946 +331 1310.595 1314.4725 1000 50 0.98702765 +332 1314.4725 1318.3500000000001 1000 50 0.91570914 +333 1322.2275 1326.105 1000 50 0.99470323 +334 1329.9825 1333.8600000000001 1000 50 0.6812258 +335 1333.86 1337.7375 1000 50 0.86632234 +336 1337.7375 1341.615 1000 50 0.6184432 +337 1341.615 1345.4925 1000 50 0.7416396 +338 1345.4925 1349.3700000000001 1000 50 0.9998926 +339 1353.2475 1357.125 1000 50 0.99179465 +340 1357.125 1361.0025 1000 50 0.99813807 +341 1361.0025 1364.88 1000 50 0.9834947 +342 1364.88 1368.7575000000002 1000 50 0.99997675 +343 1368.7575 1372.635 1000 50 0.98985183 +344 1372.635 1376.5125 1000 50 0.9999633 +345 1376.5125 1380.39 1000 50 0.9999714 +346 1380.39 1384.2675000000002 1000 50 0.996802 +347 1384.2675 1388.145 1000 50 0.9364161 +348 1388.145 1392.0225 1000 50 0.9864987 +349 1395.9 1399.7775000000001 1000 50 0.9998171 +350 1399.7775 1403.655 1000 50 0.57518846 +351 1403.655 1407.5325 1000 50 0.9993581 +352 1407.5325 1411.41 1000 50 0.99135613 +353 1411.41 1415.2875000000001 1000 50 0.99997854 +354 1415.2875 1419.165 1000 50 0.99999845 +355 1419.165 1423.0425 1000 50 0.99492836 +356 1423.0425 1426.92 1000 50 0.99632674 +357 1426.92 1430.7975000000001 1000 50 1.0 +358 1430.7975 1434.675 1000 50 0.9999999 +359 1434.675 1438.5525 1000 50 0.99999857 +360 1438.5525 1442.43 1000 50 0.9999995 +361 1442.43 1446.3075000000001 1000 50 0.99992955 +362 1446.3075 1450.185 1000 50 0.99999607 +363 1450.185 1454.0625 1000 50 1.0 +364 1454.0625 1457.94 1000 50 0.9999914 +365 1457.94 1461.8175 1000 50 0.9999995 +366 1461.8175 1465.6950000000002 1000 50 1.0 +367 1465.695 1469.5725 1000 50 1.0 +368 1469.5725 1473.45 1000 50 0.97752964 +369 1473.45 1477.3275 1000 50 0.6608998 +370 1477.3275 1481.2050000000002 1000 50 0.9999863 +371 1481.205 1485.0825 1000 50 0.99630994 +372 1485.0825 1488.96 1000 50 0.9999994 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_17-01-53_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_17-01-53_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b488f6aae676dd9ac1044f6640bd2e3fcb7ec267 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_17-01-53_annot_2022-11-30_01.txt @@ -0,0 +1,338 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999316 +2 3.8775 7.755 1000 50 0.99997294 +3 7.755 11.6325 1000 50 1.0 +4 11.6325 15.51 1000 50 1.0 +5 15.51 19.3875 1000 50 0.9999113 +6 19.3875 23.265 1000 50 0.9999052 +7 23.265 27.142500000000002 1000 50 0.9999993 +8 27.1425 31.02 1000 50 0.99998677 +9 31.02 34.8975 1000 50 0.9999981 +10 34.8975 38.775 1000 50 0.99998486 +11 38.775 42.652499999999996 1000 50 1.0 +12 42.6525 46.53 1000 50 0.9999573 +13 46.53 50.4075 1000 50 1.0 +14 50.4075 54.285 1000 50 1.0 +15 54.285 58.162499999999994 1000 50 0.99952996 +16 58.1625 62.04 1000 50 1.0 +17 62.04 65.9175 1000 50 0.99999976 +18 65.9175 69.795 1000 50 1.0 +19 69.795 73.6725 1000 50 0.99999964 +20 73.6725 77.55 1000 50 1.0 +21 77.55 81.4275 1000 50 1.0 +22 81.4275 85.30499999999999 1000 50 0.9994832 +23 85.305 89.1825 1000 50 0.99999964 +24 89.1825 93.06 1000 50 0.999908 +25 93.06 96.9375 1000 50 0.98707134 +26 96.9375 100.815 1000 50 0.9458494 +27 100.815 104.6925 1000 50 0.99986064 +28 104.6925 108.57 1000 50 0.99999654 +29 108.57 112.44749999999999 1000 50 0.9089085 +30 112.4475 116.325 1000 50 0.9996184 +31 116.325 120.2025 1000 50 0.9999304 +32 120.2025 124.08 1000 50 0.6879816 +33 124.08 127.9575 1000 50 0.9850906 +34 127.9575 131.835 1000 50 0.9992513 +35 135.7125 139.59 1000 50 0.91507643 +36 139.59 143.4675 1000 50 0.9999298 +37 143.4675 147.345 1000 50 0.9992513 +38 147.345 151.2225 1000 50 0.9996586 +39 151.2225 155.1 1000 50 0.9991339 +40 155.1 158.9775 1000 50 0.9999721 +41 158.9775 162.855 1000 50 0.998917 +42 162.855 166.7325 1000 50 0.9910211 +43 166.7325 170.60999999999999 1000 50 0.99999964 +44 170.61 174.4875 1000 50 0.99628675 +45 174.4875 178.365 1000 50 0.9301009 +46 178.365 182.2425 1000 50 0.99963355 +47 182.2425 186.12 1000 50 0.99940217 +48 186.12 189.9975 1000 50 0.9471464 +49 189.9975 193.875 1000 50 0.9838176 +50 193.875 197.7525 1000 50 0.9968696 +51 197.7525 201.63 1000 50 0.8068745 +52 201.63 205.5075 1000 50 0.99752027 +53 205.5075 209.385 1000 50 0.99088496 +54 209.385 213.2625 1000 50 0.99999475 +55 213.2625 217.14 1000 50 0.9999801 +56 221.0175 224.895 1000 50 0.99999523 +57 224.895 228.7725 1000 50 0.99482095 +58 228.7725 232.65 1000 50 0.9968779 +59 232.65 236.5275 1000 50 0.9999949 +60 240.405 244.2825 1000 50 0.85965174 +61 244.2825 248.16 1000 50 0.99982053 +62 248.16 252.0375 1000 50 0.99999917 +63 252.0375 255.915 1000 50 0.98370034 +64 255.915 259.7925 1000 50 0.8824248 +65 259.7925 263.67 1000 50 0.9987159 +66 263.67 267.5475 1000 50 0.99938524 +67 267.5475 271.425 1000 50 0.9999931 +68 271.425 275.3025 1000 50 0.99988306 +69 275.3025 279.18 1000 50 0.99992 +70 279.18 283.0575 1000 50 0.9962883 +71 283.0575 286.935 1000 50 0.99728703 +72 286.935 290.8125 1000 50 0.56006306 +73 290.8125 294.69 1000 50 0.999954 +74 294.69 298.5675 1000 50 0.98935413 +75 298.5675 302.445 1000 50 0.97612303 +76 302.445 306.3225 1000 50 0.9989279 +77 306.3225 310.2 1000 50 0.99972254 +78 310.2 314.0775 1000 50 0.97183573 +79 314.0775 317.955 1000 50 0.9135288 +80 317.955 321.8325 1000 50 0.9534715 +81 321.8325 325.71 1000 50 0.8084712 +82 325.71 329.5875 1000 50 0.6429864 +83 329.5875 333.465 1000 50 0.9341999 +84 341.22 345.0975 1000 50 0.5268116 +85 356.73 360.6075 1000 50 0.5204591 +86 360.6075 364.485 1000 50 0.9111667 +87 364.485 368.3625 1000 50 0.9182169 +88 368.3625 372.24 1000 50 0.5662123 +89 372.24 376.1175 1000 50 0.6436383 +90 379.995 383.8725 1000 50 0.68280214 +91 383.8725 387.75 1000 50 0.9999714 +92 407.1375 411.015 1000 50 0.6322083 +93 418.77 422.6475 1000 50 0.82611275 +94 426.525 430.4025 1000 50 0.5440614 +95 430.4025 434.28 1000 50 0.86247313 +96 438.1575 442.035 1000 50 0.8442084 +97 442.035 445.9125 1000 50 0.9048487 +98 445.9125 449.79 1000 50 0.999866 +99 449.79 453.6675 1000 50 0.99716115 +100 453.6675 457.545 1000 50 0.58467734 +101 457.545 461.4225 1000 50 0.9990983 +102 461.4225 465.3 1000 50 0.9957392 +103 465.3 469.1775 1000 50 0.9999999 +104 469.1775 473.055 1000 50 0.99901307 +105 473.055 476.9325 1000 50 0.999754 +106 476.9325 480.81 1000 50 0.99999976 +107 480.81 484.6875 1000 50 0.999841 +108 484.6875 488.565 1000 50 0.99982846 +109 488.565 492.4425 1000 50 0.97176415 +110 492.4425 496.32 1000 50 0.99999785 +111 496.32 500.1975 1000 50 0.99984694 +112 500.1975 504.075 1000 50 0.9999988 +113 504.075 507.9525 1000 50 0.7137873 +114 507.9525 511.83 1000 50 0.97923446 +115 511.83 515.7075 1000 50 0.9999684 +116 515.7075 519.585 1000 50 0.9992385 +117 519.585 523.4625000000001 1000 50 0.9999291 +118 523.4625 527.34 1000 50 1.0 +119 527.34 531.2175000000001 1000 50 0.9999994 +120 531.2175 535.095 1000 50 0.9996927 +121 535.095 538.9725000000001 1000 50 0.75926 +122 538.9725 542.85 1000 50 0.99993277 +123 542.85 546.7275000000001 1000 50 0.99999976 +124 546.7275 550.605 1000 50 0.99570245 +125 550.605 554.4825000000001 1000 50 0.99938273 +126 554.4825 558.36 1000 50 0.99999774 +127 558.36 562.2375000000001 1000 50 0.99999356 +128 562.2375 566.115 1000 50 0.9999981 +129 566.115 569.9925000000001 1000 50 0.9997954 +130 569.9925 573.87 1000 50 0.9999925 +131 573.87 577.7475000000001 1000 50 0.9999907 +132 577.7475 581.625 1000 50 0.9999876 +133 581.625 585.5025 1000 50 0.99992096 +134 585.5025 589.3800000000001 1000 50 0.9999988 +135 589.38 593.2575 1000 50 0.99999964 +136 593.2575 597.1350000000001 1000 50 0.99587727 +137 597.135 601.0125 1000 50 0.99993896 +138 601.0125 604.8900000000001 1000 50 0.999995 +139 604.89 608.7675 1000 50 0.9999999 +140 608.7675 612.6450000000001 1000 50 0.9999664 +141 612.645 616.5225 1000 50 0.999997 +142 616.5225 620.4000000000001 1000 50 1.0 +143 620.4 624.2775 1000 50 0.9999987 +144 624.2775 628.1550000000001 1000 50 0.99991477 +145 628.155 632.0325 1000 50 0.9999999 +146 632.0325 635.9100000000001 1000 50 0.99999857 +147 635.91 639.7875 1000 50 0.9999143 +148 639.7875 643.6650000000001 1000 50 0.9990312 +149 643.665 647.5425 1000 50 0.99992335 +150 647.5425 651.4200000000001 1000 50 0.9183152 +151 651.42 655.2975 1000 50 0.999997 +152 655.2975 659.1750000000001 1000 50 0.99797314 +153 659.175 663.0525 1000 50 0.99963033 +154 663.0525 666.9300000000001 1000 50 0.9999999 +155 666.93 670.8075 1000 50 1.0 +156 670.8075 674.6850000000001 1000 50 1.0 +157 674.685 678.5625 1000 50 0.99998856 +158 678.5625 682.44 1000 50 0.9999523 +159 682.44 686.3175000000001 1000 50 1.0 +160 686.3175 690.195 1000 50 0.97692287 +161 690.195 694.0725000000001 1000 50 0.99999964 +162 694.0725 697.95 1000 50 0.9995042 +163 697.95 701.8275000000001 1000 50 0.99006736 +164 701.8275 705.705 1000 50 0.99999464 +165 705.705 709.5825000000001 1000 50 0.99998724 +166 709.5825 713.46 1000 50 0.9999982 +167 713.46 717.3375000000001 1000 50 0.9999999 +168 717.3375 721.215 1000 50 0.99263847 +169 721.215 725.0925000000001 1000 50 1.0 +170 725.0925 728.97 1000 50 0.9569243 +171 728.97 732.8475000000001 1000 50 0.6794 +172 732.8475 736.725 1000 50 0.8926345 +173 736.725 740.6025000000001 1000 50 0.99999833 +174 740.6025 744.48 1000 50 0.9114237 +175 744.48 748.3575000000001 1000 50 0.9999994 +176 752.235 756.1125000000001 1000 50 0.9999993 +177 756.1125 759.99 1000 50 0.99998105 +178 759.99 763.8675000000001 1000 50 0.9987734 +179 763.8675 767.745 1000 50 0.99996126 +180 767.745 771.6225000000001 1000 50 0.99999964 +181 771.6225 775.5 1000 50 0.99999213 +182 775.5 779.3775 1000 50 0.99786156 +183 779.3775 783.2550000000001 1000 50 0.99948335 +184 783.255 787.1325 1000 50 1.0 +185 787.1325 791.0100000000001 1000 50 0.9983016 +186 791.01 794.8875 1000 50 0.986626 +187 794.8875 798.7650000000001 1000 50 0.9766644 +188 798.765 802.6425 1000 50 0.9155743 +189 802.6425 806.5200000000001 1000 50 0.9999963 +190 806.52 810.3975 1000 50 0.999775 +191 810.3975 814.2750000000001 1000 50 0.66203046 +192 814.275 818.1525 1000 50 0.9994716 +193 818.1525 822.0300000000001 1000 50 0.9999981 +194 822.03 825.9075 1000 50 0.999997 +195 825.9075 829.7850000000001 1000 50 0.9587048 +196 829.785 833.6625 1000 50 0.95989317 +197 833.6625 837.5400000000001 1000 50 0.9999727 +198 841.4175 845.2950000000001 1000 50 0.9959336 +199 845.295 849.1725 1000 50 0.9798314 +200 849.1725 853.0500000000001 1000 50 0.99801254 +201 853.05 856.9275 1000 50 0.9999999 +202 856.9275 860.8050000000001 1000 50 0.9994893 +203 860.805 864.6825 1000 50 0.999424 +204 864.6825 868.5600000000001 1000 50 0.9999958 +205 868.56 872.4375 1000 50 0.99112624 +206 872.4375 876.315 1000 50 0.9898755 +207 876.315 880.1925000000001 1000 50 0.9992525 +208 880.1925 884.07 1000 50 0.9993161 +209 884.07 887.9475000000001 1000 50 0.9753249 +210 887.9475 891.825 1000 50 0.9999069 +211 891.825 895.7025000000001 1000 50 0.85047853 +212 895.7025 899.58 1000 50 0.99999845 +213 899.58 903.4575000000001 1000 50 0.9984534 +214 903.4575 907.335 1000 50 0.999998 +215 907.335 911.2125000000001 1000 50 0.9999914 +216 911.2125 915.09 1000 50 0.9997278 +217 915.09 918.9675000000001 1000 50 0.99999154 +218 918.9675 922.845 1000 50 0.9997261 +219 922.845 926.7225000000001 1000 50 0.9999995 +220 926.7225 930.6 1000 50 0.9812732 +221 930.6 934.4775000000001 1000 50 0.99999356 +222 934.4775 938.355 1000 50 1.0 +223 938.355 942.2325000000001 1000 50 0.9985056 +224 942.2325 946.11 1000 50 0.9998481 +225 946.11 949.9875000000001 1000 50 1.0 +226 949.9875 953.865 1000 50 0.99999964 +227 953.865 957.7425000000001 1000 50 0.9999989 +228 957.7425 961.62 1000 50 1.0 +229 961.62 965.4975000000001 1000 50 0.999889 +230 965.4975 969.375 1000 50 1.0 +231 969.375 973.2525 1000 50 1.0 +232 973.2525 977.1300000000001 1000 50 1.0 +233 977.13 981.0075 1000 50 0.99999976 +234 981.0075 984.8850000000001 1000 50 0.99997485 +235 984.885 988.7625 1000 50 1.0 +236 988.7625 992.6400000000001 1000 50 0.9999999 +237 992.64 996.5175 1000 50 0.99999547 +238 996.5175 1000.3950000000001 1000 50 0.99999726 +239 1000.395 1004.2725 1000 50 0.99989486 +240 1004.2725 1008.1500000000001 1000 50 0.9999845 +241 1008.15 1012.0275 1000 50 0.9953844 +242 1012.0275 1015.9050000000001 1000 50 1.0 +243 1015.905 1019.7825 1000 50 0.9999993 +244 1019.7825 1023.6600000000001 1000 50 0.9999999 +245 1023.66 1027.5375 1000 50 0.9998221 +246 1027.5375 1031.415 1000 50 0.9998692 +247 1031.415 1035.2925 1000 50 0.82014966 +248 1035.2925 1039.17 1000 50 0.9994979 +249 1039.17 1043.0475000000001 1000 50 0.998103 +250 1043.0475 1046.925 1000 50 0.57295567 +251 1046.925 1050.8025 1000 50 0.8239284 +252 1050.8025 1054.68 1000 50 0.9909134 +253 1054.68 1058.5575000000001 1000 50 0.9740189 +254 1058.5575 1062.435 1000 50 0.9989986 +255 1062.435 1066.3125 1000 50 0.9955058 +256 1066.3125 1070.19 1000 50 0.99980265 +257 1070.19 1074.0675 1000 50 0.99544877 +258 1074.0675 1077.9450000000002 1000 50 0.8213519 +259 1077.945 1081.8225 1000 50 0.5506332 +260 1081.8225 1085.7 1000 50 0.99998796 +261 1085.7 1089.5775 1000 50 0.9970325 +262 1089.5775 1093.4550000000002 1000 50 0.99993646 +263 1093.455 1097.3325 1000 50 0.9835271 +264 1097.3325 1101.21 1000 50 0.9604614 +265 1101.21 1105.0875 1000 50 0.9997125 +266 1105.0875 1108.9650000000001 1000 50 0.96205217 +267 1108.965 1112.8425 1000 50 0.8885346 +268 1112.8425 1116.72 1000 50 0.9999229 +269 1116.72 1120.5975 1000 50 0.94848305 +270 1120.5975 1124.4750000000001 1000 50 0.9780899 +271 1124.475 1128.3525 1000 50 0.99851185 +272 1128.3525 1132.23 1000 50 0.9948264 +273 1132.23 1136.1075 1000 50 0.53232837 +274 1136.1075 1139.9850000000001 1000 50 0.83124477 +275 1139.985 1143.8625 1000 50 0.75390524 +276 1143.8625 1147.74 1000 50 0.9172276 +277 1147.74 1151.6175 1000 50 0.9925633 +278 1151.6175 1155.4950000000001 1000 50 0.9962269 +279 1155.495 1159.3725 1000 50 0.9999778 +280 1159.3725 1163.25 1000 50 0.9982091 +281 1163.25 1167.1275 1000 50 0.99869233 +282 1167.1275 1171.005 1000 50 0.9197456 +283 1171.005 1174.8825000000002 1000 50 0.99517447 +284 1174.8825 1178.76 1000 50 0.9916142 +285 1178.76 1182.6375 1000 50 0.9999963 +286 1182.6375 1186.515 1000 50 0.9997553 +287 1186.515 1190.3925000000002 1000 50 0.99994147 +288 1190.3925 1194.27 1000 50 0.9929147 +289 1194.27 1198.1475 1000 50 0.9993979 +290 1198.1475 1202.025 1000 50 0.99000484 +291 1202.025 1205.9025000000001 1000 50 0.9995553 +292 1205.9025 1209.78 1000 50 0.9659403 +293 1209.78 1213.6575 1000 50 1.0 +294 1213.6575 1217.535 1000 50 0.9999372 +295 1217.535 1221.4125000000001 1000 50 0.999464 +296 1221.4125 1225.29 1000 50 0.99999905 +297 1225.29 1229.1675 1000 50 0.9998989 +298 1233.045 1236.9225000000001 1000 50 0.9996513 +299 1236.9225 1240.8 1000 50 0.98785156 +300 1240.8 1244.6775 1000 50 0.93732846 +301 1244.6775 1248.555 1000 50 0.84040225 +302 1248.555 1252.4325000000001 1000 50 0.749127 +303 1252.4325 1256.31 1000 50 0.96059155 +304 1256.31 1260.1875 1000 50 0.91128045 +305 1260.1875 1264.065 1000 50 0.9930937 +306 1264.065 1267.9425 1000 50 0.6496871 +307 1271.82 1275.6975 1000 50 0.9939308 +308 1275.6975 1279.575 1000 50 0.998216 +309 1279.575 1283.4525 1000 50 0.99983895 +310 1283.4525 1287.3300000000002 1000 50 0.9996265 +311 1287.33 1291.2075 1000 50 0.9999964 +312 1291.2075 1295.085 1000 50 0.9965479 +313 1295.085 1298.9625 1000 50 0.99990654 +314 1298.9625 1302.8400000000001 1000 50 0.99969447 +315 1302.84 1306.7175 1000 50 0.9994049 +316 1306.7175 1310.595 1000 50 0.9999988 +317 1310.595 1314.4725 1000 50 0.9908936 +318 1314.4725 1318.3500000000001 1000 50 0.9987826 +319 1318.35 1322.2275 1000 50 0.99999905 +320 1322.2275 1326.105 1000 50 0.9968567 +321 1326.105 1329.9825 1000 50 0.99999607 +322 1329.9825 1333.8600000000001 1000 50 0.99993443 +323 1333.86 1337.7375 1000 50 0.9999964 +324 1337.7375 1341.615 1000 50 0.9998677 +325 1341.615 1345.4925 1000 50 0.99999905 +326 1345.4925 1349.3700000000001 1000 50 0.99964464 +327 1349.37 1353.2475 1000 50 0.99600667 +328 1353.2475 1357.125 1000 50 0.9998503 +329 1357.125 1361.0025 1000 50 0.9887482 +330 1361.0025 1364.88 1000 50 0.99999905 +331 1364.88 1368.7575000000002 1000 50 0.9853065 +332 1368.7575 1372.635 1000 50 0.9962786 +333 1372.635 1376.5125 1000 50 0.9999976 +334 1376.5125 1380.39 1000 50 0.99997973 +335 1380.39 1384.2675000000002 1000 50 0.9992667 +336 1384.2675 1388.145 1000 50 0.99999976 +337 1388.145 1392.0225 1000 50 0.7905232 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_18-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_18-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0d47585c93606bdee5a23260ec8770ab4be8e6ff --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_18-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,53 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9961712 +2 3.8775 7.755 1000 50 0.99901414 +3 7.755 11.6325 1000 50 0.99765587 +4 11.6325 15.51 1000 50 0.99836034 +5 15.51 19.3875 1000 50 0.9673806 +6 19.3875 23.265 1000 50 0.94855523 +7 23.265 27.142500000000002 1000 50 0.99760807 +8 27.1425 31.02 1000 50 0.93923014 +9 31.02 34.8975 1000 50 0.99994826 +10 34.8975 38.775 1000 50 0.9287869 +11 38.775 42.652499999999996 1000 50 0.8910687 +12 42.6525 46.53 1000 50 0.9813424 +13 50.4075 54.285 1000 50 0.98713845 +14 54.285 58.162499999999994 1000 50 0.96826684 +15 58.1625 62.04 1000 50 0.9892007 +16 62.04 65.9175 1000 50 0.8280439 +17 65.9175 69.795 1000 50 0.9628216 +18 69.795 73.6725 1000 50 0.999985 +19 73.6725 77.55 1000 50 0.9327463 +20 77.55 81.4275 1000 50 0.84159034 +21 81.4275 85.30499999999999 1000 50 0.99982494 +22 85.305 89.1825 1000 50 0.9649817 +23 89.1825 93.06 1000 50 0.97990865 +24 93.06 96.9375 1000 50 0.9443693 +25 96.9375 100.815 1000 50 0.99995494 +26 100.815 104.6925 1000 50 0.9989973 +27 104.6925 108.57 1000 50 0.9534467 +28 108.57 112.44749999999999 1000 50 0.99959105 +29 112.4475 116.325 1000 50 0.91861594 +30 120.2025 124.08 1000 50 0.9950978 +31 124.08 127.9575 1000 50 0.99735117 +32 127.9575 131.835 1000 50 0.5094617 +33 131.835 135.7125 1000 50 0.97830737 +34 135.7125 139.59 1000 50 0.9979522 +35 139.59 143.4675 1000 50 0.99646324 +36 143.4675 147.345 1000 50 0.99826604 +37 147.345 151.2225 1000 50 0.9999956 +38 155.1 158.9775 1000 50 0.9999995 +39 158.9775 162.855 1000 50 0.9913829 +40 162.855 166.7325 1000 50 0.990368 +41 166.7325 170.60999999999999 1000 50 0.999503 +42 170.61 174.4875 1000 50 0.9993475 +43 174.4875 178.365 1000 50 0.7161765 +44 178.365 182.2425 1000 50 0.99998176 +45 182.2425 186.12 1000 50 0.9771738 +46 186.12 189.9975 1000 50 0.8712088 +47 189.9975 193.875 1000 50 0.9950487 +48 193.875 197.7525 1000 50 0.9744264 +49 197.7525 201.63 1000 50 0.9828142 +50 201.63 205.5075 1000 50 0.9999782 +51 205.5075 209.385 1000 50 0.9810827 +52 209.385 213.2625 1000 50 0.9246695 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_18-07-11_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_18-07-11_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..9315e7415aeba149e1339be4403c482d1fc36895 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_18-07-11_annot_2022-11-30_01.txt @@ -0,0 +1,257 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99999404 +2 7.755 11.6325 1000 50 0.65581805 +3 11.6325 15.51 1000 50 0.96105534 +4 15.51 19.3875 1000 50 0.66972154 +5 19.3875 23.265 1000 50 0.9639714 +6 23.265 27.142500000000002 1000 50 0.9941865 +7 27.1425 31.02 1000 50 0.99914646 +8 31.02 34.8975 1000 50 0.99993956 +9 34.8975 38.775 1000 50 0.99956673 +10 38.775 42.652499999999996 1000 50 0.9981133 +11 42.6525 46.53 1000 50 0.99800116 +12 46.53 50.4075 1000 50 0.99931955 +13 50.4075 54.285 1000 50 0.9999956 +14 54.285 58.162499999999994 1000 50 0.98996747 +15 58.1625 62.04 1000 50 0.99791354 +16 62.04 65.9175 1000 50 0.99993134 +17 65.9175 69.795 1000 50 0.99999106 +18 69.795 73.6725 1000 50 0.99697614 +19 73.6725 77.55 1000 50 0.9999882 +20 77.55 81.4275 1000 50 0.996702 +21 81.4275 85.30499999999999 1000 50 0.9427444 +22 85.305 89.1825 1000 50 0.58543456 +23 93.06 96.9375 1000 50 0.99912566 +24 96.9375 100.815 1000 50 0.6087046 +25 100.815 104.6925 1000 50 0.97591156 +26 104.6925 108.57 1000 50 0.51672536 +27 108.57 112.44749999999999 1000 50 0.9997619 +28 112.4475 116.325 1000 50 0.9965125 +29 116.325 120.2025 1000 50 0.9216546 +30 120.2025 124.08 1000 50 0.6373731 +31 127.9575 131.835 1000 50 0.9175868 +32 131.835 135.7125 1000 50 0.99995077 +33 143.4675 147.345 1000 50 0.9918417 +34 147.345 151.2225 1000 50 0.97215605 +35 151.2225 155.1 1000 50 0.9989484 +36 155.1 158.9775 1000 50 0.9999844 +37 158.9775 162.855 1000 50 0.97123253 +38 162.855 166.7325 1000 50 0.9990231 +39 166.7325 170.60999999999999 1000 50 0.879136 +40 170.61 174.4875 1000 50 0.9987914 +41 174.4875 178.365 1000 50 0.99986327 +42 178.365 182.2425 1000 50 0.7956784 +43 182.2425 186.12 1000 50 0.99982977 +44 186.12 189.9975 1000 50 0.99738103 +45 189.9975 193.875 1000 50 0.99708956 +46 193.875 197.7525 1000 50 0.99471974 +47 197.7525 201.63 1000 50 0.94291306 +48 201.63 205.5075 1000 50 0.9891328 +49 205.5075 209.385 1000 50 0.99909663 +50 213.2625 217.14 1000 50 0.99951625 +51 217.14 221.01749999999998 1000 50 0.9998826 +52 221.0175 224.895 1000 50 0.8964709 +53 224.895 228.7725 1000 50 0.7795813 +54 228.7725 232.65 1000 50 0.9999176 +55 232.65 236.5275 1000 50 0.90948147 +56 236.5275 240.405 1000 50 0.99157315 +57 240.405 244.2825 1000 50 0.8599775 +58 244.2825 248.16 1000 50 0.8464113 +59 248.16 252.0375 1000 50 0.71348566 +60 252.0375 255.915 1000 50 0.9656879 +61 255.915 259.7925 1000 50 0.9999958 +62 259.7925 263.67 1000 50 0.9919343 +63 263.67 267.5475 1000 50 0.99991524 +64 267.5475 271.425 1000 50 0.82048965 +65 271.425 275.3025 1000 50 0.9988526 +66 275.3025 279.18 1000 50 0.99996006 +67 283.0575 286.935 1000 50 0.98498964 +68 286.935 290.8125 1000 50 0.99726665 +69 290.8125 294.69 1000 50 0.9881281 +70 294.69 298.5675 1000 50 0.9863238 +71 298.5675 302.445 1000 50 0.9999726 +72 302.445 306.3225 1000 50 0.9999745 +73 306.3225 310.2 1000 50 0.99917126 +74 310.2 314.0775 1000 50 0.99570054 +75 314.0775 317.955 1000 50 0.99381834 +76 317.955 321.8325 1000 50 0.94493663 +77 321.8325 325.71 1000 50 0.99949026 +78 325.71 329.5875 1000 50 0.99496716 +79 329.5875 333.465 1000 50 0.9999299 +80 333.465 337.3425 1000 50 0.99979144 +81 337.3425 341.21999999999997 1000 50 0.996402 +82 341.22 345.0975 1000 50 0.83264714 +83 345.0975 348.975 1000 50 0.99867564 +84 348.975 352.8525 1000 50 0.9824216 +85 352.8525 356.73 1000 50 0.9985649 +86 356.73 360.6075 1000 50 0.99954224 +87 360.6075 364.485 1000 50 0.86290425 +88 364.485 368.3625 1000 50 0.9980622 +89 368.3625 372.24 1000 50 0.9991142 +90 372.24 376.1175 1000 50 0.997412 +91 379.995 383.8725 1000 50 0.946561 +92 383.8725 387.75 1000 50 0.9996804 +93 387.75 391.6275 1000 50 0.92295784 +94 391.6275 395.505 1000 50 0.9999721 +95 395.505 399.3825 1000 50 0.99926776 +96 399.3825 403.26 1000 50 0.9982206 +97 403.26 407.1375 1000 50 0.72254837 +98 407.1375 411.015 1000 50 0.9708703 +99 411.015 414.8925 1000 50 0.995199 +100 414.8925 418.77 1000 50 0.9866008 +101 418.77 422.6475 1000 50 0.9999914 +102 422.6475 426.525 1000 50 0.999288 +103 426.525 430.4025 1000 50 0.99508744 +104 430.4025 434.28 1000 50 0.99976295 +105 434.28 438.15749999999997 1000 50 0.99999976 +106 438.1575 442.035 1000 50 0.6392292 +107 442.035 445.9125 1000 50 0.99999714 +108 445.9125 449.79 1000 50 0.99960524 +109 449.79 453.6675 1000 50 0.99837697 +110 453.6675 457.545 1000 50 0.8540073 +111 457.545 461.4225 1000 50 0.99818283 +112 461.4225 465.3 1000 50 0.99824464 +113 465.3 469.1775 1000 50 0.9995322 +114 469.1775 473.055 1000 50 0.9624259 +115 473.055 476.9325 1000 50 0.9714868 +116 476.9325 480.81 1000 50 0.9999999 +117 480.81 484.6875 1000 50 0.99904686 +118 484.6875 488.565 1000 50 0.99954385 +119 488.565 492.4425 1000 50 0.99999475 +120 492.4425 496.32 1000 50 0.99959546 +121 496.32 500.1975 1000 50 0.99914 +122 500.1975 504.075 1000 50 1.0 +123 504.075 507.9525 1000 50 0.6411552 +124 507.9525 511.83 1000 50 1.0 +125 511.83 515.7075 1000 50 0.9999895 +126 515.7075 519.585 1000 50 1.0 +127 519.585 523.4625000000001 1000 50 0.99999774 +128 523.4625 527.34 1000 50 0.99891007 +129 527.34 531.2175000000001 1000 50 0.99997807 +130 531.2175 535.095 1000 50 0.99973875 +131 535.095 538.9725000000001 1000 50 0.89612556 +132 538.9725 542.85 1000 50 1.0 +133 542.85 546.7275000000001 1000 50 0.99822074 +134 546.7275 550.605 1000 50 0.9978188 +135 550.605 554.4825000000001 1000 50 1.0 +136 554.4825 558.36 1000 50 0.9918534 +137 558.36 562.2375000000001 1000 50 0.99971837 +138 562.2375 566.115 1000 50 0.9993338 +139 566.115 569.9925000000001 1000 50 0.9806065 +140 569.9925 573.87 1000 50 0.99659914 +141 573.87 577.7475000000001 1000 50 0.99947315 +142 577.7475 581.625 1000 50 0.79730606 +143 585.5025 589.3800000000001 1000 50 0.9997458 +144 589.38 593.2575 1000 50 0.9255353 +145 593.2575 597.1350000000001 1000 50 0.9892936 +146 597.135 601.0125 1000 50 0.6634004 +147 601.0125 604.8900000000001 1000 50 0.9673459 +148 604.89 608.7675 1000 50 0.54242474 +149 608.7675 612.6450000000001 1000 50 0.94311905 +150 612.645 616.5225 1000 50 0.9999726 +151 616.5225 620.4000000000001 1000 50 0.52909267 +152 620.4 624.2775 1000 50 0.8964001 +153 624.2775 628.1550000000001 1000 50 0.9978941 +154 628.155 632.0325 1000 50 0.9925021 +155 632.0325 635.9100000000001 1000 50 0.56519264 +156 635.91 639.7875 1000 50 0.99680173 +157 643.665 647.5425 1000 50 0.9922266 +158 647.5425 651.4200000000001 1000 50 0.8248402 +159 655.2975 659.1750000000001 1000 50 0.7635652 +160 659.175 663.0525 1000 50 0.99833196 +161 663.0525 666.9300000000001 1000 50 0.985458 +162 670.8075 674.6850000000001 1000 50 0.99982953 +163 674.685 678.5625 1000 50 0.83934754 +164 682.44 686.3175000000001 1000 50 0.97599864 +165 686.3175 690.195 1000 50 0.9999927 +166 690.195 694.0725000000001 1000 50 0.99837226 +167 694.0725 697.95 1000 50 0.9998388 +168 697.95 701.8275000000001 1000 50 0.9999994 +169 701.8275 705.705 1000 50 0.9823508 +170 705.705 709.5825000000001 1000 50 0.98332304 +171 709.5825 713.46 1000 50 0.9999975 +172 713.46 717.3375000000001 1000 50 0.9996357 +173 717.3375 721.215 1000 50 0.99866927 +174 725.0925 728.97 1000 50 0.99674326 +175 728.97 732.8475000000001 1000 50 0.9999999 +176 732.8475 736.725 1000 50 0.8212017 +177 736.725 740.6025000000001 1000 50 0.8032723 +178 740.6025 744.48 1000 50 0.99905807 +179 744.48 748.3575000000001 1000 50 0.9767885 +180 748.3575 752.235 1000 50 0.9300443 +181 752.235 756.1125000000001 1000 50 0.999448 +182 756.1125 759.99 1000 50 0.99883455 +183 767.745 771.6225000000001 1000 50 0.9999423 +184 771.6225 775.5 1000 50 0.71789527 +185 775.5 779.3775 1000 50 0.6285104 +186 779.3775 783.2550000000001 1000 50 0.83958864 +187 783.255 787.1325 1000 50 0.9628806 +188 787.1325 791.0100000000001 1000 50 0.91961265 +189 791.01 794.8875 1000 50 0.9997663 +190 794.8875 798.7650000000001 1000 50 0.9069564 +191 798.765 802.6425 1000 50 0.94897115 +192 802.6425 806.5200000000001 1000 50 0.9807128 +193 810.3975 814.2750000000001 1000 50 0.7172633 +194 814.275 818.1525 1000 50 0.99561864 +195 818.1525 822.0300000000001 1000 50 0.92514694 +196 825.9075 829.7850000000001 1000 50 0.9547738 +197 829.785 833.6625 1000 50 0.72899425 +198 833.6625 837.5400000000001 1000 50 0.98227006 +199 837.54 841.4175 1000 50 0.8878636 +200 841.4175 845.2950000000001 1000 50 0.99962604 +201 845.295 849.1725 1000 50 0.9969606 +202 849.1725 853.0500000000001 1000 50 0.94263744 +203 856.9275 860.8050000000001 1000 50 0.999987 +204 860.805 864.6825 1000 50 0.98257035 +205 864.6825 868.5600000000001 1000 50 0.9996929 +206 868.56 872.4375 1000 50 0.99611264 +207 872.4375 876.315 1000 50 0.9658262 +208 876.315 880.1925000000001 1000 50 0.9988636 +209 880.1925 884.07 1000 50 0.9967933 +210 884.07 887.9475000000001 1000 50 0.9247838 +211 887.9475 891.825 1000 50 0.805343 +212 891.825 895.7025000000001 1000 50 0.98955846 +213 895.7025 899.58 1000 50 0.81766313 +214 899.58 903.4575000000001 1000 50 0.99044234 +215 903.4575 907.335 1000 50 0.9975261 +216 911.2125 915.09 1000 50 0.99969375 +217 915.09 918.9675000000001 1000 50 0.91358036 +218 918.9675 922.845 1000 50 0.98933333 +219 922.845 926.7225000000001 1000 50 0.56261677 +220 930.6 934.4775000000001 1000 50 0.7148177 +221 934.4775 938.355 1000 50 0.9656832 +222 938.355 942.2325000000001 1000 50 0.9983241 +223 942.2325 946.11 1000 50 0.998713 +224 946.11 949.9875000000001 1000 50 0.9998708 +225 949.9875 953.865 1000 50 0.93509156 +226 953.865 957.7425000000001 1000 50 0.60262233 +227 957.7425 961.62 1000 50 0.9956988 +228 961.62 965.4975000000001 1000 50 0.9887931 +229 965.4975 969.375 1000 50 0.9863579 +230 969.375 973.2525 1000 50 0.99978596 +231 973.2525 977.1300000000001 1000 50 0.9996524 +232 977.13 981.0075 1000 50 0.99978596 +233 981.0075 984.8850000000001 1000 50 0.9980287 +234 984.885 988.7625 1000 50 0.99858284 +235 988.7625 992.6400000000001 1000 50 0.9967217 +236 992.64 996.5175 1000 50 0.9996828 +237 996.5175 1000.3950000000001 1000 50 0.9989969 +238 1000.395 1004.2725 1000 50 0.77335477 +239 1004.2725 1008.1500000000001 1000 50 0.99977297 +240 1008.15 1012.0275 1000 50 0.99999964 +241 1012.0275 1015.9050000000001 1000 50 0.94579494 +242 1015.905 1019.7825 1000 50 0.999977 +243 1019.7825 1023.6600000000001 1000 50 0.9999753 +244 1023.66 1027.5375 1000 50 0.9937192 +245 1027.5375 1031.415 1000 50 0.99933904 +246 1031.415 1035.2925 1000 50 0.9919403 +247 1035.2925 1039.17 1000 50 0.98022276 +248 1039.17 1043.0475000000001 1000 50 0.99600536 +249 1043.0475 1046.925 1000 50 0.99965966 +250 1046.925 1050.8025 1000 50 0.93755704 +251 1050.8025 1054.68 1000 50 0.99995685 +252 1054.68 1058.5575000000001 1000 50 0.9996327 +253 1058.5575 1062.435 1000 50 0.9899624 +254 1062.435 1066.3125 1000 50 0.9998109 +255 1066.3125 1070.19 1000 50 0.9693438 +256 1070.19 1074.0675 1000 50 0.99893993 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_19-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_19-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..2c22ff6b024b01132aa822dc3a9a2ef63e914967 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_19-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,135 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9974216 +2 7.755 11.6325 1000 50 0.99999213 +3 11.6325 15.51 1000 50 0.99997723 +4 15.51 19.3875 1000 50 0.99956244 +5 19.3875 23.265 1000 50 0.9999995 +6 23.265 27.142500000000002 1000 50 0.9999976 +7 27.1425 31.02 1000 50 0.99852115 +8 31.02 34.8975 1000 50 0.99976844 +9 34.8975 38.775 1000 50 0.99993634 +10 38.775 42.652499999999996 1000 50 0.9980246 +11 42.6525 46.53 1000 50 0.99999964 +12 46.53 50.4075 1000 50 0.9999844 +13 50.4075 54.285 1000 50 0.97736335 +14 54.285 58.162499999999994 1000 50 1.0 +15 58.1625 62.04 1000 50 0.99997735 +16 62.04 65.9175 1000 50 0.9997615 +17 65.9175 69.795 1000 50 1.0 +18 69.795 73.6725 1000 50 0.9935255 +19 73.6725 77.55 1000 50 0.99999833 +20 77.55 81.4275 1000 50 1.0 +21 81.4275 85.30499999999999 1000 50 0.9995763 +22 85.305 89.1825 1000 50 0.999673 +23 89.1825 93.06 1000 50 0.9973834 +24 93.06 96.9375 1000 50 0.99465334 +25 96.9375 100.815 1000 50 0.9999844 +26 100.815 104.6925 1000 50 0.999998 +27 104.6925 108.57 1000 50 0.99327624 +28 108.57 112.44749999999999 1000 50 0.9997409 +29 112.4475 116.325 1000 50 0.999998 +30 116.325 120.2025 1000 50 0.9999523 +31 120.2025 124.08 1000 50 0.9999999 +32 124.08 127.9575 1000 50 0.99789834 +33 127.9575 131.835 1000 50 0.99998367 +34 131.835 135.7125 1000 50 0.9999969 +35 135.7125 139.59 1000 50 0.9969848 +36 139.59 143.4675 1000 50 0.9999988 +37 143.4675 147.345 1000 50 0.9999862 +38 147.345 151.2225 1000 50 1.0 +39 151.2225 155.1 1000 50 0.99999917 +40 155.1 158.9775 1000 50 0.9999453 +41 158.9775 162.855 1000 50 0.9175419 +42 162.855 166.7325 1000 50 0.9999925 +43 166.7325 170.60999999999999 1000 50 0.99994767 +44 170.61 174.4875 1000 50 0.99991167 +45 174.4875 178.365 1000 50 0.99990094 +46 178.365 182.2425 1000 50 0.94976526 +47 182.2425 186.12 1000 50 0.9999131 +48 186.12 189.9975 1000 50 1.0 +49 189.9975 193.875 1000 50 0.9999356 +50 193.875 197.7525 1000 50 0.99897885 +51 197.7525 201.63 1000 50 0.97641265 +52 201.63 205.5075 1000 50 1.0 +53 205.5075 209.385 1000 50 0.9999838 +54 209.385 213.2625 1000 50 0.99955696 +55 213.2625 217.14 1000 50 0.9999938 +56 217.14 221.01749999999998 1000 50 0.9962451 +57 221.0175 224.895 1000 50 0.9997212 +58 224.895 228.7725 1000 50 0.9999906 +59 228.7725 232.65 1000 50 0.9997272 +60 232.65 236.5275 1000 50 0.9997135 +61 236.5275 240.405 1000 50 0.99998057 +62 240.405 244.2825 1000 50 0.9351169 +63 244.2825 248.16 1000 50 0.9999993 +64 248.16 252.0375 1000 50 0.99999917 +65 252.0375 255.915 1000 50 0.9999999 +66 255.915 259.7925 1000 50 1.0 +67 259.7925 263.67 1000 50 0.99999785 +68 263.67 267.5475 1000 50 0.9999993 +69 267.5475 271.425 1000 50 0.9999933 +70 271.425 275.3025 1000 50 0.9740432 +71 275.3025 279.18 1000 50 0.9999144 +72 279.18 283.0575 1000 50 0.99973184 +73 283.0575 286.935 1000 50 0.96988934 +74 286.935 290.8125 1000 50 0.99999475 +75 290.8125 294.69 1000 50 0.99029785 +76 294.69 298.5675 1000 50 0.99997723 +77 298.5675 302.445 1000 50 0.9995945 +78 302.445 306.3225 1000 50 0.9999893 +79 306.3225 310.2 1000 50 0.99993086 +80 310.2 314.0775 1000 50 0.80946994 +81 314.0775 317.955 1000 50 0.9999999 +82 317.955 321.8325 1000 50 0.9446938 +83 321.8325 325.71 1000 50 0.9995726 +84 325.71 329.5875 1000 50 0.99995303 +85 329.5875 333.465 1000 50 0.59024805 +86 333.465 337.3425 1000 50 0.9999926 +87 337.3425 341.21999999999997 1000 50 0.98698914 +88 341.22 345.0975 1000 50 0.9994097 +89 345.0975 348.975 1000 50 0.99991214 +90 348.975 352.8525 1000 50 0.99875414 +91 352.8525 356.73 1000 50 0.9995179 +92 356.73 360.6075 1000 50 0.99921703 +93 360.6075 364.485 1000 50 0.9449804 +94 364.485 368.3625 1000 50 0.9772366 +95 368.3625 372.24 1000 50 0.9999974 +96 372.24 376.1175 1000 50 0.9999893 +97 376.1175 379.995 1000 50 0.9999751 +98 379.995 383.8725 1000 50 0.9991961 +99 383.8725 387.75 1000 50 0.9995579 +100 387.75 391.6275 1000 50 0.99974793 +101 391.6275 395.505 1000 50 0.98013145 +102 395.505 399.3825 1000 50 0.63953424 +103 399.3825 403.26 1000 50 0.9998945 +104 403.26 407.1375 1000 50 0.99978036 +105 407.1375 411.015 1000 50 0.9999573 +106 411.015 414.8925 1000 50 0.99969935 +107 414.8925 418.77 1000 50 0.96290535 +108 418.77 422.6475 1000 50 0.99945825 +109 422.6475 426.525 1000 50 0.99896276 +110 426.525 430.4025 1000 50 0.8863281 +111 430.4025 434.28 1000 50 0.9614834 +112 434.28 438.15749999999997 1000 50 0.9344963 +113 438.1575 442.035 1000 50 0.91474485 +114 442.035 445.9125 1000 50 0.9993973 +115 449.79 453.6675 1000 50 0.98602945 +116 453.6675 457.545 1000 50 0.87229383 +117 457.545 461.4225 1000 50 0.872362 +118 461.4225 465.3 1000 50 0.9992932 +119 465.3 469.1775 1000 50 0.88337606 +120 469.1775 473.055 1000 50 0.9999815 +121 473.055 476.9325 1000 50 0.8915121 +122 476.9325 480.81 1000 50 0.6606873 +123 480.81 484.6875 1000 50 0.7924224 +124 484.6875 488.565 1000 50 0.99936134 +125 492.4425 496.32 1000 50 0.68803185 +126 496.32 500.1975 1000 50 0.9637885 +127 500.1975 504.075 1000 50 0.9920982 +128 507.9525 511.83 1000 50 0.9057654 +129 511.83 515.7075 1000 50 0.9999813 +130 515.7075 519.585 1000 50 0.9941561 +131 519.585 523.4625000000001 1000 50 0.92242473 +132 523.4625 527.34 1000 50 0.99821836 +133 527.34 531.2175000000001 1000 50 0.99220747 +134 531.2175 535.095 1000 50 0.6985025 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_19-12-30_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_19-12-30_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f753fe79e76cffa61b2a4ba237d6c3239be40ae0 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_19-12-30_annot_2022-11-30_01.txt @@ -0,0 +1,172 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99999976 +2 3.8775 7.755 1000 50 0.9999999 +3 7.755 11.6325 1000 50 0.9957777 +4 11.6325 15.51 1000 50 0.99999976 +5 15.51 19.3875 1000 50 0.9999993 +6 19.3875 23.265 1000 50 0.62476903 +7 23.265 27.142500000000002 1000 50 0.99999976 +8 27.1425 31.02 1000 50 0.9958578 +9 31.02 34.8975 1000 50 0.9504906 +10 34.8975 38.775 1000 50 1.0 +11 38.775 42.652499999999996 1000 50 0.9999503 +12 42.6525 46.53 1000 50 0.82234573 +13 46.53 50.4075 1000 50 0.9999976 +14 50.4075 54.285 1000 50 0.9999465 +15 54.285 58.162499999999994 1000 50 0.9993461 +16 58.1625 62.04 1000 50 1.0 +17 62.04 65.9175 1000 50 0.95847327 +18 65.9175 69.795 1000 50 0.9999988 +19 69.795 73.6725 1000 50 0.9977563 +20 73.6725 77.55 1000 50 0.9963742 +21 77.55 81.4275 1000 50 0.9974789 +22 81.4275 85.30499999999999 1000 50 0.9999863 +23 85.305 89.1825 1000 50 0.99973315 +24 89.1825 93.06 1000 50 0.9900406 +25 93.06 96.9375 1000 50 0.9215682 +26 96.9375 100.815 1000 50 0.63169235 +27 104.6925 108.57 1000 50 0.9746064 +28 108.57 112.44749999999999 1000 50 0.75103945 +29 112.4475 116.325 1000 50 0.9775529 +30 116.325 120.2025 1000 50 0.8118139 +31 120.2025 124.08 1000 50 0.9922845 +32 124.08 127.9575 1000 50 0.99591994 +33 127.9575 131.835 1000 50 0.9737115 +34 131.835 135.7125 1000 50 0.8524898 +35 135.7125 139.59 1000 50 0.9805282 +36 143.4675 147.345 1000 50 0.99991155 +37 147.345 151.2225 1000 50 0.83513844 +38 151.2225 155.1 1000 50 0.97235066 +39 158.9775 162.855 1000 50 0.66872746 +40 162.855 166.7325 1000 50 0.9076971 +41 170.61 174.4875 1000 50 0.6085377 +42 174.4875 178.365 1000 50 0.8825375 +43 178.365 182.2425 1000 50 0.99991274 +44 182.2425 186.12 1000 50 0.9662319 +45 186.12 189.9975 1000 50 0.99999034 +46 189.9975 193.875 1000 50 0.99998665 +47 193.875 197.7525 1000 50 0.9937484 +48 197.7525 201.63 1000 50 0.99980205 +49 201.63 205.5075 1000 50 0.99947625 +50 205.5075 209.385 1000 50 0.99674654 +51 209.385 213.2625 1000 50 0.9992482 +52 213.2625 217.14 1000 50 0.9918108 +53 217.14 221.01749999999998 1000 50 0.9618322 +54 221.0175 224.895 1000 50 0.9935241 +55 224.895 228.7725 1000 50 0.91026133 +56 228.7725 232.65 1000 50 0.9992091 +57 232.65 236.5275 1000 50 0.98421323 +58 236.5275 240.405 1000 50 0.9989537 +59 240.405 244.2825 1000 50 0.7793704 +60 244.2825 248.16 1000 50 0.9998473 +61 248.16 252.0375 1000 50 0.9999831 +62 252.0375 255.915 1000 50 0.9997013 +63 255.915 259.7925 1000 50 0.99998903 +64 259.7925 263.67 1000 50 0.99992645 +65 263.67 267.5475 1000 50 0.9999975 +66 267.5475 271.425 1000 50 0.8600088 +67 271.425 275.3025 1000 50 0.9952701 +68 275.3025 279.18 1000 50 0.9587776 +69 279.18 283.0575 1000 50 0.99833906 +70 283.0575 286.935 1000 50 0.9999883 +71 286.935 290.8125 1000 50 0.8713894 +72 290.8125 294.69 1000 50 0.62662745 +73 294.69 298.5675 1000 50 0.9998604 +74 298.5675 302.445 1000 50 0.998847 +75 302.445 306.3225 1000 50 0.9981232 +76 310.2 314.0775 1000 50 0.998187 +77 314.0775 317.955 1000 50 0.8229402 +78 317.955 321.8325 1000 50 0.99999976 +79 321.8325 325.71 1000 50 0.99995744 +80 325.71 329.5875 1000 50 0.9999418 +81 329.5875 333.465 1000 50 0.9983346 +82 333.465 337.3425 1000 50 0.99446434 +83 337.3425 341.21999999999997 1000 50 0.80197906 +84 341.22 345.0975 1000 50 0.9999708 +85 345.0975 348.975 1000 50 0.99999833 +86 348.975 352.8525 1000 50 0.9996747 +87 352.8525 356.73 1000 50 0.9999875 +88 356.73 360.6075 1000 50 0.9999031 +89 360.6075 364.485 1000 50 0.9911116 +90 364.485 368.3625 1000 50 0.9993832 +91 368.3625 372.24 1000 50 0.99971944 +92 372.24 376.1175 1000 50 0.9615586 +93 376.1175 379.995 1000 50 0.94830185 +94 379.995 383.8725 1000 50 0.9999838 +95 387.75 391.6275 1000 50 0.9999963 +96 395.505 399.3825 1000 50 0.99989223 +97 399.3825 403.26 1000 50 0.99456364 +98 403.26 407.1375 1000 50 0.9999751 +99 407.1375 411.015 1000 50 0.99998033 +100 411.015 414.8925 1000 50 0.7698132 +101 414.8925 418.77 1000 50 0.6022746 +102 418.77 422.6475 1000 50 0.99157435 +103 422.6475 426.525 1000 50 0.9995509 +104 430.4025 434.28 1000 50 0.99795926 +105 434.28 438.15749999999997 1000 50 0.9987231 +106 438.1575 442.035 1000 50 0.9999826 +107 442.035 445.9125 1000 50 0.9898233 +108 453.6675 457.545 1000 50 0.97161174 +109 457.545 461.4225 1000 50 0.99999714 +110 461.4225 465.3 1000 50 0.995203 +111 465.3 469.1775 1000 50 0.9886735 +112 469.1775 473.055 1000 50 0.98669237 +113 473.055 476.9325 1000 50 0.9999889 +114 480.81 484.6875 1000 50 0.9998419 +115 484.6875 488.565 1000 50 0.99172336 +116 488.565 492.4425 1000 50 0.9607653 +117 496.32 500.1975 1000 50 0.99651116 +118 500.1975 504.075 1000 50 0.9974807 +119 504.075 507.9525 1000 50 0.9995085 +120 507.9525 511.83 1000 50 0.999944 +121 511.83 515.7075 1000 50 0.99216205 +122 519.585 523.4625000000001 1000 50 0.98995996 +123 523.4625 527.34 1000 50 0.5785221 +124 527.34 531.2175000000001 1000 50 0.7754484 +125 531.2175 535.095 1000 50 0.98838705 +126 535.095 538.9725000000001 1000 50 0.9696442 +127 538.9725 542.85 1000 50 0.98086596 +128 542.85 546.7275000000001 1000 50 0.9454636 +129 546.7275 550.605 1000 50 0.99996495 +130 550.605 554.4825000000001 1000 50 0.9854409 +131 558.36 562.2375000000001 1000 50 0.9999969 +132 562.2375 566.115 1000 50 0.9999672 +133 566.115 569.9925000000001 1000 50 0.9999939 +134 569.9925 573.87 1000 50 0.9985469 +135 573.87 577.7475000000001 1000 50 0.7283656 +136 577.7475 581.625 1000 50 0.99615794 +137 585.5025 589.3800000000001 1000 50 0.99940133 +138 593.2575 597.1350000000001 1000 50 0.99987924 +139 604.89 608.7675 1000 50 0.88719594 +140 608.7675 612.6450000000001 1000 50 0.5907171 +141 620.4 624.2775 1000 50 0.9429993 +142 624.2775 628.1550000000001 1000 50 0.7205774 +143 632.0325 635.9100000000001 1000 50 0.6399933 +144 639.7875 643.6650000000001 1000 50 0.9188427 +145 643.665 647.5425 1000 50 0.89516824 +146 647.5425 651.4200000000001 1000 50 0.72609735 +147 651.42 655.2975 1000 50 0.9999138 +148 655.2975 659.1750000000001 1000 50 0.9999962 +149 659.175 663.0525 1000 50 0.9952211 +150 663.0525 666.9300000000001 1000 50 0.9939506 +151 666.93 670.8075 1000 50 0.9996679 +152 670.8075 674.6850000000001 1000 50 0.9869847 +153 674.685 678.5625 1000 50 0.9999714 +154 678.5625 682.44 1000 50 0.9992931 +155 682.44 686.3175000000001 1000 50 0.9933522 +156 686.3175 690.195 1000 50 0.9999969 +157 690.195 694.0725000000001 1000 50 0.99960405 +158 697.95 701.8275000000001 1000 50 1.0 +159 701.8275 705.705 1000 50 0.99997187 +160 705.705 709.5825000000001 1000 50 0.983705 +161 709.5825 713.46 1000 50 0.99996185 +162 713.46 717.3375000000001 1000 50 0.9990175 +163 717.3375 721.215 1000 50 0.99978966 +164 721.215 725.0925000000001 1000 50 0.9972813 +165 725.0925 728.97 1000 50 0.9999919 +166 728.97 732.8475000000001 1000 50 0.90736496 +167 732.8475 736.725 1000 50 0.9994936 +168 736.725 740.6025000000001 1000 50 0.9614615 +169 740.6025 744.48 1000 50 0.98959714 +170 748.3575 752.235 1000 50 0.99665844 +171 752.235 756.1125000000001 1000 50 0.9996561 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_20-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_20-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a58cf979750eaa05507361d8c5e8dac080b50432 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_20-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,185 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.91010785 +2 7.755 11.6325 1000 50 0.5290906 +3 11.6325 15.51 1000 50 0.9999901 +4 15.51 19.3875 1000 50 0.9991197 +5 19.3875 23.265 1000 50 0.98230976 +6 23.265 27.142500000000002 1000 50 0.6970716 +7 27.1425 31.02 1000 50 0.85091203 +8 31.02 34.8975 1000 50 0.984718 +9 38.775 42.652499999999996 1000 50 0.9999567 +10 42.6525 46.53 1000 50 0.9547915 +11 46.53 50.4075 1000 50 0.97834617 +12 50.4075 54.285 1000 50 0.9992601 +13 54.285 58.162499999999994 1000 50 0.736887 +14 58.1625 62.04 1000 50 0.99989605 +15 62.04 65.9175 1000 50 0.9995023 +16 69.795 73.6725 1000 50 0.9830245 +17 73.6725 77.55 1000 50 0.9946079 +18 77.55 81.4275 1000 50 0.9215491 +19 81.4275 85.30499999999999 1000 50 0.5515715 +20 85.305 89.1825 1000 50 0.99245054 +21 93.06 96.9375 1000 50 0.97608554 +22 96.9375 100.815 1000 50 0.96216816 +23 100.815 104.6925 1000 50 0.859835 +24 108.57 112.44749999999999 1000 50 0.7713026 +25 112.4475 116.325 1000 50 0.9925453 +26 116.325 120.2025 1000 50 0.90981853 +27 120.2025 124.08 1000 50 0.99996746 +28 124.08 127.9575 1000 50 0.903745 +29 131.835 135.7125 1000 50 0.99999225 +30 135.7125 139.59 1000 50 0.99648213 +31 143.4675 147.345 1000 50 0.9898003 +32 147.345 151.2225 1000 50 0.9298577 +33 155.1 158.9775 1000 50 0.5536746 +34 162.855 166.7325 1000 50 0.64977944 +35 166.7325 170.60999999999999 1000 50 0.9451878 +36 170.61 174.4875 1000 50 0.71599454 +37 174.4875 178.365 1000 50 0.99110097 +38 182.2425 186.12 1000 50 0.9828933 +39 186.12 189.9975 1000 50 0.817741 +40 193.875 197.7525 1000 50 0.7509365 +41 197.7525 201.63 1000 50 0.9975713 +42 201.63 205.5075 1000 50 0.9991885 +43 209.385 213.2625 1000 50 0.9741125 +44 213.2625 217.14 1000 50 0.9913796 +45 221.0175 224.895 1000 50 0.87335676 +46 224.895 228.7725 1000 50 0.998733 +47 232.65 236.5275 1000 50 0.7825117 +48 240.405 244.2825 1000 50 0.96932876 +49 244.2825 248.16 1000 50 0.98529506 +50 252.0375 255.915 1000 50 0.9994997 +51 255.915 259.7925 1000 50 0.9676898 +52 263.67 267.5475 1000 50 0.9999995 +53 271.425 275.3025 1000 50 0.9738105 +54 275.3025 279.18 1000 50 0.9820541 +55 279.18 283.0575 1000 50 0.9143467 +56 283.0575 286.935 1000 50 0.9979511 +57 286.935 290.8125 1000 50 0.99956936 +58 298.5675 302.445 1000 50 0.99965596 +59 302.445 306.3225 1000 50 0.99023867 +60 306.3225 310.2 1000 50 0.8510879 +61 310.2 314.0775 1000 50 0.9848637 +62 314.0775 317.955 1000 50 0.9999993 +63 317.955 321.8325 1000 50 0.9994135 +64 321.8325 325.71 1000 50 0.99991965 +65 329.5875 333.465 1000 50 0.8888792 +66 333.465 337.3425 1000 50 0.99999964 +67 337.3425 341.21999999999997 1000 50 0.96402246 +68 341.22 345.0975 1000 50 0.8505674 +69 348.975 352.8525 1000 50 0.9963198 +70 352.8525 356.73 1000 50 0.9917412 +71 356.73 360.6075 1000 50 0.9737162 +72 360.6075 364.485 1000 50 0.9941603 +73 364.485 368.3625 1000 50 0.98485684 +74 368.3625 372.24 1000 50 0.99961346 +75 372.24 376.1175 1000 50 0.99981207 +76 379.995 383.8725 1000 50 0.6795691 +77 383.8725 387.75 1000 50 0.99953437 +78 395.505 399.3825 1000 50 0.99996173 +79 399.3825 403.26 1000 50 0.99951386 +80 403.26 407.1375 1000 50 0.90447813 +81 407.1375 411.015 1000 50 0.9999633 +82 411.015 414.8925 1000 50 0.9493477 +83 414.8925 418.77 1000 50 0.99814856 +84 418.77 422.6475 1000 50 0.99983966 +85 422.6475 426.525 1000 50 0.89132226 +86 426.525 430.4025 1000 50 0.9850257 +87 430.4025 434.28 1000 50 0.9999325 +88 434.28 438.15749999999997 1000 50 0.9778074 +89 438.1575 442.035 1000 50 0.9999999 +90 442.035 445.9125 1000 50 0.9981401 +91 445.9125 449.79 1000 50 0.91066986 +92 449.79 453.6675 1000 50 0.99783343 +93 453.6675 457.545 1000 50 0.9999436 +94 457.545 461.4225 1000 50 0.99995995 +95 461.4225 465.3 1000 50 0.9999962 +96 465.3 469.1775 1000 50 0.9999865 +97 469.1775 473.055 1000 50 0.99987745 +98 473.055 476.9325 1000 50 0.9973801 +99 476.9325 480.81 1000 50 0.9973258 +100 480.81 484.6875 1000 50 0.9998921 +101 484.6875 488.565 1000 50 0.99889636 +102 488.565 492.4425 1000 50 0.9638123 +103 492.4425 496.32 1000 50 0.9999825 +104 500.1975 504.075 1000 50 0.98888004 +105 504.075 507.9525 1000 50 0.99981636 +106 507.9525 511.83 1000 50 0.9714049 +107 511.83 515.7075 1000 50 0.9999987 +108 515.7075 519.585 1000 50 0.9997937 +109 519.585 523.4625000000001 1000 50 0.9999052 +110 523.4625 527.34 1000 50 0.99895394 +111 527.34 531.2175000000001 1000 50 0.99996114 +112 531.2175 535.095 1000 50 0.9118248 +113 535.095 538.9725000000001 1000 50 0.9993622 +114 538.9725 542.85 1000 50 0.9999398 +115 542.85 546.7275000000001 1000 50 0.99999213 +116 546.7275 550.605 1000 50 0.9612618 +117 550.605 554.4825000000001 1000 50 0.9999975 +118 554.4825 558.36 1000 50 0.9999931 +119 558.36 562.2375000000001 1000 50 0.9997166 +120 562.2375 566.115 1000 50 0.99971026 +121 566.115 569.9925000000001 1000 50 0.87637246 +122 569.9925 573.87 1000 50 0.99618995 +123 573.87 577.7475000000001 1000 50 0.99998546 +124 577.7475 581.625 1000 50 0.9990362 +125 581.625 585.5025 1000 50 0.99999976 +126 585.5025 589.3800000000001 1000 50 0.99998474 +127 589.38 593.2575 1000 50 0.9999981 +128 593.2575 597.1350000000001 1000 50 0.99998844 +129 597.135 601.0125 1000 50 0.9558152 +130 601.0125 604.8900000000001 1000 50 0.9999999 +131 604.89 608.7675 1000 50 0.99834466 +132 608.7675 612.6450000000001 1000 50 0.8594641 +133 612.645 616.5225 1000 50 0.9999994 +134 616.5225 620.4000000000001 1000 50 0.99777275 +135 620.4 624.2775 1000 50 0.999902 +136 624.2775 628.1550000000001 1000 50 1.0 +137 628.155 632.0325 1000 50 0.8901043 +138 632.0325 635.9100000000001 1000 50 0.99999833 +139 635.91 639.7875 1000 50 0.9981371 +140 639.7875 643.6650000000001 1000 50 0.99483794 +141 643.665 647.5425 1000 50 0.9141251 +142 647.5425 651.4200000000001 1000 50 0.9932777 +143 651.42 655.2975 1000 50 0.99999964 +144 655.2975 659.1750000000001 1000 50 0.99718803 +145 659.175 663.0525 1000 50 0.9977168 +146 663.0525 666.9300000000001 1000 50 0.9998554 +147 666.93 670.8075 1000 50 0.979081 +148 670.8075 674.6850000000001 1000 50 0.9999318 +149 674.685 678.5625 1000 50 0.9747541 +150 678.5625 682.44 1000 50 0.8524754 +151 682.44 686.3175000000001 1000 50 0.9969382 +152 686.3175 690.195 1000 50 0.9995171 +153 690.195 694.0725000000001 1000 50 0.94387364 +154 694.0725 697.95 1000 50 0.99922895 +155 697.95 701.8275000000001 1000 50 0.9907307 +156 701.8275 705.705 1000 50 0.80150145 +157 705.705 709.5825000000001 1000 50 0.99984837 +158 709.5825 713.46 1000 50 0.9613648 +159 713.46 717.3375000000001 1000 50 0.99994123 +160 717.3375 721.215 1000 50 0.9939209 +161 721.215 725.0925000000001 1000 50 0.99944896 +162 725.0925 728.97 1000 50 0.9870094 +163 728.97 732.8475000000001 1000 50 0.9064532 +164 732.8475 736.725 1000 50 0.99990463 +165 740.6025 744.48 1000 50 0.99927217 +166 744.48 748.3575000000001 1000 50 0.91184 +167 752.235 756.1125000000001 1000 50 0.8014908 +168 756.1125 759.99 1000 50 0.9999809 +169 759.99 763.8675000000001 1000 50 0.99995816 +170 763.8675 767.745 1000 50 0.66889244 +171 767.745 771.6225000000001 1000 50 0.92773193 +172 775.5 779.3775 1000 50 0.7037349 +173 779.3775 783.2550000000001 1000 50 0.9790055 +174 791.01 794.8875 1000 50 0.64054 +175 802.6425 806.5200000000001 1000 50 0.99811953 +176 806.52 810.3975 1000 50 0.9645314 +177 814.275 818.1525 1000 50 0.8997786 +178 818.1525 822.0300000000001 1000 50 0.81110924 +179 822.03 825.9075 1000 50 0.7603145 +180 825.9075 829.7850000000001 1000 50 0.97464424 +181 829.785 833.6625 1000 50 0.56952876 +182 837.54 841.4175 1000 50 0.8426941 +183 841.4175 845.2950000000001 1000 50 0.98737735 +184 845.295 849.1725 1000 50 0.945741 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_20-19-40_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_20-19-40_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..2d42e80a914177e8c9613c290f299036fae3fe82 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_20-19-40_annot_2022-11-30_01.txt @@ -0,0 +1,78 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9500527 +2 7.755 11.6325 1000 50 0.9951944 +3 11.6325 15.51 1000 50 0.9987649 +4 15.51 19.3875 1000 50 0.99740845 +5 19.3875 23.265 1000 50 0.9999151 +6 23.265 27.142500000000002 1000 50 0.9998165 +7 27.1425 31.02 1000 50 1.0 +8 31.02 34.8975 1000 50 0.7388527 +9 34.8975 38.775 1000 50 0.9999974 +10 38.775 42.652499999999996 1000 50 0.9999845 +11 42.6525 46.53 1000 50 0.991028 +12 46.53 50.4075 1000 50 0.9791765 +13 50.4075 54.285 1000 50 0.9999864 +14 54.285 58.162499999999994 1000 50 0.9999993 +15 58.1625 62.04 1000 50 0.99999344 +16 62.04 65.9175 1000 50 0.9999646 +17 65.9175 69.795 1000 50 0.99999976 +18 69.795 73.6725 1000 50 0.99989843 +19 73.6725 77.55 1000 50 0.99978644 +20 77.55 81.4275 1000 50 0.99995196 +21 85.305 89.1825 1000 50 0.9999958 +22 89.1825 93.06 1000 50 0.9632367 +23 93.06 96.9375 1000 50 0.8451453 +24 96.9375 100.815 1000 50 0.9997149 +25 100.815 104.6925 1000 50 0.9999777 +26 104.6925 108.57 1000 50 0.99983025 +27 108.57 112.44749999999999 1000 50 0.9999994 +28 112.4475 116.325 1000 50 0.99843687 +29 116.325 120.2025 1000 50 0.9986784 +30 120.2025 124.08 1000 50 0.99999285 +31 124.08 127.9575 1000 50 0.99975115 +32 127.9575 131.835 1000 50 0.99999034 +33 131.835 135.7125 1000 50 0.99999905 +34 135.7125 139.59 1000 50 0.9994666 +35 139.59 143.4675 1000 50 0.98832583 +36 143.4675 147.345 1000 50 0.999998 +37 147.345 151.2225 1000 50 0.9994004 +38 151.2225 155.1 1000 50 0.9948297 +39 155.1 158.9775 1000 50 0.74882007 +40 158.9775 162.855 1000 50 0.9999778 +41 162.855 166.7325 1000 50 0.9999652 +42 170.61 174.4875 1000 50 0.9998462 +43 174.4875 178.365 1000 50 0.9128553 +44 178.365 182.2425 1000 50 0.99837744 +45 182.2425 186.12 1000 50 1.0 +46 186.12 189.9975 1000 50 0.9998678 +47 189.9975 193.875 1000 50 0.98150384 +48 193.875 197.7525 1000 50 0.9999962 +49 197.7525 201.63 1000 50 0.99999845 +50 201.63 205.5075 1000 50 0.9993697 +51 205.5075 209.385 1000 50 0.88837886 +52 209.385 213.2625 1000 50 0.9995384 +53 213.2625 217.14 1000 50 0.99229217 +54 217.14 221.01749999999998 1000 50 0.73049057 +55 221.0175 224.895 1000 50 1.0 +56 224.895 228.7725 1000 50 0.9997968 +57 228.7725 232.65 1000 50 0.9999999 +58 232.65 236.5275 1000 50 0.98074394 +59 236.5275 240.405 1000 50 0.99361926 +60 240.405 244.2825 1000 50 0.9821101 +61 244.2825 248.16 1000 50 0.9792372 +62 248.16 252.0375 1000 50 0.9999999 +63 252.0375 255.915 1000 50 0.9941929 +64 255.915 259.7925 1000 50 0.9148861 +65 259.7925 263.67 1000 50 0.99957544 +66 263.67 267.5475 1000 50 0.9040435 +67 271.425 275.3025 1000 50 0.99999475 +68 283.0575 286.935 1000 50 0.99048996 +69 290.8125 294.69 1000 50 0.95702505 +70 294.69 298.5675 1000 50 0.72759795 +71 298.5675 302.445 1000 50 0.5244535 +72 302.445 306.3225 1000 50 0.9326604 +73 306.3225 310.2 1000 50 0.9973846 +74 310.2 314.0775 1000 50 0.99185866 +75 314.0775 317.955 1000 50 0.6722617 +76 317.955 321.8325 1000 50 0.97226936 +77 321.8325 325.71 1000 50 0.87891877 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_21-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_21-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e3b52f7ac97a147e56c71bb0a80b21b97c2b1085 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_21-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,183 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99950993 +2 3.8775 7.755 1000 50 0.6534725 +3 7.755 11.6325 1000 50 0.7222241 +4 15.51 19.3875 1000 50 0.9871361 +5 38.775 42.652499999999996 1000 50 0.95120484 +6 46.53 50.4075 1000 50 0.63099736 +7 50.4075 54.285 1000 50 0.76717156 +8 62.04 65.9175 1000 50 0.98661995 +9 65.9175 69.795 1000 50 0.51418436 +10 69.795 73.6725 1000 50 0.9667173 +11 73.6725 77.55 1000 50 0.711682 +12 77.55 81.4275 1000 50 0.9999696 +13 81.4275 85.30499999999999 1000 50 0.8952787 +14 89.1825 93.06 1000 50 0.8935831 +15 93.06 96.9375 1000 50 0.98993534 +16 104.6925 108.57 1000 50 0.9982862 +17 108.57 112.44749999999999 1000 50 0.63450646 +18 127.9575 131.835 1000 50 0.99848664 +19 147.345 151.2225 1000 50 0.708863 +20 151.2225 155.1 1000 50 0.9855641 +21 193.875 197.7525 1000 50 0.5237319 +22 221.0175 224.895 1000 50 0.98999155 +23 224.895 228.7725 1000 50 0.88263553 +24 228.7725 232.65 1000 50 0.83205336 +25 232.65 236.5275 1000 50 0.9974003 +26 240.405 244.2825 1000 50 0.961529 +27 252.0375 255.915 1000 50 0.9599469 +28 255.915 259.7925 1000 50 0.9990489 +29 259.7925 263.67 1000 50 0.97317815 +30 263.67 267.5475 1000 50 0.93907 +31 267.5475 271.425 1000 50 0.96748155 +32 271.425 275.3025 1000 50 0.9896374 +33 275.3025 279.18 1000 50 0.99659604 +34 279.18 283.0575 1000 50 0.9949816 +35 286.935 290.8125 1000 50 0.99761885 +36 290.8125 294.69 1000 50 0.8922173 +37 294.69 298.5675 1000 50 0.9339563 +38 302.445 306.3225 1000 50 0.99930644 +39 314.0775 317.955 1000 50 0.8313179 +40 317.955 321.8325 1000 50 0.8903926 +41 321.8325 325.71 1000 50 0.69314027 +42 325.71 329.5875 1000 50 0.59552866 +43 333.465 337.3425 1000 50 0.6393681 +44 337.3425 341.21999999999997 1000 50 0.9875344 +45 345.0975 348.975 1000 50 0.9335294 +46 348.975 352.8525 1000 50 0.99997866 +47 356.73 360.6075 1000 50 0.9995572 +48 360.6075 364.485 1000 50 0.9944871 +49 368.3625 372.24 1000 50 0.9984054 +50 376.1175 379.995 1000 50 0.99370354 +51 379.995 383.8725 1000 50 0.9628633 +52 383.8725 387.75 1000 50 0.99974376 +53 387.75 391.6275 1000 50 0.9999653 +54 395.505 399.3825 1000 50 0.7857358 +55 399.3825 403.26 1000 50 0.999984 +56 403.26 407.1375 1000 50 0.7468358 +57 411.015 414.8925 1000 50 0.99980134 +58 414.8925 418.77 1000 50 0.99301517 +59 422.6475 426.525 1000 50 0.9991591 +60 426.525 430.4025 1000 50 0.7071346 +61 434.28 438.15749999999997 1000 50 0.94527304 +62 442.035 445.9125 1000 50 0.9997334 +63 449.79 453.6675 1000 50 1.0 +64 457.545 461.4225 1000 50 0.99358433 +65 461.4225 465.3 1000 50 0.99992144 +66 465.3 469.1775 1000 50 0.713806 +67 469.1775 473.055 1000 50 1.0 +68 473.055 476.9325 1000 50 0.99999 +69 476.9325 480.81 1000 50 0.7913077 +70 480.81 484.6875 1000 50 0.9999982 +71 484.6875 488.565 1000 50 0.77710676 +72 492.4425 496.32 1000 50 0.8205307 +73 500.1975 504.075 1000 50 0.9999924 +74 504.075 507.9525 1000 50 0.8228351 +75 507.9525 511.83 1000 50 0.65313464 +76 511.83 515.7075 1000 50 0.9999995 +77 515.7075 519.585 1000 50 0.9939435 +78 519.585 523.4625000000001 1000 50 0.8369649 +79 523.4625 527.34 1000 50 0.86445844 +80 531.2175 535.095 1000 50 0.7632451 +81 535.095 538.9725000000001 1000 50 0.99957865 +82 538.9725 542.85 1000 50 0.8359289 +83 546.7275 550.605 1000 50 0.9987097 +84 550.605 554.4825000000001 1000 50 0.9999901 +85 558.36 562.2375000000001 1000 50 0.8229527 +86 562.2375 566.115 1000 50 0.9801514 +87 566.115 569.9925000000001 1000 50 0.7108358 +88 573.87 577.7475000000001 1000 50 0.93335235 +89 585.5025 589.3800000000001 1000 50 0.5191912 +90 593.2575 597.1350000000001 1000 50 0.7442143 +91 597.135 601.0125 1000 50 0.8689159 +92 601.0125 604.8900000000001 1000 50 0.9999889 +93 604.89 608.7675 1000 50 0.7894955 +94 612.645 616.5225 1000 50 0.9980355 +95 616.5225 620.4000000000001 1000 50 0.9590728 +96 620.4 624.2775 1000 50 0.9369635 +97 624.2775 628.1550000000001 1000 50 0.933461 +98 628.155 632.0325 1000 50 0.9999802 +99 632.0325 635.9100000000001 1000 50 0.7395774 +100 635.91 639.7875 1000 50 0.98612493 +101 639.7875 643.6650000000001 1000 50 0.9783499 +102 643.665 647.5425 1000 50 0.6521391 +103 647.5425 651.4200000000001 1000 50 0.7169419 +104 651.42 655.2975 1000 50 0.59199667 +105 666.93 670.8075 1000 50 0.987912 +106 670.8075 674.6850000000001 1000 50 0.5776553 +107 678.5625 682.44 1000 50 0.99837214 +108 682.44 686.3175000000001 1000 50 0.98740876 +109 690.195 694.0725000000001 1000 50 0.99960965 +110 709.5825 713.46 1000 50 0.82805395 +111 721.215 725.0925000000001 1000 50 0.91698587 +112 728.97 732.8475000000001 1000 50 0.9528528 +113 732.8475 736.725 1000 50 0.68000567 +114 740.6025 744.48 1000 50 0.9617774 +115 752.235 756.1125000000001 1000 50 0.8228962 +116 756.1125 759.99 1000 50 0.9813085 +117 763.8675 767.745 1000 50 0.8411067 +118 767.745 771.6225000000001 1000 50 0.87377554 +119 771.6225 775.5 1000 50 0.84392667 +120 775.5 779.3775 1000 50 0.99953806 +121 783.255 787.1325 1000 50 0.99740714 +122 787.1325 791.0100000000001 1000 50 0.9398647 +123 791.01 794.8875 1000 50 0.86259156 +124 810.3975 814.2750000000001 1000 50 0.8504628 +125 829.785 833.6625 1000 50 0.54241323 +126 833.6625 837.5400000000001 1000 50 0.7640526 +127 837.54 841.4175 1000 50 0.7823757 +128 841.4175 845.2950000000001 1000 50 0.91873235 +129 864.6825 868.5600000000001 1000 50 0.5679825 +130 868.56 872.4375 1000 50 0.99563074 +131 872.4375 876.315 1000 50 0.5917415 +132 876.315 880.1925000000001 1000 50 0.59995586 +133 884.07 887.9475000000001 1000 50 0.98926777 +134 891.825 895.7025000000001 1000 50 0.9178107 +135 895.7025 899.58 1000 50 0.8108823 +136 903.4575 907.335 1000 50 0.6081888 +137 918.9675 922.845 1000 50 0.7982465 +138 922.845 926.7225000000001 1000 50 0.5034206 +139 926.7225 930.6 1000 50 0.5699806 +140 930.6 934.4775000000001 1000 50 0.99488825 +141 934.4775 938.355 1000 50 0.9179136 +142 942.2325 946.11 1000 50 0.79942274 +143 969.375 973.2525 1000 50 0.9852225 +144 981.0075 984.8850000000001 1000 50 0.90301377 +145 1000.395 1004.2725 1000 50 0.605035 +146 1012.0275 1015.9050000000001 1000 50 0.93269527 +147 1019.7825 1023.6600000000001 1000 50 0.95314175 +148 1023.66 1027.5375 1000 50 0.9967709 +149 1027.5375 1031.415 1000 50 0.99873716 +150 1031.415 1035.2925 1000 50 0.94697785 +151 1039.17 1043.0475000000001 1000 50 0.9998485 +152 1050.8025 1054.68 1000 50 0.6558804 +153 1054.68 1058.5575000000001 1000 50 0.5991468 +154 1058.5575 1062.435 1000 50 0.9991855 +155 1062.435 1066.3125 1000 50 0.69889784 +156 1066.3125 1070.19 1000 50 0.9982085 +157 1070.19 1074.0675 1000 50 0.9998462 +158 1074.0675 1077.9450000000002 1000 50 0.54001004 +159 1077.945 1081.8225 1000 50 0.9995726 +160 1085.7 1089.5775 1000 50 0.87899786 +161 1093.455 1097.3325 1000 50 0.88396287 +162 1097.3325 1101.21 1000 50 0.88490975 +163 1101.21 1105.0875 1000 50 0.98878443 +164 1124.475 1128.3525 1000 50 0.99402666 +165 1128.3525 1132.23 1000 50 0.5158851 +166 1139.985 1143.8625 1000 50 0.8430343 +167 1143.8625 1147.74 1000 50 0.9931967 +168 1147.74 1151.6175 1000 50 0.95154744 +169 1163.25 1167.1275 1000 50 0.9967411 +170 1167.1275 1171.005 1000 50 0.98469514 +171 1171.005 1174.8825000000002 1000 50 0.87970966 +172 1174.8825 1178.76 1000 50 0.99950445 +173 1178.76 1182.6375 1000 50 0.9856989 +174 1186.515 1190.3925000000002 1000 50 0.9992964 +175 1209.78 1213.6575 1000 50 0.7642325 +176 1213.6575 1217.535 1000 50 0.91493887 +177 1217.535 1221.4125000000001 1000 50 0.99417627 +178 1221.4125 1225.29 1000 50 0.9250536 +179 1229.1675 1233.045 1000 50 0.93837416 +180 1233.045 1236.9225000000001 1000 50 0.99892884 +181 1236.9225 1240.8 1000 50 0.7134101 +182 1240.8 1244.6775 1000 50 0.98212814 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_21-24-24_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_21-24-24_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..3c6f0dafd582fdbc591fb1f8f8ce9cabf329886f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_21-24-24_annot_2022-11-30_01.txt @@ -0,0 +1,6 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 11.6325 15.51 1000 50 0.5866778 +2 19.3875 23.265 1000 50 0.9999598 +3 23.265 27.142500000000002 1000 50 0.9022135 +4 31.02 34.8975 1000 50 0.71270925 +5 34.8975 38.775 1000 50 0.9353415 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_22-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_22-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..9dbaf4eb20d31aa8eba9bf76f4aff866eb298dfa --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_22-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,255 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.96094614 +2 3.8775 7.755 1000 50 0.99875486 +3 15.51 19.3875 1000 50 0.90347654 +4 19.3875 23.265 1000 50 0.7449672 +5 31.02 34.8975 1000 50 0.8060785 +6 38.775 42.652499999999996 1000 50 0.7682571 +7 42.6525 46.53 1000 50 0.9999845 +8 81.4275 85.30499999999999 1000 50 0.82059073 +9 89.1825 93.06 1000 50 0.99979967 +10 93.06 96.9375 1000 50 0.524602 +11 100.815 104.6925 1000 50 0.8033535 +12 108.57 112.44749999999999 1000 50 0.9049407 +13 116.325 120.2025 1000 50 0.8801576 +14 135.7125 139.59 1000 50 0.55788386 +15 143.4675 147.345 1000 50 0.99774784 +16 151.2225 155.1 1000 50 0.9395738 +17 158.9775 162.855 1000 50 0.9979461 +18 162.855 166.7325 1000 50 0.9744486 +19 166.7325 170.60999999999999 1000 50 0.9980988 +20 174.4875 178.365 1000 50 0.99983406 +21 182.2425 186.12 1000 50 0.9999993 +22 186.12 189.9975 1000 50 0.9801396 +23 189.9975 193.875 1000 50 0.9999745 +24 193.875 197.7525 1000 50 1.0 +25 197.7525 201.63 1000 50 0.95022476 +26 201.63 205.5075 1000 50 0.9998282 +27 205.5075 209.385 1000 50 0.99999475 +28 209.385 213.2625 1000 50 0.9996314 +29 213.2625 217.14 1000 50 1.0 +30 217.14 221.01749999999998 1000 50 0.941272 +31 221.0175 224.895 1000 50 0.98817843 +32 224.895 228.7725 1000 50 0.9999993 +33 228.7725 232.65 1000 50 0.9999628 +34 232.65 236.5275 1000 50 0.9999796 +35 236.5275 240.405 1000 50 1.0 +36 240.405 244.2825 1000 50 0.9999906 +37 244.2825 248.16 1000 50 0.9999975 +38 248.16 252.0375 1000 50 0.99899656 +39 252.0375 255.915 1000 50 0.8965927 +40 255.915 259.7925 1000 50 1.0 +41 259.7925 263.67 1000 50 0.9889305 +42 263.67 267.5475 1000 50 0.99997294 +43 267.5475 271.425 1000 50 0.90233266 +44 271.425 275.3025 1000 50 0.9693373 +45 275.3025 279.18 1000 50 0.97531974 +46 279.18 283.0575 1000 50 0.63343513 +47 283.0575 286.935 1000 50 0.9439735 +48 286.935 290.8125 1000 50 0.7518293 +49 290.8125 294.69 1000 50 0.54126793 +50 294.69 298.5675 1000 50 0.5986167 +51 298.5675 302.445 1000 50 0.99918824 +52 302.445 306.3225 1000 50 0.9976931 +53 306.3225 310.2 1000 50 0.6652847 +54 325.71 329.5875 1000 50 0.580973 +55 329.5875 333.465 1000 50 0.89414287 +56 333.465 337.3425 1000 50 0.9943018 +57 337.3425 341.21999999999997 1000 50 0.99187696 +58 341.22 345.0975 1000 50 0.95683074 +59 345.0975 348.975 1000 50 0.99992657 +60 348.975 352.8525 1000 50 0.99986684 +61 352.8525 356.73 1000 50 0.9955918 +62 364.485 368.3625 1000 50 0.99892044 +63 368.3625 372.24 1000 50 0.63546026 +64 376.1175 379.995 1000 50 0.9999939 +65 379.995 383.8725 1000 50 0.9631164 +66 399.3825 403.26 1000 50 0.81333935 +67 403.26 407.1375 1000 50 0.7205434 +68 407.1375 411.015 1000 50 0.6813715 +69 426.525 430.4025 1000 50 0.93992776 +70 461.4225 465.3 1000 50 0.55446494 +71 484.6875 488.565 1000 50 0.95983166 +72 488.565 492.4425 1000 50 0.6703835 +73 500.1975 504.075 1000 50 0.8590931 +74 504.075 507.9525 1000 50 0.7594168 +75 515.7075 519.585 1000 50 0.57310194 +76 531.2175 535.095 1000 50 0.762788 +77 538.9725 542.85 1000 50 0.89985996 +78 546.7275 550.605 1000 50 0.6112398 +79 558.36 562.2375000000001 1000 50 0.94536823 +80 562.2375 566.115 1000 50 0.7735401 +81 569.9925 573.87 1000 50 0.9896836 +82 573.87 577.7475000000001 1000 50 0.9973152 +83 577.7475 581.625 1000 50 0.9960502 +84 581.625 585.5025 1000 50 0.98175114 +85 593.2575 597.1350000000001 1000 50 0.94645804 +86 597.135 601.0125 1000 50 0.90707254 +87 601.0125 604.8900000000001 1000 50 0.88632625 +88 604.89 608.7675 1000 50 0.9819311 +89 608.7675 612.6450000000001 1000 50 0.9990902 +90 612.645 616.5225 1000 50 0.9998779 +91 620.4 624.2775 1000 50 0.973271 +92 624.2775 628.1550000000001 1000 50 0.99802965 +93 628.155 632.0325 1000 50 0.9999968 +94 632.0325 635.9100000000001 1000 50 0.9949544 +95 635.91 639.7875 1000 50 0.999961 +96 639.7875 643.6650000000001 1000 50 0.9999988 +97 643.665 647.5425 1000 50 0.99941266 +98 647.5425 651.4200000000001 1000 50 0.97180194 +99 651.42 655.2975 1000 50 0.9999597 +100 655.2975 659.1750000000001 1000 50 0.99993277 +101 659.175 663.0525 1000 50 0.9998895 +102 663.0525 666.9300000000001 1000 50 0.9860833 +103 666.93 670.8075 1000 50 0.9090569 +104 674.685 678.5625 1000 50 0.9996013 +105 678.5625 682.44 1000 50 0.9997396 +106 682.44 686.3175000000001 1000 50 0.9999268 +107 686.3175 690.195 1000 50 0.99152535 +108 690.195 694.0725000000001 1000 50 0.99999785 +109 694.0725 697.95 1000 50 0.96568286 +110 697.95 701.8275000000001 1000 50 0.95998347 +111 701.8275 705.705 1000 50 0.9996189 +112 705.705 709.5825000000001 1000 50 0.9904422 +113 713.46 717.3375000000001 1000 50 0.96573526 +114 717.3375 721.215 1000 50 0.98838377 +115 721.215 725.0925000000001 1000 50 0.9254033 +116 725.0925 728.97 1000 50 0.8274293 +117 728.97 732.8475000000001 1000 50 0.797344 +118 736.725 740.6025000000001 1000 50 0.9215418 +119 744.48 748.3575000000001 1000 50 0.8476556 +120 752.235 756.1125000000001 1000 50 0.99426705 +121 756.1125 759.99 1000 50 0.85931015 +122 759.99 763.8675000000001 1000 50 0.90221834 +123 763.8675 767.745 1000 50 0.9992679 +124 767.745 771.6225000000001 1000 50 0.9944342 +125 771.6225 775.5 1000 50 0.99954057 +126 775.5 779.3775 1000 50 0.6160865 +127 787.1325 791.0100000000001 1000 50 0.9829518 +128 791.01 794.8875 1000 50 0.86810005 +129 794.8875 798.7650000000001 1000 50 0.8727728 +130 798.765 802.6425 1000 50 0.9890498 +131 802.6425 806.5200000000001 1000 50 0.9804387 +132 806.52 810.3975 1000 50 0.7087358 +133 810.3975 814.2750000000001 1000 50 0.87793416 +134 814.275 818.1525 1000 50 0.9424276 +135 818.1525 822.0300000000001 1000 50 0.9068906 +136 822.03 825.9075 1000 50 0.83261395 +137 825.9075 829.7850000000001 1000 50 0.6015869 +138 829.785 833.6625 1000 50 0.98312044 +139 833.6625 837.5400000000001 1000 50 0.87390393 +140 837.54 841.4175 1000 50 0.9995566 +141 841.4175 845.2950000000001 1000 50 0.96029556 +142 849.1725 853.0500000000001 1000 50 0.9003907 +143 884.07 887.9475000000001 1000 50 0.8916109 +144 887.9475 891.825 1000 50 0.940171 +145 903.4575 907.335 1000 50 0.8939622 +146 907.335 911.2125000000001 1000 50 0.68073404 +147 911.2125 915.09 1000 50 0.66910726 +148 930.6 934.4775000000001 1000 50 0.6612273 +149 934.4775 938.355 1000 50 0.9977963 +150 938.355 942.2325000000001 1000 50 0.60998344 +151 946.11 949.9875000000001 1000 50 0.84848017 +152 953.865 957.7425000000001 1000 50 0.9198108 +153 965.4975 969.375 1000 50 0.6984571 +154 969.375 973.2525 1000 50 0.9941778 +155 977.13 981.0075 1000 50 0.90690035 +156 981.0075 984.8850000000001 1000 50 0.99834645 +157 984.885 988.7625 1000 50 0.8270062 +158 988.7625 992.6400000000001 1000 50 0.9851531 +159 992.64 996.5175 1000 50 0.7440002 +160 1000.395 1004.2725 1000 50 0.51923937 +161 1012.0275 1015.9050000000001 1000 50 0.56771064 +162 1031.415 1035.2925 1000 50 0.5665199 +163 1039.17 1043.0475000000001 1000 50 0.6566338 +164 1046.925 1050.8025 1000 50 0.84480333 +165 1054.68 1058.5575000000001 1000 50 0.723935 +166 1077.945 1081.8225 1000 50 0.960923 +167 1081.8225 1085.7 1000 50 0.99684864 +168 1089.5775 1093.4550000000002 1000 50 0.7110745 +169 1093.455 1097.3325 1000 50 0.9989152 +170 1097.3325 1101.21 1000 50 0.993294 +171 1101.21 1105.0875 1000 50 0.9537228 +172 1105.0875 1108.9650000000001 1000 50 0.99799407 +173 1108.965 1112.8425 1000 50 0.98962724 +174 1112.8425 1116.72 1000 50 0.9982901 +175 1116.72 1120.5975 1000 50 0.9996815 +176 1120.5975 1124.4750000000001 1000 50 0.60990757 +177 1124.475 1128.3525 1000 50 0.99317014 +178 1128.3525 1132.23 1000 50 0.99999905 +179 1136.1075 1139.9850000000001 1000 50 0.99899834 +180 1139.985 1143.8625 1000 50 0.9998671 +181 1143.8625 1147.74 1000 50 0.54604846 +182 1147.74 1151.6175 1000 50 0.9986964 +183 1151.6175 1155.4950000000001 1000 50 0.99999166 +184 1155.495 1159.3725 1000 50 0.8532303 +185 1159.3725 1163.25 1000 50 0.9961708 +186 1163.25 1167.1275 1000 50 0.99988747 +187 1167.1275 1171.005 1000 50 0.9987722 +188 1171.005 1174.8825000000002 1000 50 0.99999905 +189 1174.8825 1178.76 1000 50 0.9969674 +190 1182.6375 1186.515 1000 50 0.9963851 +191 1186.515 1190.3925000000002 1000 50 0.9997677 +192 1194.27 1198.1475 1000 50 0.9999987 +193 1198.1475 1202.025 1000 50 0.99953854 +194 1205.9025 1209.78 1000 50 0.9999658 +195 1213.6575 1217.535 1000 50 0.998879 +196 1221.4125 1225.29 1000 50 0.99959904 +197 1225.29 1229.1675 1000 50 0.96220744 +198 1229.1675 1233.045 1000 50 0.92085797 +199 1233.045 1236.9225000000001 1000 50 0.8354696 +200 1236.9225 1240.8 1000 50 0.9051159 +201 1240.8 1244.6775 1000 50 0.95534986 +202 1244.6775 1248.555 1000 50 0.9997942 +203 1248.555 1252.4325000000001 1000 50 0.97928363 +204 1252.4325 1256.31 1000 50 0.99979335 +205 1256.31 1260.1875 1000 50 0.9999653 +206 1260.1875 1264.065 1000 50 0.6290833 +207 1264.065 1267.9425 1000 50 0.9999999 +208 1267.9425 1271.8200000000002 1000 50 0.7267008 +209 1275.6975 1279.575 1000 50 0.9936162 +210 1279.575 1283.4525 1000 50 0.9999728 +211 1287.33 1291.2075 1000 50 0.9765602 +212 1291.2075 1295.085 1000 50 0.9430021 +213 1295.085 1298.9625 1000 50 0.99992144 +214 1298.9625 1302.8400000000001 1000 50 0.986924 +215 1302.84 1306.7175 1000 50 0.9836679 +216 1306.7175 1310.595 1000 50 0.99789846 +217 1310.595 1314.4725 1000 50 0.9742585 +218 1322.2275 1326.105 1000 50 0.9858974 +219 1326.105 1329.9825 1000 50 0.99975556 +220 1329.9825 1333.8600000000001 1000 50 0.99985206 +221 1333.86 1337.7375 1000 50 0.97974867 +222 1337.7375 1341.615 1000 50 0.99684566 +223 1341.615 1345.4925 1000 50 0.99904865 +224 1345.4925 1349.3700000000001 1000 50 0.99928963 +225 1349.37 1353.2475 1000 50 0.9996024 +226 1357.125 1361.0025 1000 50 0.99537164 +227 1361.0025 1364.88 1000 50 0.9995353 +228 1364.88 1368.7575000000002 1000 50 0.95890397 +229 1372.635 1376.5125 1000 50 0.999933 +230 1376.5125 1380.39 1000 50 0.89940447 +231 1380.39 1384.2675000000002 1000 50 0.9824901 +232 1384.2675 1388.145 1000 50 0.9594224 +233 1388.145 1392.0225 1000 50 0.511594 +234 1392.0225 1395.9 1000 50 0.99690324 +235 1395.9 1399.7775000000001 1000 50 0.99983406 +236 1399.7775 1403.655 1000 50 0.99726677 +237 1403.655 1407.5325 1000 50 0.9612775 +238 1407.5325 1411.41 1000 50 0.76863366 +239 1411.41 1415.2875000000001 1000 50 0.93298507 +240 1415.2875 1419.165 1000 50 0.99994624 +241 1419.165 1423.0425 1000 50 0.95259297 +242 1423.0425 1426.92 1000 50 0.85647714 +243 1426.92 1430.7975000000001 1000 50 0.66887397 +244 1430.7975 1434.675 1000 50 0.62305856 +245 1434.675 1438.5525 1000 50 0.5737471 +246 1450.185 1454.0625 1000 50 0.6006869 +247 1454.0625 1457.94 1000 50 0.97902644 +248 1461.8175 1465.6950000000002 1000 50 0.960329 +249 1469.5725 1473.45 1000 50 0.8460704 +250 1477.3275 1481.2050000000002 1000 50 0.92193013 +251 1481.205 1485.0825 1000 50 0.9505029 +252 1485.0825 1488.96 1000 50 0.76631457 +253 1488.96 1492.8375 1000 50 0.85882163 +254 1492.8375 1496.7150000000001 1000 50 0.9442139 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_23-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_23-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d229fbb1290b6c917ad88f29501db084ffbd6a00 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_23-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,7 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.646369 +2 7.755 11.6325 1000 50 0.89036685 +3 11.6325 15.51 1000 50 0.9994766 +4 15.51 19.3875 1000 50 0.9743523 +5 19.3875 23.265 1000 50 0.8632223 +6 27.1425 31.02 1000 50 0.99351937 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_23-04-09_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_23-04-09_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..cffcda081fa0e1ff7427aa398215f2bc29a194ab --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-17_2kHz/channelA_2021-03-17_23-04-09_annot_2022-11-30_01.txt @@ -0,0 +1,272 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999988 +2 3.8775 7.755 1000 50 0.99474406 +3 7.755 11.6325 1000 50 0.9999871 +4 11.6325 15.51 1000 50 0.99010205 +5 15.51 19.3875 1000 50 0.99374986 +6 19.3875 23.265 1000 50 0.9999907 +7 23.265 27.142500000000002 1000 50 0.9997273 +8 27.1425 31.02 1000 50 0.98861605 +9 31.02 34.8975 1000 50 0.98161465 +10 34.8975 38.775 1000 50 0.99999976 +11 38.775 42.652499999999996 1000 50 0.93955636 +12 42.6525 46.53 1000 50 0.99997616 +13 46.53 50.4075 1000 50 0.99943775 +14 50.4075 54.285 1000 50 0.99998426 +15 54.285 58.162499999999994 1000 50 0.9585874 +16 58.1625 62.04 1000 50 0.9999827 +17 62.04 65.9175 1000 50 0.99999857 +18 65.9175 69.795 1000 50 0.98859614 +19 69.795 73.6725 1000 50 0.99226344 +20 73.6725 77.55 1000 50 0.9999937 +21 77.55 81.4275 1000 50 0.8162746 +22 81.4275 85.30499999999999 1000 50 0.99996924 +23 85.305 89.1825 1000 50 0.99207145 +24 93.06 96.9375 1000 50 0.9999964 +25 96.9375 100.815 1000 50 0.9998118 +26 100.815 104.6925 1000 50 0.9999863 +27 104.6925 108.57 1000 50 0.9950589 +28 108.57 112.44749999999999 1000 50 0.9999887 +29 112.4475 116.325 1000 50 0.99951863 +30 116.325 120.2025 1000 50 0.9998166 +31 120.2025 124.08 1000 50 0.9993711 +32 124.08 127.9575 1000 50 0.999463 +33 127.9575 131.835 1000 50 0.9976642 +34 131.835 135.7125 1000 50 0.9979844 +35 135.7125 139.59 1000 50 0.99524623 +36 139.59 143.4675 1000 50 0.99999774 +37 143.4675 147.345 1000 50 0.99975044 +38 147.345 151.2225 1000 50 0.9723778 +39 151.2225 155.1 1000 50 0.99999976 +40 155.1 158.9775 1000 50 0.9999894 +41 158.9775 162.855 1000 50 0.99987364 +42 162.855 166.7325 1000 50 0.9999777 +43 166.7325 170.60999999999999 1000 50 0.98200285 +44 170.61 174.4875 1000 50 0.9999987 +45 174.4875 178.365 1000 50 0.99999475 +46 178.365 182.2425 1000 50 0.9999962 +47 182.2425 186.12 1000 50 0.9999962 +48 186.12 189.9975 1000 50 0.99999726 +49 189.9975 193.875 1000 50 0.9999999 +50 193.875 197.7525 1000 50 0.9903195 +51 197.7525 201.63 1000 50 0.99999785 +52 201.63 205.5075 1000 50 0.9999999 +53 205.5075 209.385 1000 50 0.9991561 +54 209.385 213.2625 1000 50 0.9999052 +55 213.2625 217.14 1000 50 0.99999964 +56 217.14 221.01749999999998 1000 50 0.99950016 +57 221.0175 224.895 1000 50 0.9999924 +58 224.895 228.7725 1000 50 0.9999993 +59 228.7725 232.65 1000 50 0.99999976 +60 232.65 236.5275 1000 50 0.99841213 +61 236.5275 240.405 1000 50 0.9999367 +62 240.405 244.2825 1000 50 0.9998727 +63 244.2825 248.16 1000 50 0.99958307 +64 248.16 252.0375 1000 50 0.99999475 +65 252.0375 255.915 1000 50 0.9996557 +66 255.915 259.7925 1000 50 0.9191672 +67 259.7925 263.67 1000 50 0.9999999 +68 263.67 267.5475 1000 50 0.9999932 +69 271.425 275.3025 1000 50 0.9999013 +70 275.3025 279.18 1000 50 0.99843305 +71 279.18 283.0575 1000 50 0.99400085 +72 283.0575 286.935 1000 50 0.99331254 +73 286.935 290.8125 1000 50 0.9989421 +74 290.8125 294.69 1000 50 0.8829453 +75 294.69 298.5675 1000 50 0.96095514 +76 298.5675 302.445 1000 50 0.8671009 +77 302.445 306.3225 1000 50 0.97007835 +78 306.3225 310.2 1000 50 0.9951885 +79 314.0775 317.955 1000 50 0.99999595 +80 317.955 321.8325 1000 50 0.98295087 +81 321.8325 325.71 1000 50 0.99993706 +82 325.71 329.5875 1000 50 0.99999523 +83 329.5875 333.465 1000 50 0.9929791 +84 333.465 337.3425 1000 50 0.99999964 +85 337.3425 341.21999999999997 1000 50 0.93360907 +86 341.22 345.0975 1000 50 0.99660444 +87 345.0975 348.975 1000 50 0.9322994 +88 352.8525 356.73 1000 50 0.9960961 +89 356.73 360.6075 1000 50 0.9963303 +90 360.6075 364.485 1000 50 0.6823771 +91 364.485 368.3625 1000 50 0.9999976 +92 368.3625 372.24 1000 50 0.89501923 +93 372.24 376.1175 1000 50 0.99987435 +94 376.1175 379.995 1000 50 0.98160756 +95 379.995 383.8725 1000 50 0.83302915 +96 383.8725 387.75 1000 50 0.99905473 +97 387.75 391.6275 1000 50 0.99991214 +98 391.6275 395.505 1000 50 0.99999976 +99 395.505 399.3825 1000 50 0.6137385 +100 403.26 407.1375 1000 50 0.87410724 +101 407.1375 411.015 1000 50 0.618965 +102 411.015 414.8925 1000 50 0.8291145 +103 414.8925 418.77 1000 50 0.8871956 +104 430.4025 434.28 1000 50 0.99880564 +105 434.28 438.15749999999997 1000 50 0.9198871 +106 438.1575 442.035 1000 50 0.690708 +107 442.035 445.9125 1000 50 0.9751355 +108 453.6675 457.545 1000 50 0.89476156 +109 469.1775 473.055 1000 50 0.9999627 +110 473.055 476.9325 1000 50 0.9998734 +111 476.9325 480.81 1000 50 0.9361172 +112 484.6875 488.565 1000 50 0.9874779 +113 488.565 492.4425 1000 50 0.96430326 +114 492.4425 496.32 1000 50 0.53716606 +115 496.32 500.1975 1000 50 0.7798821 +116 507.9525 511.83 1000 50 0.9673464 +117 519.585 523.4625000000001 1000 50 0.81219405 +118 527.34 531.2175000000001 1000 50 0.7607379 +119 546.7275 550.605 1000 50 0.99757 +120 550.605 554.4825000000001 1000 50 0.9338634 +121 554.4825 558.36 1000 50 0.98968303 +122 558.36 562.2375000000001 1000 50 0.99888784 +123 562.2375 566.115 1000 50 0.96735865 +124 566.115 569.9925000000001 1000 50 0.9998832 +125 569.9925 573.87 1000 50 0.99987316 +126 573.87 577.7475000000001 1000 50 0.9984256 +127 577.7475 581.625 1000 50 0.99808913 +128 585.5025 589.3800000000001 1000 50 1.0 +129 593.2575 597.1350000000001 1000 50 0.99999976 +130 597.135 601.0125 1000 50 0.9999664 +131 604.89 608.7675 1000 50 0.93280065 +132 608.7675 612.6450000000001 1000 50 0.83664846 +133 612.645 616.5225 1000 50 0.99982435 +134 616.5225 620.4000000000001 1000 50 0.6880692 +135 620.4 624.2775 1000 50 0.99753666 +136 624.2775 628.1550000000001 1000 50 0.9994555 +137 628.155 632.0325 1000 50 0.9998869 +138 632.0325 635.9100000000001 1000 50 0.83060795 +139 635.91 639.7875 1000 50 0.9998746 +140 639.7875 643.6650000000001 1000 50 0.99968123 +141 643.665 647.5425 1000 50 0.94268566 +142 647.5425 651.4200000000001 1000 50 0.9881022 +143 651.42 655.2975 1000 50 0.9999448 +144 655.2975 659.1750000000001 1000 50 0.99988115 +145 659.175 663.0525 1000 50 0.9914294 +146 663.0525 666.9300000000001 1000 50 1.0 +147 666.93 670.8075 1000 50 0.999995 +148 670.8075 674.6850000000001 1000 50 0.9966182 +149 674.685 678.5625 1000 50 0.99999917 +150 678.5625 682.44 1000 50 0.9999987 +151 682.44 686.3175000000001 1000 50 0.9999982 +152 686.3175 690.195 1000 50 0.9999999 +153 690.195 694.0725000000001 1000 50 0.9996991 +154 694.0725 697.95 1000 50 0.9999993 +155 697.95 701.8275000000001 1000 50 0.99997103 +156 701.8275 705.705 1000 50 0.9996861 +157 705.705 709.5825000000001 1000 50 0.9999995 +158 709.5825 713.46 1000 50 0.96659595 +159 713.46 717.3375000000001 1000 50 0.99999535 +160 717.3375 721.215 1000 50 0.999889 +161 721.215 725.0925000000001 1000 50 0.94339764 +162 725.0925 728.97 1000 50 1.0 +163 728.97 732.8475000000001 1000 50 0.9968262 +164 732.8475 736.725 1000 50 0.99999857 +165 736.725 740.6025000000001 1000 50 0.9999988 +166 740.6025 744.48 1000 50 0.9999392 +167 744.48 748.3575000000001 1000 50 0.99999523 +168 748.3575 752.235 1000 50 1.0 +169 752.235 756.1125000000001 1000 50 0.9970921 +170 756.1125 759.99 1000 50 1.0 +171 759.99 763.8675000000001 1000 50 0.9999827 +172 763.8675 767.745 1000 50 0.9986638 +173 767.745 771.6225000000001 1000 50 0.99999976 +174 771.6225 775.5 1000 50 0.99999917 +175 775.5 779.3775 1000 50 0.99996626 +176 779.3775 783.2550000000001 1000 50 0.99999774 +177 783.255 787.1325 1000 50 0.7574239 +178 787.1325 791.0100000000001 1000 50 0.9999014 +179 791.01 794.8875 1000 50 0.96159846 +180 794.8875 798.7650000000001 1000 50 0.99681205 +181 798.765 802.6425 1000 50 1.0 +182 802.6425 806.5200000000001 1000 50 0.99996006 +183 806.52 810.3975 1000 50 0.99999416 +184 810.3975 814.2750000000001 1000 50 0.99999964 +185 814.275 818.1525 1000 50 0.99178505 +186 818.1525 822.0300000000001 1000 50 0.99332327 +187 822.03 825.9075 1000 50 0.999992 +188 825.9075 829.7850000000001 1000 50 0.9973984 +189 829.785 833.6625 1000 50 0.99999964 +190 833.6625 837.5400000000001 1000 50 0.99974877 +191 837.54 841.4175 1000 50 0.99999964 +192 841.4175 845.2950000000001 1000 50 0.99985445 +193 845.295 849.1725 1000 50 0.7122828 +194 849.1725 853.0500000000001 1000 50 0.9997948 +195 856.9275 860.8050000000001 1000 50 0.9955146 +196 860.805 864.6825 1000 50 0.9816927 +197 864.6825 868.5600000000001 1000 50 0.77746475 +198 868.56 872.4375 1000 50 0.99761957 +199 872.4375 876.315 1000 50 0.7765997 +200 876.315 880.1925000000001 1000 50 0.9990721 +201 880.1925 884.07 1000 50 0.9980744 +202 884.07 887.9475000000001 1000 50 0.8282895 +203 887.9475 891.825 1000 50 0.97672015 +204 891.825 895.7025000000001 1000 50 0.9614254 +205 895.7025 899.58 1000 50 0.59186226 +206 899.58 903.4575000000001 1000 50 0.99941146 +207 907.335 911.2125000000001 1000 50 0.9941757 +208 911.2125 915.09 1000 50 0.684076 +209 918.9675 922.845 1000 50 0.832226 +210 922.845 926.7225000000001 1000 50 0.99997807 +211 926.7225 930.6 1000 50 0.8752528 +212 930.6 934.4775000000001 1000 50 0.65052354 +213 934.4775 938.355 1000 50 0.99966717 +214 938.355 942.2325000000001 1000 50 0.9966493 +215 942.2325 946.11 1000 50 0.99964964 +216 946.11 949.9875000000001 1000 50 0.9553081 +217 949.9875 953.865 1000 50 0.79596835 +218 953.865 957.7425000000001 1000 50 0.99648404 +219 957.7425 961.62 1000 50 0.9999999 +220 961.62 965.4975000000001 1000 50 0.76000357 +221 965.4975 969.375 1000 50 0.9721947 +222 969.375 973.2525 1000 50 0.98370326 +223 973.2525 977.1300000000001 1000 50 0.9925897 +224 977.13 981.0075 1000 50 0.8458308 +225 981.0075 984.8850000000001 1000 50 0.9976313 +226 984.885 988.7625 1000 50 0.9976478 +227 988.7625 992.6400000000001 1000 50 0.97493386 +228 992.64 996.5175 1000 50 0.99993026 +229 996.5175 1000.3950000000001 1000 50 0.9999999 +230 1000.395 1004.2725 1000 50 0.9861725 +231 1004.2725 1008.1500000000001 1000 50 0.9995797 +232 1008.15 1012.0275 1000 50 0.73445 +233 1012.0275 1015.9050000000001 1000 50 0.9970619 +234 1015.905 1019.7825 1000 50 0.98467886 +235 1019.7825 1023.6600000000001 1000 50 0.9999341 +236 1023.66 1027.5375 1000 50 0.8788797 +237 1043.0475 1046.925 1000 50 0.97896534 +238 1054.68 1058.5575000000001 1000 50 0.8707137 +239 1062.435 1066.3125 1000 50 0.5931914 +240 1074.0675 1077.9450000000002 1000 50 0.6173133 +241 1077.945 1081.8225 1000 50 0.9736467 +242 1085.7 1089.5775 1000 50 0.9583133 +243 1089.5775 1093.4550000000002 1000 50 0.99937916 +244 1093.455 1097.3325 1000 50 0.9507696 +245 1097.3325 1101.21 1000 50 0.536372 +246 1112.8425 1116.72 1000 50 0.54870623 +247 1116.72 1120.5975 1000 50 0.6860175 +248 1120.5975 1124.4750000000001 1000 50 0.90315604 +249 1128.3525 1132.23 1000 50 0.7215969 +250 1139.985 1143.8625 1000 50 0.9774309 +251 1147.74 1151.6175 1000 50 0.8691325 +252 1151.6175 1155.4950000000001 1000 50 0.7124802 +253 1163.25 1167.1275 1000 50 0.9963617 +254 1167.1275 1171.005 1000 50 0.99614966 +255 1171.005 1174.8825000000002 1000 50 0.8331063 +256 1174.8825 1178.76 1000 50 0.7158871 +257 1178.76 1182.6375 1000 50 0.9999689 +258 1182.6375 1186.515 1000 50 0.5155265 +259 1186.515 1190.3925000000002 1000 50 0.98609376 +260 1190.3925 1194.27 1000 50 0.97683585 +261 1194.27 1198.1475 1000 50 0.8674211 +262 1202.025 1205.9025000000001 1000 50 0.73331755 +263 1213.6575 1217.535 1000 50 0.9619243 +264 1225.29 1229.1675 1000 50 0.99823296 +265 1229.1675 1233.045 1000 50 0.9855538 +266 1233.045 1236.9225000000001 1000 50 0.9509592 +267 1236.9225 1240.8 1000 50 0.9994136 +268 1240.8 1244.6775 1000 50 0.8511329 +269 1244.6775 1248.555 1000 50 0.9997712 +270 1248.555 1252.4325000000001 1000 50 0.96640277 +271 1252.4325 1256.31 1000 50 0.8342805 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_00-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_00-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5672d7a022349d44501c51c975d4f35f6fecc829 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_00-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,78 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.98020786 +2 7.755 11.6325 1000 50 0.9975138 +3 15.51 19.3875 1000 50 0.99927944 +4 19.3875 23.265 1000 50 0.9873784 +5 23.265 27.142500000000002 1000 50 0.67537194 +6 27.1425 31.02 1000 50 0.5743176 +7 31.02 34.8975 1000 50 0.9815099 +8 34.8975 38.775 1000 50 0.9991571 +9 38.775 42.652499999999996 1000 50 0.96211714 +10 42.6525 46.53 1000 50 0.9921042 +11 46.53 50.4075 1000 50 0.99852544 +12 50.4075 54.285 1000 50 0.9996815 +13 54.285 58.162499999999994 1000 50 0.99988973 +14 58.1625 62.04 1000 50 0.99956626 +15 62.04 65.9175 1000 50 0.99953353 +16 65.9175 69.795 1000 50 0.9999168 +17 69.795 73.6725 1000 50 0.887624 +18 73.6725 77.55 1000 50 0.9995871 +19 77.55 81.4275 1000 50 0.9999989 +20 81.4275 85.30499999999999 1000 50 0.9938285 +21 85.305 89.1825 1000 50 0.99988437 +22 89.1825 93.06 1000 50 0.99969065 +23 93.06 96.9375 1000 50 0.99995744 +24 96.9375 100.815 1000 50 0.58749753 +25 100.815 104.6925 1000 50 0.9995433 +26 104.6925 108.57 1000 50 0.99957114 +27 108.57 112.44749999999999 1000 50 0.9999081 +28 116.325 120.2025 1000 50 0.9998547 +29 120.2025 124.08 1000 50 0.99040365 +30 124.08 127.9575 1000 50 0.9999995 +31 127.9575 131.835 1000 50 0.99932003 +32 131.835 135.7125 1000 50 0.99459875 +33 135.7125 139.59 1000 50 0.99944836 +34 139.59 143.4675 1000 50 0.83377665 +35 143.4675 147.345 1000 50 0.99175537 +36 147.345 151.2225 1000 50 0.99999976 +37 151.2225 155.1 1000 50 0.73554236 +38 155.1 158.9775 1000 50 0.9970222 +39 158.9775 162.855 1000 50 0.95048857 +40 162.855 166.7325 1000 50 0.9948544 +41 166.7325 170.60999999999999 1000 50 0.95112556 +42 170.61 174.4875 1000 50 0.9984875 +43 174.4875 178.365 1000 50 0.99532264 +44 178.365 182.2425 1000 50 0.99945647 +45 186.12 189.9975 1000 50 0.997649 +46 189.9975 193.875 1000 50 0.99999547 +47 193.875 197.7525 1000 50 0.82061017 +48 197.7525 201.63 1000 50 0.6930843 +49 201.63 205.5075 1000 50 0.9589942 +50 205.5075 209.385 1000 50 0.98345387 +51 209.385 213.2625 1000 50 0.9922341 +52 213.2625 217.14 1000 50 0.88501227 +53 217.14 221.01749999999998 1000 50 0.9990163 +54 221.0175 224.895 1000 50 0.8983342 +55 224.895 228.7725 1000 50 0.79584074 +56 228.7725 232.65 1000 50 0.6334057 +57 232.65 236.5275 1000 50 0.99970776 +58 236.5275 240.405 1000 50 0.99985325 +59 244.2825 248.16 1000 50 0.99936265 +60 248.16 252.0375 1000 50 0.91107756 +61 252.0375 255.915 1000 50 0.99894184 +62 255.915 259.7925 1000 50 0.99855644 +63 259.7925 263.67 1000 50 0.9999833 +64 263.67 267.5475 1000 50 0.9709947 +65 267.5475 271.425 1000 50 0.89075595 +66 271.425 275.3025 1000 50 0.97882515 +67 275.3025 279.18 1000 50 0.9999989 +68 279.18 283.0575 1000 50 0.9999554 +69 283.0575 286.935 1000 50 0.9125278 +70 286.935 290.8125 1000 50 0.99999356 +71 290.8125 294.69 1000 50 0.9997881 +72 294.69 298.5675 1000 50 0.99395317 +73 298.5675 302.445 1000 50 0.9999685 +74 302.445 306.3225 1000 50 0.9999988 +75 306.3225 310.2 1000 50 0.9989255 +76 310.2 314.0775 1000 50 0.9997547 +77 314.0775 317.955 1000 50 0.9998852 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_00-08-56_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_00-08-56_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..c64828b353e42f82a557ec06e5c99efdea86568e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_00-08-56_annot_2022-11-30_01.txt @@ -0,0 +1,235 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999211 +2 3.8775 7.755 1000 50 0.9973304 +3 7.755 11.6325 1000 50 0.74516255 +4 11.6325 15.51 1000 50 0.9996567 +5 15.51 19.3875 1000 50 0.8148081 +6 19.3875 23.265 1000 50 0.99327165 +7 23.265 27.142500000000002 1000 50 0.9439708 +8 27.1425 31.02 1000 50 0.9999176 +9 31.02 34.8975 1000 50 0.9999192 +10 34.8975 38.775 1000 50 0.99999976 +11 38.775 42.652499999999996 1000 50 0.99999976 +12 42.6525 46.53 1000 50 0.99973196 +13 46.53 50.4075 1000 50 0.9936702 +14 50.4075 54.285 1000 50 0.9768237 +15 54.285 58.162499999999994 1000 50 0.99721473 +16 58.1625 62.04 1000 50 0.9999876 +17 62.04 65.9175 1000 50 0.9999949 +18 65.9175 69.795 1000 50 0.9999999 +19 69.795 73.6725 1000 50 0.99799037 +20 73.6725 77.55 1000 50 0.99993145 +21 77.55 81.4275 1000 50 0.9999999 +22 81.4275 85.30499999999999 1000 50 0.99999475 +23 85.305 89.1825 1000 50 0.9999621 +24 89.1825 93.06 1000 50 0.99984384 +25 96.9375 100.815 1000 50 0.9995277 +26 100.815 104.6925 1000 50 0.9999895 +27 104.6925 108.57 1000 50 0.99976045 +28 108.57 112.44749999999999 1000 50 0.9989139 +29 112.4475 116.325 1000 50 0.9999988 +30 116.325 120.2025 1000 50 0.61516666 +31 120.2025 124.08 1000 50 0.9999821 +32 124.08 127.9575 1000 50 0.99996424 +33 127.9575 131.835 1000 50 0.9973693 +34 131.835 135.7125 1000 50 0.9844769 +35 139.59 143.4675 1000 50 0.97170717 +36 143.4675 147.345 1000 50 0.94470114 +37 147.345 151.2225 1000 50 0.996917 +38 151.2225 155.1 1000 50 0.83833396 +39 158.9775 162.855 1000 50 0.9434156 +40 162.855 166.7325 1000 50 0.9984384 +41 170.61 174.4875 1000 50 0.93765044 +42 174.4875 178.365 1000 50 0.9973086 +43 178.365 182.2425 1000 50 0.954347 +44 182.2425 186.12 1000 50 0.9998512 +45 186.12 189.9975 1000 50 0.99888736 +46 189.9975 193.875 1000 50 0.886774 +47 193.875 197.7525 1000 50 0.99625933 +48 197.7525 201.63 1000 50 0.99895203 +49 201.63 205.5075 1000 50 0.9165294 +50 205.5075 209.385 1000 50 0.94965047 +51 209.385 213.2625 1000 50 0.9473798 +52 213.2625 217.14 1000 50 0.99771535 +53 217.14 221.01749999999998 1000 50 0.69422835 +54 224.895 228.7725 1000 50 0.63511896 +55 228.7725 232.65 1000 50 0.99398637 +56 232.65 236.5275 1000 50 0.9999995 +57 236.5275 240.405 1000 50 0.99881077 +58 244.2825 248.16 1000 50 0.9962064 +59 248.16 252.0375 1000 50 0.9663648 +60 252.0375 255.915 1000 50 0.9960724 +61 255.915 259.7925 1000 50 0.99942136 +62 267.5475 271.425 1000 50 0.9619793 +63 271.425 275.3025 1000 50 0.7983101 +64 275.3025 279.18 1000 50 0.5381154 +65 279.18 283.0575 1000 50 0.94253284 +66 283.0575 286.935 1000 50 0.95571536 +67 286.935 290.8125 1000 50 0.9977715 +68 290.8125 294.69 1000 50 0.8327311 +69 298.5675 302.445 1000 50 0.97350615 +70 302.445 306.3225 1000 50 0.9956866 +71 306.3225 310.2 1000 50 0.5485068 +72 310.2 314.0775 1000 50 0.99996984 +73 314.0775 317.955 1000 50 0.99997747 +74 317.955 321.8325 1000 50 0.9797204 +75 321.8325 325.71 1000 50 0.99954814 +76 325.71 329.5875 1000 50 0.9999443 +77 329.5875 333.465 1000 50 0.9999553 +78 333.465 337.3425 1000 50 0.99994016 +79 337.3425 341.21999999999997 1000 50 0.99912745 +80 341.22 345.0975 1000 50 0.9999901 +81 345.0975 348.975 1000 50 0.99992394 +82 348.975 352.8525 1000 50 0.99884474 +83 352.8525 356.73 1000 50 0.9999753 +84 356.73 360.6075 1000 50 0.9999559 +85 360.6075 364.485 1000 50 0.99933064 +86 364.485 368.3625 1000 50 0.9995098 +87 368.3625 372.24 1000 50 0.8481367 +88 372.24 376.1175 1000 50 0.9998714 +89 376.1175 379.995 1000 50 0.81047505 +90 379.995 383.8725 1000 50 0.9997317 +91 383.8725 387.75 1000 50 0.99867094 +92 387.75 391.6275 1000 50 0.9888054 +93 391.6275 395.505 1000 50 0.9931993 +94 395.505 399.3825 1000 50 0.99990284 +95 399.3825 403.26 1000 50 0.9727727 +96 403.26 407.1375 1000 50 0.9996971 +97 407.1375 411.015 1000 50 0.98718864 +98 411.015 414.8925 1000 50 0.99990785 +99 414.8925 418.77 1000 50 0.99913305 +100 418.77 422.6475 1000 50 0.99954295 +101 422.6475 426.525 1000 50 0.99960274 +102 426.525 430.4025 1000 50 0.8183809 +103 430.4025 434.28 1000 50 0.9761603 +104 438.1575 442.035 1000 50 0.92482096 +105 442.035 445.9125 1000 50 0.9999988 +106 445.9125 449.79 1000 50 0.6620139 +107 449.79 453.6675 1000 50 0.99449736 +108 453.6675 457.545 1000 50 0.9930327 +109 457.545 461.4225 1000 50 0.999752 +110 461.4225 465.3 1000 50 0.9971445 +111 465.3 469.1775 1000 50 0.9962121 +112 469.1775 473.055 1000 50 0.9976878 +113 473.055 476.9325 1000 50 0.8577628 +114 476.9325 480.81 1000 50 0.9936173 +115 480.81 484.6875 1000 50 0.9999988 +116 484.6875 488.565 1000 50 0.9977197 +117 488.565 492.4425 1000 50 0.992757 +118 492.4425 496.32 1000 50 0.9883029 +119 500.1975 504.075 1000 50 0.9999957 +120 504.075 507.9525 1000 50 0.92060983 +121 507.9525 511.83 1000 50 0.9933528 +122 511.83 515.7075 1000 50 0.9999348 +123 515.7075 519.585 1000 50 0.99998367 +124 519.585 523.4625000000001 1000 50 0.9999995 +125 523.4625 527.34 1000 50 0.99792886 +126 527.34 531.2175000000001 1000 50 0.999814 +127 531.2175 535.095 1000 50 0.993298 +128 535.095 538.9725000000001 1000 50 0.9989785 +129 538.9725 542.85 1000 50 0.9645296 +130 542.85 546.7275000000001 1000 50 0.99668616 +131 546.7275 550.605 1000 50 0.677917 +132 550.605 554.4825000000001 1000 50 0.5505817 +133 554.4825 558.36 1000 50 0.9996604 +134 558.36 562.2375000000001 1000 50 0.99595034 +135 562.2375 566.115 1000 50 0.9999995 +136 566.115 569.9925000000001 1000 50 0.9954057 +137 569.9925 573.87 1000 50 0.9999999 +138 577.7475 581.625 1000 50 0.9996884 +139 581.625 585.5025 1000 50 0.9900926 +140 585.5025 589.3800000000001 1000 50 0.9764691 +141 589.38 593.2575 1000 50 0.99964523 +142 593.2575 597.1350000000001 1000 50 0.92934316 +143 597.135 601.0125 1000 50 0.99977344 +144 601.0125 604.8900000000001 1000 50 0.95800567 +145 604.89 608.7675 1000 50 0.9946291 +146 608.7675 612.6450000000001 1000 50 0.85046065 +147 612.645 616.5225 1000 50 0.9997073 +148 616.5225 620.4000000000001 1000 50 0.9998338 +149 624.2775 628.1550000000001 1000 50 0.9997323 +150 628.155 632.0325 1000 50 0.99997985 +151 632.0325 635.9100000000001 1000 50 0.9792246 +152 635.91 639.7875 1000 50 0.9981 +153 639.7875 643.6650000000001 1000 50 0.67465186 +154 643.665 647.5425 1000 50 0.9686798 +155 655.2975 659.1750000000001 1000 50 0.98733264 +156 659.175 663.0525 1000 50 0.9975067 +157 663.0525 666.9300000000001 1000 50 0.8976887 +158 666.93 670.8075 1000 50 0.9880867 +159 670.8075 674.6850000000001 1000 50 0.9979462 +160 674.685 678.5625 1000 50 0.9574017 +161 678.5625 682.44 1000 50 0.8861502 +162 682.44 686.3175000000001 1000 50 0.99932563 +163 686.3175 690.195 1000 50 0.9051561 +164 690.195 694.0725000000001 1000 50 0.9998703 +165 694.0725 697.95 1000 50 0.9930755 +166 697.95 701.8275000000001 1000 50 0.64874274 +167 701.8275 705.705 1000 50 0.98424906 +168 705.705 709.5825000000001 1000 50 0.9999734 +169 713.46 717.3375000000001 1000 50 0.89046484 +170 717.3375 721.215 1000 50 0.99634844 +171 721.215 725.0925000000001 1000 50 0.96116257 +172 725.0925 728.97 1000 50 0.9854445 +173 728.97 732.8475000000001 1000 50 0.98585814 +174 732.8475 736.725 1000 50 0.9203937 +175 736.725 740.6025000000001 1000 50 0.99737847 +176 740.6025 744.48 1000 50 0.9997472 +177 744.48 748.3575000000001 1000 50 0.999617 +178 748.3575 752.235 1000 50 0.99495655 +179 752.235 756.1125000000001 1000 50 0.99998665 +180 756.1125 759.99 1000 50 0.98240733 +181 759.99 763.8675000000001 1000 50 0.9811478 +182 763.8675 767.745 1000 50 0.99882025 +183 767.745 771.6225000000001 1000 50 0.9944601 +184 771.6225 775.5 1000 50 0.93261737 +185 775.5 779.3775 1000 50 0.9930749 +186 779.3775 783.2550000000001 1000 50 0.9999894 +187 783.255 787.1325 1000 50 0.9999515 +188 787.1325 791.0100000000001 1000 50 0.7131455 +189 791.01 794.8875 1000 50 0.9849449 +190 794.8875 798.7650000000001 1000 50 0.95018965 +191 798.765 802.6425 1000 50 0.99793494 +192 802.6425 806.5200000000001 1000 50 0.99837565 +193 806.52 810.3975 1000 50 0.95381194 +194 810.3975 814.2750000000001 1000 50 0.99994457 +195 814.275 818.1525 1000 50 0.6953383 +196 818.1525 822.0300000000001 1000 50 0.9990258 +197 822.03 825.9075 1000 50 0.99917054 +198 825.9075 829.7850000000001 1000 50 0.9999021 +199 829.785 833.6625 1000 50 0.9999528 +200 833.6625 837.5400000000001 1000 50 0.99988747 +201 837.54 841.4175 1000 50 0.9997801 +202 841.4175 845.2950000000001 1000 50 0.9999995 +203 845.295 849.1725 1000 50 0.9999939 +204 849.1725 853.0500000000001 1000 50 0.9995832 +205 853.05 856.9275 1000 50 0.99936897 +206 856.9275 860.8050000000001 1000 50 0.99990284 +207 860.805 864.6825 1000 50 0.95639867 +208 864.6825 868.5600000000001 1000 50 0.9999999 +209 868.56 872.4375 1000 50 0.9993063 +210 872.4375 876.315 1000 50 0.9455236 +211 876.315 880.1925000000001 1000 50 0.9999163 +212 880.1925 884.07 1000 50 0.99992204 +213 884.07 887.9475000000001 1000 50 0.9986498 +214 887.9475 891.825 1000 50 0.9988349 +215 891.825 895.7025000000001 1000 50 0.99851876 +216 895.7025 899.58 1000 50 0.8683203 +217 899.58 903.4575000000001 1000 50 0.9999794 +218 903.4575 907.335 1000 50 0.99988794 +219 907.335 911.2125000000001 1000 50 0.9996146 +220 911.2125 915.09 1000 50 0.9515159 +221 915.09 918.9675000000001 1000 50 0.9998915 +222 918.9675 922.845 1000 50 0.9999975 +223 922.845 926.7225000000001 1000 50 0.8571979 +224 926.7225 930.6 1000 50 0.9999968 +225 930.6 934.4775000000001 1000 50 0.9999999 +226 934.4775 938.355 1000 50 0.9999857 +227 938.355 942.2325000000001 1000 50 0.9999665 +228 942.2325 946.11 1000 50 0.9999454 +229 946.11 949.9875000000001 1000 50 0.99274325 +230 949.9875 953.865 1000 50 0.9999813 +231 953.865 957.7425000000001 1000 50 0.9971871 +232 957.7425 961.62 1000 50 0.80266994 +233 961.62 965.4975000000001 1000 50 0.6613521 +234 965.4975 969.375 1000 50 0.9999856 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_01-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_01-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..7631f192f3b50cb2eba08e40b82e52a3d38fba2a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_01-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,293 @@ +Selection View Channel Begin Time (s) End Time (s) Low Freq (Hz) High Freq (Hz) Delta Time (s) Delta Freq (Hz) Avg Power Density (dB FS/Hz) Prediction/Comments +24 Waveform 1 1 135.712500000 139.590000000 50.000 1000.000 3.8775 950.000 0.5501463 +24 Spectrogram 1 1 135.712500000 139.590000000 50.000 1000.000 3.8775 950.000 -82.40 0.5501463 +29 Waveform 1 1 162.855000000 166.732500000 50.000 1000.000 3.8775 950.000 0.7143319 +29 Spectrogram 1 1 162.855000000 166.732500000 50.000 1000.000 3.8775 950.000 -83.17 0.7143319 +118 Waveform 1 1 527.340000000 531.217500000 50.000 1000.000 3.8775 950.000 0.7380849 +118 Spectrogram 1 1 527.340000000 531.217500000 50.000 1000.000 3.8775 950.000 -81.57 0.7380849 +119 Waveform 1 1 531.217500000 535.095000000 50.000 1000.000 3.8775 950.000 0.74723977 +119 Spectrogram 1 1 531.217500000 535.095000000 50.000 1000.000 3.8775 950.000 -81.99 0.74723977 +5 Waveform 1 1 31.020000000 34.897500000 50.000 1000.000 3.8775 950.000 0.7772404 +5 Spectrogram 1 1 31.020000000 34.897500000 50.000 1000.000 3.8775 950.000 -83.39 0.7772404 +26 Waveform 1 1 143.467500000 147.345000000 50.000 1000.000 3.8775 950.000 0.8334175 +26 Spectrogram 1 1 143.467500000 147.345000000 50.000 1000.000 3.8775 950.000 -83.24 0.8334175 +12 Waveform 1 1 62.040000000 65.917500000 50.000 1000.000 3.8775 950.000 0.8419043 +12 Spectrogram 1 1 62.040000000 65.917500000 50.000 1000.000 3.8775 950.000 -83.66 0.8419043 +16 Waveform 1 1 81.427500000 85.305000000 50.000 1000.000 3.8775 950.000 0.8458782 +16 Spectrogram 1 1 81.427500000 85.305000000 50.000 1000.000 3.8775 950.000 -83.27 0.8458782 +28 Waveform 1 1 158.977500000 162.855000000 50.000 1000.000 3.8775 950.000 0.90267867 +28 Spectrogram 1 1 158.977500000 162.855000000 50.000 1000.000 3.8775 950.000 -83.37 0.90267867 +4 Waveform 1 1 23.265000000 27.142500000 50.000 1000.000 3.8775 950.000 0.9294554 +4 Spectrogram 1 1 23.265000000 27.142500000 50.000 1000.000 3.8775 950.000 -83.05 0.9294554 +21 Waveform 1 1 108.570000000 112.447500000 50.000 1000.000 3.8775 950.000 0.95705336 +21 Spectrogram 1 1 108.570000000 112.447500000 50.000 1000.000 3.8775 950.000 -83.58 0.95705336 +121 Waveform 1 1 538.972500000 542.850000000 50.000 1000.000 3.8775 950.000 0.9590567 +121 Spectrogram 1 1 538.972500000 542.850000000 50.000 1000.000 3.8775 950.000 -80.44 0.9590567 +77 Waveform 1 1 368.362500000 372.240000000 50.000 1000.000 3.8775 950.000 0.96981364 +77 Spectrogram 1 1 368.362500000 372.240000000 50.000 1000.000 3.8775 950.000 -81.08 0.96981364 +50 Waveform 1 1 263.670000000 267.547500000 50.000 1000.000 3.8775 950.000 0.9701806 +50 Spectrogram 1 1 263.670000000 267.547500000 50.000 1000.000 3.8775 950.000 -81.15 0.9701806 +27 Waveform 1 1 147.345000000 151.222500000 50.000 1000.000 3.8775 950.000 0.97172856 +27 Spectrogram 1 1 147.345000000 151.222500000 50.000 1000.000 3.8775 950.000 -83.83 0.97172856 +32 Waveform 1 1 182.242500000 186.120000000 50.000 1000.000 3.8775 950.000 0.9721291 +32 Spectrogram 1 1 182.242500000 186.120000000 50.000 1000.000 3.8775 950.000 -82.74 0.9721291 +132 Waveform 1 1 581.625000000 585.502500000 50.000 1000.000 3.8775 950.000 0.97547525 +132 Spectrogram 1 1 581.625000000 585.502500000 50.000 1000.000 3.8775 950.000 -80.41 0.97547525 +23 Waveform 1 1 127.957500000 131.835000000 50.000 1000.000 3.8775 950.000 0.9766872 +23 Spectrogram 1 1 127.957500000 131.835000000 50.000 1000.000 3.8775 950.000 -83.07 0.9766872 +78 Waveform 1 1 372.240000000 376.117500000 50.000 1000.000 3.8775 950.000 0.97725326 +78 Spectrogram 1 1 372.240000000 376.117500000 50.000 1000.000 3.8775 950.000 -80.76 0.97725326 +129 Waveform 1 1 569.992500000 573.870000000 50.000 1000.000 3.8775 950.000 0.9781684 +129 Spectrogram 1 1 569.992500000 573.870000000 50.000 1000.000 3.8775 950.000 -80.17 0.9781684 +3 Waveform 1 1 15.510000000 19.387500000 50.000 1000.000 3.8775 950.000 0.9809868 +3 Spectrogram 1 1 15.510000000 19.387500000 50.000 1000.000 3.8775 950.000 -81.55 0.9809868 +40 Waveform 1 1 224.895000000 228.772500000 50.000 1000.000 3.8775 950.000 0.98175216 +40 Spectrogram 1 1 224.895000000 228.772500000 50.000 1000.000 3.8775 950.000 -82.65 0.98175216 +48 Waveform 1 1 255.915000000 259.792500000 50.000 1000.000 3.8775 950.000 0.9823216 +48 Spectrogram 1 1 255.915000000 259.792500000 50.000 1000.000 3.8775 950.000 -81.44 0.9823216 +35 Waveform 1 1 205.507500000 209.385000000 50.000 1000.000 3.8775 950.000 0.9835142 +35 Spectrogram 1 1 205.507500000 209.385000000 50.000 1000.000 3.8775 950.000 -82.54 0.9835142 +87 Waveform 1 1 407.137500000 411.015000000 50.000 1000.000 3.8775 950.000 0.98586607 +87 Spectrogram 1 1 407.137500000 411.015000000 50.000 1000.000 3.8775 950.000 -79.89 0.98586607 +7 Waveform 1 1 38.775000000 42.652500000 50.000 1000.000 3.8775 950.000 0.98612344 +7 Spectrogram 1 1 38.775000000 42.652500000 50.000 1000.000 3.8775 950.000 -82.98 0.98612344 +86 Waveform 1 1 403.260000000 407.137500000 50.000 1000.000 3.8775 950.000 0.98731637 +86 Spectrogram 1 1 403.260000000 407.137500000 50.000 1000.000 3.8775 950.000 -80.66 0.98731637 +31 Waveform 1 1 178.365000000 182.242500000 50.000 1000.000 3.8775 950.000 0.98734915 +31 Spectrogram 1 1 178.365000000 182.242500000 50.000 1000.000 3.8775 950.000 -83.29 0.98734915 +59 Waveform 1 1 298.567500000 302.445000000 50.000 1000.000 3.8775 950.000 0.98808205 +59 Spectrogram 1 1 298.567500000 302.445000000 50.000 1000.000 3.8775 950.000 -80.33 0.98808205 +144 Waveform 1 1 628.155000000 632.032500000 50.000 1000.000 3.8775 950.000 0.98827153 +144 Spectrogram 1 1 628.155000000 632.032500000 50.000 1000.000 3.8775 950.000 -78.85 0.98827153 +10 Waveform 1 1 54.285000000 58.162500000 50.000 1000.000 3.8775 950.000 0.99047476 +10 Spectrogram 1 1 54.285000000 58.162500000 50.000 1000.000 3.8775 950.000 -81.67 0.99047476 +142 Waveform 1 1 620.400000000 624.277500000 50.000 1000.000 3.8775 950.000 0.9940118 +142 Spectrogram 1 1 620.400000000 624.277500000 50.000 1000.000 3.8775 950.000 -80.56 0.9940118 +135 Waveform 1 1 593.257500000 597.135000000 50.000 1000.000 3.8775 950.000 0.9945682 +135 Spectrogram 1 1 593.257500000 597.135000000 50.000 1000.000 3.8775 950.000 -78.67 0.9945682 +145 Waveform 1 1 632.032500000 635.910000000 50.000 1000.000 3.8775 950.000 0.99461704 +145 Spectrogram 1 1 632.032500000 635.910000000 50.000 1000.000 3.8775 950.000 -80.45 0.99461704 +136 Waveform 1 1 597.135000000 601.012500000 50.000 1000.000 3.8775 950.000 0.996181 +136 Spectrogram 1 1 597.135000000 601.012500000 50.000 1000.000 3.8775 950.000 -80.69 0.996181 +123 Waveform 1 1 546.727500000 550.605000000 50.000 1000.000 3.8775 950.000 0.99687517 +123 Spectrogram 1 1 546.727500000 550.605000000 50.000 1000.000 3.8775 950.000 -80.68 0.99687517 +41 Waveform 1 1 228.772500000 232.650000000 50.000 1000.000 3.8775 950.000 0.9975319 +41 Spectrogram 1 1 228.772500000 232.650000000 50.000 1000.000 3.8775 950.000 -81.69 0.9975319 +1 Waveform 1 1 3.877500000 7.755000000 50.000 1000.000 3.8775 950.000 0.99774736 +1 Spectrogram 1 1 3.877500000 7.755000000 50.000 1000.000 3.8775 950.000 -81.37 0.99774736 +141 Waveform 1 1 616.522500000 620.400000000 50.000 1000.000 3.8775 950.000 0.99788934 +141 Spectrogram 1 1 616.522500000 620.400000000 50.000 1000.000 3.8775 950.000 -79.26 0.99788934 +51 Waveform 1 1 267.547500000 271.425000000 50.000 1000.000 3.8775 950.000 0.99821776 +51 Spectrogram 1 1 267.547500000 271.425000000 50.000 1000.000 3.8775 950.000 -81.65 0.99821776 +36 Waveform 1 1 209.385000000 213.262500000 50.000 1000.000 3.8775 950.000 0.9985146 +36 Spectrogram 1 1 209.385000000 213.262500000 50.000 1000.000 3.8775 950.000 -82.61 0.9985146 +69 Waveform 1 1 337.342500000 341.220000000 50.000 1000.000 3.8775 950.000 0.99853814 +69 Spectrogram 1 1 337.342500000 341.220000000 50.000 1000.000 3.8775 950.000 -80.94 0.99853814 +90 Waveform 1 1 418.770000000 422.647500000 50.000 1000.000 3.8775 950.000 0.99855787 +90 Spectrogram 1 1 418.770000000 422.647500000 50.000 1000.000 3.8775 950.000 -81.53 0.99855787 +6 Waveform 1 1 34.897500000 38.775000000 50.000 1000.000 3.8775 950.000 0.9985923 +6 Spectrogram 1 1 34.897500000 38.775000000 50.000 1000.000 3.8775 950.000 -82.59 0.9985923 +143 Waveform 1 1 624.277500000 628.155000000 50.000 1000.000 3.8775 950.000 0.99861693 +143 Spectrogram 1 1 624.277500000 628.155000000 50.000 1000.000 3.8775 950.000 -80.91 0.99861693 +60 Waveform 1 1 302.445000000 306.322500000 50.000 1000.000 3.8775 950.000 0.9987576 +60 Spectrogram 1 1 302.445000000 306.322500000 50.000 1000.000 3.8775 950.000 -80.47 0.9987576 +95 Waveform 1 1 438.157500000 442.035000000 50.000 1000.000 3.8775 950.000 0.99876106 +95 Spectrogram 1 1 438.157500000 442.035000000 50.000 1000.000 3.8775 950.000 -79.14 0.99876106 +25 Waveform 1 1 139.590000000 143.467500000 50.000 1000.000 3.8775 950.000 0.9987676 +25 Spectrogram 1 1 139.590000000 143.467500000 50.000 1000.000 3.8775 950.000 -82.86 0.9987676 +13 Waveform 1 1 65.917500000 69.795000000 50.000 1000.000 3.8775 950.000 0.9987684 +13 Spectrogram 1 1 65.917500000 69.795000000 50.000 1000.000 3.8775 950.000 -82.52 0.9987684 +2 Waveform 1 1 11.632500000 15.510000000 50.000 1000.000 3.8775 950.000 0.9987772 +2 Spectrogram 1 1 11.632500000 15.510000000 50.000 1000.000 3.8775 950.000 -83.33 0.9987772 +14 Waveform 1 1 73.672500000 77.550000000 50.000 1000.000 3.8775 950.000 0.9987816 +14 Spectrogram 1 1 73.672500000 77.550000000 50.000 1000.000 3.8775 950.000 -83.43 0.9987816 +42 Waveform 1 1 232.650000000 236.527500000 50.000 1000.000 3.8775 950.000 0.99886334 +42 Spectrogram 1 1 232.650000000 236.527500000 50.000 1000.000 3.8775 950.000 -81.96 0.99886334 +100 Waveform 1 1 457.545000000 461.422500000 50.000 1000.000 3.8775 950.000 0.9989122 +100 Spectrogram 1 1 457.545000000 461.422500000 50.000 1000.000 3.8775 950.000 -78.46 0.9989122 +122 Waveform 1 1 542.850000000 546.727500000 50.000 1000.000 3.8775 950.000 0.9991947 +122 Spectrogram 1 1 542.850000000 546.727500000 50.000 1000.000 3.8775 950.000 -79.76 0.9991947 +57 Waveform 1 1 290.812500000 294.690000000 50.000 1000.000 3.8775 950.000 0.99922335 +57 Spectrogram 1 1 290.812500000 294.690000000 50.000 1000.000 3.8775 950.000 -82.80 0.99922335 +17 Waveform 1 1 85.305000000 89.182500000 50.000 1000.000 3.8775 950.000 0.9992481 +17 Spectrogram 1 1 85.305000000 89.182500000 50.000 1000.000 3.8775 950.000 -81.76 0.9992481 +30 Waveform 1 1 174.487500000 178.365000000 50.000 1000.000 3.8775 950.000 0.99925524 +30 Spectrogram 1 1 174.487500000 178.365000000 50.000 1000.000 3.8775 950.000 -82.97 0.99925524 +45 Waveform 1 1 244.282500000 248.160000000 50.000 1000.000 3.8775 950.000 0.9992668 +45 Spectrogram 1 1 244.282500000 248.160000000 50.000 1000.000 3.8775 950.000 -81.53 0.9992668 +8 Waveform 1 1 42.652500000 46.530000000 50.000 1000.000 3.8775 950.000 0.99928916 +8 Spectrogram 1 1 42.652500000 46.530000000 50.000 1000.000 3.8775 950.000 -82.08 0.99928916 +83 Waveform 1 1 391.627500000 395.505000000 50.000 1000.000 3.8775 950.000 0.9993716 +83 Spectrogram 1 1 391.627500000 395.505000000 50.000 1000.000 3.8775 950.000 -80.57 0.9993716 +47 Waveform 1 1 252.037500000 255.915000000 50.000 1000.000 3.8775 950.000 0.99938333 +47 Spectrogram 1 1 252.037500000 255.915000000 50.000 1000.000 3.8775 950.000 -79.60 0.99938333 +44 Waveform 1 1 240.405000000 244.282500000 50.000 1000.000 3.8775 950.000 0.9993926 +44 Spectrogram 1 1 240.405000000 244.282500000 50.000 1000.000 3.8775 950.000 -81.82 0.9993926 +96 Waveform 1 1 442.035000000 445.912500000 50.000 1000.000 3.8775 950.000 0.99942625 +96 Spectrogram 1 1 442.035000000 445.912500000 50.000 1000.000 3.8775 950.000 -80.65 0.99942625 +65 Waveform 1 1 321.832500000 325.710000000 50.000 1000.000 3.8775 950.000 0.9994373 +65 Spectrogram 1 1 321.832500000 325.710000000 50.000 1000.000 3.8775 950.000 -77.94 0.9994373 +115 Waveform 1 1 515.707500000 519.585000000 50.000 1000.000 3.8775 950.000 0.99944156 +115 Spectrogram 1 1 515.707500000 519.585000000 50.000 1000.000 3.8775 950.000 -80.77 0.99944156 +56 Waveform 1 1 286.935000000 290.812500000 50.000 1000.000 3.8775 950.000 0.99945134 +56 Spectrogram 1 1 286.935000000 290.812500000 50.000 1000.000 3.8775 950.000 -78.78 0.99945134 +20 Waveform 1 1 104.692500000 108.570000000 50.000 1000.000 3.8775 950.000 0.99958056 +20 Spectrogram 1 1 104.692500000 108.570000000 50.000 1000.000 3.8775 950.000 -83.42 0.99958056 +134 Waveform 1 1 589.380000000 593.257500000 50.000 1000.000 3.8775 950.000 0.9995958 +134 Spectrogram 1 1 589.380000000 593.257500000 50.000 1000.000 3.8775 950.000 -80.91 0.9995958 +117 Waveform 1 1 523.462500000 527.340000000 50.000 1000.000 3.8775 950.000 0.9996587 +117 Spectrogram 1 1 523.462500000 527.340000000 50.000 1000.000 3.8775 950.000 -80.10 0.9996587 +104 Waveform 1 1 473.055000000 476.932500000 50.000 1000.000 3.8775 950.000 0.9996681 +104 Spectrogram 1 1 473.055000000 476.932500000 50.000 1000.000 3.8775 950.000 -78.25 0.9996681 +75 Waveform 1 1 360.607500000 364.485000000 50.000 1000.000 3.8775 950.000 0.99966824 +75 Spectrogram 1 1 360.607500000 364.485000000 50.000 1000.000 3.8775 950.000 -81.24 0.99966824 +43 Waveform 1 1 236.527500000 240.405000000 50.000 1000.000 3.8775 950.000 0.999688 +43 Spectrogram 1 1 236.527500000 240.405000000 50.000 1000.000 3.8775 950.000 -81.83 0.999688 +33 Waveform 1 1 197.752500000 201.630000000 50.000 1000.000 3.8775 950.000 0.99970716 +33 Spectrogram 1 1 197.752500000 201.630000000 50.000 1000.000 3.8775 950.000 -82.81 0.99970716 +9 Waveform 1 1 46.530000000 50.407500000 50.000 1000.000 3.8775 950.000 0.99973637 +9 Spectrogram 1 1 46.530000000 50.407500000 50.000 1000.000 3.8775 950.000 -82.15 0.99973637 +108 Waveform 1 1 488.565000000 492.442500000 50.000 1000.000 3.8775 950.000 0.99976176 +108 Spectrogram 1 1 488.565000000 492.442500000 50.000 1000.000 3.8775 950.000 -79.31 0.99976176 +11 Waveform 1 1 58.162500000 62.040000000 50.000 1000.000 3.8775 950.000 0.9997733 +11 Spectrogram 1 1 58.162500000 62.040000000 50.000 1000.000 3.8775 950.000 -82.46 0.9997733 +128 Waveform 1 1 566.115000000 569.992500000 50.000 1000.000 3.8775 950.000 0.99978095 +128 Spectrogram 1 1 566.115000000 569.992500000 50.000 1000.000 3.8775 950.000 -79.05 0.99978095 +126 Waveform 1 1 558.360000000 562.237500000 50.000 1000.000 3.8775 950.000 0.99979013 +126 Spectrogram 1 1 558.360000000 562.237500000 50.000 1000.000 3.8775 950.000 -78.79 0.99979013 +74 Waveform 1 1 356.730000000 360.607500000 50.000 1000.000 3.8775 950.000 0.99979764 +74 Spectrogram 1 1 356.730000000 360.607500000 50.000 1000.000 3.8775 950.000 -77.42 0.99979764 +103 Waveform 1 1 469.177500000 473.055000000 50.000 1000.000 3.8775 950.000 0.9998356 +103 Spectrogram 1 1 469.177500000 473.055000000 50.000 1000.000 3.8775 950.000 -80.65 0.9998356 +85 Waveform 1 1 399.382500000 403.260000000 50.000 1000.000 3.8775 950.000 0.99983656 +85 Spectrogram 1 1 399.382500000 403.260000000 50.000 1000.000 3.8775 950.000 -81.05 0.99983656 +72 Waveform 1 1 348.975000000 352.852500000 50.000 1000.000 3.8775 950.000 0.9999 +72 Spectrogram 1 1 348.975000000 352.852500000 50.000 1000.000 3.8775 950.000 -81.80 0.9999 +120 Waveform 1 1 535.095000000 538.972500000 50.000 1000.000 3.8775 950.000 0.9999162 +120 Spectrogram 1 1 535.095000000 538.972500000 50.000 1000.000 3.8775 950.000 -80.06 0.9999162 +91 Waveform 1 1 422.647500000 426.525000000 50.000 1000.000 3.8775 950.000 0.9999217 +91 Spectrogram 1 1 422.647500000 426.525000000 50.000 1000.000 3.8775 950.000 -79.76 0.9999217 +68 Waveform 1 1 333.465000000 337.342500000 50.000 1000.000 3.8775 950.000 0.99992585 +68 Spectrogram 1 1 333.465000000 337.342500000 50.000 1000.000 3.8775 950.000 -80.33 0.99992585 +22 Waveform 1 1 116.325000000 120.202500000 50.000 1000.000 3.8775 950.000 0.9999304 +22 Spectrogram 1 1 116.325000000 120.202500000 50.000 1000.000 3.8775 950.000 -82.45 0.9999304 +64 Waveform 1 1 317.955000000 321.832500000 50.000 1000.000 3.8775 950.000 0.9999387 +64 Spectrogram 1 1 317.955000000 321.832500000 50.000 1000.000 3.8775 950.000 -80.09 0.9999387 +101 Waveform 1 1 461.422500000 465.300000000 50.000 1000.000 3.8775 950.000 0.9999461 +101 Spectrogram 1 1 461.422500000 465.300000000 50.000 1000.000 3.8775 950.000 -79.99 0.9999461 +116 Waveform 1 1 519.585000000 523.462500000 50.000 1000.000 3.8775 950.000 0.9999484 +116 Spectrogram 1 1 519.585000000 523.462500000 50.000 1000.000 3.8775 950.000 -81.32 0.9999484 +66 Waveform 1 1 325.710000000 329.587500000 50.000 1000.000 3.8775 950.000 0.9999558 +66 Spectrogram 1 1 325.710000000 329.587500000 50.000 1000.000 3.8775 950.000 -81.18 0.9999558 +39 Waveform 1 1 221.017500000 224.895000000 50.000 1000.000 3.8775 950.000 0.9999665 +39 Spectrogram 1 1 221.017500000 224.895000000 50.000 1000.000 3.8775 950.000 -81.14 0.9999665 +15 Waveform 1 1 77.550000000 81.427500000 50.000 1000.000 3.8775 950.000 0.9999666 +15 Spectrogram 1 1 77.550000000 81.427500000 50.000 1000.000 3.8775 950.000 -82.31 0.9999666 +133 Waveform 1 1 585.502500000 589.380000000 50.000 1000.000 3.8775 950.000 0.9999703 +133 Spectrogram 1 1 585.502500000 589.380000000 50.000 1000.000 3.8775 950.000 -80.88 0.9999703 +54 Waveform 1 1 279.180000000 283.057500000 50.000 1000.000 3.8775 950.000 0.9999715 +54 Spectrogram 1 1 279.180000000 283.057500000 50.000 1000.000 3.8775 950.000 -82.12 0.9999715 +99 Waveform 1 1 453.667500000 457.545000000 50.000 1000.000 3.8775 950.000 0.99997234 +99 Spectrogram 1 1 453.667500000 457.545000000 50.000 1000.000 3.8775 950.000 -80.63 0.99997234 +146 Waveform 1 1 635.910000000 639.787500000 50.000 1000.000 3.8775 950.000 0.99997306 +146 Spectrogram 1 1 635.910000000 639.787500000 50.000 1000.000 3.8775 950.000 -87.48 0.99997306 +38 Waveform 1 1 217.140000000 221.017500000 50.000 1000.000 3.8775 950.000 0.9999753 +38 Spectrogram 1 1 217.140000000 221.017500000 50.000 1000.000 3.8775 950.000 -82.29 0.9999753 +89 Waveform 1 1 414.892500000 418.770000000 50.000 1000.000 3.8775 950.000 0.99997807 +89 Spectrogram 1 1 414.892500000 418.770000000 50.000 1000.000 3.8775 950.000 -80.73 0.99997807 +127 Waveform 1 1 562.237500000 566.115000000 50.000 1000.000 3.8775 950.000 0.99998 +127 Spectrogram 1 1 562.237500000 566.115000000 50.000 1000.000 3.8775 950.000 -79.99 0.99998 +79 Waveform 1 1 376.117500000 379.995000000 50.000 1000.000 3.8775 950.000 0.9999865 +79 Spectrogram 1 1 376.117500000 379.995000000 50.000 1000.000 3.8775 950.000 -81.21 0.9999865 +113 Waveform 1 1 507.952500000 511.830000000 50.000 1000.000 3.8775 950.000 0.9999865 +113 Spectrogram 1 1 507.952500000 511.830000000 50.000 1000.000 3.8775 950.000 -78.60 0.9999865 +53 Waveform 1 1 275.302500000 279.180000000 50.000 1000.000 3.8775 950.000 0.99998784 +53 Spectrogram 1 1 275.302500000 279.180000000 50.000 1000.000 3.8775 950.000 -80.49 0.99998784 +112 Waveform 1 1 504.075000000 507.952500000 50.000 1000.000 3.8775 950.000 0.9999883 +112 Spectrogram 1 1 504.075000000 507.952500000 50.000 1000.000 3.8775 950.000 -80.02 0.9999883 +63 Waveform 1 1 314.077500000 317.955000000 50.000 1000.000 3.8775 950.000 0.9999888 +63 Spectrogram 1 1 314.077500000 317.955000000 50.000 1000.000 3.8775 950.000 -81.49 0.9999888 +80 Waveform 1 1 379.995000000 383.872500000 50.000 1000.000 3.8775 950.000 0.99998915 +80 Spectrogram 1 1 379.995000000 383.872500000 50.000 1000.000 3.8775 950.000 -80.36 0.99998915 +138 Waveform 1 1 604.890000000 608.767500000 50.000 1000.000 3.8775 950.000 0.9999902 +138 Spectrogram 1 1 604.890000000 608.767500000 50.000 1000.000 3.8775 950.000 -79.54 0.9999902 +109 Waveform 1 1 492.442500000 496.320000000 50.000 1000.000 3.8775 950.000 0.9999908 +109 Spectrogram 1 1 492.442500000 496.320000000 50.000 1000.000 3.8775 950.000 -79.96 0.9999908 +130 Waveform 1 1 573.870000000 577.747500000 50.000 1000.000 3.8775 950.000 0.99999166 +130 Spectrogram 1 1 573.870000000 577.747500000 50.000 1000.000 3.8775 950.000 -80.83 0.99999166 +94 Waveform 1 1 434.280000000 438.157500000 50.000 1000.000 3.8775 950.000 0.99999297 +94 Spectrogram 1 1 434.280000000 438.157500000 50.000 1000.000 3.8775 950.000 -81.03 0.99999297 +137 Waveform 1 1 601.012500000 604.890000000 50.000 1000.000 3.8775 950.000 0.9999931 +137 Spectrogram 1 1 601.012500000 604.890000000 50.000 1000.000 3.8775 950.000 -80.18 0.9999931 +139 Waveform 1 1 608.767500000 612.645000000 50.000 1000.000 3.8775 950.000 0.9999931 +139 Spectrogram 1 1 608.767500000 612.645000000 50.000 1000.000 3.8775 950.000 -80.91 0.9999931 +19 Waveform 1 1 96.937500000 100.815000000 50.000 1000.000 3.8775 950.000 0.99999344 +19 Spectrogram 1 1 96.937500000 100.815000000 50.000 1000.000 3.8775 950.000 -82.91 0.99999344 +88 Waveform 1 1 411.015000000 414.892500000 50.000 1000.000 3.8775 950.000 0.9999951 +88 Spectrogram 1 1 411.015000000 414.892500000 50.000 1000.000 3.8775 950.000 -79.66 0.9999951 +111 Waveform 1 1 500.197500000 504.075000000 50.000 1000.000 3.8775 950.000 0.9999957 +111 Spectrogram 1 1 500.197500000 504.075000000 50.000 1000.000 3.8775 950.000 -79.93 0.9999957 +37 Waveform 1 1 213.262500000 217.140000000 50.000 1000.000 3.8775 950.000 0.999997 +37 Spectrogram 1 1 213.262500000 217.140000000 50.000 1000.000 3.8775 950.000 -83.00 0.999997 +46 Waveform 1 1 248.160000000 252.037500000 50.000 1000.000 3.8775 950.000 0.99999714 +46 Spectrogram 1 1 248.160000000 252.037500000 50.000 1000.000 3.8775 950.000 -81.04 0.99999714 +125 Waveform 1 1 554.482500000 558.360000000 50.000 1000.000 3.8775 950.000 0.9999974 +125 Spectrogram 1 1 554.482500000 558.360000000 50.000 1000.000 3.8775 950.000 -79.84 0.9999974 +105 Waveform 1 1 476.932500000 480.810000000 50.000 1000.000 3.8775 950.000 0.9999975 +105 Spectrogram 1 1 476.932500000 480.810000000 50.000 1000.000 3.8775 950.000 -80.61 0.9999975 +131 Waveform 1 1 577.747500000 581.625000000 50.000 1000.000 3.8775 950.000 0.9999981 +131 Spectrogram 1 1 577.747500000 581.625000000 50.000 1000.000 3.8775 950.000 -78.52 0.9999981 +18 Waveform 1 1 89.182500000 93.060000000 50.000 1000.000 3.8775 950.000 0.9999982 +18 Spectrogram 1 1 89.182500000 93.060000000 50.000 1000.000 3.8775 950.000 -82.77 0.9999982 +114 Waveform 1 1 511.830000000 515.707500000 50.000 1000.000 3.8775 950.000 0.9999982 +114 Spectrogram 1 1 511.830000000 515.707500000 50.000 1000.000 3.8775 950.000 -80.13 0.9999982 +62 Waveform 1 1 310.200000000 314.077500000 50.000 1000.000 3.8775 950.000 0.99999833 +62 Spectrogram 1 1 310.200000000 314.077500000 50.000 1000.000 3.8775 950.000 -80.06 0.99999833 +140 Waveform 1 1 612.645000000 616.522500000 50.000 1000.000 3.8775 950.000 0.99999833 +140 Spectrogram 1 1 612.645000000 616.522500000 50.000 1000.000 3.8775 950.000 -80.62 0.99999833 +92 Waveform 1 1 426.525000000 430.402500000 50.000 1000.000 3.8775 950.000 0.99999857 +92 Spectrogram 1 1 426.525000000 430.402500000 50.000 1000.000 3.8775 950.000 -81.51 0.99999857 +61 Waveform 1 1 306.322500000 310.200000000 50.000 1000.000 3.8775 950.000 0.99999905 +61 Spectrogram 1 1 306.322500000 310.200000000 50.000 1000.000 3.8775 950.000 -80.76 0.99999905 +81 Waveform 1 1 383.872500000 387.750000000 50.000 1000.000 3.8775 950.000 0.99999917 +81 Spectrogram 1 1 383.872500000 387.750000000 50.000 1000.000 3.8775 950.000 -82.02 0.99999917 +34 Waveform 1 1 201.630000000 205.507500000 50.000 1000.000 3.8775 950.000 0.9999993 +34 Spectrogram 1 1 201.630000000 205.507500000 50.000 1000.000 3.8775 950.000 -80.96 0.9999993 +71 Waveform 1 1 345.097500000 348.975000000 50.000 1000.000 3.8775 950.000 0.9999994 +71 Spectrogram 1 1 345.097500000 348.975000000 50.000 1000.000 3.8775 950.000 -77.85 0.9999994 +82 Waveform 1 1 387.750000000 391.627500000 50.000 1000.000 3.8775 950.000 0.9999994 +82 Spectrogram 1 1 387.750000000 391.627500000 50.000 1000.000 3.8775 950.000 -80.36 0.9999994 +98 Waveform 1 1 449.790000000 453.667500000 50.000 1000.000 3.8775 950.000 0.9999994 +98 Spectrogram 1 1 449.790000000 453.667500000 50.000 1000.000 3.8775 950.000 -80.44 0.9999994 +84 Waveform 1 1 395.505000000 399.382500000 50.000 1000.000 3.8775 950.000 0.99999964 +84 Spectrogram 1 1 395.505000000 399.382500000 50.000 1000.000 3.8775 950.000 -80.98 0.99999964 +52 Waveform 1 1 271.425000000 275.302500000 50.000 1000.000 3.8775 950.000 0.99999976 +52 Spectrogram 1 1 271.425000000 275.302500000 50.000 1000.000 3.8775 950.000 -80.69 0.99999976 +58 Waveform 1 1 294.690000000 298.567500000 50.000 1000.000 3.8775 950.000 0.9999999 +58 Spectrogram 1 1 294.690000000 298.567500000 50.000 1000.000 3.8775 950.000 -80.55 0.9999999 +73 Waveform 1 1 352.852500000 356.730000000 50.000 1000.000 3.8775 950.000 0.9999999 +73 Spectrogram 1 1 352.852500000 356.730000000 50.000 1000.000 3.8775 950.000 -80.17 0.9999999 +97 Waveform 1 1 445.912500000 449.790000000 50.000 1000.000 3.8775 950.000 0.9999999 +97 Spectrogram 1 1 445.912500000 449.790000000 50.000 1000.000 3.8775 950.000 -79.56 0.9999999 +102 Waveform 1 1 465.300000000 469.177500000 50.000 1000.000 3.8775 950.000 0.9999999 +102 Spectrogram 1 1 465.300000000 469.177500000 50.000 1000.000 3.8775 950.000 -80.22 0.9999999 +49 Waveform 1 1 259.792500000 263.670000000 50.000 1000.000 3.8775 950.000 1.0 +49 Spectrogram 1 1 259.792500000 263.670000000 50.000 1000.000 3.8775 950.000 -81.21 1.0 +55 Waveform 1 1 283.057500000 286.935000000 50.000 1000.000 3.8775 950.000 1.0 +55 Spectrogram 1 1 283.057500000 286.935000000 50.000 1000.000 3.8775 950.000 -80.70 1.0 +67 Waveform 1 1 329.587500000 333.465000000 50.000 1000.000 3.8775 950.000 1.0 +67 Spectrogram 1 1 329.587500000 333.465000000 50.000 1000.000 3.8775 950.000 -80.19 1.0 +70 Waveform 1 1 341.220000000 345.097500000 50.000 1000.000 3.8775 950.000 1.0 +70 Spectrogram 1 1 341.220000000 345.097500000 50.000 1000.000 3.8775 950.000 -79.88 1.0 +76 Waveform 1 1 364.485000000 368.362500000 50.000 1000.000 3.8775 950.000 1.0 +76 Spectrogram 1 1 364.485000000 368.362500000 50.000 1000.000 3.8775 950.000 -79.83 1.0 +93 Waveform 1 1 430.402500000 434.280000000 50.000 1000.000 3.8775 950.000 1.0 +93 Spectrogram 1 1 430.402500000 434.280000000 50.000 1000.000 3.8775 950.000 -80.82 1.0 +106 Waveform 1 1 480.810000000 484.687500000 50.000 1000.000 3.8775 950.000 1.0 +106 Spectrogram 1 1 480.810000000 484.687500000 50.000 1000.000 3.8775 950.000 -80.63 1.0 +107 Waveform 1 1 484.687500000 488.565000000 50.000 1000.000 3.8775 950.000 1.0 +107 Spectrogram 1 1 484.687500000 488.565000000 50.000 1000.000 3.8775 950.000 -78.52 1.0 +110 Waveform 1 1 496.320000000 500.197500000 50.000 1000.000 3.8775 950.000 1.0 +110 Spectrogram 1 1 496.320000000 500.197500000 50.000 1000.000 3.8775 950.000 -78.96 1.0 +124 Waveform 1 1 550.605000000 554.482500000 50.000 1000.000 3.8775 950.000 1.0 +124 Spectrogram 1 1 550.605000000 554.482500000 50.000 1000.000 3.8775 950.000 -79.24 1.0 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_01-14-15_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_01-14-15_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5e306639258539bfe4322a9e36789eb226faed86 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_01-14-15_annot_2022-11-30_01.txt @@ -0,0 +1,150 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9867583 +2 3.8775 7.755 1000 50 0.9999914 +3 7.755 11.6325 1000 50 0.9999994 +4 11.6325 15.51 1000 50 0.92861927 +5 15.51 19.3875 1000 50 0.99997735 +6 19.3875 23.265 1000 50 0.9918561 +7 23.265 27.142500000000002 1000 50 0.9999989 +8 27.1425 31.02 1000 50 0.99999976 +9 31.02 34.8975 1000 50 0.8945586 +10 34.8975 38.775 1000 50 0.9999479 +11 38.775 42.652499999999996 1000 50 0.99999154 +12 42.6525 46.53 1000 50 0.98750234 +13 46.53 50.4075 1000 50 0.9999999 +14 50.4075 54.285 1000 50 0.93589044 +15 54.285 58.162499999999994 1000 50 0.9999702 +16 58.1625 62.04 1000 50 0.9540546 +17 62.04 65.9175 1000 50 0.77074796 +18 65.9175 69.795 1000 50 0.9986475 +19 69.795 73.6725 1000 50 0.9786341 +20 73.6725 77.55 1000 50 0.9979121 +21 77.55 81.4275 1000 50 0.99880457 +22 85.305 89.1825 1000 50 0.9999968 +23 89.1825 93.06 1000 50 0.99997556 +24 93.06 96.9375 1000 50 0.9610357 +25 96.9375 100.815 1000 50 0.99979824 +26 104.6925 108.57 1000 50 0.8821698 +27 108.57 112.44749999999999 1000 50 0.95603603 +28 112.4475 116.325 1000 50 0.6208869 +29 116.325 120.2025 1000 50 0.9326431 +30 127.9575 131.835 1000 50 0.9728874 +31 135.7125 139.59 1000 50 0.5305839 +32 139.59 143.4675 1000 50 0.7502378 +33 143.4675 147.345 1000 50 0.99792576 +34 147.345 151.2225 1000 50 0.972582 +35 151.2225 155.1 1000 50 0.58797294 +36 155.1 158.9775 1000 50 0.99569786 +37 162.855 166.7325 1000 50 0.9980204 +38 166.7325 170.60999999999999 1000 50 0.99454886 +39 170.61 174.4875 1000 50 0.92915756 +40 174.4875 178.365 1000 50 0.99730885 +41 186.12 189.9975 1000 50 0.9363669 +42 189.9975 193.875 1000 50 0.9223642 +43 197.7525 201.63 1000 50 0.95365554 +44 201.63 205.5075 1000 50 0.99996865 +45 205.5075 209.385 1000 50 0.99992895 +46 209.385 213.2625 1000 50 0.9973354 +47 213.2625 217.14 1000 50 0.99997187 +48 221.0175 224.895 1000 50 0.9994981 +49 224.895 228.7725 1000 50 0.9463944 +50 228.7725 232.65 1000 50 0.9864954 +51 232.65 236.5275 1000 50 0.9999782 +52 236.5275 240.405 1000 50 0.93415725 +53 240.405 244.2825 1000 50 0.999495 +54 244.2825 248.16 1000 50 0.99999964 +55 248.16 252.0375 1000 50 0.97276974 +56 252.0375 255.915 1000 50 0.9898797 +57 255.915 259.7925 1000 50 0.82944906 +58 259.7925 263.67 1000 50 0.9912589 +59 263.67 267.5475 1000 50 1.0 +60 267.5475 271.425 1000 50 0.88946205 +61 271.425 275.3025 1000 50 0.9750611 +62 275.3025 279.18 1000 50 0.9999796 +63 279.18 283.0575 1000 50 0.6677409 +64 283.0575 286.935 1000 50 0.9582406 +65 286.935 290.8125 1000 50 0.99572146 +66 290.8125 294.69 1000 50 0.6864122 +67 294.69 298.5675 1000 50 0.99382365 +68 298.5675 302.445 1000 50 0.99922013 +69 302.445 306.3225 1000 50 0.99999416 +70 306.3225 310.2 1000 50 0.9999994 +71 310.2 314.0775 1000 50 0.99998474 +72 314.0775 317.955 1000 50 0.9999763 +73 317.955 321.8325 1000 50 0.9947643 +74 321.8325 325.71 1000 50 0.99648154 +75 325.71 329.5875 1000 50 0.99999785 +76 329.5875 333.465 1000 50 1.0 +77 333.465 337.3425 1000 50 0.9197089 +78 337.3425 341.21999999999997 1000 50 0.9997534 +79 341.22 345.0975 1000 50 0.99980444 +80 345.0975 348.975 1000 50 0.7877727 +81 348.975 352.8525 1000 50 1.0 +82 352.8525 356.73 1000 50 0.99997187 +83 360.6075 364.485 1000 50 0.9999999 +84 364.485 368.3625 1000 50 0.9999881 +85 368.3625 372.24 1000 50 0.9980531 +86 372.24 376.1175 1000 50 0.9999845 +87 376.1175 379.995 1000 50 0.9932902 +88 379.995 383.8725 1000 50 0.99974555 +89 383.8725 387.75 1000 50 0.99977034 +90 387.75 391.6275 1000 50 0.99599314 +91 391.6275 395.505 1000 50 0.97779274 +92 395.505 399.3825 1000 50 0.9999999 +93 399.3825 403.26 1000 50 0.99998796 +94 403.26 407.1375 1000 50 0.99943286 +95 407.1375 411.015 1000 50 0.98772776 +96 411.015 414.8925 1000 50 0.9999919 +97 414.8925 418.77 1000 50 0.9927186 +98 418.77 422.6475 1000 50 0.9999976 +99 422.6475 426.525 1000 50 0.9996903 +100 426.525 430.4025 1000 50 0.8432553 +101 430.4025 434.28 1000 50 1.0 +102 434.28 438.15749999999997 1000 50 0.99867576 +103 438.1575 442.035 1000 50 0.9996697 +104 442.035 445.9125 1000 50 0.9984847 +105 445.9125 449.79 1000 50 0.99994934 +106 449.79 453.6675 1000 50 0.9999306 +107 453.6675 457.545 1000 50 0.9991215 +108 457.545 461.4225 1000 50 0.96237046 +109 461.4225 465.3 1000 50 0.9999858 +110 465.3 469.1775 1000 50 0.999689 +111 469.1775 473.055 1000 50 0.99905866 +112 473.055 476.9325 1000 50 0.9995952 +113 476.9325 480.81 1000 50 0.99782664 +114 480.81 484.6875 1000 50 0.9983216 +115 484.6875 488.565 1000 50 0.99992204 +116 488.565 492.4425 1000 50 0.99853575 +117 492.4425 496.32 1000 50 0.99999297 +118 496.32 500.1975 1000 50 0.95070386 +119 500.1975 504.075 1000 50 0.99942005 +120 504.075 507.9525 1000 50 0.99995434 +121 507.9525 511.83 1000 50 0.99996877 +122 511.83 515.7075 1000 50 0.99973756 +123 515.7075 519.585 1000 50 0.9997421 +124 519.585 523.4625000000001 1000 50 0.87540776 +125 523.4625 527.34 1000 50 0.9999833 +126 527.34 531.2175000000001 1000 50 0.95354724 +127 531.2175 535.095 1000 50 0.9772982 +128 535.095 538.9725000000001 1000 50 0.9999908 +129 538.9725 542.85 1000 50 0.99804664 +130 542.85 546.7275000000001 1000 50 0.9997762 +131 546.7275 550.605 1000 50 0.99999297 +132 550.605 554.4825000000001 1000 50 0.9999975 +133 554.4825 558.36 1000 50 0.9964812 +134 569.9925 573.87 1000 50 0.9667382 +135 573.87 577.7475000000001 1000 50 0.99977654 +136 581.625 585.5025 1000 50 0.9984692 +137 589.38 593.2575 1000 50 0.6749307 +138 597.135 601.0125 1000 50 0.94615924 +139 601.0125 604.8900000000001 1000 50 0.9995597 +140 604.89 608.7675 1000 50 0.803965 +141 608.7675 612.6450000000001 1000 50 0.9952118 +142 612.645 616.5225 1000 50 0.9949033 +143 616.5225 620.4000000000001 1000 50 0.9333267 +144 620.4 624.2775 1000 50 0.99872106 +145 624.2775 628.1550000000001 1000 50 0.9999919 +146 632.0325 635.9100000000001 1000 50 0.9770249 +147 635.91 639.7875 1000 50 0.63349164 +148 639.7875 643.6650000000001 1000 50 0.5304925 +149 643.665 647.5425 1000 50 0.99867356 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_02-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_02-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..441c9e320f77a13a5aaf225a2db694d2e948d0e9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_02-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,220 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9992625 +2 3.8775 7.755 1000 50 1.0 +3 7.755 11.6325 1000 50 0.9999486 +4 11.6325 15.51 1000 50 0.99663025 +5 15.51 19.3875 1000 50 0.9999999 +6 19.3875 23.265 1000 50 0.997891 +7 23.265 27.142500000000002 1000 50 0.9999989 +8 27.1425 31.02 1000 50 0.99999094 +9 31.02 34.8975 1000 50 0.99987805 +10 34.8975 38.775 1000 50 0.99960893 +11 38.775 42.652499999999996 1000 50 0.99999905 +12 42.6525 46.53 1000 50 0.99999964 +13 46.53 50.4075 1000 50 0.9998154 +14 50.4075 54.285 1000 50 0.9564535 +15 54.285 58.162499999999994 1000 50 0.9920528 +16 58.1625 62.04 1000 50 1.0 +17 62.04 65.9175 1000 50 0.9994167 +18 65.9175 69.795 1000 50 0.9999999 +19 69.795 73.6725 1000 50 0.9998215 +20 73.6725 77.55 1000 50 0.99781185 +21 77.55 81.4275 1000 50 1.0 +22 81.4275 85.30499999999999 1000 50 0.9999939 +23 85.305 89.1825 1000 50 0.9900011 +24 89.1825 93.06 1000 50 0.9993567 +25 93.06 96.9375 1000 50 0.99999905 +26 96.9375 100.815 1000 50 0.99984205 +27 100.815 104.6925 1000 50 1.0 +28 104.6925 108.57 1000 50 0.99999714 +29 108.57 112.44749999999999 1000 50 1.0 +30 112.4475 116.325 1000 50 0.9993742 +31 116.325 120.2025 1000 50 0.99400735 +32 120.2025 124.08 1000 50 0.9931599 +33 124.08 127.9575 1000 50 0.9999908 +34 127.9575 131.835 1000 50 0.99999976 +35 131.835 135.7125 1000 50 0.9999846 +36 135.7125 139.59 1000 50 0.99666023 +37 139.59 143.4675 1000 50 0.9998709 +38 143.4675 147.345 1000 50 1.0 +39 147.345 151.2225 1000 50 0.9999988 +40 151.2225 155.1 1000 50 0.87213236 +41 155.1 158.9775 1000 50 0.9999999 +42 158.9775 162.855 1000 50 0.999998 +43 162.855 166.7325 1000 50 0.9999298 +44 166.7325 170.60999999999999 1000 50 0.9999881 +45 170.61 174.4875 1000 50 0.99999654 +46 174.4875 178.365 1000 50 0.998892 +47 178.365 182.2425 1000 50 0.9998915 +48 182.2425 186.12 1000 50 0.99927896 +49 186.12 189.9975 1000 50 0.9999869 +50 189.9975 193.875 1000 50 0.9999999 +51 193.875 197.7525 1000 50 0.9999994 +52 197.7525 201.63 1000 50 0.9759972 +53 201.63 205.5075 1000 50 1.0 +54 205.5075 209.385 1000 50 0.9994764 +55 209.385 213.2625 1000 50 0.993958 +56 213.2625 217.14 1000 50 0.999995 +57 217.14 221.01749999999998 1000 50 0.9930621 +58 221.0175 224.895 1000 50 0.9999995 +59 224.895 228.7725 1000 50 0.9981627 +60 228.7725 232.65 1000 50 1.0 +61 232.65 236.5275 1000 50 0.9641258 +62 236.5275 240.405 1000 50 0.9999999 +63 240.405 244.2825 1000 50 0.9999715 +64 244.2825 248.16 1000 50 0.8242435 +65 248.16 252.0375 1000 50 0.71094257 +66 252.0375 255.915 1000 50 0.99998486 +67 255.915 259.7925 1000 50 0.999946 +68 259.7925 263.67 1000 50 0.9999975 +69 263.67 267.5475 1000 50 0.9993942 +70 267.5475 271.425 1000 50 0.99952066 +71 271.425 275.3025 1000 50 0.97990394 +72 275.3025 279.18 1000 50 0.9956748 +73 279.18 283.0575 1000 50 0.9999585 +74 283.0575 286.935 1000 50 0.99999976 +75 286.935 290.8125 1000 50 0.9827711 +76 290.8125 294.69 1000 50 0.99871063 +77 294.69 298.5675 1000 50 0.9971322 +78 298.5675 302.445 1000 50 0.9999051 +79 306.3225 310.2 1000 50 0.7687824 +80 310.2 314.0775 1000 50 0.98083204 +81 314.0775 317.955 1000 50 0.9993362 +82 329.5875 333.465 1000 50 0.99115914 +83 333.465 337.3425 1000 50 0.9973195 +84 341.22 345.0975 1000 50 0.9998087 +85 345.0975 348.975 1000 50 0.71284944 +86 348.975 352.8525 1000 50 0.9996132 +87 352.8525 356.73 1000 50 0.90965426 +88 356.73 360.6075 1000 50 0.99804014 +89 360.6075 364.485 1000 50 0.9912862 +90 364.485 368.3625 1000 50 0.8266836 +91 368.3625 372.24 1000 50 0.9404196 +92 372.24 376.1175 1000 50 0.9999875 +93 376.1175 379.995 1000 50 0.99264634 +94 379.995 383.8725 1000 50 0.9972421 +95 383.8725 387.75 1000 50 0.9537675 +96 387.75 391.6275 1000 50 0.99458164 +97 391.6275 395.505 1000 50 0.99876887 +98 395.505 399.3825 1000 50 0.99694675 +99 399.3825 403.26 1000 50 0.95731175 +100 407.1375 411.015 1000 50 0.9999473 +101 411.015 414.8925 1000 50 0.9999225 +102 414.8925 418.77 1000 50 0.9989176 +103 426.525 430.4025 1000 50 0.9923018 +104 430.4025 434.28 1000 50 0.9956579 +105 434.28 438.15749999999997 1000 50 0.9998648 +106 438.1575 442.035 1000 50 0.9703479 +107 442.035 445.9125 1000 50 0.95062274 +108 445.9125 449.79 1000 50 0.98882407 +109 449.79 453.6675 1000 50 0.5176819 +110 453.6675 457.545 1000 50 0.5645288 +111 465.3 469.1775 1000 50 0.9327865 +112 469.1775 473.055 1000 50 0.85170674 +113 476.9325 480.81 1000 50 0.7341674 +114 484.6875 488.565 1000 50 0.8408308 +115 488.565 492.4425 1000 50 0.635601 +116 492.4425 496.32 1000 50 0.96040934 +117 500.1975 504.075 1000 50 0.5177747 +118 511.83 515.7075 1000 50 0.99821633 +119 523.4625 527.34 1000 50 0.7931983 +120 535.095 538.9725000000001 1000 50 0.67473114 +121 542.85 546.7275000000001 1000 50 0.9836233 +122 562.2375 566.115 1000 50 0.60165226 +123 566.115 569.9925000000001 1000 50 0.98610944 +124 573.87 577.7475000000001 1000 50 0.9118292 +125 577.7475 581.625 1000 50 0.98388875 +126 581.625 585.5025 1000 50 0.9995161 +127 585.5025 589.3800000000001 1000 50 0.79134965 +128 589.38 593.2575 1000 50 0.9827837 +129 593.2575 597.1350000000001 1000 50 0.7861194 +130 597.135 601.0125 1000 50 0.5290105 +131 604.89 608.7675 1000 50 0.8928432 +132 608.7675 612.6450000000001 1000 50 0.9999716 +133 616.5225 620.4000000000001 1000 50 0.9994844 +134 620.4 624.2775 1000 50 0.83803767 +135 624.2775 628.1550000000001 1000 50 0.9995227 +136 628.155 632.0325 1000 50 0.9998692 +137 632.0325 635.9100000000001 1000 50 0.58649033 +138 635.91 639.7875 1000 50 0.90730804 +139 639.7875 643.6650000000001 1000 50 0.97184247 +140 643.665 647.5425 1000 50 0.854496 +141 651.42 655.2975 1000 50 0.9986638 +142 655.2975 659.1750000000001 1000 50 0.9880504 +143 659.175 663.0525 1000 50 0.9890103 +144 663.0525 666.9300000000001 1000 50 0.59784675 +145 666.93 670.8075 1000 50 0.5589212 +146 670.8075 674.6850000000001 1000 50 0.9944917 +147 674.685 678.5625 1000 50 0.99286264 +148 678.5625 682.44 1000 50 0.9993781 +149 682.44 686.3175000000001 1000 50 0.997282 +150 686.3175 690.195 1000 50 0.9983222 +151 690.195 694.0725000000001 1000 50 0.99996114 +152 694.0725 697.95 1000 50 0.9999989 +153 697.95 701.8275000000001 1000 50 0.9997187 +154 701.8275 705.705 1000 50 0.95963913 +155 705.705 709.5825000000001 1000 50 0.9999989 +156 709.5825 713.46 1000 50 0.99999976 +157 713.46 717.3375000000001 1000 50 0.99964845 +158 717.3375 721.215 1000 50 0.99997103 +159 721.215 725.0925000000001 1000 50 0.99999845 +160 725.0925 728.97 1000 50 0.99994624 +161 728.97 732.8475000000001 1000 50 0.99707675 +162 732.8475 736.725 1000 50 0.99922025 +163 736.725 740.6025000000001 1000 50 0.9995229 +164 740.6025 744.48 1000 50 0.99999726 +165 744.48 748.3575000000001 1000 50 0.9999933 +166 748.3575 752.235 1000 50 0.9920453 +167 752.235 756.1125000000001 1000 50 0.9999989 +168 756.1125 759.99 1000 50 0.99986184 +169 759.99 763.8675000000001 1000 50 0.9642977 +170 763.8675 767.745 1000 50 0.99999905 +171 767.745 771.6225000000001 1000 50 0.66765314 +172 771.6225 775.5 1000 50 0.99999964 +173 775.5 779.3775 1000 50 1.0 +174 779.3775 783.2550000000001 1000 50 0.99999535 +175 783.255 787.1325 1000 50 0.9807958 +176 787.1325 791.0100000000001 1000 50 1.0 +177 791.01 794.8875 1000 50 0.99997985 +178 794.8875 798.7650000000001 1000 50 0.9996433 +179 798.765 802.6425 1000 50 0.9999938 +180 802.6425 806.5200000000001 1000 50 0.9938753 +181 806.52 810.3975 1000 50 0.9993255 +182 810.3975 814.2750000000001 1000 50 0.9970661 +183 814.275 818.1525 1000 50 0.9999993 +184 818.1525 822.0300000000001 1000 50 0.9999999 +185 822.03 825.9075 1000 50 1.0 +186 825.9075 829.7850000000001 1000 50 0.99972445 +187 829.785 833.6625 1000 50 0.9999993 +188 833.6625 837.5400000000001 1000 50 0.9998086 +189 837.54 841.4175 1000 50 0.99999523 +190 841.4175 845.2950000000001 1000 50 1.0 +191 845.295 849.1725 1000 50 0.99999976 +192 849.1725 853.0500000000001 1000 50 0.9924926 +193 853.05 856.9275 1000 50 0.9999993 +194 856.9275 860.8050000000001 1000 50 0.99980646 +195 860.805 864.6825 1000 50 0.9999814 +196 864.6825 868.5600000000001 1000 50 0.99997985 +197 868.56 872.4375 1000 50 0.9999919 +198 872.4375 876.315 1000 50 0.99997544 +199 876.315 880.1925000000001 1000 50 1.0 +200 880.1925 884.07 1000 50 0.9558028 +201 884.07 887.9475000000001 1000 50 0.9999995 +202 887.9475 891.825 1000 50 0.99999964 +203 891.825 895.7025000000001 1000 50 0.9900564 +204 895.7025 899.58 1000 50 0.9999999 +205 899.58 903.4575000000001 1000 50 0.9999969 +206 903.4575 907.335 1000 50 0.9999999 +207 907.335 911.2125000000001 1000 50 1.0 +208 911.2125 915.09 1000 50 1.0 +209 915.09 918.9675000000001 1000 50 1.0 +210 918.9675 922.845 1000 50 0.99999523 +211 922.845 926.7225000000001 1000 50 0.99999464 +212 926.7225 930.6 1000 50 0.9999901 +213 930.6 934.4775000000001 1000 50 1.0 +214 934.4775 938.355 1000 50 0.99997175 +215 938.355 942.2325000000001 1000 50 0.9999906 +216 942.2325 946.11 1000 50 0.99995005 +217 946.11 949.9875000000001 1000 50 0.9999894 +218 949.9875 953.865 1000 50 0.99999595 +219 953.865 957.7425000000001 1000 50 0.89035046 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_02-19-34_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_02-19-34_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..80ecc7d50ae7091a780514532d90674c2fa83491 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_02-19-34_annot_2022-11-30_01.txt @@ -0,0 +1,59 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9992336 +2 3.8775 7.755 1000 50 0.88036007 +3 11.6325 15.51 1000 50 0.99154586 +4 15.51 19.3875 1000 50 0.5379079 +5 19.3875 23.265 1000 50 0.8864847 +6 23.265 27.142500000000002 1000 50 0.69363785 +7 27.1425 31.02 1000 50 0.99652857 +8 31.02 34.8975 1000 50 0.99911517 +9 50.4075 54.285 1000 50 0.6315156 +10 62.04 65.9175 1000 50 0.7721337 +11 69.795 73.6725 1000 50 0.9216656 +12 73.6725 77.55 1000 50 0.5823102 +13 77.55 81.4275 1000 50 0.99384284 +14 89.1825 93.06 1000 50 0.6604894 +15 93.06 96.9375 1000 50 0.952055 +16 96.9375 100.815 1000 50 0.9879996 +17 100.815 104.6925 1000 50 0.9996557 +18 108.57 112.44749999999999 1000 50 0.97326726 +19 112.4475 116.325 1000 50 0.81865674 +20 116.325 120.2025 1000 50 0.9992157 +21 131.835 135.7125 1000 50 0.9999944 +22 135.7125 139.59 1000 50 0.9918554 +23 139.59 143.4675 1000 50 0.9105795 +24 143.4675 147.345 1000 50 0.9971734 +25 151.2225 155.1 1000 50 0.6249096 +26 155.1 158.9775 1000 50 0.9999131 +27 166.7325 170.60999999999999 1000 50 0.60280794 +28 174.4875 178.365 1000 50 0.99819046 +29 178.365 182.2425 1000 50 0.6630796 +30 182.2425 186.12 1000 50 0.6579894 +31 186.12 189.9975 1000 50 0.9977017 +32 189.9975 193.875 1000 50 0.9962843 +33 193.875 197.7525 1000 50 0.85522527 +34 197.7525 201.63 1000 50 0.8766084 +35 201.63 205.5075 1000 50 0.9999758 +36 205.5075 209.385 1000 50 0.9892223 +37 209.385 213.2625 1000 50 0.80720186 +38 213.2625 217.14 1000 50 0.91814965 +39 217.14 221.01749999999998 1000 50 0.7100085 +40 221.0175 224.895 1000 50 0.9970419 +41 224.895 228.7725 1000 50 0.99269766 +42 232.65 236.5275 1000 50 0.90586734 +43 236.5275 240.405 1000 50 0.77801466 +44 240.405 244.2825 1000 50 0.9954791 +45 252.0375 255.915 1000 50 0.84229136 +46 255.915 259.7925 1000 50 0.96282953 +47 259.7925 263.67 1000 50 0.9997029 +48 263.67 267.5475 1000 50 0.9778701 +49 267.5475 271.425 1000 50 0.6649399 +50 275.3025 279.18 1000 50 0.97198415 +51 279.18 283.0575 1000 50 0.99566513 +52 283.0575 286.935 1000 50 0.96781564 +53 286.935 290.8125 1000 50 0.8001471 +54 298.5675 302.445 1000 50 0.99999857 +55 302.445 306.3225 1000 50 0.6181711 +56 310.2 314.0775 1000 50 0.90442336 +57 314.0775 317.955 1000 50 0.6278654 +58 321.8325 325.71 1000 50 0.95417535 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_03-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_03-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ad8a28c432a9ebc7001629db4240e5817139650d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_03-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,299 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9963481 +2 11.6325 15.51 1000 50 0.9980215 +3 19.3875 23.265 1000 50 0.9330051 +4 31.02 34.8975 1000 50 0.9994281 +5 42.6525 46.53 1000 50 0.9292891 +6 50.4075 54.285 1000 50 0.7791466 +7 54.285 58.162499999999994 1000 50 0.92585874 +8 62.04 65.9175 1000 50 0.6731533 +9 65.9175 69.795 1000 50 0.99999464 +10 69.795 73.6725 1000 50 0.97776675 +11 73.6725 77.55 1000 50 0.67826295 +12 77.55 81.4275 1000 50 0.6682917 +13 81.4275 85.30499999999999 1000 50 0.5947716 +14 85.305 89.1825 1000 50 0.70424473 +15 96.9375 100.815 1000 50 0.8370219 +16 104.6925 108.57 1000 50 0.9747713 +17 108.57 112.44749999999999 1000 50 0.93595177 +18 112.4475 116.325 1000 50 0.99593735 +19 116.325 120.2025 1000 50 0.9201513 +20 120.2025 124.08 1000 50 0.9966439 +21 124.08 127.9575 1000 50 0.89706135 +22 127.9575 131.835 1000 50 0.9593239 +23 131.835 135.7125 1000 50 0.9997731 +24 135.7125 139.59 1000 50 0.9300215 +25 143.4675 147.345 1000 50 0.9823046 +26 147.345 151.2225 1000 50 0.9963781 +27 151.2225 155.1 1000 50 0.99991834 +28 162.855 166.7325 1000 50 0.99995565 +29 166.7325 170.60999999999999 1000 50 0.86113834 +30 170.61 174.4875 1000 50 0.99838185 +31 178.365 182.2425 1000 50 0.99965763 +32 182.2425 186.12 1000 50 0.9881896 +33 186.12 189.9975 1000 50 0.99744356 +34 197.7525 201.63 1000 50 0.93534106 +35 201.63 205.5075 1000 50 0.7497148 +36 205.5075 209.385 1000 50 0.714139 +37 213.2625 217.14 1000 50 0.99039906 +38 217.14 221.01749999999998 1000 50 0.7793137 +39 221.0175 224.895 1000 50 0.8197121 +40 228.7725 232.65 1000 50 0.9584356 +41 232.65 236.5275 1000 50 0.93604374 +42 236.5275 240.405 1000 50 0.6521129 +43 248.16 252.0375 1000 50 0.99956995 +44 252.0375 255.915 1000 50 0.9995097 +45 255.915 259.7925 1000 50 0.98895556 +46 259.7925 263.67 1000 50 0.70710635 +47 263.67 267.5475 1000 50 0.99982077 +48 271.425 275.3025 1000 50 0.9963483 +49 275.3025 279.18 1000 50 0.9049666 +50 279.18 283.0575 1000 50 0.9759311 +51 283.0575 286.935 1000 50 0.976284 +52 286.935 290.8125 1000 50 0.9161338 +53 290.8125 294.69 1000 50 0.6408802 +54 294.69 298.5675 1000 50 0.94629157 +55 298.5675 302.445 1000 50 0.9999621 +56 302.445 306.3225 1000 50 0.9839549 +57 306.3225 310.2 1000 50 1.0 +58 310.2 314.0775 1000 50 0.9999604 +59 314.0775 317.955 1000 50 0.9998834 +60 317.955 321.8325 1000 50 0.71600825 +61 325.71 329.5875 1000 50 0.9990004 +62 329.5875 333.465 1000 50 0.9999877 +63 337.3425 341.21999999999997 1000 50 0.9999974 +64 341.22 345.0975 1000 50 0.99886924 +65 345.0975 348.975 1000 50 0.99999166 +66 348.975 352.8525 1000 50 0.9820723 +67 352.8525 356.73 1000 50 0.8569242 +68 356.73 360.6075 1000 50 0.9985018 +69 360.6075 364.485 1000 50 0.98716533 +70 364.485 368.3625 1000 50 0.9999882 +71 368.3625 372.24 1000 50 0.96524763 +72 372.24 376.1175 1000 50 0.99813807 +73 376.1175 379.995 1000 50 0.9980957 +74 379.995 383.8725 1000 50 0.9998374 +75 383.8725 387.75 1000 50 0.9999994 +76 387.75 391.6275 1000 50 0.99899286 +77 391.6275 395.505 1000 50 1.0 +78 395.505 399.3825 1000 50 0.9994005 +79 399.3825 403.26 1000 50 1.0 +80 403.26 407.1375 1000 50 0.9999963 +81 407.1375 411.015 1000 50 0.9999999 +82 411.015 414.8925 1000 50 0.99999964 +83 414.8925 418.77 1000 50 0.9999968 +84 418.77 422.6475 1000 50 0.99984705 +85 422.6475 426.525 1000 50 1.0 +86 426.525 430.4025 1000 50 0.99684614 +87 430.4025 434.28 1000 50 0.99978274 +88 434.28 438.15749999999997 1000 50 1.0 +89 438.1575 442.035 1000 50 0.99995184 +90 442.035 445.9125 1000 50 0.9999713 +91 445.9125 449.79 1000 50 0.9999999 +92 449.79 453.6675 1000 50 0.9966086 +93 453.6675 457.545 1000 50 0.99905103 +94 457.545 461.4225 1000 50 0.89965284 +95 461.4225 465.3 1000 50 0.9999974 +96 465.3 469.1775 1000 50 1.0 +97 469.1775 473.055 1000 50 0.9949974 +98 473.055 476.9325 1000 50 0.99961215 +99 476.9325 480.81 1000 50 0.9994179 +100 480.81 484.6875 1000 50 0.9998474 +101 484.6875 488.565 1000 50 0.9881529 +102 488.565 492.4425 1000 50 0.99999964 +103 492.4425 496.32 1000 50 0.99999833 +104 496.32 500.1975 1000 50 0.9999918 +105 500.1975 504.075 1000 50 0.9999957 +106 504.075 507.9525 1000 50 0.999821 +107 507.9525 511.83 1000 50 0.99999225 +108 511.83 515.7075 1000 50 0.9999981 +109 515.7075 519.585 1000 50 0.99995756 +110 519.585 523.4625000000001 1000 50 0.9999944 +111 523.4625 527.34 1000 50 0.9998759 +112 527.34 531.2175000000001 1000 50 0.999997 +113 531.2175 535.095 1000 50 0.99999964 +114 535.095 538.9725000000001 1000 50 0.99999857 +115 538.9725 542.85 1000 50 0.9970958 +116 542.85 546.7275000000001 1000 50 1.0 +117 546.7275 550.605 1000 50 0.9999746 +118 550.605 554.4825000000001 1000 50 0.9999331 +119 554.4825 558.36 1000 50 0.99998164 +120 558.36 562.2375000000001 1000 50 0.9999999 +121 562.2375 566.115 1000 50 0.9999399 +122 566.115 569.9925000000001 1000 50 0.99986935 +123 569.9925 573.87 1000 50 1.0 +124 573.87 577.7475000000001 1000 50 0.9999994 +125 577.7475 581.625 1000 50 0.9999714 +126 581.625 585.5025 1000 50 0.9999999 +127 585.5025 589.3800000000001 1000 50 0.999894 +128 589.38 593.2575 1000 50 0.9999999 +129 593.2575 597.1350000000001 1000 50 0.99999964 +130 597.135 601.0125 1000 50 0.99999535 +131 601.0125 604.8900000000001 1000 50 0.9998357 +132 604.89 608.7675 1000 50 0.9946315 +133 608.7675 612.6450000000001 1000 50 0.9999987 +134 612.645 616.5225 1000 50 0.9999939 +135 616.5225 620.4000000000001 1000 50 0.9999964 +136 620.4 624.2775 1000 50 0.9999999 +137 624.2775 628.1550000000001 1000 50 0.99993944 +138 628.155 632.0325 1000 50 0.9999174 +139 632.0325 635.9100000000001 1000 50 1.0 +140 635.91 639.7875 1000 50 0.99996305 +141 639.7875 643.6650000000001 1000 50 0.999967 +142 643.665 647.5425 1000 50 0.99999774 +143 647.5425 651.4200000000001 1000 50 0.9999968 +144 651.42 655.2975 1000 50 0.99999535 +145 655.2975 659.1750000000001 1000 50 0.99999964 +146 659.175 663.0525 1000 50 0.9951249 +147 663.0525 666.9300000000001 1000 50 0.99999976 +148 666.93 670.8075 1000 50 0.9999944 +149 670.8075 674.6850000000001 1000 50 0.999992 +150 674.685 678.5625 1000 50 0.9956115 +151 678.5625 682.44 1000 50 0.99997425 +152 682.44 686.3175000000001 1000 50 1.0 +153 686.3175 690.195 1000 50 0.9364171 +154 690.195 694.0725000000001 1000 50 0.9999994 +155 694.0725 697.95 1000 50 0.99975735 +156 697.95 701.8275000000001 1000 50 0.9999813 +157 701.8275 705.705 1000 50 0.9999528 +158 705.705 709.5825000000001 1000 50 0.9965423 +159 709.5825 713.46 1000 50 0.9994764 +160 713.46 717.3375000000001 1000 50 0.9999585 +161 717.3375 721.215 1000 50 0.9999995 +162 721.215 725.0925000000001 1000 50 0.9999888 +163 725.0925 728.97 1000 50 0.9998492 +164 728.97 732.8475000000001 1000 50 0.99980897 +165 732.8475 736.725 1000 50 0.99999607 +166 736.725 740.6025000000001 1000 50 0.9999976 +167 740.6025 744.48 1000 50 0.999483 +168 744.48 748.3575000000001 1000 50 0.995884 +169 748.3575 752.235 1000 50 0.9999932 +170 752.235 756.1125000000001 1000 50 0.9996791 +171 756.1125 759.99 1000 50 0.9999995 +172 759.99 763.8675000000001 1000 50 1.0 +173 763.8675 767.745 1000 50 0.9991534 +174 767.745 771.6225000000001 1000 50 0.99980766 +175 771.6225 775.5 1000 50 0.99994314 +176 775.5 779.3775 1000 50 0.99871695 +177 779.3775 783.2550000000001 1000 50 0.9999726 +178 783.255 787.1325 1000 50 0.99997675 +179 787.1325 791.0100000000001 1000 50 0.9999975 +180 791.01 794.8875 1000 50 0.99877816 +181 798.765 802.6425 1000 50 0.99984705 +182 802.6425 806.5200000000001 1000 50 0.9997633 +183 806.52 810.3975 1000 50 0.96869725 +184 810.3975 814.2750000000001 1000 50 0.98581034 +185 814.275 818.1525 1000 50 0.62956715 +186 822.03 825.9075 1000 50 0.98299325 +187 829.785 833.6625 1000 50 0.92342347 +188 833.6625 837.5400000000001 1000 50 0.9899262 +189 837.54 841.4175 1000 50 0.5367443 +190 841.4175 845.2950000000001 1000 50 0.9999999 +191 845.295 849.1725 1000 50 0.999642 +192 849.1725 853.0500000000001 1000 50 0.56778485 +193 853.05 856.9275 1000 50 1.0 +194 856.9275 860.8050000000001 1000 50 0.776746 +195 860.805 864.6825 1000 50 0.6772828 +196 864.6825 868.5600000000001 1000 50 0.9968352 +197 868.56 872.4375 1000 50 0.99998045 +198 872.4375 876.315 1000 50 0.9980615 +199 876.315 880.1925000000001 1000 50 0.9999268 +200 880.1925 884.07 1000 50 0.9999995 +201 884.07 887.9475000000001 1000 50 0.9982657 +202 887.9475 891.825 1000 50 0.986357 +203 891.825 895.7025000000001 1000 50 0.9999105 +204 895.7025 899.58 1000 50 0.96823084 +205 899.58 903.4575000000001 1000 50 0.58686996 +206 903.4575 907.335 1000 50 0.99988735 +207 911.2125 915.09 1000 50 0.9934823 +208 915.09 918.9675000000001 1000 50 0.99177414 +209 918.9675 922.845 1000 50 0.98259133 +210 922.845 926.7225000000001 1000 50 0.6672176 +211 926.7225 930.6 1000 50 0.998565 +212 930.6 934.4775000000001 1000 50 0.51673603 +213 934.4775 938.355 1000 50 0.9998047 +214 938.355 942.2325000000001 1000 50 0.9285426 +215 942.2325 946.11 1000 50 0.9918636 +216 946.11 949.9875000000001 1000 50 0.9999913 +217 949.9875 953.865 1000 50 0.99850523 +218 953.865 957.7425000000001 1000 50 0.9981263 +219 957.7425 961.62 1000 50 0.99921954 +220 961.62 965.4975000000001 1000 50 0.9999778 +221 965.4975 969.375 1000 50 0.999984 +222 969.375 973.2525 1000 50 0.96121037 +223 973.2525 977.1300000000001 1000 50 0.99918455 +224 977.13 981.0075 1000 50 0.9455715 +225 981.0075 984.8850000000001 1000 50 0.94136035 +226 984.885 988.7625 1000 50 0.5099037 +227 988.7625 992.6400000000001 1000 50 0.97383356 +228 992.64 996.5175 1000 50 0.9997867 +229 996.5175 1000.3950000000001 1000 50 0.9983069 +230 1000.395 1004.2725 1000 50 0.9999131 +231 1004.2725 1008.1500000000001 1000 50 0.997844 +232 1008.15 1012.0275 1000 50 0.9999975 +233 1012.0275 1015.9050000000001 1000 50 0.6608336 +234 1015.905 1019.7825 1000 50 0.9994204 +235 1019.7825 1023.6600000000001 1000 50 0.9946766 +236 1023.66 1027.5375 1000 50 0.73009884 +237 1027.5375 1031.415 1000 50 0.99995947 +238 1031.415 1035.2925 1000 50 0.99980193 +239 1035.2925 1039.17 1000 50 0.61123973 +240 1039.17 1043.0475000000001 1000 50 0.999739 +241 1043.0475 1046.925 1000 50 0.89864534 +242 1046.925 1050.8025 1000 50 0.9980719 +243 1050.8025 1054.68 1000 50 0.999949 +244 1054.68 1058.5575000000001 1000 50 0.9907099 +245 1058.5575 1062.435 1000 50 0.999154 +246 1062.435 1066.3125 1000 50 0.5595984 +247 1066.3125 1070.19 1000 50 0.9995528 +248 1070.19 1074.0675 1000 50 0.9915714 +249 1074.0675 1077.9450000000002 1000 50 0.67153263 +250 1081.8225 1085.7 1000 50 0.9999981 +251 1089.5775 1093.4550000000002 1000 50 0.9999999 +252 1093.455 1097.3325 1000 50 0.9999944 +253 1097.3325 1101.21 1000 50 0.54973155 +254 1101.21 1105.0875 1000 50 0.9998914 +255 1105.0875 1108.9650000000001 1000 50 0.9986137 +256 1108.965 1112.8425 1000 50 0.63925856 +257 1112.8425 1116.72 1000 50 0.99999964 +258 1116.72 1120.5975 1000 50 0.98824847 +259 1120.5975 1124.4750000000001 1000 50 0.97443193 +260 1124.475 1128.3525 1000 50 0.9771857 +261 1128.3525 1132.23 1000 50 0.9677663 +262 1132.23 1136.1075 1000 50 0.99997365 +263 1136.1075 1139.9850000000001 1000 50 0.54832625 +264 1139.985 1143.8625 1000 50 0.99995446 +265 1143.8625 1147.74 1000 50 0.9999994 +266 1147.74 1151.6175 1000 50 0.99998355 +267 1151.6175 1155.4950000000001 1000 50 0.99999404 +268 1155.495 1159.3725 1000 50 0.9999789 +269 1159.3725 1163.25 1000 50 0.99658066 +270 1163.25 1167.1275 1000 50 0.9999347 +271 1167.1275 1171.005 1000 50 0.9999999 +272 1171.005 1174.8825000000002 1000 50 0.6192712 +273 1174.8825 1178.76 1000 50 1.0 +274 1178.76 1182.6375 1000 50 0.99998367 +275 1182.6375 1186.515 1000 50 0.99999547 +276 1186.515 1190.3925000000002 1000 50 0.99673295 +277 1190.3925 1194.27 1000 50 0.9999999 +278 1194.27 1198.1475 1000 50 0.9970227 +279 1198.1475 1202.025 1000 50 0.999554 +280 1202.025 1205.9025000000001 1000 50 0.9657309 +281 1205.9025 1209.78 1000 50 0.99861455 +282 1209.78 1213.6575 1000 50 0.9998975 +283 1213.6575 1217.535 1000 50 0.9999995 +284 1217.535 1221.4125000000001 1000 50 0.9905331 +285 1221.4125 1225.29 1000 50 0.99940217 +286 1225.29 1229.1675 1000 50 0.99996006 +287 1229.1675 1233.045 1000 50 0.99974185 +288 1233.045 1236.9225000000001 1000 50 0.9994654 +289 1236.9225 1240.8 1000 50 0.9998417 +290 1240.8 1244.6775 1000 50 0.999941 +291 1244.6775 1248.555 1000 50 0.99950325 +292 1248.555 1252.4325000000001 1000 50 0.9988803 +293 1252.4325 1256.31 1000 50 0.9947153 +294 1256.31 1260.1875 1000 50 0.9999957 +295 1260.1875 1264.065 1000 50 0.9982488 +296 1264.065 1267.9425 1000 50 0.9999995 +297 1267.9425 1271.8200000000002 1000 50 1.0 +298 1271.82 1275.6975 1000 50 0.99998534 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_03-24-53_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_03-24-53_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e0b064b08b4f55eaabe74ed1e92466fde8d511e9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_03-24-53_annot_2022-11-30_01.txt @@ -0,0 +1,4 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.97843605 +2 3.8775 7.755 1000 50 0.97975427 +3 7.755 11.6325 1000 50 0.9981274 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_04-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_04-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..8216dc3f33f9382a053208904bc216d6443ba4d5 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_04-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,319 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999747 +2 3.8775 7.755 1000 50 0.7057444 +3 11.6325 15.51 1000 50 0.99999905 +4 15.51 19.3875 1000 50 0.99760747 +5 19.3875 23.265 1000 50 0.95023185 +6 23.265 27.142500000000002 1000 50 0.7900995 +7 27.1425 31.02 1000 50 0.9282989 +8 31.02 34.8975 1000 50 0.9295484 +9 38.775 42.652499999999996 1000 50 0.5692048 +10 42.6525 46.53 1000 50 0.9984577 +11 50.4075 54.285 1000 50 0.9995869 +12 58.1625 62.04 1000 50 0.99898165 +13 62.04 65.9175 1000 50 0.98649347 +14 69.795 73.6725 1000 50 0.75403595 +15 77.55 81.4275 1000 50 0.9381196 +16 81.4275 85.30499999999999 1000 50 0.9950387 +17 93.06 96.9375 1000 50 0.9625704 +18 112.4475 116.325 1000 50 0.54268247 +19 116.325 120.2025 1000 50 0.9418762 +20 120.2025 124.08 1000 50 0.87356585 +21 124.08 127.9575 1000 50 0.9995196 +22 127.9575 131.835 1000 50 0.9993236 +23 135.7125 139.59 1000 50 0.99858713 +24 139.59 143.4675 1000 50 0.99702865 +25 143.4675 147.345 1000 50 0.9594575 +26 147.345 151.2225 1000 50 0.99997115 +27 151.2225 155.1 1000 50 0.9998841 +28 158.9775 162.855 1000 50 0.98792577 +29 162.855 166.7325 1000 50 0.8265411 +30 170.61 174.4875 1000 50 0.59801406 +31 174.4875 178.365 1000 50 0.988309 +32 186.12 189.9975 1000 50 0.9827991 +33 189.9975 193.875 1000 50 0.7281776 +34 193.875 197.7525 1000 50 0.91918224 +35 209.385 213.2625 1000 50 0.9999571 +36 217.14 221.01749999999998 1000 50 0.7868572 +37 221.0175 224.895 1000 50 0.99353987 +38 224.895 228.7725 1000 50 0.9947271 +39 228.7725 232.65 1000 50 0.5759716 +40 232.65 236.5275 1000 50 0.52125305 +41 236.5275 240.405 1000 50 0.69219154 +42 244.2825 248.16 1000 50 0.89410645 +43 248.16 252.0375 1000 50 0.89779425 +44 252.0375 255.915 1000 50 0.9698225 +45 259.7925 263.67 1000 50 0.9733392 +46 263.67 267.5475 1000 50 0.76920295 +47 275.3025 279.18 1000 50 0.9363877 +48 283.0575 286.935 1000 50 0.9995932 +49 286.935 290.8125 1000 50 0.9985966 +50 294.69 298.5675 1000 50 0.98566264 +51 298.5675 302.445 1000 50 0.9999578 +52 306.3225 310.2 1000 50 0.99996126 +53 310.2 314.0775 1000 50 0.9484139 +54 317.955 321.8325 1000 50 0.99995494 +55 321.8325 325.71 1000 50 0.99953544 +56 329.5875 333.465 1000 50 0.99961036 +57 333.465 337.3425 1000 50 0.86741364 +58 341.22 345.0975 1000 50 0.9907341 +59 345.0975 348.975 1000 50 0.9958307 +60 352.8525 356.73 1000 50 0.9999931 +61 356.73 360.6075 1000 50 0.9899595 +62 364.485 368.3625 1000 50 0.9997179 +63 368.3625 372.24 1000 50 0.9032163 +64 376.1175 379.995 1000 50 0.9989311 +65 379.995 383.8725 1000 50 0.9943726 +66 383.8725 387.75 1000 50 0.9999887 +67 387.75 391.6275 1000 50 0.9999995 +68 391.6275 395.505 1000 50 0.99941707 +69 395.505 399.3825 1000 50 0.9999906 +70 399.3825 403.26 1000 50 0.99999344 +71 403.26 407.1375 1000 50 0.99999607 +72 407.1375 411.015 1000 50 1.0 +73 411.015 414.8925 1000 50 0.99994814 +74 414.8925 418.77 1000 50 0.9999995 +75 418.77 422.6475 1000 50 0.99977833 +76 422.6475 426.525 1000 50 0.9999311 +77 426.525 430.4025 1000 50 1.0 +78 430.4025 434.28 1000 50 0.9994443 +79 434.28 438.15749999999997 1000 50 0.99990046 +80 438.1575 442.035 1000 50 0.9977373 +81 442.035 445.9125 1000 50 0.9999838 +82 445.9125 449.79 1000 50 0.99764 +83 449.79 453.6675 1000 50 0.999995 +84 453.6675 457.545 1000 50 0.9979474 +85 457.545 461.4225 1000 50 0.99999833 +86 461.4225 465.3 1000 50 0.9991646 +87 465.3 469.1775 1000 50 0.999212 +88 469.1775 473.055 1000 50 0.999969 +89 473.055 476.9325 1000 50 0.9943455 +90 476.9325 480.81 1000 50 0.9998934 +91 480.81 484.6875 1000 50 0.9999989 +92 484.6875 488.565 1000 50 0.99999666 +93 488.565 492.4425 1000 50 0.9999994 +94 492.4425 496.32 1000 50 0.99999917 +95 496.32 500.1975 1000 50 0.5409264 +96 500.1975 504.075 1000 50 0.999861 +97 504.075 507.9525 1000 50 0.9976012 +98 507.9525 511.83 1000 50 0.9840497 +99 511.83 515.7075 1000 50 1.0 +100 515.7075 519.585 1000 50 0.99999964 +101 519.585 523.4625000000001 1000 50 0.9993843 +102 523.4625 527.34 1000 50 1.0 +103 527.34 531.2175000000001 1000 50 0.9999994 +104 531.2175 535.095 1000 50 0.99718946 +105 535.095 538.9725000000001 1000 50 1.0 +106 538.9725 542.85 1000 50 0.9995696 +107 542.85 546.7275000000001 1000 50 0.99978906 +108 546.7275 550.605 1000 50 0.9999999 +109 550.605 554.4825000000001 1000 50 0.99999535 +110 554.4825 558.36 1000 50 0.9999844 +111 558.36 562.2375000000001 1000 50 0.99999714 +112 562.2375 566.115 1000 50 0.99995804 +113 566.115 569.9925000000001 1000 50 0.9985739 +114 569.9925 573.87 1000 50 0.9999999 +115 573.87 577.7475000000001 1000 50 0.91590106 +116 577.7475 581.625 1000 50 0.9999441 +117 581.625 585.5025 1000 50 0.9998629 +118 585.5025 589.3800000000001 1000 50 0.99986076 +119 589.38 593.2575 1000 50 0.99996245 +120 593.2575 597.1350000000001 1000 50 0.9999912 +121 597.135 601.0125 1000 50 0.99998987 +122 604.89 608.7675 1000 50 0.9999703 +123 608.7675 612.6450000000001 1000 50 0.99999666 +124 612.645 616.5225 1000 50 0.67423624 +125 616.5225 620.4000000000001 1000 50 0.9996215 +126 620.4 624.2775 1000 50 0.9994979 +127 624.2775 628.1550000000001 1000 50 0.9999995 +128 628.155 632.0325 1000 50 0.99987805 +129 632.0325 635.9100000000001 1000 50 0.9999325 +130 635.91 639.7875 1000 50 0.99507916 +131 639.7875 643.6650000000001 1000 50 0.9999801 +132 643.665 647.5425 1000 50 0.9999988 +133 647.5425 651.4200000000001 1000 50 1.0 +134 651.42 655.2975 1000 50 0.9994325 +135 655.2975 659.1750000000001 1000 50 0.99999607 +136 659.175 663.0525 1000 50 1.0 +137 663.0525 666.9300000000001 1000 50 0.99994314 +138 666.93 670.8075 1000 50 0.99999917 +139 670.8075 674.6850000000001 1000 50 1.0 +140 674.685 678.5625 1000 50 0.9999367 +141 678.5625 682.44 1000 50 0.9999708 +142 682.44 686.3175000000001 1000 50 0.9999981 +143 686.3175 690.195 1000 50 0.99999905 +144 690.195 694.0725000000001 1000 50 0.9999999 +145 694.0725 697.95 1000 50 0.9999999 +146 697.95 701.8275000000001 1000 50 0.9999647 +147 701.8275 705.705 1000 50 0.9999945 +148 705.705 709.5825000000001 1000 50 1.0 +149 709.5825 713.46 1000 50 0.99999976 +150 713.46 717.3375000000001 1000 50 0.9999788 +151 717.3375 721.215 1000 50 0.9999671 +152 721.215 725.0925000000001 1000 50 0.999218 +153 725.0925 728.97 1000 50 0.9999629 +154 728.97 732.8475000000001 1000 50 0.7981462 +155 732.8475 736.725 1000 50 0.9995372 +156 736.725 740.6025000000001 1000 50 0.9999995 +157 740.6025 744.48 1000 50 0.99999774 +158 744.48 748.3575000000001 1000 50 0.9999856 +159 748.3575 752.235 1000 50 0.99879885 +160 752.235 756.1125000000001 1000 50 0.9999981 +161 756.1125 759.99 1000 50 0.99998975 +162 759.99 763.8675000000001 1000 50 0.9996979 +163 763.8675 767.745 1000 50 0.9934283 +164 767.745 771.6225000000001 1000 50 0.99848664 +165 771.6225 775.5 1000 50 0.99883896 +166 775.5 779.3775 1000 50 0.99993634 +167 779.3775 783.2550000000001 1000 50 0.99983823 +168 783.255 787.1325 1000 50 0.99991715 +169 787.1325 791.0100000000001 1000 50 0.9999963 +170 791.01 794.8875 1000 50 0.9999994 +171 794.8875 798.7650000000001 1000 50 0.9999932 +172 798.765 802.6425 1000 50 0.9999651 +173 802.6425 806.5200000000001 1000 50 0.9999887 +174 806.52 810.3975 1000 50 0.9948314 +175 810.3975 814.2750000000001 1000 50 0.9993486 +176 814.275 818.1525 1000 50 0.99999464 +177 818.1525 822.0300000000001 1000 50 0.9939433 +178 822.03 825.9075 1000 50 0.95364743 +179 825.9075 829.7850000000001 1000 50 1.0 +180 829.785 833.6625 1000 50 0.9998983 +181 833.6625 837.5400000000001 1000 50 0.50320715 +182 837.54 841.4175 1000 50 0.9995671 +183 841.4175 845.2950000000001 1000 50 0.99914 +184 845.295 849.1725 1000 50 0.9104774 +185 849.1725 853.0500000000001 1000 50 0.99978405 +186 853.05 856.9275 1000 50 0.72585386 +187 860.805 864.6825 1000 50 0.99923027 +188 864.6825 868.5600000000001 1000 50 0.99940145 +189 868.56 872.4375 1000 50 0.82201284 +190 872.4375 876.315 1000 50 0.8543287 +191 876.315 880.1925000000001 1000 50 0.99695396 +192 880.1925 884.07 1000 50 0.53084236 +193 884.07 887.9475000000001 1000 50 0.99725324 +194 887.9475 891.825 1000 50 0.9997743 +195 891.825 895.7025000000001 1000 50 0.9592971 +196 895.7025 899.58 1000 50 0.99781597 +197 903.4575 907.335 1000 50 0.9944383 +198 907.335 911.2125000000001 1000 50 0.9937085 +199 915.09 918.9675000000001 1000 50 0.99915624 +200 918.9675 922.845 1000 50 0.9985108 +201 926.7225 930.6 1000 50 0.998223 +202 930.6 934.4775000000001 1000 50 0.9999304 +203 934.4775 938.355 1000 50 0.9128986 +204 938.355 942.2325000000001 1000 50 0.58765286 +205 942.2325 946.11 1000 50 0.9999968 +206 946.11 949.9875000000001 1000 50 0.91611326 +207 949.9875 953.865 1000 50 0.9999701 +208 953.865 957.7425000000001 1000 50 0.99919456 +209 961.62 965.4975000000001 1000 50 0.9999907 +210 965.4975 969.375 1000 50 0.9441238 +211 973.2525 977.1300000000001 1000 50 0.92724353 +212 977.13 981.0075 1000 50 0.9587546 +213 981.0075 984.8850000000001 1000 50 0.9961248 +214 984.885 988.7625 1000 50 0.68548524 +215 988.7625 992.6400000000001 1000 50 0.9860605 +216 992.64 996.5175 1000 50 0.75438356 +217 1000.395 1004.2725 1000 50 0.9992337 +218 1008.15 1012.0275 1000 50 0.99933654 +219 1012.0275 1015.9050000000001 1000 50 0.97231513 +220 1015.905 1019.7825 1000 50 0.7576682 +221 1019.7825 1023.6600000000001 1000 50 0.9996269 +222 1023.66 1027.5375 1000 50 0.994666 +223 1027.5375 1031.415 1000 50 0.98357993 +224 1031.415 1035.2925 1000 50 0.99968743 +225 1035.2925 1039.17 1000 50 0.9945327 +226 1039.17 1043.0475000000001 1000 50 0.6607233 +227 1043.0475 1046.925 1000 50 0.62362105 +228 1046.925 1050.8025 1000 50 0.9767953 +229 1050.8025 1054.68 1000 50 0.9999769 +230 1054.68 1058.5575000000001 1000 50 0.9977805 +231 1058.5575 1062.435 1000 50 0.8576586 +232 1062.435 1066.3125 1000 50 0.5911248 +233 1066.3125 1070.19 1000 50 0.9242755 +234 1074.0675 1077.9450000000002 1000 50 0.96150696 +235 1077.945 1081.8225 1000 50 0.99909055 +236 1085.7 1089.5775 1000 50 0.93710494 +237 1089.5775 1093.4550000000002 1000 50 0.9997968 +238 1105.0875 1108.9650000000001 1000 50 0.97909 +239 1108.965 1112.8425 1000 50 0.8949769 +240 1112.8425 1116.72 1000 50 0.89684486 +241 1124.475 1128.3525 1000 50 0.8061492 +242 1136.1075 1139.9850000000001 1000 50 0.9990491 +243 1139.985 1143.8625 1000 50 0.94984186 +244 1143.8625 1147.74 1000 50 0.5338219 +245 1171.005 1174.8825000000002 1000 50 0.9952466 +246 1182.6375 1186.515 1000 50 0.585669 +247 1186.515 1190.3925000000002 1000 50 0.9273076 +248 1205.9025 1209.78 1000 50 0.63934046 +249 1213.6575 1217.535 1000 50 0.9989309 +250 1221.4125 1225.29 1000 50 0.99102813 +251 1225.29 1229.1675 1000 50 0.9352262 +252 1229.1675 1233.045 1000 50 0.9521017 +253 1233.045 1236.9225000000001 1000 50 0.99987566 +254 1236.9225 1240.8 1000 50 0.9994381 +255 1244.6775 1248.555 1000 50 0.9996294 +256 1248.555 1252.4325000000001 1000 50 0.9999912 +257 1252.4325 1256.31 1000 50 0.9993573 +258 1256.31 1260.1875 1000 50 0.99973017 +259 1260.1875 1264.065 1000 50 1.0 +260 1267.9425 1271.8200000000002 1000 50 0.99971443 +261 1271.82 1275.6975 1000 50 0.99994576 +262 1275.6975 1279.575 1000 50 0.9544324 +263 1279.575 1283.4525 1000 50 1.0 +264 1283.4525 1287.3300000000002 1000 50 0.9915378 +265 1287.33 1291.2075 1000 50 0.99942374 +266 1291.2075 1295.085 1000 50 0.7125142 +267 1295.085 1298.9625 1000 50 0.99984026 +268 1298.9625 1302.8400000000001 1000 50 0.99999964 +269 1302.84 1306.7175 1000 50 0.99936 +270 1306.7175 1310.595 1000 50 0.9999987 +271 1314.4725 1318.3500000000001 1000 50 0.7598425 +272 1318.35 1322.2275 1000 50 0.9974375 +273 1322.2275 1326.105 1000 50 0.9873154 +274 1326.105 1329.9825 1000 50 0.63722837 +275 1329.9825 1333.8600000000001 1000 50 0.99727124 +276 1333.86 1337.7375 1000 50 0.98258144 +277 1337.7375 1341.615 1000 50 0.99981123 +278 1341.615 1345.4925 1000 50 0.9999994 +279 1345.4925 1349.3700000000001 1000 50 0.9032923 +280 1349.37 1353.2475 1000 50 0.9793396 +281 1353.2475 1357.125 1000 50 0.99993646 +282 1357.125 1361.0025 1000 50 0.9999914 +283 1361.0025 1364.88 1000 50 0.99999976 +284 1364.88 1368.7575000000002 1000 50 0.99936765 +285 1368.7575 1372.635 1000 50 0.9975568 +286 1372.635 1376.5125 1000 50 0.9999676 +287 1376.5125 1380.39 1000 50 0.9980294 +288 1380.39 1384.2675000000002 1000 50 0.9999964 +289 1384.2675 1388.145 1000 50 0.9999994 +290 1388.145 1392.0225 1000 50 0.9933397 +291 1392.0225 1395.9 1000 50 0.99999976 +292 1395.9 1399.7775000000001 1000 50 0.9999753 +293 1399.7775 1403.655 1000 50 0.9996197 +294 1403.655 1407.5325 1000 50 0.99978524 +295 1407.5325 1411.41 1000 50 0.99986386 +296 1411.41 1415.2875000000001 1000 50 0.99428445 +297 1415.2875 1419.165 1000 50 0.9998442 +298 1419.165 1423.0425 1000 50 0.99920005 +299 1423.0425 1426.92 1000 50 0.99990344 +300 1426.92 1430.7975000000001 1000 50 0.99999964 +301 1430.7975 1434.675 1000 50 0.9999982 +302 1434.675 1438.5525 1000 50 0.99749327 +303 1438.5525 1442.43 1000 50 0.9999999 +304 1442.43 1446.3075000000001 1000 50 0.99996865 +305 1446.3075 1450.185 1000 50 0.9771627 +306 1450.185 1454.0625 1000 50 0.99977535 +307 1454.0625 1457.94 1000 50 0.99993217 +308 1457.94 1461.8175 1000 50 0.9999696 +309 1461.8175 1465.6950000000002 1000 50 0.9998585 +310 1465.695 1469.5725 1000 50 0.99973696 +311 1469.5725 1473.45 1000 50 0.84041405 +312 1473.45 1477.3275 1000 50 0.99890745 +313 1477.3275 1481.2050000000002 1000 50 0.9999914 +314 1481.205 1485.0825 1000 50 0.99997723 +315 1485.0825 1488.96 1000 50 0.99996734 +316 1488.96 1492.8375 1000 50 0.99962556 +317 1492.8375 1496.7150000000001 1000 50 0.99993825 +318 1496.715 1500.5925 1000 50 0.99998724 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_05-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_05-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..9873719b12e688af4e2e704ada5372fc88132ed1 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_05-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,25 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99996054 +2 3.8775 7.755 1000 50 0.9999913 +3 7.755 11.6325 1000 50 0.99999917 +4 11.6325 15.51 1000 50 0.9997439 +5 15.51 19.3875 1000 50 0.99949014 +6 19.3875 23.265 1000 50 0.9999912 +7 23.265 27.142500000000002 1000 50 0.99996555 +8 27.1425 31.02 1000 50 0.99837446 +9 31.02 34.8975 1000 50 0.99965763 +10 34.8975 38.775 1000 50 0.9999982 +11 38.775 42.652499999999996 1000 50 0.5763261 +12 42.6525 46.53 1000 50 0.9999963 +13 46.53 50.4075 1000 50 0.99996305 +14 50.4075 54.285 1000 50 1.0 +15 54.285 58.162499999999994 1000 50 0.9995216 +16 58.1625 62.04 1000 50 0.99998784 +17 62.04 65.9175 1000 50 0.99994385 +18 65.9175 69.795 1000 50 0.9999852 +19 69.795 73.6725 1000 50 0.9999999 +20 73.6725 77.55 1000 50 0.999567 +21 77.55 81.4275 1000 50 1.0 +22 81.4275 85.30499999999999 1000 50 0.9999964 +23 85.305 89.1825 1000 50 0.9999864 +24 89.1825 93.06 1000 50 0.9993542 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_05-05-10_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_05-05-10_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..80ee14a417009c0586ad8e78d6edc1e5ca115452 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_05-05-10_annot_2022-11-30_01.txt @@ -0,0 +1,259 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.76989293 +2 3.8775 7.755 1000 50 0.5040247 +3 7.755 11.6325 1000 50 0.99989796 +4 11.6325 15.51 1000 50 0.99993765 +5 15.51 19.3875 1000 50 0.99999654 +6 19.3875 23.265 1000 50 0.9999634 +7 23.265 27.142500000000002 1000 50 0.9980666 +8 27.1425 31.02 1000 50 0.9983499 +9 31.02 34.8975 1000 50 0.9999721 +10 34.8975 38.775 1000 50 0.9989918 +11 38.775 42.652499999999996 1000 50 0.9999291 +12 42.6525 46.53 1000 50 0.9972391 +13 46.53 50.4075 1000 50 0.9999504 +14 50.4075 54.285 1000 50 0.9803253 +15 54.285 58.162499999999994 1000 50 0.9925499 +16 58.1625 62.04 1000 50 0.94817615 +17 62.04 65.9175 1000 50 0.9742963 +18 65.9175 69.795 1000 50 0.99985385 +19 69.795 73.6725 1000 50 0.9994586 +20 73.6725 77.55 1000 50 0.91148984 +21 77.55 81.4275 1000 50 0.99970466 +22 81.4275 85.30499999999999 1000 50 0.99033946 +23 85.305 89.1825 1000 50 0.99924624 +24 89.1825 93.06 1000 50 0.9625792 +25 96.9375 100.815 1000 50 0.974164 +26 100.815 104.6925 1000 50 0.98929274 +27 108.57 112.44749999999999 1000 50 0.94599587 +28 112.4475 116.325 1000 50 0.9464412 +29 124.08 127.9575 1000 50 0.99999595 +30 127.9575 131.835 1000 50 0.75291586 +31 131.835 135.7125 1000 50 0.9943031 +32 135.7125 139.59 1000 50 0.99480045 +33 139.59 143.4675 1000 50 0.9566957 +34 143.4675 147.345 1000 50 0.9999504 +35 155.1 158.9775 1000 50 0.9779734 +36 158.9775 162.855 1000 50 0.9851756 +37 166.7325 170.60999999999999 1000 50 0.99993813 +38 170.61 174.4875 1000 50 0.9984289 +39 178.365 182.2425 1000 50 0.52126783 +40 182.2425 186.12 1000 50 0.99995744 +41 186.12 189.9975 1000 50 0.8402025 +42 193.875 197.7525 1000 50 0.63111866 +43 197.7525 201.63 1000 50 0.9266215 +44 201.63 205.5075 1000 50 0.7093213 +45 221.0175 224.895 1000 50 0.9986784 +46 224.895 228.7725 1000 50 0.9018155 +47 232.65 236.5275 1000 50 0.98634285 +48 236.5275 240.405 1000 50 0.99442506 +49 244.2825 248.16 1000 50 0.9573228 +50 248.16 252.0375 1000 50 0.9993967 +51 252.0375 255.915 1000 50 0.9999987 +52 255.915 259.7925 1000 50 0.9858849 +53 259.7925 263.67 1000 50 0.9999598 +54 263.67 267.5475 1000 50 0.9868836 +55 267.5475 271.425 1000 50 0.9999999 +56 271.425 275.3025 1000 50 0.9606247 +57 275.3025 279.18 1000 50 0.9281948 +58 279.18 283.0575 1000 50 0.9992348 +59 283.0575 286.935 1000 50 0.9998634 +60 286.935 290.8125 1000 50 0.9998834 +61 290.8125 294.69 1000 50 0.5673516 +62 294.69 298.5675 1000 50 1.0 +63 298.5675 302.445 1000 50 0.9975127 +64 302.445 306.3225 1000 50 0.99999046 +65 310.2 314.0775 1000 50 0.9260327 +66 314.0775 317.955 1000 50 0.9998605 +67 317.955 321.8325 1000 50 0.974784 +68 321.8325 325.71 1000 50 0.99991596 +69 325.71 329.5875 1000 50 0.99999774 +70 333.465 337.3425 1000 50 0.9965932 +71 337.3425 341.21999999999997 1000 50 0.9961171 +72 341.22 345.0975 1000 50 0.6801909 +73 345.0975 348.975 1000 50 0.9999999 +74 348.975 352.8525 1000 50 0.99397486 +75 356.73 360.6075 1000 50 0.9997826 +76 360.6075 364.485 1000 50 0.99638283 +77 364.485 368.3625 1000 50 0.8608001 +78 368.3625 372.24 1000 50 0.99319494 +79 372.24 376.1175 1000 50 0.99949825 +80 376.1175 379.995 1000 50 0.9992698 +81 379.995 383.8725 1000 50 0.99859375 +82 383.8725 387.75 1000 50 0.97838825 +83 387.75 391.6275 1000 50 0.99225724 +84 391.6275 395.505 1000 50 0.76324624 +85 395.505 399.3825 1000 50 0.9994862 +86 399.3825 403.26 1000 50 0.7141159 +87 407.1375 411.015 1000 50 0.99998736 +88 411.015 414.8925 1000 50 0.99998987 +89 414.8925 418.77 1000 50 0.9959513 +90 418.77 422.6475 1000 50 0.9993747 +91 422.6475 426.525 1000 50 0.9999999 +92 426.525 430.4025 1000 50 0.80999804 +93 430.4025 434.28 1000 50 0.9999956 +94 434.28 438.15749999999997 1000 50 0.9999999 +95 438.1575 442.035 1000 50 0.9978143 +96 442.035 445.9125 1000 50 0.9999018 +97 445.9125 449.79 1000 50 0.999997 +98 449.79 453.6675 1000 50 0.9994332 +99 453.6675 457.545 1000 50 1.0 +100 457.545 461.4225 1000 50 0.9999622 +101 461.4225 465.3 1000 50 0.9999912 +102 465.3 469.1775 1000 50 1.0 +103 469.1775 473.055 1000 50 0.99894375 +104 473.055 476.9325 1000 50 0.9991615 +105 476.9325 480.81 1000 50 0.9999999 +106 480.81 484.6875 1000 50 0.9999602 +107 484.6875 488.565 1000 50 0.99999964 +108 488.565 492.4425 1000 50 1.0 +109 492.4425 496.32 1000 50 0.9925808 +110 496.32 500.1975 1000 50 0.99999726 +111 500.1975 504.075 1000 50 1.0 +112 504.075 507.9525 1000 50 0.99712014 +113 507.9525 511.83 1000 50 0.9999988 +114 511.83 515.7075 1000 50 1.0 +115 515.7075 519.585 1000 50 0.9955978 +116 519.585 523.4625000000001 1000 50 1.0 +117 523.4625 527.34 1000 50 0.99996054 +118 527.34 531.2175000000001 1000 50 0.9998754 +119 531.2175 535.095 1000 50 0.9999622 +120 535.095 538.9725000000001 1000 50 0.99995446 +121 538.9725 542.85 1000 50 0.9999988 +122 542.85 546.7275000000001 1000 50 1.0 +123 546.7275 550.605 1000 50 0.99999404 +124 550.605 554.4825000000001 1000 50 0.99993324 +125 554.4825 558.36 1000 50 0.99996257 +126 558.36 562.2375000000001 1000 50 0.9999995 +127 562.2375 566.115 1000 50 0.9993587 +128 566.115 569.9925000000001 1000 50 0.99704665 +129 569.9925 573.87 1000 50 1.0 +130 573.87 577.7475000000001 1000 50 0.9999969 +131 577.7475 581.625 1000 50 0.99999905 +132 581.625 585.5025 1000 50 0.9999994 +133 585.5025 589.3800000000001 1000 50 0.99973637 +134 589.38 593.2575 1000 50 1.0 +135 593.2575 597.1350000000001 1000 50 0.9999999 +136 597.135 601.0125 1000 50 0.99999785 +137 601.0125 604.8900000000001 1000 50 0.9997861 +138 604.89 608.7675 1000 50 1.0 +139 608.7675 612.6450000000001 1000 50 0.9997389 +140 612.645 616.5225 1000 50 0.9999771 +141 616.5225 620.4000000000001 1000 50 1.0 +142 620.4 624.2775 1000 50 0.99994147 +143 624.2775 628.1550000000001 1000 50 0.9999995 +144 628.155 632.0325 1000 50 0.9999963 +145 632.0325 635.9100000000001 1000 50 0.9999999 +146 635.91 639.7875 1000 50 0.9999641 +147 639.7875 643.6650000000001 1000 50 0.9999943 +148 643.665 647.5425 1000 50 0.9999951 +149 647.5425 651.4200000000001 1000 50 0.99999833 +150 651.42 655.2975 1000 50 0.9999652 +151 655.2975 659.1750000000001 1000 50 0.99997926 +152 659.175 663.0525 1000 50 0.999995 +153 663.0525 666.9300000000001 1000 50 0.99999917 +154 666.93 670.8075 1000 50 0.9998882 +155 670.8075 674.6850000000001 1000 50 0.999876 +156 674.685 678.5625 1000 50 0.9999906 +157 678.5625 682.44 1000 50 0.9679446 +158 682.44 686.3175000000001 1000 50 0.97891265 +159 686.3175 690.195 1000 50 0.90861636 +160 690.195 694.0725000000001 1000 50 0.9999995 +161 694.0725 697.95 1000 50 0.9961647 +162 697.95 701.8275000000001 1000 50 0.999683 +163 701.8275 705.705 1000 50 0.9999466 +164 705.705 709.5825000000001 1000 50 0.99870086 +165 709.5825 713.46 1000 50 0.98706937 +166 713.46 717.3375000000001 1000 50 0.9999516 +167 717.3375 721.215 1000 50 0.99878913 +168 721.215 725.0925000000001 1000 50 0.7639695 +169 725.0925 728.97 1000 50 0.99974245 +170 728.97 732.8475000000001 1000 50 0.63232183 +171 732.8475 736.725 1000 50 0.99951804 +172 736.725 740.6025000000001 1000 50 0.73054785 +173 740.6025 744.48 1000 50 0.806921 +174 744.48 748.3575000000001 1000 50 0.9726599 +175 752.235 756.1125000000001 1000 50 0.989781 +176 759.99 763.8675000000001 1000 50 0.8809173 +177 763.8675 767.745 1000 50 0.9783201 +178 767.745 771.6225000000001 1000 50 0.9091494 +179 783.255 787.1325 1000 50 0.9955576 +180 787.1325 791.0100000000001 1000 50 0.9638994 +181 794.8875 798.7650000000001 1000 50 0.99980146 +182 802.6425 806.5200000000001 1000 50 0.5604794 +183 810.3975 814.2750000000001 1000 50 0.997543 +184 818.1525 822.0300000000001 1000 50 0.8915116 +185 822.03 825.9075 1000 50 0.97176975 +186 829.785 833.6625 1000 50 0.99936885 +187 837.54 841.4175 1000 50 0.9984484 +188 841.4175 845.2950000000001 1000 50 0.9951708 +189 845.295 849.1725 1000 50 0.68992823 +190 849.1725 853.0500000000001 1000 50 0.99989736 +191 853.05 856.9275 1000 50 0.913291 +192 856.9275 860.8050000000001 1000 50 0.9999161 +193 860.805 864.6825 1000 50 0.99939823 +194 864.6825 868.5600000000001 1000 50 0.99973005 +195 868.56 872.4375 1000 50 0.99182034 +196 872.4375 876.315 1000 50 0.99469537 +197 876.315 880.1925000000001 1000 50 0.9681553 +198 880.1925 884.07 1000 50 0.99986064 +199 884.07 887.9475000000001 1000 50 0.9968341 +200 887.9475 891.825 1000 50 0.66535985 +201 891.825 895.7025000000001 1000 50 0.99999475 +202 899.58 903.4575000000001 1000 50 0.9250018 +203 911.2125 915.09 1000 50 0.70771116 +204 918.9675 922.845 1000 50 0.8519576 +205 926.7225 930.6 1000 50 0.9834991 +206 938.355 942.2325000000001 1000 50 0.9367079 +207 946.11 949.9875000000001 1000 50 0.903338 +208 949.9875 953.865 1000 50 0.9957229 +209 957.7425 961.62 1000 50 0.9229471 +210 961.62 965.4975000000001 1000 50 0.81597084 +211 965.4975 969.375 1000 50 0.6402635 +212 969.375 973.2525 1000 50 0.83296573 +213 973.2525 977.1300000000001 1000 50 0.9881719 +214 977.13 981.0075 1000 50 0.9711628 +215 981.0075 984.8850000000001 1000 50 0.9661549 +216 984.885 988.7625 1000 50 0.9998996 +217 992.64 996.5175 1000 50 0.9302218 +218 996.5175 1000.3950000000001 1000 50 0.72730243 +219 1000.395 1004.2725 1000 50 0.9972836 +220 1008.15 1012.0275 1000 50 0.8562894 +221 1015.905 1019.7825 1000 50 0.87693506 +222 1019.7825 1023.6600000000001 1000 50 0.95659596 +223 1023.66 1027.5375 1000 50 0.620995 +224 1027.5375 1031.415 1000 50 0.99993634 +225 1031.415 1035.2925 1000 50 0.82074434 +226 1035.2925 1039.17 1000 50 0.5784602 +227 1039.17 1043.0475000000001 1000 50 0.86922616 +228 1050.8025 1054.68 1000 50 0.90879166 +229 1058.5575 1062.435 1000 50 0.5174648 +230 1062.435 1066.3125 1000 50 0.8863 +231 1074.0675 1077.9450000000002 1000 50 0.83927625 +232 1077.945 1081.8225 1000 50 0.764367 +233 1081.8225 1085.7 1000 50 0.69755197 +234 1089.5775 1093.4550000000002 1000 50 0.6480001 +235 1093.455 1097.3325 1000 50 0.9997191 +236 1101.21 1105.0875 1000 50 0.9994448 +237 1105.0875 1108.9650000000001 1000 50 0.9389489 +238 1108.965 1112.8425 1000 50 0.9991916 +239 1112.8425 1116.72 1000 50 0.68856996 +240 1116.72 1120.5975 1000 50 0.9037584 +241 1120.5975 1124.4750000000001 1000 50 0.93413925 +242 1124.475 1128.3525 1000 50 1.0 +243 1128.3525 1132.23 1000 50 0.9996137 +244 1132.23 1136.1075 1000 50 0.8462376 +245 1139.985 1143.8625 1000 50 0.54378444 +246 1143.8625 1147.74 1000 50 0.9811792 +247 1147.74 1151.6175 1000 50 0.9989334 +248 1151.6175 1155.4950000000001 1000 50 0.9999968 +249 1155.495 1159.3725 1000 50 0.9917854 +250 1159.3725 1163.25 1000 50 0.99978095 +251 1163.25 1167.1275 1000 50 0.83898777 +252 1167.1275 1171.005 1000 50 0.99997914 +253 1171.005 1174.8825000000002 1000 50 0.9802229 +254 1174.8825 1178.76 1000 50 0.5748965 +255 1178.76 1182.6375 1000 50 0.9997588 +256 1182.6375 1186.515 1000 50 0.9999639 +257 1186.515 1190.3925000000002 1000 50 0.99868864 +258 1190.3925 1194.27 1000 50 0.9999982 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_06-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_06-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..143749fad63204c8a62ca8007ee57a83ff8b9c68 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_06-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,97 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.95682967 +2 11.6325 15.51 1000 50 0.8733752 +3 15.51 19.3875 1000 50 0.9665963 +4 19.3875 23.265 1000 50 0.99956614 +5 23.265 27.142500000000002 1000 50 0.99916565 +6 27.1425 31.02 1000 50 0.7501615 +7 31.02 34.8975 1000 50 0.99938345 +8 34.8975 38.775 1000 50 0.99996006 +9 38.775 42.652499999999996 1000 50 0.71744496 +10 42.6525 46.53 1000 50 0.91624564 +11 46.53 50.4075 1000 50 0.5441605 +12 50.4075 54.285 1000 50 0.9549517 +13 54.285 58.162499999999994 1000 50 0.9998307 +14 58.1625 62.04 1000 50 0.8704345 +15 65.9175 69.795 1000 50 0.99929154 +16 69.795 73.6725 1000 50 0.92779577 +17 73.6725 77.55 1000 50 0.82195854 +18 77.55 81.4275 1000 50 0.9999472 +19 81.4275 85.30499999999999 1000 50 0.9997818 +20 85.305 89.1825 1000 50 0.99905974 +21 89.1825 93.06 1000 50 0.9627872 +22 93.06 96.9375 1000 50 0.99971646 +23 96.9375 100.815 1000 50 0.9999975 +24 104.6925 108.57 1000 50 0.96750647 +25 108.57 112.44749999999999 1000 50 0.94795895 +26 120.2025 124.08 1000 50 0.99764025 +27 124.08 127.9575 1000 50 0.9998311 +28 131.835 135.7125 1000 50 0.99744487 +29 135.7125 139.59 1000 50 0.9910164 +30 147.345 151.2225 1000 50 0.992062 +31 151.2225 155.1 1000 50 0.9430447 +32 155.1 158.9775 1000 50 0.95786923 +33 158.9775 162.855 1000 50 1.0 +34 162.855 166.7325 1000 50 0.99997306 +35 166.7325 170.60999999999999 1000 50 1.0 +36 170.61 174.4875 1000 50 0.9999988 +37 178.365 182.2425 1000 50 0.9999976 +38 182.2425 186.12 1000 50 0.99927396 +39 186.12 189.9975 1000 50 0.99279 +40 189.9975 193.875 1000 50 1.0 +41 193.875 197.7525 1000 50 0.99010134 +42 197.7525 201.63 1000 50 0.99949527 +43 201.63 205.5075 1000 50 0.9999999 +44 205.5075 209.385 1000 50 0.99893314 +45 209.385 213.2625 1000 50 0.99999964 +46 213.2625 217.14 1000 50 0.9999999 +47 217.14 221.01749999999998 1000 50 0.9998553 +48 221.0175 224.895 1000 50 0.92241734 +49 224.895 228.7725 1000 50 1.0 +50 228.7725 232.65 1000 50 0.9999999 +51 232.65 236.5275 1000 50 0.99999917 +52 236.5275 240.405 1000 50 0.9999994 +53 240.405 244.2825 1000 50 0.99998987 +54 244.2825 248.16 1000 50 1.0 +55 248.16 252.0375 1000 50 1.0 +56 252.0375 255.915 1000 50 0.9999999 +57 255.915 259.7925 1000 50 1.0 +58 259.7925 263.67 1000 50 0.9999982 +59 263.67 267.5475 1000 50 0.99999857 +60 267.5475 271.425 1000 50 1.0 +61 271.425 275.3025 1000 50 0.9999999 +62 275.3025 279.18 1000 50 0.9999989 +63 279.18 283.0575 1000 50 0.9999492 +64 283.0575 286.935 1000 50 0.9999994 +65 286.935 290.8125 1000 50 1.0 +66 290.8125 294.69 1000 50 0.9999999 +67 294.69 298.5675 1000 50 0.9999846 +68 298.5675 302.445 1000 50 1.0 +69 302.445 306.3225 1000 50 1.0 +70 306.3225 310.2 1000 50 0.9391497 +71 310.2 314.0775 1000 50 1.0 +72 314.0775 317.955 1000 50 1.0 +73 317.955 321.8325 1000 50 0.9999982 +74 321.8325 325.71 1000 50 0.9999907 +75 325.71 329.5875 1000 50 0.99999595 +76 329.5875 333.465 1000 50 0.9999999 +77 333.465 337.3425 1000 50 0.99999917 +78 337.3425 341.21999999999997 1000 50 0.9999999 +79 341.22 345.0975 1000 50 1.0 +80 345.0975 348.975 1000 50 1.0 +81 348.975 352.8525 1000 50 0.9999999 +82 352.8525 356.73 1000 50 0.99999964 +83 356.73 360.6075 1000 50 0.99999976 +84 360.6075 364.485 1000 50 0.99999976 +85 364.485 368.3625 1000 50 0.9998115 +86 368.3625 372.24 1000 50 0.99999976 +87 372.24 376.1175 1000 50 0.99987817 +88 376.1175 379.995 1000 50 0.999997 +89 379.995 383.8725 1000 50 0.9999981 +90 383.8725 387.75 1000 50 0.9999968 +91 387.75 391.6275 1000 50 0.9999999 +92 391.6275 395.505 1000 50 0.999979 +93 395.505 399.3825 1000 50 0.99999857 +94 399.3825 403.26 1000 50 0.99728036 +95 403.26 407.1375 1000 50 0.9999993 +96 407.1375 411.015 1000 50 0.99999154 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_06-10-29_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_06-10-29_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..c8b79a04d476b351f831a1c1cd0eff36b5ffe510 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_06-10-29_annot_2022-11-30_01.txt @@ -0,0 +1,201 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9489237 +2 7.755 11.6325 1000 50 0.9993705 +3 11.6325 15.51 1000 50 0.94893646 +4 15.51 19.3875 1000 50 0.99987483 +5 19.3875 23.265 1000 50 0.9536239 +6 23.265 27.142500000000002 1000 50 0.99950457 +7 27.1425 31.02 1000 50 0.9241646 +8 31.02 34.8975 1000 50 0.9991203 +9 34.8975 38.775 1000 50 0.9992841 +10 38.775 42.652499999999996 1000 50 0.987483 +11 42.6525 46.53 1000 50 0.9989183 +12 46.53 50.4075 1000 50 0.99838173 +13 50.4075 54.285 1000 50 0.9999877 +14 58.1625 62.04 1000 50 0.99959224 +15 62.04 65.9175 1000 50 0.9998461 +16 69.795 73.6725 1000 50 0.99742126 +17 73.6725 77.55 1000 50 0.99998116 +18 77.55 81.4275 1000 50 0.9956085 +19 81.4275 85.30499999999999 1000 50 0.73539376 +20 85.305 89.1825 1000 50 0.99949265 +21 89.1825 93.06 1000 50 0.99591917 +22 93.06 96.9375 1000 50 0.9827339 +23 96.9375 100.815 1000 50 0.5934966 +24 100.815 104.6925 1000 50 0.9965994 +25 104.6925 108.57 1000 50 0.9985677 +26 116.325 120.2025 1000 50 0.9992163 +27 124.08 127.9575 1000 50 0.8801293 +28 127.9575 131.835 1000 50 0.9999684 +29 131.835 135.7125 1000 50 0.9936644 +30 135.7125 139.59 1000 50 0.99953496 +31 139.59 143.4675 1000 50 0.9998882 +32 143.4675 147.345 1000 50 0.9997385 +33 147.345 151.2225 1000 50 0.99969435 +34 151.2225 155.1 1000 50 0.9995709 +35 155.1 158.9775 1000 50 0.99933285 +36 158.9775 162.855 1000 50 0.9867437 +37 162.855 166.7325 1000 50 0.99998105 +38 166.7325 170.60999999999999 1000 50 0.9998809 +39 170.61 174.4875 1000 50 0.9999871 +40 174.4875 178.365 1000 50 0.99991286 +41 178.365 182.2425 1000 50 0.9999591 +42 182.2425 186.12 1000 50 1.0 +43 186.12 189.9975 1000 50 0.9999175 +44 189.9975 193.875 1000 50 0.9993987 +45 193.875 197.7525 1000 50 1.0 +46 197.7525 201.63 1000 50 0.99999976 +47 201.63 205.5075 1000 50 0.99698406 +48 205.5075 209.385 1000 50 0.99999785 +49 209.385 213.2625 1000 50 0.9999993 +50 213.2625 217.14 1000 50 0.9998233 +51 217.14 221.01749999999998 1000 50 1.0 +52 221.0175 224.895 1000 50 0.99607486 +53 224.895 228.7725 1000 50 0.9996544 +54 228.7725 232.65 1000 50 1.0 +55 232.65 236.5275 1000 50 0.99998116 +56 236.5275 240.405 1000 50 0.96060336 +57 240.405 244.2825 1000 50 0.9999813 +58 244.2825 248.16 1000 50 0.9996325 +59 248.16 252.0375 1000 50 0.9973341 +60 252.0375 255.915 1000 50 0.9999976 +61 255.915 259.7925 1000 50 0.9997725 +62 259.7925 263.67 1000 50 0.9999336 +63 263.67 267.5475 1000 50 1.0 +64 267.5475 271.425 1000 50 0.9999989 +65 271.425 275.3025 1000 50 0.99980134 +66 275.3025 279.18 1000 50 1.0 +67 279.18 283.0575 1000 50 0.9998055 +68 283.0575 286.935 1000 50 0.76109034 +69 286.935 290.8125 1000 50 1.0 +70 290.8125 294.69 1000 50 0.9706034 +71 298.5675 302.445 1000 50 1.0 +72 302.445 306.3225 1000 50 0.9999721 +73 306.3225 310.2 1000 50 0.9999995 +74 310.2 314.0775 1000 50 0.90042406 +75 314.0775 317.955 1000 50 0.99998367 +76 321.8325 325.71 1000 50 0.5374119 +77 333.465 337.3425 1000 50 0.9999857 +78 337.3425 341.21999999999997 1000 50 0.9972362 +79 341.22 345.0975 1000 50 0.93445355 +80 345.0975 348.975 1000 50 0.99712604 +81 348.975 352.8525 1000 50 0.90216225 +82 352.8525 356.73 1000 50 0.99999607 +83 356.73 360.6075 1000 50 0.99925464 +84 364.485 368.3625 1000 50 0.9942754 +85 368.3625 372.24 1000 50 0.9999999 +86 372.24 376.1175 1000 50 0.9985061 +87 376.1175 379.995 1000 50 1.0 +88 379.995 383.8725 1000 50 0.9806904 +89 383.8725 387.75 1000 50 0.99995995 +90 387.75 391.6275 1000 50 1.0 +91 391.6275 395.505 1000 50 0.9999963 +92 395.505 399.3825 1000 50 0.9999994 +93 399.3825 403.26 1000 50 0.9999999 +94 403.26 407.1375 1000 50 0.9999825 +95 407.1375 411.015 1000 50 0.99999976 +96 411.015 414.8925 1000 50 0.9993081 +97 414.8925 418.77 1000 50 0.9999769 +98 418.77 422.6475 1000 50 1.0 +99 422.6475 426.525 1000 50 0.9999981 +100 426.525 430.4025 1000 50 0.9994355 +101 430.4025 434.28 1000 50 0.9992617 +102 434.28 438.15749999999997 1000 50 0.9999999 +103 438.1575 442.035 1000 50 0.9979138 +104 442.035 445.9125 1000 50 0.9997528 +105 445.9125 449.79 1000 50 0.9999999 +106 449.79 453.6675 1000 50 0.9999999 +107 453.6675 457.545 1000 50 1.0 +108 457.545 461.4225 1000 50 0.9996202 +109 461.4225 465.3 1000 50 0.9999778 +110 465.3 469.1775 1000 50 1.0 +111 469.1775 473.055 1000 50 0.9999473 +112 473.055 476.9325 1000 50 0.99999917 +113 476.9325 480.81 1000 50 0.999795 +114 480.81 484.6875 1000 50 0.999887 +115 484.6875 488.565 1000 50 0.9996319 +116 488.565 492.4425 1000 50 0.99720734 +117 492.4425 496.32 1000 50 0.99999964 +118 496.32 500.1975 1000 50 0.9990797 +119 500.1975 504.075 1000 50 0.99999917 +120 504.075 507.9525 1000 50 0.99997187 +121 507.9525 511.83 1000 50 0.99974746 +122 511.83 515.7075 1000 50 0.99998546 +123 515.7075 519.585 1000 50 0.99540025 +124 519.585 523.4625000000001 1000 50 0.93449545 +125 523.4625 527.34 1000 50 0.99999976 +126 527.34 531.2175000000001 1000 50 0.99999976 +127 531.2175 535.095 1000 50 0.98688185 +128 535.095 538.9725000000001 1000 50 0.999997 +129 538.9725 542.85 1000 50 0.99997437 +130 542.85 546.7275000000001 1000 50 0.9989666 +131 546.7275 550.605 1000 50 0.99999535 +132 550.605 554.4825000000001 1000 50 0.9988795 +133 554.4825 558.36 1000 50 0.9995016 +134 558.36 562.2375000000001 1000 50 1.0 +135 562.2375 566.115 1000 50 0.99996626 +136 566.115 569.9925000000001 1000 50 0.6594713 +137 569.9925 573.87 1000 50 1.0 +138 573.87 577.7475000000001 1000 50 0.999894 +139 577.7475 581.625 1000 50 0.93955284 +140 581.625 585.5025 1000 50 0.9999949 +141 585.5025 589.3800000000001 1000 50 0.99999523 +142 589.38 593.2575 1000 50 0.81038326 +143 593.2575 597.1350000000001 1000 50 0.9999763 +144 597.135 601.0125 1000 50 0.9914894 +145 601.0125 604.8900000000001 1000 50 0.9993668 +146 604.89 608.7675 1000 50 0.9998759 +147 608.7675 612.6450000000001 1000 50 0.99529845 +148 612.645 616.5225 1000 50 0.9998528 +149 616.5225 620.4000000000001 1000 50 0.9971564 +150 620.4 624.2775 1000 50 0.986896 +151 624.2775 628.1550000000001 1000 50 0.53917587 +152 628.155 632.0325 1000 50 0.99994016 +153 632.0325 635.9100000000001 1000 50 0.999966 +154 635.91 639.7875 1000 50 0.9381349 +155 639.7875 643.6650000000001 1000 50 0.98957145 +156 643.665 647.5425 1000 50 0.99870706 +157 647.5425 651.4200000000001 1000 50 0.9999949 +158 651.42 655.2975 1000 50 0.99993706 +159 655.2975 659.1750000000001 1000 50 0.984654 +160 659.175 663.0525 1000 50 0.9984713 +161 663.0525 666.9300000000001 1000 50 0.94980067 +162 666.93 670.8075 1000 50 0.99950707 +163 670.8075 674.6850000000001 1000 50 0.9983005 +164 674.685 678.5625 1000 50 0.9996505 +165 678.5625 682.44 1000 50 0.99617165 +166 682.44 686.3175000000001 1000 50 0.9999031 +167 686.3175 690.195 1000 50 0.99953854 +168 690.195 694.0725000000001 1000 50 0.9999349 +169 694.0725 697.95 1000 50 0.9594327 +170 697.95 701.8275000000001 1000 50 0.94843113 +171 701.8275 705.705 1000 50 0.92823356 +172 709.5825 713.46 1000 50 0.9574699 +173 713.46 717.3375000000001 1000 50 0.9707535 +174 721.215 725.0925000000001 1000 50 0.7471062 +175 728.97 732.8475000000001 1000 50 0.8922739 +176 732.8475 736.725 1000 50 0.9873827 +177 736.725 740.6025000000001 1000 50 0.9230268 +178 744.48 748.3575000000001 1000 50 0.5699134 +179 779.3775 783.2550000000001 1000 50 0.99982136 +180 783.255 787.1325 1000 50 0.99437016 +181 787.1325 791.0100000000001 1000 50 0.83275884 +182 791.01 794.8875 1000 50 0.9998872 +183 798.765 802.6425 1000 50 0.9288012 +184 802.6425 806.5200000000001 1000 50 0.9670154 +185 806.52 810.3975 1000 50 0.99997914 +186 810.3975 814.2750000000001 1000 50 0.98464465 +187 814.275 818.1525 1000 50 0.8926319 +188 818.1525 822.0300000000001 1000 50 0.9999653 +189 822.03 825.9075 1000 50 0.9947043 +190 829.785 833.6625 1000 50 0.9995591 +191 833.6625 837.5400000000001 1000 50 0.99708706 +192 841.4175 845.2950000000001 1000 50 0.99985015 +193 845.295 849.1725 1000 50 0.67202514 +194 849.1725 853.0500000000001 1000 50 0.99872965 +195 853.05 856.9275 1000 50 0.9927113 +196 856.9275 860.8050000000001 1000 50 0.5493054 +197 860.805 864.6825 1000 50 0.9305295 +198 864.6825 868.5600000000001 1000 50 0.99808073 +199 868.56 872.4375 1000 50 0.5089867 +200 872.4375 876.315 1000 50 0.99436533 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_07-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_07-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..38ef6321259d658ffe181db9a935affacce3759b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_07-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,173 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.59109473 +2 3.8775 7.755 1000 50 0.93711996 +3 11.6325 15.51 1000 50 0.87232375 +4 23.265 27.142500000000002 1000 50 0.9975662 +5 34.8975 38.775 1000 50 0.7573686 +6 42.6525 46.53 1000 50 0.9975775 +7 46.53 50.4075 1000 50 0.9998839 +8 50.4075 54.285 1000 50 0.94111997 +9 54.285 58.162499999999994 1000 50 0.98101735 +10 65.9175 69.795 1000 50 0.9998142 +11 73.6725 77.55 1000 50 0.7474654 +12 77.55 81.4275 1000 50 0.96561253 +13 85.305 89.1825 1000 50 0.99249387 +14 89.1825 93.06 1000 50 0.9921381 +15 100.815 104.6925 1000 50 0.999951 +16 104.6925 108.57 1000 50 0.9942924 +17 108.57 112.44749999999999 1000 50 0.9590146 +18 112.4475 116.325 1000 50 0.98735774 +19 116.325 120.2025 1000 50 0.8949125 +20 120.2025 124.08 1000 50 0.93318945 +21 124.08 127.9575 1000 50 0.999481 +22 127.9575 131.835 1000 50 0.9516562 +23 131.835 135.7125 1000 50 0.99887806 +24 135.7125 139.59 1000 50 0.99240935 +25 139.59 143.4675 1000 50 0.9997595 +26 143.4675 147.345 1000 50 0.7839519 +27 147.345 151.2225 1000 50 0.8877079 +28 151.2225 155.1 1000 50 0.991397 +29 155.1 158.9775 1000 50 0.96212 +30 158.9775 162.855 1000 50 0.99475586 +31 162.855 166.7325 1000 50 0.9875097 +32 166.7325 170.60999999999999 1000 50 0.9995931 +33 170.61 174.4875 1000 50 0.9024509 +34 174.4875 178.365 1000 50 0.8968002 +35 178.365 182.2425 1000 50 0.95095706 +36 182.2425 186.12 1000 50 0.9992355 +37 186.12 189.9975 1000 50 0.8539553 +38 189.9975 193.875 1000 50 0.9954774 +39 193.875 197.7525 1000 50 0.99999785 +40 201.63 205.5075 1000 50 0.9920027 +41 205.5075 209.385 1000 50 0.9973665 +42 213.2625 217.14 1000 50 0.9430569 +43 217.14 221.01749999999998 1000 50 0.999658 +44 221.0175 224.895 1000 50 0.94903034 +45 224.895 228.7725 1000 50 0.941303 +46 228.7725 232.65 1000 50 0.7361907 +47 232.65 236.5275 1000 50 0.99928635 +48 236.5275 240.405 1000 50 0.99958426 +49 240.405 244.2825 1000 50 0.92758024 +50 244.2825 248.16 1000 50 1.0 +51 248.16 252.0375 1000 50 0.99992 +52 252.0375 255.915 1000 50 0.9988381 +53 255.915 259.7925 1000 50 0.99999535 +54 259.7925 263.67 1000 50 0.9998455 +55 263.67 267.5475 1000 50 0.99999964 +56 267.5475 271.425 1000 50 1.0 +57 271.425 275.3025 1000 50 0.9999281 +58 275.3025 279.18 1000 50 0.99983406 +59 283.0575 286.935 1000 50 0.9999993 +60 286.935 290.8125 1000 50 0.9999347 +61 294.69 298.5675 1000 50 0.99999213 +62 298.5675 302.445 1000 50 0.9999572 +63 302.445 306.3225 1000 50 0.9620583 +64 306.3225 310.2 1000 50 0.9999963 +65 310.2 314.0775 1000 50 0.9999988 +66 314.0775 317.955 1000 50 0.9964167 +67 317.955 321.8325 1000 50 0.9923608 +68 321.8325 325.71 1000 50 0.99999857 +69 325.71 329.5875 1000 50 0.8598126 +70 329.5875 333.465 1000 50 0.9941771 +71 333.465 337.3425 1000 50 0.9999958 +72 337.3425 341.21999999999997 1000 50 0.9998852 +73 341.22 345.0975 1000 50 0.9999815 +74 345.0975 348.975 1000 50 0.99999976 +75 348.975 352.8525 1000 50 0.9890043 +76 352.8525 356.73 1000 50 0.99996936 +77 356.73 360.6075 1000 50 0.9999944 +78 360.6075 364.485 1000 50 0.9994704 +79 364.485 368.3625 1000 50 0.9999989 +80 368.3625 372.24 1000 50 1.0 +81 372.24 376.1175 1000 50 0.9999138 +82 376.1175 379.995 1000 50 0.99833715 +83 379.995 383.8725 1000 50 0.9999999 +84 383.8725 387.75 1000 50 0.99554354 +85 387.75 391.6275 1000 50 0.99960583 +86 391.6275 395.505 1000 50 0.999998 +87 395.505 399.3825 1000 50 0.8970339 +88 399.3825 403.26 1000 50 0.98800164 +89 403.26 407.1375 1000 50 0.99998903 +90 407.1375 411.015 1000 50 0.9955968 +91 411.015 414.8925 1000 50 0.9925363 +92 414.8925 418.77 1000 50 0.99999964 +93 418.77 422.6475 1000 50 0.9999994 +94 422.6475 426.525 1000 50 0.9998398 +95 426.525 430.4025 1000 50 0.9999993 +96 430.4025 434.28 1000 50 0.99999905 +97 434.28 438.15749999999997 1000 50 0.9999999 +98 438.1575 442.035 1000 50 0.99999774 +99 442.035 445.9125 1000 50 0.99994385 +100 445.9125 449.79 1000 50 0.99999964 +101 449.79 453.6675 1000 50 0.99997973 +102 453.6675 457.545 1000 50 0.99907124 +103 457.545 461.4225 1000 50 0.99472445 +104 461.4225 465.3 1000 50 0.9999999 +105 465.3 469.1775 1000 50 0.9999995 +106 469.1775 473.055 1000 50 0.9996557 +107 473.055 476.9325 1000 50 0.99993 +108 476.9325 480.81 1000 50 0.99999917 +109 480.81 484.6875 1000 50 0.9962787 +110 484.6875 488.565 1000 50 0.98882574 +111 488.565 492.4425 1000 50 0.9995388 +112 492.4425 496.32 1000 50 0.9999962 +113 496.32 500.1975 1000 50 0.9949013 +114 500.1975 504.075 1000 50 1.0 +115 504.075 507.9525 1000 50 0.99997604 +116 507.9525 511.83 1000 50 0.9999857 +117 511.83 515.7075 1000 50 0.9999999 +118 515.7075 519.585 1000 50 0.9998418 +119 519.585 523.4625000000001 1000 50 0.99999416 +120 523.4625 527.34 1000 50 0.9999999 +121 527.34 531.2175000000001 1000 50 0.9718013 +122 531.2175 535.095 1000 50 1.0 +123 535.095 538.9725000000001 1000 50 0.99771947 +124 538.9725 542.85 1000 50 0.99933296 +125 542.85 546.7275000000001 1000 50 0.99999344 +126 546.7275 550.605 1000 50 0.99995697 +127 550.605 554.4825000000001 1000 50 0.9999982 +128 554.4825 558.36 1000 50 0.99999976 +129 558.36 562.2375000000001 1000 50 0.9999747 +130 562.2375 566.115 1000 50 0.9999114 +131 566.115 569.9925000000001 1000 50 0.99986994 +132 569.9925 573.87 1000 50 0.99831045 +133 573.87 577.7475000000001 1000 50 0.9999889 +134 577.7475 581.625 1000 50 0.99998903 +135 581.625 585.5025 1000 50 0.9990264 +136 585.5025 589.3800000000001 1000 50 0.97578627 +137 589.38 593.2575 1000 50 0.9979036 +138 593.2575 597.1350000000001 1000 50 0.69549114 +139 597.135 601.0125 1000 50 0.9999999 +140 601.0125 604.8900000000001 1000 50 0.9999969 +141 608.7675 612.6450000000001 1000 50 0.9598121 +142 612.645 616.5225 1000 50 0.99996424 +143 616.5225 620.4000000000001 1000 50 0.99987304 +144 620.4 624.2775 1000 50 0.99930465 +145 624.2775 628.1550000000001 1000 50 0.9977234 +146 628.155 632.0325 1000 50 0.99156874 +147 632.0325 635.9100000000001 1000 50 0.918645 +148 635.91 639.7875 1000 50 0.9894974 +149 639.7875 643.6650000000001 1000 50 0.99720263 +150 643.665 647.5425 1000 50 0.9999566 +151 647.5425 651.4200000000001 1000 50 0.99940836 +152 651.42 655.2975 1000 50 0.8544123 +153 655.2975 659.1750000000001 1000 50 0.9673926 +154 659.175 663.0525 1000 50 0.99998724 +155 663.0525 666.9300000000001 1000 50 0.7294413 +156 666.93 670.8075 1000 50 0.99863726 +157 670.8075 674.6850000000001 1000 50 0.9999857 +158 674.685 678.5625 1000 50 1.0 +159 678.5625 682.44 1000 50 0.9999604 +160 682.44 686.3175000000001 1000 50 0.99558794 +161 686.3175 690.195 1000 50 0.99999964 +162 690.195 694.0725000000001 1000 50 0.99999857 +163 694.0725 697.95 1000 50 0.99999106 +164 697.95 701.8275000000001 1000 50 0.9999999 +165 701.8275 705.705 1000 50 0.9998865 +166 705.705 709.5825000000001 1000 50 1.0 +167 709.5825 713.46 1000 50 0.9999999 +168 713.46 717.3375000000001 1000 50 0.9987301 +169 717.3375 721.215 1000 50 0.99991786 +170 721.215 725.0925000000001 1000 50 1.0 +171 725.0925 728.97 1000 50 0.9973615 +172 728.97 732.8475000000001 1000 50 0.83701265 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_07-17-39_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_07-17-39_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1dc6b2aab30efc0929cfce54023489b9f7f0447e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_07-17-39_annot_2022-11-30_01.txt @@ -0,0 +1,108 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.96936953 +2 3.8775 7.755 1000 50 0.99802125 +3 7.755 11.6325 1000 50 0.9967884 +4 11.6325 15.51 1000 50 0.9730454 +5 15.51 19.3875 1000 50 0.85736644 +6 19.3875 23.265 1000 50 0.89767736 +7 23.265 27.142500000000002 1000 50 0.93048036 +8 27.1425 31.02 1000 50 0.743386 +9 34.8975 38.775 1000 50 0.939649 +10 38.775 42.652499999999996 1000 50 0.92904073 +11 46.53 50.4075 1000 50 0.83747643 +12 50.4075 54.285 1000 50 0.9738473 +13 54.285 58.162499999999994 1000 50 0.6048105 +14 58.1625 62.04 1000 50 0.96906114 +15 62.04 65.9175 1000 50 0.9498856 +16 69.795 73.6725 1000 50 0.97088695 +17 89.1825 93.06 1000 50 0.9967494 +18 93.06 96.9375 1000 50 0.99881196 +19 96.9375 100.815 1000 50 0.83507305 +20 100.815 104.6925 1000 50 0.9998149 +21 104.6925 108.57 1000 50 0.99778914 +22 108.57 112.44749999999999 1000 50 0.9999999 +23 112.4475 116.325 1000 50 0.99999976 +24 116.325 120.2025 1000 50 0.9999937 +25 120.2025 124.08 1000 50 0.99998665 +26 124.08 127.9575 1000 50 0.9999993 +27 127.9575 131.835 1000 50 0.9997868 +28 131.835 135.7125 1000 50 0.999997 +29 135.7125 139.59 1000 50 0.9996948 +30 139.59 143.4675 1000 50 0.9909285 +31 143.4675 147.345 1000 50 0.9999747 +32 147.345 151.2225 1000 50 0.99995196 +33 151.2225 155.1 1000 50 0.9963708 +34 155.1 158.9775 1000 50 0.9999995 +35 158.9775 162.855 1000 50 0.99657816 +36 166.7325 170.60999999999999 1000 50 0.99999976 +37 170.61 174.4875 1000 50 0.99973303 +38 174.4875 178.365 1000 50 0.9907967 +39 178.365 182.2425 1000 50 1.0 +40 182.2425 186.12 1000 50 0.99996746 +41 186.12 189.9975 1000 50 0.99997306 +42 189.9975 193.875 1000 50 0.9999993 +43 193.875 197.7525 1000 50 0.9999962 +44 197.7525 201.63 1000 50 0.9988661 +45 201.63 205.5075 1000 50 1.0 +46 205.5075 209.385 1000 50 0.99998903 +47 209.385 213.2625 1000 50 0.9948539 +48 213.2625 217.14 1000 50 0.99999964 +49 217.14 221.01749999999998 1000 50 0.9999881 +50 221.0175 224.895 1000 50 0.9982198 +51 224.895 228.7725 1000 50 0.99995816 +52 228.7725 232.65 1000 50 0.99995553 +53 232.65 236.5275 1000 50 0.99960905 +54 236.5275 240.405 1000 50 1.0 +55 240.405 244.2825 1000 50 0.9999995 +56 244.2825 248.16 1000 50 0.9994382 +57 248.16 252.0375 1000 50 0.999995 +58 252.0375 255.915 1000 50 0.9999968 +59 255.915 259.7925 1000 50 0.99997616 +60 259.7925 263.67 1000 50 0.99999833 +61 263.67 267.5475 1000 50 0.9999033 +62 267.5475 271.425 1000 50 0.9999461 +63 271.425 275.3025 1000 50 0.9740819 +64 275.3025 279.18 1000 50 0.9999969 +65 279.18 283.0575 1000 50 0.9999981 +66 283.0575 286.935 1000 50 0.9999957 +67 286.935 290.8125 1000 50 0.99997485 +68 290.8125 294.69 1000 50 0.9993967 +69 294.69 298.5675 1000 50 0.9999999 +70 298.5675 302.445 1000 50 0.9999993 +71 302.445 306.3225 1000 50 0.99999964 +72 306.3225 310.2 1000 50 0.9943136 +73 310.2 314.0775 1000 50 0.9999994 +74 314.0775 317.955 1000 50 1.0 +75 317.955 321.8325 1000 50 0.99999416 +76 321.8325 325.71 1000 50 0.99952674 +77 325.71 329.5875 1000 50 0.9999962 +78 329.5875 333.465 1000 50 0.99444985 +79 333.465 337.3425 1000 50 0.9999429 +80 337.3425 341.21999999999997 1000 50 0.9600673 +81 341.22 345.0975 1000 50 1.0 +82 345.0975 348.975 1000 50 0.9999542 +83 348.975 352.8525 1000 50 0.99903286 +84 352.8525 356.73 1000 50 0.9999999 +85 356.73 360.6075 1000 50 0.9997881 +86 360.6075 364.485 1000 50 0.9998273 +87 364.485 368.3625 1000 50 0.99965775 +88 368.3625 372.24 1000 50 0.99981934 +89 372.24 376.1175 1000 50 0.99996734 +90 376.1175 379.995 1000 50 0.99906415 +91 379.995 383.8725 1000 50 0.99997306 +92 383.8725 387.75 1000 50 0.99998 +93 387.75 391.6275 1000 50 0.9999995 +94 391.6275 395.505 1000 50 1.0 +95 395.505 399.3825 1000 50 0.99949634 +96 399.3825 403.26 1000 50 0.99986684 +97 403.26 407.1375 1000 50 0.9999908 +98 407.1375 411.015 1000 50 0.9998976 +99 411.015 414.8925 1000 50 0.99983525 +100 414.8925 418.77 1000 50 0.99998796 +101 418.77 422.6475 1000 50 0.9999112 +102 422.6475 426.525 1000 50 0.9966421 +103 426.525 430.4025 1000 50 0.9935476 +104 430.4025 434.28 1000 50 0.9999815 +105 434.28 438.15749999999997 1000 50 0.99998903 +106 438.1575 442.035 1000 50 0.99027425 +107 442.035 445.9125 1000 50 0.99790454 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_08-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_08-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..183b1aa0209514b527131f79f24379d95fb8e642 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_08-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,285 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99993813 +2 3.8775 7.755 1000 50 0.99890673 +3 7.755 11.6325 1000 50 0.9999989 +4 11.6325 15.51 1000 50 1.0 +5 15.51 19.3875 1000 50 0.99999964 +6 19.3875 23.265 1000 50 0.99999106 +7 23.265 27.142500000000002 1000 50 0.9999919 +8 27.1425 31.02 1000 50 1.0 +9 31.02 34.8975 1000 50 1.0 +10 34.8975 38.775 1000 50 0.9997869 +11 38.775 42.652499999999996 1000 50 0.9999949 +12 42.6525 46.53 1000 50 0.99995184 +13 46.53 50.4075 1000 50 0.99963045 +14 50.4075 54.285 1000 50 1.0 +15 54.285 58.162499999999994 1000 50 0.99999917 +16 58.1625 62.04 1000 50 0.9998723 +17 62.04 65.9175 1000 50 1.0 +18 65.9175 69.795 1000 50 0.9999865 +19 69.795 73.6725 1000 50 0.99984765 +20 73.6725 77.55 1000 50 0.9996313 +21 77.55 81.4275 1000 50 1.0 +22 81.4275 85.30499999999999 1000 50 0.9999999 +23 85.305 89.1825 1000 50 0.999985 +24 89.1825 93.06 1000 50 0.9999995 +25 93.06 96.9375 1000 50 0.9999999 +26 96.9375 100.815 1000 50 0.9999993 +27 100.815 104.6925 1000 50 0.9999999 +28 104.6925 108.57 1000 50 1.0 +29 108.57 112.44749999999999 1000 50 0.999995 +30 112.4475 116.325 1000 50 1.0 +31 116.325 120.2025 1000 50 0.9995995 +32 120.2025 124.08 1000 50 0.9999608 +33 124.08 127.9575 1000 50 1.0 +34 127.9575 131.835 1000 50 0.99999547 +35 131.835 135.7125 1000 50 1.0 +36 135.7125 139.59 1000 50 0.99999654 +37 139.59 143.4675 1000 50 0.99999964 +38 143.4675 147.345 1000 50 0.99999905 +39 147.345 151.2225 1000 50 0.99999976 +40 151.2225 155.1 1000 50 0.99999976 +41 155.1 158.9775 1000 50 0.9998609 +42 158.9775 162.855 1000 50 0.9999789 +43 162.855 166.7325 1000 50 0.9999999 +44 166.7325 170.60999999999999 1000 50 0.9999597 +45 170.61 174.4875 1000 50 0.9999677 +46 174.4875 178.365 1000 50 1.0 +47 178.365 182.2425 1000 50 0.9807004 +48 182.2425 186.12 1000 50 0.99992263 +49 186.12 189.9975 1000 50 0.9999666 +50 189.9975 193.875 1000 50 1.0 +51 193.875 197.7525 1000 50 0.999907 +52 197.7525 201.63 1000 50 0.99997985 +53 205.5075 209.385 1000 50 0.9999994 +54 209.385 213.2625 1000 50 0.9999974 +55 213.2625 217.14 1000 50 0.9999976 +56 217.14 221.01749999999998 1000 50 1.0 +57 221.0175 224.895 1000 50 0.9997782 +58 224.895 228.7725 1000 50 0.99997663 +59 228.7725 232.65 1000 50 0.9997881 +60 232.65 236.5275 1000 50 0.9841164 +61 236.5275 240.405 1000 50 0.9999956 +62 240.405 244.2825 1000 50 0.9999964 +63 244.2825 248.16 1000 50 0.99966204 +64 248.16 252.0375 1000 50 1.0 +65 252.0375 255.915 1000 50 0.9999993 +66 255.915 259.7925 1000 50 1.0 +67 259.7925 263.67 1000 50 0.9999999 +68 263.67 267.5475 1000 50 0.99672616 +69 267.5475 271.425 1000 50 0.9999281 +70 271.425 275.3025 1000 50 1.0 +71 275.3025 279.18 1000 50 0.9984836 +72 279.18 283.0575 1000 50 0.9997787 +73 283.0575 286.935 1000 50 0.9403508 +74 286.935 290.8125 1000 50 0.9615352 +75 294.69 298.5675 1000 50 0.9975922 +76 298.5675 302.445 1000 50 0.999491 +77 302.445 306.3225 1000 50 0.9999865 +78 306.3225 310.2 1000 50 0.9999516 +79 310.2 314.0775 1000 50 0.9971343 +80 314.0775 317.955 1000 50 0.9997937 +81 317.955 321.8325 1000 50 0.93439627 +82 321.8325 325.71 1000 50 0.9841426 +83 325.71 329.5875 1000 50 0.9999627 +84 329.5875 333.465 1000 50 0.94950813 +85 333.465 337.3425 1000 50 0.99948335 +86 337.3425 341.21999999999997 1000 50 0.9997017 +87 341.22 345.0975 1000 50 0.99992824 +88 345.0975 348.975 1000 50 0.947146 +89 348.975 352.8525 1000 50 0.9431023 +90 352.8525 356.73 1000 50 0.99998295 +91 356.73 360.6075 1000 50 0.99678576 +92 360.6075 364.485 1000 50 0.99906677 +93 364.485 368.3625 1000 50 0.8550018 +94 372.24 376.1175 1000 50 0.9987431 +95 379.995 383.8725 1000 50 0.8572102 +96 383.8725 387.75 1000 50 0.99993575 +97 387.75 391.6275 1000 50 0.95207965 +98 391.6275 395.505 1000 50 0.93001664 +99 411.015 414.8925 1000 50 0.9948672 +100 414.8925 418.77 1000 50 0.9853404 +101 418.77 422.6475 1000 50 0.79916006 +102 422.6475 426.525 1000 50 0.8033024 +103 430.4025 434.28 1000 50 0.9999559 +104 434.28 438.15749999999997 1000 50 0.9999243 +105 438.1575 442.035 1000 50 0.8481019 +106 442.035 445.9125 1000 50 0.98792124 +107 445.9125 449.79 1000 50 0.9935267 +108 449.79 453.6675 1000 50 0.99709666 +109 453.6675 457.545 1000 50 0.9994868 +110 457.545 461.4225 1000 50 0.99941266 +111 461.4225 465.3 1000 50 0.9996247 +112 465.3 469.1775 1000 50 0.91635674 +113 473.055 476.9325 1000 50 0.98440105 +114 476.9325 480.81 1000 50 0.978521 +115 480.81 484.6875 1000 50 0.99990475 +116 484.6875 488.565 1000 50 0.8828996 +117 492.4425 496.32 1000 50 0.9794334 +118 496.32 500.1975 1000 50 0.9927226 +119 500.1975 504.075 1000 50 0.99848026 +120 504.075 507.9525 1000 50 0.9999869 +121 507.9525 511.83 1000 50 0.953673 +122 511.83 515.7075 1000 50 0.7717029 +123 515.7075 519.585 1000 50 0.9998598 +124 519.585 523.4625000000001 1000 50 0.9996234 +125 523.4625 527.34 1000 50 0.9982651 +126 527.34 531.2175000000001 1000 50 0.9811211 +127 531.2175 535.095 1000 50 0.99999 +128 535.095 538.9725000000001 1000 50 0.99909985 +129 538.9725 542.85 1000 50 0.9914458 +130 542.85 546.7275000000001 1000 50 0.9995734 +131 546.7275 550.605 1000 50 0.9115364 +132 550.605 554.4825000000001 1000 50 0.9109723 +133 554.4825 558.36 1000 50 0.9999987 +134 558.36 562.2375000000001 1000 50 0.9927771 +135 562.2375 566.115 1000 50 0.9994616 +136 566.115 569.9925000000001 1000 50 0.9977884 +137 569.9925 573.87 1000 50 0.9999906 +138 573.87 577.7475000000001 1000 50 0.99999285 +139 577.7475 581.625 1000 50 0.99953043 +140 581.625 585.5025 1000 50 0.99998105 +141 585.5025 589.3800000000001 1000 50 0.9999987 +142 589.38 593.2575 1000 50 0.9684359 +143 593.2575 597.1350000000001 1000 50 0.99996305 +144 597.135 601.0125 1000 50 0.9998252 +145 601.0125 604.8900000000001 1000 50 0.999859 +146 604.89 608.7675 1000 50 0.9999846 +147 608.7675 612.6450000000001 1000 50 1.0 +148 612.645 616.5225 1000 50 0.999634 +149 616.5225 620.4000000000001 1000 50 0.99886453 +150 620.4 624.2775 1000 50 0.9999993 +151 624.2775 628.1550000000001 1000 50 0.99997485 +152 628.155 632.0325 1000 50 0.99714774 +153 632.0325 635.9100000000001 1000 50 1.0 +154 635.91 639.7875 1000 50 0.99962187 +155 639.7875 643.6650000000001 1000 50 0.99999845 +156 643.665 647.5425 1000 50 0.9992073 +157 647.5425 651.4200000000001 1000 50 0.99999976 +158 651.42 655.2975 1000 50 0.9999999 +159 655.2975 659.1750000000001 1000 50 0.9893611 +160 659.175 663.0525 1000 50 0.9999751 +161 663.0525 666.9300000000001 1000 50 1.0 +162 666.93 670.8075 1000 50 1.0 +163 670.8075 674.6850000000001 1000 50 0.9999987 +164 674.685 678.5625 1000 50 0.99999785 +165 678.5625 682.44 1000 50 0.99997294 +166 682.44 686.3175000000001 1000 50 0.9999999 +167 686.3175 690.195 1000 50 0.9999989 +168 690.195 694.0725000000001 1000 50 0.9996767 +169 694.0725 697.95 1000 50 0.7131926 +170 697.95 701.8275000000001 1000 50 0.99999845 +171 701.8275 705.705 1000 50 0.999967 +172 705.705 709.5825000000001 1000 50 0.9999875 +173 709.5825 713.46 1000 50 0.9890999 +174 713.46 717.3375000000001 1000 50 0.99998367 +175 717.3375 721.215 1000 50 0.99999404 +176 721.215 725.0925000000001 1000 50 0.99999976 +177 725.0925 728.97 1000 50 1.0 +178 728.97 732.8475000000001 1000 50 0.99999344 +179 732.8475 736.725 1000 50 0.9999999 +180 736.725 740.6025000000001 1000 50 0.9999994 +181 740.6025 744.48 1000 50 0.9978356 +182 744.48 748.3575000000001 1000 50 0.99999976 +183 748.3575 752.235 1000 50 0.9999615 +184 752.235 756.1125000000001 1000 50 0.9947635 +185 756.1125 759.99 1000 50 0.99999225 +186 759.99 763.8675000000001 1000 50 0.99999964 +187 763.8675 767.745 1000 50 0.99511755 +188 767.745 771.6225000000001 1000 50 0.9999912 +189 771.6225 775.5 1000 50 0.99988997 +190 775.5 779.3775 1000 50 0.9993262 +191 779.3775 783.2550000000001 1000 50 0.9998859 +192 783.255 787.1325 1000 50 0.999998 +193 787.1325 791.0100000000001 1000 50 0.95117444 +194 791.01 794.8875 1000 50 0.9999994 +195 794.8875 798.7650000000001 1000 50 0.99999976 +196 798.765 802.6425 1000 50 0.998055 +197 802.6425 806.5200000000001 1000 50 0.9991848 +198 806.52 810.3975 1000 50 1.0 +199 810.3975 814.2750000000001 1000 50 0.9995722 +200 814.275 818.1525 1000 50 0.9999999 +201 818.1525 822.0300000000001 1000 50 1.0 +202 822.03 825.9075 1000 50 0.9978126 +203 825.9075 829.7850000000001 1000 50 0.9999987 +204 829.785 833.6625 1000 50 0.9999157 +205 833.6625 837.5400000000001 1000 50 0.9999982 +206 837.54 841.4175 1000 50 0.99999785 +207 841.4175 845.2950000000001 1000 50 0.9999999 +208 845.295 849.1725 1000 50 0.9999616 +209 849.1725 853.0500000000001 1000 50 0.99999905 +210 853.05 856.9275 1000 50 0.99999976 +211 856.9275 860.8050000000001 1000 50 0.99973816 +212 860.805 864.6825 1000 50 0.99998593 +213 864.6825 868.5600000000001 1000 50 0.9999119 +214 868.56 872.4375 1000 50 0.9996667 +215 872.4375 876.315 1000 50 0.9999683 +216 876.315 880.1925000000001 1000 50 0.85620844 +217 880.1925 884.07 1000 50 1.0 +218 884.07 887.9475000000001 1000 50 0.9999995 +219 887.9475 891.825 1000 50 0.9999496 +220 891.825 895.7025000000001 1000 50 0.99948645 +221 895.7025 899.58 1000 50 1.0 +222 899.58 903.4575000000001 1000 50 0.99999535 +223 903.4575 907.335 1000 50 0.999962 +224 907.335 911.2125000000001 1000 50 1.0 +225 911.2125 915.09 1000 50 0.9999864 +226 915.09 918.9675000000001 1000 50 0.99944454 +227 918.9675 922.845 1000 50 1.0 +228 922.845 926.7225000000001 1000 50 0.94126517 +229 926.7225 930.6 1000 50 0.99999964 +230 930.6 934.4775000000001 1000 50 0.99905854 +231 934.4775 938.355 1000 50 0.99996436 +232 938.355 942.2325000000001 1000 50 0.9579051 +233 942.2325 946.11 1000 50 0.99988675 +234 946.11 949.9875000000001 1000 50 0.9999448 +235 949.9875 953.865 1000 50 0.99999726 +236 953.865 957.7425000000001 1000 50 0.9999865 +237 961.62 965.4975000000001 1000 50 0.9997334 +238 965.4975 969.375 1000 50 0.9999788 +239 969.375 973.2525 1000 50 0.9997956 +240 973.2525 977.1300000000001 1000 50 0.9999994 +241 977.13 981.0075 1000 50 0.99997246 +242 981.0075 984.8850000000001 1000 50 0.99998546 +243 984.885 988.7625 1000 50 0.9999424 +244 988.7625 992.6400000000001 1000 50 0.99978524 +245 992.64 996.5175 1000 50 0.9967319 +246 996.5175 1000.3950000000001 1000 50 0.9989531 +247 1000.395 1004.2725 1000 50 0.9678987 +248 1004.2725 1008.1500000000001 1000 50 0.9958034 +249 1008.15 1012.0275 1000 50 0.9999962 +250 1012.0275 1015.9050000000001 1000 50 0.99999976 +251 1015.905 1019.7825 1000 50 0.99698454 +252 1019.7825 1023.6600000000001 1000 50 1.0 +253 1023.66 1027.5375 1000 50 0.89792633 +254 1027.5375 1031.415 1000 50 1.0 +255 1035.2925 1039.17 1000 50 1.0 +256 1039.17 1043.0475000000001 1000 50 0.9979248 +257 1043.0475 1046.925 1000 50 0.9992767 +258 1046.925 1050.8025 1000 50 0.9998104 +259 1050.8025 1054.68 1000 50 0.99972266 +260 1054.68 1058.5575000000001 1000 50 0.99996746 +261 1058.5575 1062.435 1000 50 0.6822985 +262 1062.435 1066.3125 1000 50 0.99999976 +263 1066.3125 1070.19 1000 50 0.9999747 +264 1070.19 1074.0675 1000 50 0.99997044 +265 1074.0675 1077.9450000000002 1000 50 0.9364679 +266 1077.945 1081.8225 1000 50 1.0 +267 1081.8225 1085.7 1000 50 0.99996126 +268 1085.7 1089.5775 1000 50 0.9999677 +269 1089.5775 1093.4550000000002 1000 50 1.0 +270 1093.455 1097.3325 1000 50 0.9951196 +271 1097.3325 1101.21 1000 50 0.9999982 +272 1101.21 1105.0875 1000 50 1.0 +273 1105.0875 1108.9650000000001 1000 50 0.994978 +274 1108.965 1112.8425 1000 50 0.99949396 +275 1112.8425 1116.72 1000 50 0.99999976 +276 1116.72 1120.5975 1000 50 0.66352934 +277 1120.5975 1124.4750000000001 1000 50 1.0 +278 1124.475 1128.3525 1000 50 0.9925996 +279 1128.3525 1132.23 1000 50 0.99998295 +280 1132.23 1136.1075 1000 50 0.99983394 +281 1139.985 1143.8625 1000 50 0.9999982 +282 1143.8625 1147.74 1000 50 0.99986815 +283 1147.74 1151.6175 1000 50 0.9806831 +284 1151.6175 1155.4950000000001 1000 50 1.0 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_08-22-52_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_08-22-52_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..000e543807a4f5db47c3ce8e4377b18e4df2d4b5 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_08-22-52_annot_2022-11-30_01.txt @@ -0,0 +1,36 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99997413 +2 3.8775 7.755 1000 50 0.9998841 +3 7.755 11.6325 1000 50 0.9999751 +4 11.6325 15.51 1000 50 0.99999917 +5 15.51 19.3875 1000 50 0.9858212 +6 19.3875 23.265 1000 50 0.9998118 +7 23.265 27.142500000000002 1000 50 0.9999951 +8 27.1425 31.02 1000 50 0.9999783 +9 31.02 34.8975 1000 50 0.9999962 +10 34.8975 38.775 1000 50 1.0 +11 38.775 42.652499999999996 1000 50 0.9966781 +12 42.6525 46.53 1000 50 1.0 +13 46.53 50.4075 1000 50 0.9999937 +14 50.4075 54.285 1000 50 0.9901045 +15 54.285 58.162499999999994 1000 50 0.9999832 +16 58.1625 62.04 1000 50 1.0 +17 62.04 65.9175 1000 50 0.99976677 +18 65.9175 69.795 1000 50 0.9999999 +19 69.795 73.6725 1000 50 1.0 +20 73.6725 77.55 1000 50 0.9999008 +21 77.55 81.4275 1000 50 0.9966125 +22 81.4275 85.30499999999999 1000 50 1.0 +23 85.305 89.1825 1000 50 0.9997148 +24 89.1825 93.06 1000 50 0.9999894 +25 93.06 96.9375 1000 50 0.9999999 +26 96.9375 100.815 1000 50 0.9999914 +27 100.815 104.6925 1000 50 0.9999763 +28 104.6925 108.57 1000 50 0.9999883 +29 108.57 112.44749999999999 1000 50 0.99999976 +30 112.4475 116.325 1000 50 0.9999995 +31 116.325 120.2025 1000 50 0.9999778 +32 120.2025 124.08 1000 50 0.99469745 +33 124.08 127.9575 1000 50 1.0 +34 127.9575 131.835 1000 50 0.99999976 +35 131.835 135.7125 1000 50 0.95062995 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_09-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_09-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f2c0591103b079e229625bfedde22a01a081fd52 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_09-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,367 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9997923 +2 3.8775 7.755 1000 50 0.9989146 +3 7.755 11.6325 1000 50 0.9708537 +4 11.6325 15.51 1000 50 0.98483735 +5 19.3875 23.265 1000 50 0.63005227 +6 23.265 27.142500000000002 1000 50 0.99302614 +7 27.1425 31.02 1000 50 0.9937442 +8 31.02 34.8975 1000 50 0.99997663 +9 34.8975 38.775 1000 50 0.83461463 +10 38.775 42.652499999999996 1000 50 0.91862977 +11 46.53 50.4075 1000 50 0.9992536 +12 50.4075 54.285 1000 50 0.99775547 +13 54.285 58.162499999999994 1000 50 0.9991817 +14 58.1625 62.04 1000 50 0.99640805 +15 65.9175 69.795 1000 50 0.80527115 +16 69.795 73.6725 1000 50 0.9999994 +17 73.6725 77.55 1000 50 0.99989426 +18 81.4275 85.30499999999999 1000 50 0.9999957 +19 85.305 89.1825 1000 50 0.7074559 +20 89.1825 93.06 1000 50 0.87157613 +21 93.06 96.9375 1000 50 0.99979943 +22 96.9375 100.815 1000 50 0.9894071 +23 100.815 104.6925 1000 50 0.99985766 +24 104.6925 108.57 1000 50 0.979246 +25 108.57 112.44749999999999 1000 50 0.9897857 +26 112.4475 116.325 1000 50 0.9960007 +27 116.325 120.2025 1000 50 0.98509926 +28 124.08 127.9575 1000 50 0.69792986 +29 127.9575 131.835 1000 50 0.8968217 +30 131.835 135.7125 1000 50 0.9992865 +31 135.7125 139.59 1000 50 0.9998159 +32 143.4675 147.345 1000 50 0.99992716 +33 147.345 151.2225 1000 50 0.999979 +34 155.1 158.9775 1000 50 0.99971884 +35 158.9775 162.855 1000 50 0.99995816 +36 162.855 166.7325 1000 50 0.62452626 +37 166.7325 170.60999999999999 1000 50 0.9942272 +38 170.61 174.4875 1000 50 0.9781754 +39 178.365 182.2425 1000 50 0.99884343 +40 182.2425 186.12 1000 50 0.9690251 +41 189.9975 193.875 1000 50 0.9986928 +42 193.875 197.7525 1000 50 0.970759 +43 197.7525 201.63 1000 50 0.9863694 +44 201.63 205.5075 1000 50 0.99313205 +45 205.5075 209.385 1000 50 0.9978265 +46 213.2625 217.14 1000 50 0.99545896 +47 217.14 221.01749999999998 1000 50 0.99490356 +48 221.0175 224.895 1000 50 0.9999951 +49 224.895 228.7725 1000 50 0.9906322 +50 228.7725 232.65 1000 50 0.9998714 +51 232.65 236.5275 1000 50 0.9999974 +52 236.5275 240.405 1000 50 0.9999628 +53 240.405 244.2825 1000 50 0.99939966 +54 244.2825 248.16 1000 50 0.69510466 +55 248.16 252.0375 1000 50 0.95107543 +56 252.0375 255.915 1000 50 0.9919612 +57 255.915 259.7925 1000 50 0.9174697 +58 263.67 267.5475 1000 50 0.99987125 +59 267.5475 271.425 1000 50 0.9950858 +60 271.425 275.3025 1000 50 0.99942756 +61 275.3025 279.18 1000 50 1.0 +62 279.18 283.0575 1000 50 0.9999987 +63 283.0575 286.935 1000 50 0.9997465 +64 286.935 290.8125 1000 50 0.99999976 +65 290.8125 294.69 1000 50 1.0 +66 294.69 298.5675 1000 50 0.9972024 +67 298.5675 302.445 1000 50 0.99964964 +68 302.445 306.3225 1000 50 0.9999839 +69 306.3225 310.2 1000 50 0.99996614 +70 310.2 314.0775 1000 50 0.99852544 +71 314.0775 317.955 1000 50 0.99958354 +72 317.955 321.8325 1000 50 0.99664223 +73 321.8325 325.71 1000 50 0.9999989 +74 325.71 329.5875 1000 50 0.9999944 +75 329.5875 333.465 1000 50 0.9978896 +76 333.465 337.3425 1000 50 0.99999905 +77 337.3425 341.21999999999997 1000 50 0.9999999 +78 341.22 345.0975 1000 50 0.99966824 +79 345.0975 348.975 1000 50 0.9999993 +80 348.975 352.8525 1000 50 0.9999987 +81 352.8525 356.73 1000 50 0.9999039 +82 356.73 360.6075 1000 50 0.99999857 +83 360.6075 364.485 1000 50 0.99999523 +84 364.485 368.3625 1000 50 0.99999857 +85 368.3625 372.24 1000 50 0.9999825 +86 372.24 376.1175 1000 50 0.9999732 +87 376.1175 379.995 1000 50 0.99993515 +88 379.995 383.8725 1000 50 0.9999999 +89 383.8725 387.75 1000 50 0.9998122 +90 387.75 391.6275 1000 50 0.99999845 +91 391.6275 395.505 1000 50 0.9999864 +92 395.505 399.3825 1000 50 0.9999993 +93 399.3825 403.26 1000 50 0.9999975 +94 403.26 407.1375 1000 50 0.99998605 +95 407.1375 411.015 1000 50 0.9999999 +96 411.015 414.8925 1000 50 0.99999976 +97 414.8925 418.77 1000 50 0.99999964 +98 418.77 422.6475 1000 50 0.9997453 +99 422.6475 426.525 1000 50 0.99999964 +100 426.525 430.4025 1000 50 0.99999964 +101 430.4025 434.28 1000 50 0.9785856 +102 434.28 438.15749999999997 1000 50 0.9999969 +103 438.1575 442.035 1000 50 0.9999987 +104 442.035 445.9125 1000 50 0.9721414 +105 445.9125 449.79 1000 50 1.0 +106 449.79 453.6675 1000 50 0.99995506 +107 453.6675 457.545 1000 50 0.9990804 +108 457.545 461.4225 1000 50 0.9999999 +109 461.4225 465.3 1000 50 0.9999995 +110 465.3 469.1775 1000 50 0.99999976 +111 469.1775 473.055 1000 50 0.9999937 +112 473.055 476.9325 1000 50 0.9001971 +113 476.9325 480.81 1000 50 0.9999964 +114 480.81 484.6875 1000 50 0.9999218 +115 484.6875 488.565 1000 50 0.9807568 +116 488.565 492.4425 1000 50 1.0 +117 492.4425 496.32 1000 50 0.9999125 +118 496.32 500.1975 1000 50 0.9752705 +119 500.1975 504.075 1000 50 1.0 +120 504.075 507.9525 1000 50 1.0 +121 507.9525 511.83 1000 50 0.999925 +122 511.83 515.7075 1000 50 1.0 +123 515.7075 519.585 1000 50 0.9998791 +124 519.585 523.4625000000001 1000 50 0.9999999 +125 523.4625 527.34 1000 50 1.0 +126 527.34 531.2175000000001 1000 50 0.999995 +127 531.2175 535.095 1000 50 0.99945384 +128 535.095 538.9725000000001 1000 50 0.99999964 +129 538.9725 542.85 1000 50 0.9999895 +130 542.85 546.7275000000001 1000 50 1.0 +131 546.7275 550.605 1000 50 0.9999999 +132 550.605 554.4825000000001 1000 50 0.99999976 +133 554.4825 558.36 1000 50 0.99999607 +134 558.36 562.2375000000001 1000 50 0.9997608 +135 562.2375 566.115 1000 50 0.99999666 +136 566.115 569.9925000000001 1000 50 0.999252 +137 569.9925 573.87 1000 50 0.9999678 +138 573.87 577.7475000000001 1000 50 0.99999976 +139 577.7475 581.625 1000 50 0.9998497 +140 581.625 585.5025 1000 50 0.99999034 +141 585.5025 589.3800000000001 1000 50 0.99989986 +142 589.38 593.2575 1000 50 0.9999087 +143 593.2575 597.1350000000001 1000 50 0.9998944 +144 597.135 601.0125 1000 50 0.9999472 +145 601.0125 604.8900000000001 1000 50 0.9999821 +146 604.89 608.7675 1000 50 0.9999747 +147 608.7675 612.6450000000001 1000 50 0.99814594 +148 612.645 616.5225 1000 50 0.9999939 +149 616.5225 620.4000000000001 1000 50 1.0 +150 620.4 624.2775 1000 50 0.9999409 +151 624.2775 628.1550000000001 1000 50 0.9999995 +152 628.155 632.0325 1000 50 0.9999933 +153 632.0325 635.9100000000001 1000 50 0.99997985 +154 635.91 639.7875 1000 50 0.99999726 +155 639.7875 643.6650000000001 1000 50 1.0 +156 643.665 647.5425 1000 50 0.99999976 +157 647.5425 651.4200000000001 1000 50 0.999949 +158 651.42 655.2975 1000 50 0.9999999 +159 655.2975 659.1750000000001 1000 50 0.99999964 +160 659.175 663.0525 1000 50 0.99999964 +161 663.0525 666.9300000000001 1000 50 0.9999876 +162 666.93 670.8075 1000 50 1.0 +163 670.8075 674.6850000000001 1000 50 0.9999999 +164 674.685 678.5625 1000 50 1.0 +165 678.5625 682.44 1000 50 0.99999976 +166 682.44 686.3175000000001 1000 50 0.9991565 +167 686.3175 690.195 1000 50 1.0 +168 690.195 694.0725000000001 1000 50 0.9999999 +169 694.0725 697.95 1000 50 0.9999976 +170 697.95 701.8275000000001 1000 50 1.0 +171 701.8275 705.705 1000 50 0.9999721 +172 705.705 709.5825000000001 1000 50 0.99993336 +173 709.5825 713.46 1000 50 0.99999666 +174 713.46 717.3375000000001 1000 50 0.99993837 +175 717.3375 721.215 1000 50 0.9999988 +176 721.215 725.0925000000001 1000 50 1.0 +177 725.0925 728.97 1000 50 0.9999976 +178 728.97 732.8475000000001 1000 50 0.9999567 +179 732.8475 736.725 1000 50 1.0 +180 736.725 740.6025000000001 1000 50 0.9994454 +181 740.6025 744.48 1000 50 0.9999999 +182 744.48 748.3575000000001 1000 50 1.0 +183 748.3575 752.235 1000 50 0.999979 +184 752.235 756.1125000000001 1000 50 0.99997187 +185 756.1125 759.99 1000 50 0.99294746 +186 759.99 763.8675000000001 1000 50 0.9999931 +187 763.8675 767.745 1000 50 0.99985397 +188 767.745 771.6225000000001 1000 50 0.99999845 +189 771.6225 775.5 1000 50 0.9999945 +190 775.5 779.3775 1000 50 0.9999989 +191 779.3775 783.2550000000001 1000 50 0.99999917 +192 783.255 787.1325 1000 50 0.9999945 +193 787.1325 791.0100000000001 1000 50 0.9999995 +194 791.01 794.8875 1000 50 0.9999796 +195 794.8875 798.7650000000001 1000 50 0.9856146 +196 798.765 802.6425 1000 50 1.0 +197 802.6425 806.5200000000001 1000 50 0.99995065 +198 806.52 810.3975 1000 50 0.9999951 +199 810.3975 814.2750000000001 1000 50 0.99997056 +200 814.275 818.1525 1000 50 0.9998908 +201 818.1525 822.0300000000001 1000 50 1.0 +202 822.03 825.9075 1000 50 0.99999607 +203 825.9075 829.7850000000001 1000 50 0.9997229 +204 829.785 833.6625 1000 50 0.99999034 +205 833.6625 837.5400000000001 1000 50 0.8536252 +206 837.54 841.4175 1000 50 0.98306584 +207 841.4175 845.2950000000001 1000 50 0.99999535 +208 845.295 849.1725 1000 50 0.9994475 +209 853.05 856.9275 1000 50 0.999998 +210 856.9275 860.8050000000001 1000 50 0.99207085 +211 860.805 864.6825 1000 50 0.9994844 +212 864.6825 868.5600000000001 1000 50 0.93697834 +213 868.56 872.4375 1000 50 0.99999964 +214 876.315 880.1925000000001 1000 50 0.9999789 +215 880.1925 884.07 1000 50 0.9999763 +216 884.07 887.9475000000001 1000 50 0.9967603 +217 887.9475 891.825 1000 50 0.9999664 +218 891.825 895.7025000000001 1000 50 0.99974257 +219 895.7025 899.58 1000 50 0.9887967 +220 899.58 903.4575000000001 1000 50 0.9999821 +221 903.4575 907.335 1000 50 0.96199477 +222 907.335 911.2125000000001 1000 50 0.9999956 +223 911.2125 915.09 1000 50 0.99999607 +224 915.09 918.9675000000001 1000 50 0.99906677 +225 918.9675 922.845 1000 50 0.93709517 +226 922.845 926.7225000000001 1000 50 0.99760455 +227 926.7225 930.6 1000 50 0.78003806 +228 930.6 934.4775000000001 1000 50 0.66950524 +229 934.4775 938.355 1000 50 0.99999666 +230 938.355 942.2325000000001 1000 50 0.9806685 +231 942.2325 946.11 1000 50 0.9953194 +232 946.11 949.9875000000001 1000 50 1.0 +233 949.9875 953.865 1000 50 0.99342877 +234 953.865 957.7425000000001 1000 50 0.99999857 +235 957.7425 961.62 1000 50 0.9999999 +236 961.62 965.4975000000001 1000 50 0.99988985 +237 965.4975 969.375 1000 50 1.0 +238 969.375 973.2525 1000 50 0.9999201 +239 973.2525 977.1300000000001 1000 50 0.99999857 +240 977.13 981.0075 1000 50 0.999624 +241 981.0075 984.8850000000001 1000 50 0.99995923 +242 984.885 988.7625 1000 50 0.99963486 +243 988.7625 992.6400000000001 1000 50 0.99999976 +244 992.64 996.5175 1000 50 0.98655546 +245 1000.395 1004.2725 1000 50 1.0 +246 1004.2725 1008.1500000000001 1000 50 0.99964917 +247 1008.15 1012.0275 1000 50 0.9999857 +248 1012.0275 1015.9050000000001 1000 50 1.0 +249 1015.905 1019.7825 1000 50 0.9998989 +250 1019.7825 1023.6600000000001 1000 50 0.9999871 +251 1023.66 1027.5375 1000 50 0.9999777 +252 1027.5375 1031.415 1000 50 0.9999999 +253 1031.415 1035.2925 1000 50 0.9999957 +254 1035.2925 1039.17 1000 50 1.0 +255 1039.17 1043.0475000000001 1000 50 0.99999654 +256 1043.0475 1046.925 1000 50 0.99999905 +257 1046.925 1050.8025 1000 50 0.9999994 +258 1050.8025 1054.68 1000 50 0.99997985 +259 1054.68 1058.5575000000001 1000 50 0.999979 +260 1058.5575 1062.435 1000 50 0.97306585 +261 1062.435 1066.3125 1000 50 1.0 +262 1066.3125 1070.19 1000 50 1.0 +263 1070.19 1074.0675 1000 50 0.9400804 +264 1074.0675 1077.9450000000002 1000 50 1.0 +265 1077.945 1081.8225 1000 50 0.9999939 +266 1081.8225 1085.7 1000 50 0.9997278 +267 1085.7 1089.5775 1000 50 1.0 +268 1089.5775 1093.4550000000002 1000 50 0.9999994 +269 1093.455 1097.3325 1000 50 0.99977666 +270 1097.3325 1101.21 1000 50 1.0 +271 1101.21 1105.0875 1000 50 1.0 +272 1105.0875 1108.9650000000001 1000 50 0.999944 +273 1108.965 1112.8425 1000 50 0.9999813 +274 1112.8425 1116.72 1000 50 1.0 +275 1116.72 1120.5975 1000 50 0.99698335 +276 1120.5975 1124.4750000000001 1000 50 0.99999964 +277 1124.475 1128.3525 1000 50 0.9999976 +278 1128.3525 1132.23 1000 50 1.0 +279 1132.23 1136.1075 1000 50 0.99999297 +280 1136.1075 1139.9850000000001 1000 50 1.0 +281 1139.985 1143.8625 1000 50 1.0 +282 1143.8625 1147.74 1000 50 0.9972402 +283 1147.74 1151.6175 1000 50 1.0 +284 1151.6175 1155.4950000000001 1000 50 0.9991437 +285 1155.495 1159.3725 1000 50 0.99999964 +286 1159.3725 1163.25 1000 50 1.0 +287 1163.25 1167.1275 1000 50 0.97760427 +288 1167.1275 1171.005 1000 50 1.0 +289 1171.005 1174.8825000000002 1000 50 1.0 +290 1174.8825 1178.76 1000 50 0.999534 +291 1178.76 1182.6375 1000 50 1.0 +292 1182.6375 1186.515 1000 50 0.9999999 +293 1186.515 1190.3925000000002 1000 50 0.99999034 +294 1190.3925 1194.27 1000 50 1.0 +295 1194.27 1198.1475 1000 50 0.99973327 +296 1198.1475 1202.025 1000 50 0.9999033 +297 1202.025 1205.9025000000001 1000 50 1.0 +298 1205.9025 1209.78 1000 50 0.9999949 +299 1209.78 1213.6575 1000 50 1.0 +300 1213.6575 1217.535 1000 50 1.0 +301 1217.535 1221.4125000000001 1000 50 0.99993396 +302 1221.4125 1225.29 1000 50 1.0 +303 1225.29 1229.1675 1000 50 1.0 +304 1229.1675 1233.045 1000 50 0.88490593 +305 1233.045 1236.9225000000001 1000 50 1.0 +306 1236.9225 1240.8 1000 50 1.0 +307 1240.8 1244.6775 1000 50 0.9996158 +308 1244.6775 1248.555 1000 50 1.0 +309 1248.555 1252.4325000000001 1000 50 1.0 +310 1252.4325 1256.31 1000 50 0.9999995 +311 1256.31 1260.1875 1000 50 0.99991417 +312 1260.1875 1264.065 1000 50 0.9986829 +313 1264.065 1267.9425 1000 50 1.0 +314 1267.9425 1271.8200000000002 1000 50 0.99999714 +315 1271.82 1275.6975 1000 50 1.0 +316 1275.6975 1279.575 1000 50 0.9999999 +317 1279.575 1283.4525 1000 50 0.9999999 +318 1283.4525 1287.3300000000002 1000 50 0.9994789 +319 1287.33 1291.2075 1000 50 0.9999999 +320 1291.2075 1295.085 1000 50 0.99998033 +321 1295.085 1298.9625 1000 50 0.9999713 +322 1298.9625 1302.8400000000001 1000 50 1.0 +323 1302.84 1306.7175 1000 50 1.0 +324 1306.7175 1310.595 1000 50 0.9999913 +325 1310.595 1314.4725 1000 50 1.0 +326 1314.4725 1318.3500000000001 1000 50 0.765037 +327 1318.35 1322.2275 1000 50 0.9999963 +328 1322.2275 1326.105 1000 50 1.0 +329 1326.105 1329.9825 1000 50 0.9999677 +330 1329.9825 1333.8600000000001 1000 50 1.0 +331 1333.86 1337.7375 1000 50 0.9999943 +332 1337.7375 1341.615 1000 50 0.99981874 +333 1341.615 1345.4925 1000 50 0.9999994 +334 1345.4925 1349.3700000000001 1000 50 0.984657 +335 1349.37 1353.2475 1000 50 0.9999138 +336 1353.2475 1357.125 1000 50 0.99991393 +337 1357.125 1361.0025 1000 50 0.999474 +338 1361.0025 1364.88 1000 50 0.99998367 +339 1364.88 1368.7575000000002 1000 50 0.99526215 +340 1368.7575 1372.635 1000 50 0.99999785 +341 1372.635 1376.5125 1000 50 1.0 +342 1376.5125 1380.39 1000 50 0.9999999 +343 1380.39 1384.2675000000002 1000 50 0.9999697 +344 1384.2675 1388.145 1000 50 0.9988066 +345 1388.145 1392.0225 1000 50 0.99963844 +346 1392.0225 1395.9 1000 50 0.9987685 +347 1395.9 1399.7775000000001 1000 50 0.9999945 +348 1399.7775 1403.655 1000 50 0.9998785 +349 1403.655 1407.5325 1000 50 0.996136 +350 1407.5325 1411.41 1000 50 0.99997306 +351 1411.41 1415.2875000000001 1000 50 0.99995136 +352 1415.2875 1419.165 1000 50 0.96101326 +353 1419.165 1423.0425 1000 50 0.99946445 +354 1423.0425 1426.92 1000 50 0.9867683 +355 1426.92 1430.7975000000001 1000 50 0.53089696 +356 1430.7975 1434.675 1000 50 0.5485218 +357 1434.675 1438.5525 1000 50 0.99213624 +358 1438.5525 1442.43 1000 50 0.60007656 +359 1442.43 1446.3075000000001 1000 50 0.994474 +360 1446.3075 1450.185 1000 50 0.99993455 +361 1450.185 1454.0625 1000 50 0.9990036 +362 1454.0625 1457.94 1000 50 0.9999502 +363 1457.94 1461.8175 1000 50 0.68637383 +364 1461.8175 1465.6950000000002 1000 50 0.9998745 +365 1465.695 1469.5725 1000 50 0.9994235 +366 1469.5725 1473.45 1000 50 0.79961896 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_10-01-55_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_10-01-55_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..82e8fe32a84fd369d506b7107c5541169df2f64a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_10-01-55_annot_2022-11-30_01.txt @@ -0,0 +1,353 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999678 +2 3.8775 7.755 1000 50 0.9999727 +3 7.755 11.6325 1000 50 0.99995935 +4 11.6325 15.51 1000 50 0.9995615 +5 15.51 19.3875 1000 50 0.99914324 +6 19.3875 23.265 1000 50 0.9997478 +7 23.265 27.142500000000002 1000 50 0.99995637 +8 27.1425 31.02 1000 50 1.0 +9 31.02 34.8975 1000 50 0.99986494 +10 34.8975 38.775 1000 50 0.9999552 +11 38.775 42.652499999999996 1000 50 0.9988613 +12 42.6525 46.53 1000 50 0.9992206 +13 46.53 50.4075 1000 50 0.9999963 +14 50.4075 54.285 1000 50 0.9831838 +15 54.285 58.162499999999994 1000 50 1.0 +16 58.1625 62.04 1000 50 0.9998882 +17 62.04 65.9175 1000 50 0.99999917 +18 65.9175 69.795 1000 50 1.0 +19 69.795 73.6725 1000 50 0.95764226 +20 73.6725 77.55 1000 50 0.9882725 +21 77.55 81.4275 1000 50 0.9999614 +22 81.4275 85.30499999999999 1000 50 0.99996424 +23 85.305 89.1825 1000 50 0.9999999 +24 89.1825 93.06 1000 50 0.9967604 +25 93.06 96.9375 1000 50 0.99999785 +26 100.815 104.6925 1000 50 0.9999658 +27 104.6925 108.57 1000 50 0.99370736 +28 108.57 112.44749999999999 1000 50 0.98012674 +29 112.4475 116.325 1000 50 1.0 +30 116.325 120.2025 1000 50 0.9988176 +31 120.2025 124.08 1000 50 0.9999999 +32 124.08 127.9575 1000 50 0.998579 +33 127.9575 131.835 1000 50 0.99993324 +34 131.835 135.7125 1000 50 0.9998785 +35 135.7125 139.59 1000 50 0.99955064 +36 139.59 143.4675 1000 50 0.98288465 +37 143.4675 147.345 1000 50 0.9999988 +38 147.345 151.2225 1000 50 0.99999964 +39 151.2225 155.1 1000 50 0.9999995 +40 155.1 158.9775 1000 50 0.99970764 +41 158.9775 162.855 1000 50 1.0 +42 162.855 166.7325 1000 50 0.99965394 +43 166.7325 170.60999999999999 1000 50 0.9315454 +44 170.61 174.4875 1000 50 0.99957365 +45 174.4875 178.365 1000 50 0.9988795 +46 178.365 182.2425 1000 50 0.99998534 +47 182.2425 186.12 1000 50 0.99442637 +48 186.12 189.9975 1000 50 0.9999999 +49 189.9975 193.875 1000 50 0.99999976 +50 193.875 197.7525 1000 50 0.99999857 +51 197.7525 201.63 1000 50 0.9999994 +52 201.63 205.5075 1000 50 0.99997675 +53 205.5075 209.385 1000 50 0.9999957 +54 209.385 213.2625 1000 50 0.99993634 +55 213.2625 217.14 1000 50 0.9997255 +56 217.14 221.01749999999998 1000 50 0.99991083 +57 221.0175 224.895 1000 50 0.9995685 +58 224.895 228.7725 1000 50 0.98505765 +59 228.7725 232.65 1000 50 0.99976546 +60 232.65 236.5275 1000 50 0.99970824 +61 236.5275 240.405 1000 50 0.99973005 +62 240.405 244.2825 1000 50 0.9999999 +63 244.2825 248.16 1000 50 0.998676 +64 248.16 252.0375 1000 50 0.99997866 +65 252.0375 255.915 1000 50 0.99999774 +66 255.915 259.7925 1000 50 0.66283333 +67 259.7925 263.67 1000 50 0.9999999 +68 263.67 267.5475 1000 50 0.88885725 +69 267.5475 271.425 1000 50 1.0 +70 271.425 275.3025 1000 50 0.9999722 +71 275.3025 279.18 1000 50 0.999461 +72 279.18 283.0575 1000 50 0.9999994 +73 283.0575 286.935 1000 50 0.9998797 +74 286.935 290.8125 1000 50 0.9998017 +75 290.8125 294.69 1000 50 0.99999976 +76 294.69 298.5675 1000 50 0.99991393 +77 298.5675 302.445 1000 50 1.0 +78 302.445 306.3225 1000 50 0.9999994 +79 306.3225 310.2 1000 50 0.9999989 +80 310.2 314.0775 1000 50 0.99999976 +81 314.0775 317.955 1000 50 1.0 +82 317.955 321.8325 1000 50 1.0 +83 321.8325 325.71 1000 50 0.99999917 +84 325.71 329.5875 1000 50 1.0 +85 329.5875 333.465 1000 50 0.9999999 +86 333.465 337.3425 1000 50 0.99999976 +87 337.3425 341.21999999999997 1000 50 1.0 +88 341.22 345.0975 1000 50 0.99999976 +89 345.0975 348.975 1000 50 0.99999726 +90 348.975 352.8525 1000 50 0.99989927 +91 352.8525 356.73 1000 50 0.99999714 +92 356.73 360.6075 1000 50 1.0 +93 360.6075 364.485 1000 50 0.9999839 +94 364.485 368.3625 1000 50 1.0 +95 368.3625 372.24 1000 50 0.9999082 +96 372.24 376.1175 1000 50 0.9999999 +97 376.1175 379.995 1000 50 0.99997747 +98 379.995 383.8725 1000 50 1.0 +99 383.8725 387.75 1000 50 1.0 +100 387.75 391.6275 1000 50 1.0 +101 391.6275 395.505 1000 50 0.99999857 +102 395.505 399.3825 1000 50 0.9999999 +103 399.3825 403.26 1000 50 1.0 +104 403.26 407.1375 1000 50 1.0 +105 407.1375 411.015 1000 50 0.99977916 +106 411.015 414.8925 1000 50 0.99999976 +107 414.8925 418.77 1000 50 0.9999995 +108 418.77 422.6475 1000 50 0.9946063 +109 422.6475 426.525 1000 50 1.0 +110 426.525 430.4025 1000 50 0.99998736 +111 430.4025 434.28 1000 50 0.99999785 +112 434.28 438.15749999999997 1000 50 1.0 +113 438.1575 442.035 1000 50 1.0 +114 442.035 445.9125 1000 50 0.99999964 +115 445.9125 449.79 1000 50 1.0 +116 449.79 453.6675 1000 50 0.99965835 +117 453.6675 457.545 1000 50 1.0 +118 457.545 461.4225 1000 50 0.99998355 +119 461.4225 465.3 1000 50 0.9999974 +120 465.3 469.1775 1000 50 1.0 +121 469.1775 473.055 1000 50 0.9999999 +122 473.055 476.9325 1000 50 1.0 +123 476.9325 480.81 1000 50 0.99999976 +124 480.81 484.6875 1000 50 0.9999802 +125 484.6875 488.565 1000 50 1.0 +126 488.565 492.4425 1000 50 1.0 +127 492.4425 496.32 1000 50 0.9999982 +128 496.32 500.1975 1000 50 1.0 +129 500.1975 504.075 1000 50 0.9998167 +130 504.075 507.9525 1000 50 0.99999976 +131 507.9525 511.83 1000 50 0.99999964 +132 511.83 515.7075 1000 50 1.0 +133 515.7075 519.585 1000 50 0.9999999 +134 519.585 523.4625000000001 1000 50 1.0 +135 523.4625 527.34 1000 50 0.997783 +136 527.34 531.2175000000001 1000 50 1.0 +137 531.2175 535.095 1000 50 0.9999964 +138 535.095 538.9725000000001 1000 50 0.99984574 +139 538.9725 542.85 1000 50 1.0 +140 542.85 546.7275000000001 1000 50 0.99995303 +141 546.7275 550.605 1000 50 0.9999932 +142 550.605 554.4825000000001 1000 50 1.0 +143 554.4825 558.36 1000 50 0.99977475 +144 558.36 562.2375000000001 1000 50 0.9999814 +145 562.2375 566.115 1000 50 0.9865042 +146 566.115 569.9925000000001 1000 50 0.99993503 +147 569.9925 573.87 1000 50 0.99937505 +148 573.87 577.7475000000001 1000 50 0.9999995 +149 577.7475 581.625 1000 50 0.9998554 +150 581.625 585.5025 1000 50 0.99987423 +151 585.5025 589.3800000000001 1000 50 0.99211335 +152 589.38 593.2575 1000 50 0.9996667 +153 593.2575 597.1350000000001 1000 50 0.97807527 +154 597.135 601.0125 1000 50 0.99962044 +155 601.0125 604.8900000000001 1000 50 0.99999845 +156 604.89 608.7675 1000 50 1.0 +157 608.7675 612.6450000000001 1000 50 1.0 +158 612.645 616.5225 1000 50 1.0 +159 616.5225 620.4000000000001 1000 50 0.9996284 +160 620.4 624.2775 1000 50 0.99994147 +161 624.2775 628.1550000000001 1000 50 1.0 +162 628.155 632.0325 1000 50 0.9999838 +163 632.0325 635.9100000000001 1000 50 0.99926 +164 635.91 639.7875 1000 50 1.0 +165 639.7875 643.6650000000001 1000 50 0.99992466 +166 643.665 647.5425 1000 50 1.0 +167 647.5425 651.4200000000001 1000 50 1.0 +168 651.42 655.2975 1000 50 0.99891937 +169 655.2975 659.1750000000001 1000 50 0.99995553 +170 659.175 663.0525 1000 50 1.0 +171 663.0525 666.9300000000001 1000 50 0.99992263 +172 666.93 670.8075 1000 50 0.9794058 +173 670.8075 674.6850000000001 1000 50 0.97766864 +174 674.685 678.5625 1000 50 0.99999046 +175 678.5625 682.44 1000 50 0.9823613 +176 686.3175 690.195 1000 50 0.9970497 +177 697.95 701.8275000000001 1000 50 0.9829732 +178 701.8275 705.705 1000 50 0.99986863 +179 705.705 709.5825000000001 1000 50 0.9997867 +180 709.5825 713.46 1000 50 0.99998903 +181 713.46 717.3375000000001 1000 50 0.9930004 +182 717.3375 721.215 1000 50 0.9999994 +183 721.215 725.0925000000001 1000 50 0.9975909 +184 725.0925 728.97 1000 50 0.99503726 +185 728.97 732.8475000000001 1000 50 0.9988009 +186 732.8475 736.725 1000 50 0.6557518 +187 736.725 740.6025000000001 1000 50 0.9950264 +188 740.6025 744.48 1000 50 0.99886155 +189 744.48 748.3575000000001 1000 50 0.9799819 +190 748.3575 752.235 1000 50 0.9984849 +191 752.235 756.1125000000001 1000 50 0.97701913 +192 756.1125 759.99 1000 50 0.9306512 +193 759.99 763.8675000000001 1000 50 0.99986494 +194 763.8675 767.745 1000 50 0.5829949 +195 771.6225 775.5 1000 50 0.8668082 +196 775.5 779.3775 1000 50 0.9972275 +197 779.3775 783.2550000000001 1000 50 0.99984455 +198 783.255 787.1325 1000 50 0.7946374 +199 787.1325 791.0100000000001 1000 50 0.999995 +200 791.01 794.8875 1000 50 0.9998772 +201 794.8875 798.7650000000001 1000 50 0.97891766 +202 798.765 802.6425 1000 50 0.64189553 +203 802.6425 806.5200000000001 1000 50 0.9975551 +204 806.52 810.3975 1000 50 0.99845445 +205 810.3975 814.2750000000001 1000 50 0.9994435 +206 814.275 818.1525 1000 50 0.9822588 +207 822.03 825.9075 1000 50 0.9968477 +208 825.9075 829.7850000000001 1000 50 0.92996746 +209 829.785 833.6625 1000 50 0.981635 +210 833.6625 837.5400000000001 1000 50 0.6527499 +211 837.54 841.4175 1000 50 0.9988507 +212 841.4175 845.2950000000001 1000 50 0.9939679 +213 845.295 849.1725 1000 50 0.96481574 +214 849.1725 853.0500000000001 1000 50 0.6670503 +215 853.05 856.9275 1000 50 0.9330677 +216 856.9275 860.8050000000001 1000 50 0.9999969 +217 860.805 864.6825 1000 50 0.99986696 +218 864.6825 868.5600000000001 1000 50 0.85824704 +219 868.56 872.4375 1000 50 0.9999223 +220 872.4375 876.315 1000 50 0.9948973 +221 876.315 880.1925000000001 1000 50 0.88555926 +222 880.1925 884.07 1000 50 0.99999905 +223 884.07 887.9475000000001 1000 50 0.9999999 +224 887.9475 891.825 1000 50 0.9996207 +225 891.825 895.7025000000001 1000 50 0.99998724 +226 895.7025 899.58 1000 50 0.9998648 +227 899.58 903.4575000000001 1000 50 0.9184987 +228 903.4575 907.335 1000 50 0.9999993 +229 907.335 911.2125000000001 1000 50 0.9999988 +230 911.2125 915.09 1000 50 0.9999763 +231 918.9675 922.845 1000 50 1.0 +232 922.845 926.7225000000001 1000 50 0.99996114 +233 926.7225 930.6 1000 50 0.9911075 +234 930.6 934.4775000000001 1000 50 1.0 +235 934.4775 938.355 1000 50 1.0 +236 938.355 942.2325000000001 1000 50 0.92405 +237 942.2325 946.11 1000 50 1.0 +238 946.11 949.9875000000001 1000 50 1.0 +239 949.9875 953.865 1000 50 0.9987896 +240 953.865 957.7425000000001 1000 50 1.0 +241 957.7425 961.62 1000 50 1.0 +242 961.62 965.4975000000001 1000 50 0.7327259 +243 965.4975 969.375 1000 50 1.0 +244 969.375 973.2525 1000 50 0.99999833 +245 973.2525 977.1300000000001 1000 50 0.9999944 +246 977.13 981.0075 1000 50 1.0 +247 981.0075 984.8850000000001 1000 50 0.99999547 +248 984.885 988.7625 1000 50 0.9997577 +249 988.7625 992.6400000000001 1000 50 1.0 +250 992.64 996.5175 1000 50 0.9996803 +251 996.5175 1000.3950000000001 1000 50 0.9999361 +252 1000.395 1004.2725 1000 50 1.0 +253 1004.2725 1008.1500000000001 1000 50 0.9999988 +254 1008.15 1012.0275 1000 50 0.9998598 +255 1012.0275 1015.9050000000001 1000 50 0.99999857 +256 1015.905 1019.7825 1000 50 0.99999833 +257 1019.7825 1023.6600000000001 1000 50 1.0 +258 1023.66 1027.5375 1000 50 1.0 +259 1027.5375 1031.415 1000 50 0.99999833 +260 1031.415 1035.2925 1000 50 0.99999857 +261 1035.2925 1039.17 1000 50 1.0 +262 1039.17 1043.0475000000001 1000 50 0.99999976 +263 1043.0475 1046.925 1000 50 0.9999999 +264 1046.925 1050.8025 1000 50 1.0 +265 1050.8025 1054.68 1000 50 0.999997 +266 1054.68 1058.5575000000001 1000 50 0.9999875 +267 1058.5575 1062.435 1000 50 1.0 +268 1062.435 1066.3125 1000 50 0.9999975 +269 1066.3125 1070.19 1000 50 1.0 +270 1070.19 1074.0675 1000 50 0.99999917 +271 1074.0675 1077.9450000000002 1000 50 1.0 +272 1077.945 1081.8225 1000 50 0.99995553 +273 1081.8225 1085.7 1000 50 0.9999982 +274 1085.7 1089.5775 1000 50 0.99992883 +275 1089.5775 1093.4550000000002 1000 50 0.99962854 +276 1093.455 1097.3325 1000 50 1.0 +277 1097.3325 1101.21 1000 50 0.999997 +278 1101.21 1105.0875 1000 50 0.9999988 +279 1105.0875 1108.9650000000001 1000 50 0.9999994 +280 1108.965 1112.8425 1000 50 0.99999964 +281 1112.8425 1116.72 1000 50 1.0 +282 1116.72 1120.5975 1000 50 0.9999434 +283 1120.5975 1124.4750000000001 1000 50 0.99999905 +284 1124.475 1128.3525 1000 50 1.0 +285 1128.3525 1132.23 1000 50 0.99999976 +286 1132.23 1136.1075 1000 50 0.9999664 +287 1136.1075 1139.9850000000001 1000 50 1.0 +288 1139.985 1143.8625 1000 50 0.999977 +289 1143.8625 1147.74 1000 50 0.9996722 +290 1147.74 1151.6175 1000 50 1.0 +291 1151.6175 1155.4950000000001 1000 50 0.9999927 +292 1155.495 1159.3725 1000 50 1.0 +293 1159.3725 1163.25 1000 50 1.0 +294 1163.25 1167.1275 1000 50 0.9999999 +295 1167.1275 1171.005 1000 50 0.99999785 +296 1171.005 1174.8825000000002 1000 50 0.9999995 +297 1174.8825 1178.76 1000 50 0.9999224 +298 1178.76 1182.6375 1000 50 0.9990376 +299 1182.6375 1186.515 1000 50 0.99999774 +300 1186.515 1190.3925000000002 1000 50 0.99998486 +301 1190.3925 1194.27 1000 50 0.9999869 +302 1194.27 1198.1475 1000 50 0.9999695 +303 1198.1475 1202.025 1000 50 0.9999999 +304 1202.025 1205.9025000000001 1000 50 0.9999999 +305 1205.9025 1209.78 1000 50 0.9963064 +306 1209.78 1213.6575 1000 50 0.99994195 +307 1213.6575 1217.535 1000 50 0.99999976 +308 1217.535 1221.4125000000001 1000 50 1.0 +309 1221.4125 1225.29 1000 50 0.99993527 +310 1225.29 1229.1675 1000 50 0.9999995 +311 1229.1675 1233.045 1000 50 0.99999046 +312 1233.045 1236.9225000000001 1000 50 0.9999999 +313 1236.9225 1240.8 1000 50 0.9999913 +314 1240.8 1244.6775 1000 50 0.9999995 +315 1244.6775 1248.555 1000 50 1.0 +316 1248.555 1252.4325000000001 1000 50 0.9999999 +317 1252.4325 1256.31 1000 50 0.99999976 +318 1256.31 1260.1875 1000 50 0.99998796 +319 1260.1875 1264.065 1000 50 1.0 +320 1264.065 1267.9425 1000 50 1.0 +321 1267.9425 1271.8200000000002 1000 50 0.99999857 +322 1271.82 1275.6975 1000 50 1.0 +323 1275.6975 1279.575 1000 50 0.99999297 +324 1279.575 1283.4525 1000 50 0.9999987 +325 1283.4525 1287.3300000000002 1000 50 1.0 +326 1287.33 1291.2075 1000 50 1.0 +327 1291.2075 1295.085 1000 50 0.9999893 +328 1295.085 1298.9625 1000 50 1.0 +329 1298.9625 1302.8400000000001 1000 50 1.0 +330 1302.84 1306.7175 1000 50 0.99999547 +331 1306.7175 1310.595 1000 50 1.0 +332 1310.595 1314.4725 1000 50 0.99999464 +333 1314.4725 1318.3500000000001 1000 50 1.0 +334 1318.35 1322.2275 1000 50 1.0 +335 1322.2275 1326.105 1000 50 0.98350996 +336 1326.105 1329.9825 1000 50 0.99999976 +337 1329.9825 1333.8600000000001 1000 50 0.9999887 +338 1333.86 1337.7375 1000 50 0.9999994 +339 1337.7375 1341.615 1000 50 0.9999974 +340 1341.615 1345.4925 1000 50 1.0 +341 1345.4925 1349.3700000000001 1000 50 0.9999989 +342 1349.37 1353.2475 1000 50 0.9998714 +343 1353.2475 1357.125 1000 50 0.9999993 +344 1357.125 1361.0025 1000 50 1.0 +345 1361.0025 1364.88 1000 50 1.0 +346 1364.88 1368.7575000000002 1000 50 0.9999982 +347 1368.7575 1372.635 1000 50 0.9999957 +348 1372.635 1376.5125 1000 50 0.999997 +349 1376.5125 1380.39 1000 50 0.99960643 +350 1380.39 1384.2675000000002 1000 50 1.0 +351 1384.2675 1388.145 1000 50 1.0 +352 1388.145 1392.0225 1000 50 0.9999852 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_11-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_11-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..aa95476d0e6b12248f59fa49151a0ad6190e21f9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_11-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,47 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9964055 +2 3.8775 7.755 1000 50 0.9993672 +3 7.755 11.6325 1000 50 0.9843886 +4 11.6325 15.51 1000 50 0.99946433 +5 15.51 19.3875 1000 50 0.9999989 +6 19.3875 23.265 1000 50 0.9999286 +7 23.265 27.142500000000002 1000 50 0.9999386 +8 27.1425 31.02 1000 50 0.9999968 +9 31.02 34.8975 1000 50 1.0 +10 34.8975 38.775 1000 50 0.9347159 +11 38.775 42.652499999999996 1000 50 1.0 +12 42.6525 46.53 1000 50 0.9999982 +13 46.53 50.4075 1000 50 0.9999999 +14 50.4075 54.285 1000 50 0.9999987 +15 54.285 58.162499999999994 1000 50 0.99999976 +16 58.1625 62.04 1000 50 0.9998863 +17 62.04 65.9175 1000 50 0.9999999 +18 65.9175 69.795 1000 50 0.9999989 +19 69.795 73.6725 1000 50 0.9965534 +20 73.6725 77.55 1000 50 0.9080872 +21 77.55 81.4275 1000 50 1.0 +22 81.4275 85.30499999999999 1000 50 0.955473 +23 85.305 89.1825 1000 50 0.9929826 +24 89.1825 93.06 1000 50 1.0 +25 96.9375 100.815 1000 50 1.0 +26 100.815 104.6925 1000 50 0.9999999 +27 104.6925 108.57 1000 50 0.9999939 +28 108.57 112.44749999999999 1000 50 0.9992299 +29 112.4475 116.325 1000 50 0.99999964 +30 116.325 120.2025 1000 50 0.9998323 +31 120.2025 124.08 1000 50 0.9976889 +32 124.08 127.9575 1000 50 1.0 +33 127.9575 131.835 1000 50 0.99324965 +34 131.835 135.7125 1000 50 0.99999785 +35 135.7125 139.59 1000 50 0.9999993 +36 139.59 143.4675 1000 50 0.9999759 +37 143.4675 147.345 1000 50 0.9975823 +38 147.345 151.2225 1000 50 0.9870936 +39 151.2225 155.1 1000 50 0.99996626 +40 155.1 158.9775 1000 50 0.71194166 +41 158.9775 162.855 1000 50 0.9999987 +42 162.855 166.7325 1000 50 1.0 +43 166.7325 170.60999999999999 1000 50 0.9999999 +44 170.61 174.4875 1000 50 0.9999908 +45 174.4875 178.365 1000 50 0.9998491 +46 178.365 182.2425 1000 50 0.9999465 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_11-06-42_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_11-06-42_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d8fef3180c3707269f848cabb1fb7ca472f2880e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_11-06-42_annot_2022-11-30_01.txt @@ -0,0 +1,284 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.999984 +2 3.8775 7.755 1000 50 0.9999994 +3 7.755 11.6325 1000 50 0.99338734 +4 11.6325 15.51 1000 50 0.99993575 +5 15.51 19.3875 1000 50 0.99938357 +6 19.3875 23.265 1000 50 0.99817204 +7 23.265 27.142500000000002 1000 50 1.0 +8 27.1425 31.02 1000 50 0.9996923 +9 31.02 34.8975 1000 50 0.9999974 +10 34.8975 38.775 1000 50 0.9999999 +11 38.775 42.652499999999996 1000 50 0.9999927 +12 46.53 50.4075 1000 50 0.9961299 +13 50.4075 54.285 1000 50 0.9999999 +14 54.285 58.162499999999994 1000 50 0.99999857 +15 58.1625 62.04 1000 50 1.0 +16 62.04 65.9175 1000 50 0.9999788 +17 65.9175 69.795 1000 50 0.99995613 +18 69.795 73.6725 1000 50 0.9999999 +19 73.6725 77.55 1000 50 0.99999344 +20 77.55 81.4275 1000 50 0.99938 +21 81.4275 85.30499999999999 1000 50 1.0 +22 85.305 89.1825 1000 50 1.0 +23 89.1825 93.06 1000 50 0.9997614 +24 93.06 96.9375 1000 50 1.0 +25 96.9375 100.815 1000 50 0.99981564 +26 100.815 104.6925 1000 50 1.0 +27 104.6925 108.57 1000 50 0.9999888 +28 108.57 112.44749999999999 1000 50 0.9991327 +29 112.4475 116.325 1000 50 0.9999771 +30 116.325 120.2025 1000 50 0.99994624 +31 120.2025 124.08 1000 50 0.9981384 +32 124.08 127.9575 1000 50 0.9999802 +33 127.9575 131.835 1000 50 1.0 +34 131.835 135.7125 1000 50 0.99993277 +35 135.7125 139.59 1000 50 0.99999964 +36 139.59 143.4675 1000 50 1.0 +37 143.4675 147.345 1000 50 0.99998844 +38 147.345 151.2225 1000 50 0.999998 +39 151.2225 155.1 1000 50 0.99998915 +40 155.1 158.9775 1000 50 0.99999857 +41 158.9775 162.855 1000 50 0.99937695 +42 162.855 166.7325 1000 50 0.9993205 +43 166.7325 170.60999999999999 1000 50 0.99999535 +44 170.61 174.4875 1000 50 0.9999982 +45 174.4875 178.365 1000 50 0.99999964 +46 178.365 182.2425 1000 50 0.9999988 +47 182.2425 186.12 1000 50 1.0 +48 186.12 189.9975 1000 50 1.0 +49 189.9975 193.875 1000 50 1.0 +50 193.875 197.7525 1000 50 0.99999964 +51 197.7525 201.63 1000 50 0.99999917 +52 201.63 205.5075 1000 50 0.99995387 +53 205.5075 209.385 1000 50 1.0 +54 209.385 213.2625 1000 50 1.0 +55 213.2625 217.14 1000 50 0.99997294 +56 217.14 221.01749999999998 1000 50 0.9996828 +57 221.0175 224.895 1000 50 1.0 +58 224.895 228.7725 1000 50 0.99995303 +59 228.7725 232.65 1000 50 0.999998 +60 232.65 236.5275 1000 50 1.0 +61 236.5275 240.405 1000 50 0.99993324 +62 240.405 244.2825 1000 50 1.0 +63 244.2825 248.16 1000 50 0.99999976 +64 248.16 252.0375 1000 50 0.99999154 +65 252.0375 255.915 1000 50 0.99987173 +66 255.915 259.7925 1000 50 1.0 +67 259.7925 263.67 1000 50 0.9989643 +68 263.67 267.5475 1000 50 1.0 +69 267.5475 271.425 1000 50 0.99999297 +70 271.425 275.3025 1000 50 0.99999404 +71 275.3025 279.18 1000 50 1.0 +72 279.18 283.0575 1000 50 0.9999957 +73 283.0575 286.935 1000 50 1.0 +74 286.935 290.8125 1000 50 0.9999999 +75 290.8125 294.69 1000 50 0.9999962 +76 294.69 298.5675 1000 50 0.99999976 +77 298.5675 302.445 1000 50 0.9999838 +78 302.445 306.3225 1000 50 0.9999683 +79 306.3225 310.2 1000 50 1.0 +80 310.2 314.0775 1000 50 0.99981266 +81 314.0775 317.955 1000 50 0.99999464 +82 317.955 321.8325 1000 50 0.9998807 +83 321.8325 325.71 1000 50 0.99999976 +84 325.71 329.5875 1000 50 0.9999863 +85 329.5875 333.465 1000 50 0.9999875 +86 333.465 337.3425 1000 50 0.9999999 +87 337.3425 341.21999999999997 1000 50 0.99999905 +88 341.22 345.0975 1000 50 0.999974 +89 345.0975 348.975 1000 50 0.999534 +90 348.975 352.8525 1000 50 1.0 +91 352.8525 356.73 1000 50 0.9999919 +92 356.73 360.6075 1000 50 0.9806526 +93 360.6075 364.485 1000 50 0.99999905 +94 364.485 368.3625 1000 50 0.9999957 +95 368.3625 372.24 1000 50 0.99983764 +96 372.24 376.1175 1000 50 0.99999666 +97 376.1175 379.995 1000 50 0.99999404 +98 379.995 383.8725 1000 50 0.99908006 +99 383.8725 387.75 1000 50 0.9999999 +100 387.75 391.6275 1000 50 0.9999738 +101 391.6275 395.505 1000 50 0.9998958 +102 395.505 399.3825 1000 50 0.9999968 +103 399.3825 403.26 1000 50 0.99999976 +104 403.26 407.1375 1000 50 0.9999918 +105 407.1375 411.015 1000 50 0.9997664 +106 411.015 414.8925 1000 50 0.9988595 +107 414.8925 418.77 1000 50 0.9999993 +108 418.77 422.6475 1000 50 0.9999502 +109 422.6475 426.525 1000 50 0.99999976 +110 426.525 430.4025 1000 50 0.99994886 +111 430.4025 434.28 1000 50 0.99999964 +112 434.28 438.15749999999997 1000 50 0.9999981 +113 438.1575 442.035 1000 50 0.9998079 +114 442.035 445.9125 1000 50 0.9999907 +115 445.9125 449.79 1000 50 0.99999547 +116 449.79 453.6675 1000 50 0.9999981 +117 453.6675 457.545 1000 50 1.0 +118 457.545 461.4225 1000 50 0.99991846 +119 461.4225 465.3 1000 50 0.9999957 +120 465.3 469.1775 1000 50 0.99999905 +121 469.1775 473.055 1000 50 0.99999964 +122 473.055 476.9325 1000 50 0.9998503 +123 476.9325 480.81 1000 50 1.0 +124 480.81 484.6875 1000 50 0.99999976 +125 484.6875 488.565 1000 50 0.99999976 +126 488.565 492.4425 1000 50 0.9999995 +127 492.4425 496.32 1000 50 0.99989605 +128 496.32 500.1975 1000 50 1.0 +129 500.1975 504.075 1000 50 0.9999989 +130 504.075 507.9525 1000 50 0.99980575 +131 507.9525 511.83 1000 50 1.0 +132 511.83 515.7075 1000 50 0.9999999 +133 515.7075 519.585 1000 50 0.99995184 +134 519.585 523.4625000000001 1000 50 0.99999964 +135 523.4625 527.34 1000 50 0.9999213 +136 527.34 531.2175000000001 1000 50 0.9999989 +137 531.2175 535.095 1000 50 0.99999535 +138 535.095 538.9725000000001 1000 50 0.9999269 +139 538.9725 542.85 1000 50 0.9999795 +140 542.85 546.7275000000001 1000 50 0.9999217 +141 546.7275 550.605 1000 50 0.9999807 +142 550.605 554.4825000000001 1000 50 0.9999945 +143 554.4825 558.36 1000 50 0.9999808 +144 558.36 562.2375000000001 1000 50 0.99999356 +145 562.2375 566.115 1000 50 0.99999833 +146 566.115 569.9925000000001 1000 50 0.99971443 +147 569.9925 573.87 1000 50 0.9999999 +148 573.87 577.7475000000001 1000 50 0.9999758 +149 577.7475 581.625 1000 50 0.99997425 +150 581.625 585.5025 1000 50 0.99999356 +151 585.5025 589.3800000000001 1000 50 0.9992623 +152 589.38 593.2575 1000 50 0.9994616 +153 593.2575 597.1350000000001 1000 50 0.9999993 +154 597.135 601.0125 1000 50 0.9850847 +155 601.0125 604.8900000000001 1000 50 0.9972921 +156 604.89 608.7675 1000 50 0.9906878 +157 608.7675 612.6450000000001 1000 50 0.9999591 +158 612.645 616.5225 1000 50 0.99959344 +159 616.5225 620.4000000000001 1000 50 0.95748055 +160 620.4 624.2775 1000 50 0.9986927 +161 624.2775 628.1550000000001 1000 50 0.9999964 +162 628.155 632.0325 1000 50 0.9999995 +163 632.0325 635.9100000000001 1000 50 0.997433 +164 635.91 639.7875 1000 50 0.9994629 +165 639.7875 643.6650000000001 1000 50 0.999426 +166 643.665 647.5425 1000 50 0.999445 +167 647.5425 651.4200000000001 1000 50 0.9999995 +168 651.42 655.2975 1000 50 0.99687177 +169 655.2975 659.1750000000001 1000 50 0.89498514 +170 659.175 663.0525 1000 50 0.9999999 +171 663.0525 666.9300000000001 1000 50 0.9986854 +172 666.93 670.8075 1000 50 0.9996903 +173 670.8075 674.6850000000001 1000 50 0.9719401 +174 674.685 678.5625 1000 50 0.9995733 +175 678.5625 682.44 1000 50 0.9980934 +176 682.44 686.3175000000001 1000 50 0.9997943 +177 686.3175 690.195 1000 50 0.9999968 +178 690.195 694.0725000000001 1000 50 0.99924564 +179 694.0725 697.95 1000 50 0.9999962 +180 697.95 701.8275000000001 1000 50 0.99955875 +181 701.8275 705.705 1000 50 0.999967 +182 705.705 709.5825000000001 1000 50 0.99535936 +183 709.5825 713.46 1000 50 0.9975006 +184 713.46 717.3375000000001 1000 50 0.9990445 +185 717.3375 721.215 1000 50 0.99994504 +186 721.215 725.0925000000001 1000 50 0.8948812 +187 725.0925 728.97 1000 50 0.99999714 +188 728.97 732.8475000000001 1000 50 0.9999968 +189 732.8475 736.725 1000 50 0.99999726 +190 736.725 740.6025000000001 1000 50 0.99999964 +191 740.6025 744.48 1000 50 0.6466987 +192 744.48 748.3575000000001 1000 50 0.997092 +193 748.3575 752.235 1000 50 0.999782 +194 752.235 756.1125000000001 1000 50 0.9994124 +195 756.1125 759.99 1000 50 0.9998073 +196 759.99 763.8675000000001 1000 50 0.99960166 +197 763.8675 767.745 1000 50 0.9999999 +198 767.745 771.6225000000001 1000 50 0.99928623 +199 771.6225 775.5 1000 50 0.6068626 +200 775.5 779.3775 1000 50 1.0 +201 779.3775 783.2550000000001 1000 50 0.8840178 +202 783.255 787.1325 1000 50 0.9999994 +203 787.1325 791.0100000000001 1000 50 0.99949574 +204 791.01 794.8875 1000 50 0.69686776 +205 798.765 802.6425 1000 50 0.9965719 +206 802.6425 806.5200000000001 1000 50 0.99980646 +207 806.52 810.3975 1000 50 0.9999907 +208 810.3975 814.2750000000001 1000 50 0.99995434 +209 814.275 818.1525 1000 50 0.9999976 +210 818.1525 822.0300000000001 1000 50 0.999995 +211 822.03 825.9075 1000 50 0.9990177 +212 825.9075 829.7850000000001 1000 50 0.9997203 +213 829.785 833.6625 1000 50 0.9683175 +214 833.6625 837.5400000000001 1000 50 0.99999464 +215 837.54 841.4175 1000 50 0.99924374 +216 841.4175 845.2950000000001 1000 50 0.99898595 +217 845.295 849.1725 1000 50 0.99979824 +218 849.1725 853.0500000000001 1000 50 0.99999106 +219 853.05 856.9275 1000 50 0.50569147 +220 856.9275 860.8050000000001 1000 50 0.99998 +221 860.805 864.6825 1000 50 0.99997723 +222 864.6825 868.5600000000001 1000 50 0.99989486 +223 868.56 872.4375 1000 50 0.997684 +224 872.4375 876.315 1000 50 0.995243 +225 876.315 880.1925000000001 1000 50 0.9999981 +226 880.1925 884.07 1000 50 0.9997385 +227 884.07 887.9475000000001 1000 50 0.99957246 +228 887.9475 891.825 1000 50 0.98017097 +229 891.825 895.7025000000001 1000 50 0.999961 +230 895.7025 899.58 1000 50 0.9994273 +231 899.58 903.4575000000001 1000 50 0.99999976 +232 903.4575 907.335 1000 50 0.9563258 +233 907.335 911.2125000000001 1000 50 0.9999912 +234 911.2125 915.09 1000 50 0.9999927 +235 915.09 918.9675000000001 1000 50 1.0 +236 918.9675 922.845 1000 50 0.99884486 +237 922.845 926.7225000000001 1000 50 0.9999597 +238 926.7225 930.6 1000 50 0.9999999 +239 930.6 934.4775000000001 1000 50 0.99994934 +240 934.4775 938.355 1000 50 0.99999726 +241 938.355 942.2325000000001 1000 50 0.99481505 +242 942.2325 946.11 1000 50 1.0 +243 946.11 949.9875000000001 1000 50 0.9989458 +244 949.9875 953.865 1000 50 0.99957377 +245 953.865 957.7425000000001 1000 50 0.9999995 +246 957.7425 961.62 1000 50 0.99942845 +247 961.62 965.4975000000001 1000 50 1.0 +248 965.4975 969.375 1000 50 0.9999994 +249 969.375 973.2525 1000 50 1.0 +250 973.2525 977.1300000000001 1000 50 0.9999993 +251 977.13 981.0075 1000 50 0.9999999 +252 981.0075 984.8850000000001 1000 50 0.99999917 +253 984.885 988.7625 1000 50 1.0 +254 988.7625 992.6400000000001 1000 50 0.99999976 +255 992.64 996.5175 1000 50 0.99996686 +256 996.5175 1000.3950000000001 1000 50 1.0 +257 1000.395 1004.2725 1000 50 0.9999969 +258 1004.2725 1008.1500000000001 1000 50 1.0 +259 1008.15 1012.0275 1000 50 0.9999466 +260 1012.0275 1015.9050000000001 1000 50 0.9999169 +261 1015.905 1019.7825 1000 50 1.0 +262 1019.7825 1023.6600000000001 1000 50 0.9995522 +263 1023.66 1027.5375 1000 50 0.9999908 +264 1027.5375 1031.415 1000 50 0.99999905 +265 1031.415 1035.2925 1000 50 1.0 +266 1035.2925 1039.17 1000 50 0.99999964 +267 1039.17 1043.0475000000001 1000 50 0.9999993 +268 1043.0475 1046.925 1000 50 1.0 +269 1046.925 1050.8025 1000 50 0.964816 +270 1050.8025 1054.68 1000 50 1.0 +271 1054.68 1058.5575000000001 1000 50 0.99667823 +272 1058.5575 1062.435 1000 50 0.99999046 +273 1062.435 1066.3125 1000 50 0.9999956 +274 1066.3125 1070.19 1000 50 0.99999917 +275 1070.19 1074.0675 1000 50 1.0 +276 1074.0675 1077.9450000000002 1000 50 1.0 +277 1077.945 1081.8225 1000 50 0.99999964 +278 1081.8225 1085.7 1000 50 0.9999664 +279 1085.7 1089.5775 1000 50 0.9999449 +280 1089.5775 1093.4550000000002 1000 50 1.0 +281 1093.455 1097.3325 1000 50 0.9999987 +282 1097.3325 1101.21 1000 50 0.9999982 +283 1101.21 1105.0875 1000 50 0.9999976 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_12-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_12-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e4e192d24572d0e07d60d1ac170ec1583ff554b3 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_12-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,125 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99681324 +2 3.8775 7.755 1000 50 1.0 +3 7.755 11.6325 1000 50 0.9999993 +4 11.6325 15.51 1000 50 0.9999635 +5 15.51 19.3875 1000 50 0.9999976 +6 19.3875 23.265 1000 50 1.0 +7 23.265 27.142500000000002 1000 50 0.99998045 +8 27.1425 31.02 1000 50 0.99999857 +9 31.02 34.8975 1000 50 0.999985 +10 34.8975 38.775 1000 50 0.99938536 +11 38.775 42.652499999999996 1000 50 0.9999994 +12 42.6525 46.53 1000 50 0.9999987 +13 46.53 50.4075 1000 50 0.9999975 +14 50.4075 54.285 1000 50 0.9995828 +15 54.285 58.162499999999994 1000 50 0.9861282 +16 58.1625 62.04 1000 50 0.9991375 +17 62.04 65.9175 1000 50 1.0 +18 65.9175 69.795 1000 50 0.99999976 +19 69.795 73.6725 1000 50 0.999998 +20 73.6725 77.55 1000 50 1.0 +21 77.55 81.4275 1000 50 0.99997985 +22 81.4275 85.30499999999999 1000 50 0.99999976 +23 85.305 89.1825 1000 50 0.99998474 +24 89.1825 93.06 1000 50 0.99999845 +25 93.06 96.9375 1000 50 1.0 +26 96.9375 100.815 1000 50 0.9999989 +27 100.815 104.6925 1000 50 0.9999777 +28 104.6925 108.57 1000 50 0.99999976 +29 108.57 112.44749999999999 1000 50 1.0 +30 112.4475 116.325 1000 50 1.0 +31 116.325 120.2025 1000 50 1.0 +32 120.2025 124.08 1000 50 1.0 +33 124.08 127.9575 1000 50 0.99998844 +34 127.9575 131.835 1000 50 0.9985545 +35 131.835 135.7125 1000 50 1.0 +36 135.7125 139.59 1000 50 0.99999523 +37 139.59 143.4675 1000 50 0.99999905 +38 143.4675 147.345 1000 50 1.0 +39 147.345 151.2225 1000 50 1.0 +40 151.2225 155.1 1000 50 0.9999807 +41 155.1 158.9775 1000 50 0.9999993 +42 158.9775 162.855 1000 50 1.0 +43 162.855 166.7325 1000 50 0.99999714 +44 166.7325 170.60999999999999 1000 50 1.0 +45 170.61 174.4875 1000 50 0.9999999 +46 174.4875 178.365 1000 50 1.0 +47 178.365 182.2425 1000 50 1.0 +48 182.2425 186.12 1000 50 0.999997 +49 186.12 189.9975 1000 50 0.99999857 +50 189.9975 193.875 1000 50 1.0 +51 193.875 197.7525 1000 50 0.99999607 +52 197.7525 201.63 1000 50 1.0 +53 201.63 205.5075 1000 50 1.0 +54 205.5075 209.385 1000 50 0.99999654 +55 209.385 213.2625 1000 50 0.99999404 +56 213.2625 217.14 1000 50 1.0 +57 217.14 221.01749999999998 1000 50 0.99999344 +58 221.0175 224.895 1000 50 0.99999976 +59 224.895 228.7725 1000 50 1.0 +60 228.7725 232.65 1000 50 0.99997723 +61 232.65 236.5275 1000 50 0.99999774 +62 236.5275 240.405 1000 50 1.0 +63 240.405 244.2825 1000 50 0.9999993 +64 244.2825 248.16 1000 50 0.99999785 +65 248.16 252.0375 1000 50 1.0 +66 252.0375 255.915 1000 50 1.0 +67 255.915 259.7925 1000 50 0.99998426 +68 259.7925 263.67 1000 50 1.0 +69 263.67 267.5475 1000 50 0.9999522 +70 267.5475 271.425 1000 50 0.9999634 +71 271.425 275.3025 1000 50 0.9999995 +72 275.3025 279.18 1000 50 0.9996314 +73 279.18 283.0575 1000 50 1.0 +74 283.0575 286.935 1000 50 0.9999982 +75 286.935 290.8125 1000 50 0.99998724 +76 290.8125 294.69 1000 50 1.0 +77 294.69 298.5675 1000 50 1.0 +78 298.5675 302.445 1000 50 0.999969 +79 302.445 306.3225 1000 50 0.99999857 +80 306.3225 310.2 1000 50 0.9995907 +81 310.2 314.0775 1000 50 1.0 +82 314.0775 317.955 1000 50 1.0 +83 317.955 321.8325 1000 50 0.999918 +84 321.8325 325.71 1000 50 1.0 +85 325.71 329.5875 1000 50 0.9999958 +86 329.5875 333.465 1000 50 0.99998105 +87 333.465 337.3425 1000 50 0.99999845 +88 337.3425 341.21999999999997 1000 50 0.99998593 +89 341.22 345.0975 1000 50 0.99997425 +90 345.0975 348.975 1000 50 1.0 +91 348.975 352.8525 1000 50 0.9999995 +92 352.8525 356.73 1000 50 0.99999833 +93 356.73 360.6075 1000 50 1.0 +94 360.6075 364.485 1000 50 0.99999464 +95 364.485 368.3625 1000 50 0.99999774 +96 368.3625 372.24 1000 50 1.0 +97 372.24 376.1175 1000 50 0.999997 +98 376.1175 379.995 1000 50 0.9999678 +99 379.995 383.8725 1000 50 1.0 +100 383.8725 387.75 1000 50 0.9999982 +101 387.75 391.6275 1000 50 1.0 +102 391.6275 395.505 1000 50 0.99999654 +103 395.505 399.3825 1000 50 0.99999976 +104 399.3825 403.26 1000 50 0.99998724 +105 403.26 407.1375 1000 50 1.0 +106 407.1375 411.015 1000 50 0.99999726 +107 411.015 414.8925 1000 50 0.9999945 +108 414.8925 418.77 1000 50 1.0 +109 418.77 422.6475 1000 50 1.0 +110 422.6475 426.525 1000 50 0.9999939 +111 426.525 430.4025 1000 50 1.0 +112 430.4025 434.28 1000 50 1.0 +113 434.28 438.15749999999997 1000 50 0.9999999 +114 438.1575 442.035 1000 50 1.0 +115 442.035 445.9125 1000 50 0.99999917 +116 445.9125 449.79 1000 50 0.99999976 +117 449.79 453.6675 1000 50 0.9999981 +118 453.6675 457.545 1000 50 0.999775 +119 457.545 461.4225 1000 50 0.9999999 +120 461.4225 465.3 1000 50 0.99999964 +121 465.3 469.1775 1000 50 0.99988186 +122 469.1775 473.055 1000 50 0.99998176 +123 473.055 476.9325 1000 50 0.99999976 +124 476.9325 480.81 1000 50 0.65492404 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_12-11-36_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_12-11-36_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d5ba7f1571524a9ac0f9a5b13841514ef12be05b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_12-11-36_annot_2022-11-30_01.txt @@ -0,0 +1,209 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999391 +2 3.8775 7.755 1000 50 0.9991991 +3 7.755 11.6325 1000 50 1.0 +4 11.6325 15.51 1000 50 1.0 +5 15.51 19.3875 1000 50 0.9999994 +6 19.3875 23.265 1000 50 0.99742436 +7 23.265 27.142500000000002 1000 50 0.9998543 +8 27.1425 31.02 1000 50 0.99999857 +9 31.02 34.8975 1000 50 0.999966 +10 34.8975 38.775 1000 50 0.9999969 +11 38.775 42.652499999999996 1000 50 0.99999976 +12 42.6525 46.53 1000 50 1.0 +13 46.53 50.4075 1000 50 0.9999809 +14 50.4075 54.285 1000 50 1.0 +15 54.285 58.162499999999994 1000 50 0.999998 +16 58.1625 62.04 1000 50 0.99997544 +17 62.04 65.9175 1000 50 1.0 +18 65.9175 69.795 1000 50 0.99994016 +19 69.795 73.6725 1000 50 1.0 +20 73.6725 77.55 1000 50 1.0 +21 77.55 81.4275 1000 50 0.9999982 +22 81.4275 85.30499999999999 1000 50 0.99997306 +23 85.305 89.1825 1000 50 0.99999964 +24 89.1825 93.06 1000 50 0.9975591 +25 93.06 96.9375 1000 50 0.9616915 +26 96.9375 100.815 1000 50 1.0 +27 100.815 104.6925 1000 50 1.0 +28 104.6925 108.57 1000 50 0.9938023 +29 108.57 112.44749999999999 1000 50 0.9997776 +30 112.4475 116.325 1000 50 0.99999213 +31 116.325 120.2025 1000 50 0.9999999 +32 120.2025 124.08 1000 50 1.0 +33 124.08 127.9575 1000 50 0.9993031 +34 127.9575 131.835 1000 50 1.0 +35 131.835 135.7125 1000 50 0.99996424 +36 135.7125 139.59 1000 50 0.9999385 +37 139.59 143.4675 1000 50 0.9999999 +38 143.4675 147.345 1000 50 0.99999344 +39 147.345 151.2225 1000 50 0.9982761 +40 151.2225 155.1 1000 50 0.9999989 +41 155.1 158.9775 1000 50 0.9999999 +42 158.9775 162.855 1000 50 0.9999758 +43 162.855 166.7325 1000 50 0.99998796 +44 166.7325 170.60999999999999 1000 50 0.99993587 +45 170.61 174.4875 1000 50 0.9999988 +46 174.4875 178.365 1000 50 1.0 +47 178.365 182.2425 1000 50 0.99848723 +48 182.2425 186.12 1000 50 0.9999999 +49 186.12 189.9975 1000 50 0.99999225 +50 189.9975 193.875 1000 50 1.0 +51 193.875 197.7525 1000 50 0.9999993 +52 197.7525 201.63 1000 50 0.99999976 +53 201.63 205.5075 1000 50 0.9999714 +54 205.5075 209.385 1000 50 0.9999993 +55 209.385 213.2625 1000 50 1.0 +56 213.2625 217.14 1000 50 0.99961793 +57 217.14 221.01749999999998 1000 50 1.0 +58 221.0175 224.895 1000 50 1.0 +59 224.895 228.7725 1000 50 0.99999964 +60 228.7725 232.65 1000 50 0.9999995 +61 232.65 236.5275 1000 50 0.999998 +62 236.5275 240.405 1000 50 0.9989047 +63 240.405 244.2825 1000 50 0.999997 +64 244.2825 248.16 1000 50 0.9997348 +65 248.16 252.0375 1000 50 0.99996066 +66 252.0375 255.915 1000 50 0.9989931 +67 255.915 259.7925 1000 50 0.9999877 +68 259.7925 263.67 1000 50 0.9997509 +69 263.67 267.5475 1000 50 0.960185 +70 267.5475 271.425 1000 50 0.99999976 +71 271.425 275.3025 1000 50 0.99999547 +72 275.3025 279.18 1000 50 0.9999974 +73 279.18 283.0575 1000 50 0.999818 +74 283.0575 286.935 1000 50 0.99999857 +75 286.935 290.8125 1000 50 0.9999995 +76 290.8125 294.69 1000 50 0.9993469 +77 294.69 298.5675 1000 50 1.0 +78 298.5675 302.445 1000 50 0.99999905 +79 302.445 306.3225 1000 50 1.0 +80 306.3225 310.2 1000 50 1.0 +81 310.2 314.0775 1000 50 0.99999905 +82 314.0775 317.955 1000 50 0.9999496 +83 317.955 321.8325 1000 50 1.0 +84 321.8325 325.71 1000 50 0.9999919 +85 325.71 329.5875 1000 50 0.9999944 +86 329.5875 333.465 1000 50 0.9999994 +87 333.465 337.3425 1000 50 0.99999666 +88 337.3425 341.21999999999997 1000 50 0.9999211 +89 341.22 345.0975 1000 50 1.0 +90 345.0975 348.975 1000 50 1.0 +91 348.975 352.8525 1000 50 0.99932706 +92 352.8525 356.73 1000 50 0.9999993 +93 356.73 360.6075 1000 50 0.999998 +94 360.6075 364.485 1000 50 0.99999774 +95 364.485 368.3625 1000 50 1.0 +96 368.3625 372.24 1000 50 0.99998474 +97 372.24 376.1175 1000 50 0.99997056 +98 376.1175 379.995 1000 50 1.0 +99 379.995 383.8725 1000 50 0.9999275 +100 383.8725 387.75 1000 50 0.99999547 +101 387.75 391.6275 1000 50 0.9999999 +102 391.6275 395.505 1000 50 0.8666506 +103 395.505 399.3825 1000 50 1.0 +104 399.3825 403.26 1000 50 0.9999912 +105 403.26 407.1375 1000 50 0.99978536 +106 407.1375 411.015 1000 50 1.0 +107 411.015 414.8925 1000 50 0.9999987 +108 414.8925 418.77 1000 50 0.9999988 +109 418.77 422.6475 1000 50 0.99917126 +110 422.6475 426.525 1000 50 0.99997604 +111 426.525 430.4025 1000 50 0.9999696 +112 430.4025 434.28 1000 50 0.999998 +113 434.28 438.15749999999997 1000 50 0.91163856 +114 438.1575 442.035 1000 50 0.9999932 +115 442.035 445.9125 1000 50 0.9156715 +116 449.79 453.6675 1000 50 0.9997336 +117 453.6675 457.545 1000 50 0.99996567 +118 457.545 461.4225 1000 50 0.99984765 +119 461.4225 465.3 1000 50 0.99999094 +120 465.3 469.1775 1000 50 0.99997115 +121 469.1775 473.055 1000 50 0.99999964 +122 473.055 476.9325 1000 50 0.9990903 +123 476.9325 480.81 1000 50 0.99673766 +124 480.81 484.6875 1000 50 0.99977344 +125 484.6875 488.565 1000 50 0.99847597 +126 488.565 492.4425 1000 50 0.9999987 +127 492.4425 496.32 1000 50 0.9367901 +128 496.32 500.1975 1000 50 0.99999917 +129 500.1975 504.075 1000 50 0.99999917 +130 504.075 507.9525 1000 50 0.9999912 +131 507.9525 511.83 1000 50 0.999987 +132 511.83 515.7075 1000 50 0.99999917 +133 515.7075 519.585 1000 50 0.9999999 +134 519.585 523.4625000000001 1000 50 0.99758303 +135 523.4625 527.34 1000 50 0.99995434 +136 527.34 531.2175000000001 1000 50 0.92490673 +137 531.2175 535.095 1000 50 0.934582 +138 535.095 538.9725000000001 1000 50 0.99999714 +139 538.9725 542.85 1000 50 1.0 +140 542.85 546.7275000000001 1000 50 0.999876 +141 546.7275 550.605 1000 50 1.0 +142 550.605 554.4825000000001 1000 50 0.9998529 +143 554.4825 558.36 1000 50 0.9997793 +144 558.36 562.2375000000001 1000 50 0.99999845 +145 562.2375 566.115 1000 50 0.9999981 +146 566.115 569.9925000000001 1000 50 1.0 +147 569.9925 573.87 1000 50 0.9999261 +148 573.87 577.7475000000001 1000 50 0.8916357 +149 577.7475 581.625 1000 50 1.0 +150 581.625 585.5025 1000 50 0.99994564 +151 585.5025 589.3800000000001 1000 50 0.6843864 +152 589.38 593.2575 1000 50 0.9999995 +153 593.2575 597.1350000000001 1000 50 0.9962696 +154 597.135 601.0125 1000 50 0.9999995 +155 601.0125 604.8900000000001 1000 50 0.9978981 +156 604.89 608.7675 1000 50 0.9996674 +157 608.7675 612.6450000000001 1000 50 0.9997018 +158 612.645 616.5225 1000 50 0.96859276 +159 616.5225 620.4000000000001 1000 50 0.9999393 +160 620.4 624.2775 1000 50 0.99946684 +161 624.2775 628.1550000000001 1000 50 0.9999994 +162 628.155 632.0325 1000 50 1.0 +163 632.0325 635.9100000000001 1000 50 0.9993954 +164 635.91 639.7875 1000 50 0.99979895 +165 639.7875 643.6650000000001 1000 50 1.0 +166 643.665 647.5425 1000 50 0.9997446 +167 647.5425 651.4200000000001 1000 50 1.0 +168 651.42 655.2975 1000 50 0.9999994 +169 655.2975 659.1750000000001 1000 50 0.9993199 +170 659.175 663.0525 1000 50 1.0 +171 663.0525 666.9300000000001 1000 50 0.8954813 +172 666.93 670.8075 1000 50 0.9998903 +173 670.8075 674.6850000000001 1000 50 0.99993277 +174 674.685 678.5625 1000 50 0.99846494 +175 678.5625 682.44 1000 50 0.9993888 +176 682.44 686.3175000000001 1000 50 0.9999999 +177 686.3175 690.195 1000 50 0.99829274 +178 690.195 694.0725000000001 1000 50 0.8938539 +179 694.0725 697.95 1000 50 0.99999964 +180 697.95 701.8275000000001 1000 50 0.99980015 +181 701.8275 705.705 1000 50 0.9999763 +182 705.705 709.5825000000001 1000 50 0.99999917 +183 709.5825 713.46 1000 50 0.9999535 +184 713.46 717.3375000000001 1000 50 0.99994683 +185 717.3375 721.215 1000 50 0.99999785 +186 721.215 725.0925000000001 1000 50 0.99993634 +187 725.0925 728.97 1000 50 0.99977833 +188 728.97 732.8475000000001 1000 50 0.9999993 +189 732.8475 736.725 1000 50 0.9999386 +190 736.725 740.6025000000001 1000 50 0.99999905 +191 740.6025 744.48 1000 50 0.9999999 +192 744.48 748.3575000000001 1000 50 0.8106631 +193 748.3575 752.235 1000 50 1.0 +194 752.235 756.1125000000001 1000 50 0.99998105 +195 756.1125 759.99 1000 50 0.99999917 +196 759.99 763.8675000000001 1000 50 0.99979943 +197 763.8675 767.745 1000 50 0.9994049 +198 767.745 771.6225000000001 1000 50 0.99986386 +199 771.6225 775.5 1000 50 0.9999974 +200 775.5 779.3775 1000 50 0.99993384 +201 779.3775 783.2550000000001 1000 50 0.99999654 +202 783.255 787.1325 1000 50 0.9999999 +203 787.1325 791.0100000000001 1000 50 1.0 +204 791.01 794.8875 1000 50 1.0 +205 794.8875 798.7650000000001 1000 50 0.97691673 +206 798.765 802.6425 1000 50 1.0 +207 802.6425 806.5200000000001 1000 50 0.99919313 +208 806.52 810.3975 1000 50 0.9997665 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_13-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_13-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a6c479afc2ccc6a6a4eb6f2080432fd45b01f290 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_13-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,200 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99989843 +2 3.8775 7.755 1000 50 0.9999368 +3 7.755 11.6325 1000 50 0.9998204 +4 11.6325 15.51 1000 50 0.99669707 +5 15.51 19.3875 1000 50 0.99999356 +6 19.3875 23.265 1000 50 0.9095441 +7 23.265 27.142500000000002 1000 50 0.99331445 +8 27.1425 31.02 1000 50 0.97944605 +9 31.02 34.8975 1000 50 0.9990472 +10 34.8975 38.775 1000 50 0.99702865 +11 38.775 42.652499999999996 1000 50 0.9999994 +12 42.6525 46.53 1000 50 0.99961346 +13 46.53 50.4075 1000 50 0.9983016 +14 50.4075 54.285 1000 50 0.99876606 +15 54.285 58.162499999999994 1000 50 0.9895572 +16 58.1625 62.04 1000 50 0.9995189 +17 62.04 65.9175 1000 50 0.99993384 +18 65.9175 69.795 1000 50 1.0 +19 69.795 73.6725 1000 50 0.99999344 +20 73.6725 77.55 1000 50 0.99996674 +21 77.55 81.4275 1000 50 0.9993573 +22 81.4275 85.30499999999999 1000 50 0.99999964 +23 85.305 89.1825 1000 50 0.99939203 +24 89.1825 93.06 1000 50 1.0 +25 93.06 96.9375 1000 50 0.99975175 +26 96.9375 100.815 1000 50 1.0 +27 100.815 104.6925 1000 50 0.9998832 +28 104.6925 108.57 1000 50 0.9999999 +29 108.57 112.44749999999999 1000 50 1.0 +30 112.4475 116.325 1000 50 0.9999944 +31 116.325 120.2025 1000 50 0.9999728 +32 120.2025 124.08 1000 50 0.99971956 +33 124.08 127.9575 1000 50 0.99984145 +34 127.9575 131.835 1000 50 1.0 +35 131.835 135.7125 1000 50 0.9998822 +36 135.7125 139.59 1000 50 0.9999999 +37 139.59 143.4675 1000 50 1.0 +38 143.4675 147.345 1000 50 0.9998031 +39 147.345 151.2225 1000 50 0.99999917 +40 151.2225 155.1 1000 50 0.99999976 +41 155.1 158.9775 1000 50 0.99804866 +42 158.9775 162.855 1000 50 0.9999995 +43 162.855 166.7325 1000 50 0.99955875 +44 166.7325 170.60999999999999 1000 50 1.0 +45 170.61 174.4875 1000 50 0.99997365 +46 174.4875 178.365 1000 50 0.99963534 +47 178.365 182.2425 1000 50 0.9999987 +48 182.2425 186.12 1000 50 0.99572796 +49 186.12 189.9975 1000 50 0.9999982 +50 189.9975 193.875 1000 50 0.99998915 +51 193.875 197.7525 1000 50 0.9999994 +52 197.7525 201.63 1000 50 0.99999547 +53 201.63 205.5075 1000 50 0.9998585 +54 205.5075 209.385 1000 50 1.0 +55 209.385 213.2625 1000 50 0.99981433 +56 213.2625 217.14 1000 50 0.99954826 +57 217.14 221.01749999999998 1000 50 0.9999999 +58 221.0175 224.895 1000 50 0.9999881 +59 224.895 228.7725 1000 50 0.93868506 +60 228.7725 232.65 1000 50 1.0 +61 232.65 236.5275 1000 50 0.99845254 +62 236.5275 240.405 1000 50 0.71201575 +63 240.405 244.2825 1000 50 1.0 +64 244.2825 248.16 1000 50 0.9761096 +65 248.16 252.0375 1000 50 0.99992406 +66 252.0375 255.915 1000 50 0.99999976 +67 255.915 259.7925 1000 50 0.99999857 +68 259.7925 263.67 1000 50 0.99998724 +69 263.67 267.5475 1000 50 0.9999802 +70 267.5475 271.425 1000 50 0.9999999 +71 271.425 275.3025 1000 50 1.0 +72 275.3025 279.18 1000 50 0.99998903 +73 279.18 283.0575 1000 50 0.99999905 +74 283.0575 286.935 1000 50 0.9999864 +75 286.935 290.8125 1000 50 0.84546363 +76 290.8125 294.69 1000 50 1.0 +77 294.69 298.5675 1000 50 0.9999987 +78 298.5675 302.445 1000 50 0.9999987 +79 302.445 306.3225 1000 50 0.9999832 +80 306.3225 310.2 1000 50 1.0 +81 310.2 314.0775 1000 50 0.9999995 +82 314.0775 317.955 1000 50 1.0 +83 317.955 321.8325 1000 50 0.99800843 +84 321.8325 325.71 1000 50 0.9991597 +85 325.71 329.5875 1000 50 0.99989116 +86 329.5875 333.465 1000 50 0.9999591 +87 333.465 337.3425 1000 50 1.0 +88 337.3425 341.21999999999997 1000 50 0.9999999 +89 341.22 345.0975 1000 50 0.9994973 +90 345.0975 348.975 1000 50 1.0 +91 348.975 352.8525 1000 50 0.99999774 +92 352.8525 356.73 1000 50 0.99894875 +93 356.73 360.6075 1000 50 1.0 +94 360.6075 364.485 1000 50 0.9999745 +95 364.485 368.3625 1000 50 0.99996376 +96 368.3625 372.24 1000 50 0.9999999 +97 372.24 376.1175 1000 50 0.9999995 +98 376.1175 379.995 1000 50 0.99987304 +99 379.995 383.8725 1000 50 0.999979 +100 383.8725 387.75 1000 50 0.99999964 +101 387.75 391.6275 1000 50 0.999987 +102 391.6275 395.505 1000 50 0.9999145 +103 395.505 399.3825 1000 50 0.99999785 +104 399.3825 403.26 1000 50 0.9999994 +105 403.26 407.1375 1000 50 0.9998442 +106 407.1375 411.015 1000 50 0.9999269 +107 411.015 414.8925 1000 50 0.9999515 +108 414.8925 418.77 1000 50 0.99951184 +109 418.77 422.6475 1000 50 0.99998224 +110 422.6475 426.525 1000 50 1.0 +111 426.525 430.4025 1000 50 0.99933654 +112 430.4025 434.28 1000 50 0.9994784 +113 434.28 438.15749999999997 1000 50 0.99999404 +114 438.1575 442.035 1000 50 0.9999927 +115 442.035 445.9125 1000 50 0.99999547 +116 445.9125 449.79 1000 50 0.99999845 +117 449.79 453.6675 1000 50 0.999141 +118 453.6675 457.545 1000 50 0.9999908 +119 457.545 461.4225 1000 50 0.99997926 +120 461.4225 465.3 1000 50 1.0 +121 465.3 469.1775 1000 50 0.9999993 +122 469.1775 473.055 1000 50 0.9991731 +123 473.055 476.9325 1000 50 0.9998167 +124 476.9325 480.81 1000 50 0.999228 +125 480.81 484.6875 1000 50 0.99999905 +126 484.6875 488.565 1000 50 0.9309689 +127 488.565 492.4425 1000 50 0.99970156 +128 492.4425 496.32 1000 50 0.999995 +129 496.32 500.1975 1000 50 0.9999831 +130 500.1975 504.075 1000 50 0.99996996 +131 504.075 507.9525 1000 50 0.9999696 +132 507.9525 511.83 1000 50 0.9999995 +133 511.83 515.7075 1000 50 0.9996203 +134 515.7075 519.585 1000 50 0.98740435 +135 519.585 523.4625000000001 1000 50 0.9999794 +136 523.4625 527.34 1000 50 0.99996257 +137 527.34 531.2175000000001 1000 50 0.99874336 +138 531.2175 535.095 1000 50 0.9822771 +139 535.095 538.9725000000001 1000 50 0.99869907 +140 538.9725 542.85 1000 50 0.99999976 +141 542.85 546.7275000000001 1000 50 0.9197975 +142 546.7275 550.605 1000 50 0.99999964 +143 550.605 554.4825000000001 1000 50 0.99999845 +144 554.4825 558.36 1000 50 0.9937469 +145 558.36 562.2375000000001 1000 50 0.99844617 +146 562.2375 566.115 1000 50 0.99981314 +147 566.115 569.9925000000001 1000 50 0.99882156 +148 569.9925 573.87 1000 50 0.99956506 +149 573.87 577.7475000000001 1000 50 0.9999906 +150 577.7475 581.625 1000 50 0.9797505 +151 581.625 585.5025 1000 50 0.9987142 +152 585.5025 589.3800000000001 1000 50 0.97352016 +153 589.38 593.2575 1000 50 0.9999821 +154 593.2575 597.1350000000001 1000 50 0.99999094 +155 597.135 601.0125 1000 50 0.9999999 +156 601.0125 604.8900000000001 1000 50 0.99998903 +157 604.89 608.7675 1000 50 0.99991715 +158 608.7675 612.6450000000001 1000 50 0.9999213 +159 612.645 616.5225 1000 50 0.98550886 +160 616.5225 620.4000000000001 1000 50 0.9998166 +161 620.4 624.2775 1000 50 0.99982905 +162 624.2775 628.1550000000001 1000 50 0.9999994 +163 628.155 632.0325 1000 50 0.99998724 +164 632.0325 635.9100000000001 1000 50 0.9997403 +165 635.91 639.7875 1000 50 0.9999994 +166 639.7875 643.6650000000001 1000 50 0.8176832 +167 643.665 647.5425 1000 50 0.9887888 +168 647.5425 651.4200000000001 1000 50 0.9655214 +169 651.42 655.2975 1000 50 0.99804914 +170 655.2975 659.1750000000001 1000 50 0.9980275 +171 659.175 663.0525 1000 50 0.90113753 +172 663.0525 666.9300000000001 1000 50 0.9999455 +173 666.93 670.8075 1000 50 0.9829487 +174 674.685 678.5625 1000 50 0.99983716 +175 678.5625 682.44 1000 50 0.9715009 +176 682.44 686.3175000000001 1000 50 0.994987 +177 686.3175 690.195 1000 50 0.9990957 +178 690.195 694.0725000000001 1000 50 0.99990904 +179 694.0725 697.95 1000 50 0.99999917 +180 697.95 701.8275000000001 1000 50 0.9999864 +181 701.8275 705.705 1000 50 0.9999194 +182 705.705 709.5825000000001 1000 50 0.99997735 +183 709.5825 713.46 1000 50 0.9999645 +184 713.46 717.3375000000001 1000 50 0.9931378 +185 717.3375 721.215 1000 50 0.9982443 +186 721.215 725.0925000000001 1000 50 0.99880135 +187 725.0925 728.97 1000 50 0.99882704 +188 728.97 732.8475000000001 1000 50 0.99999857 +189 732.8475 736.725 1000 50 0.9999975 +190 736.725 740.6025000000001 1000 50 0.9850368 +191 740.6025 744.48 1000 50 0.99928147 +192 744.48 748.3575000000001 1000 50 0.9998739 +193 748.3575 752.235 1000 50 0.9780081 +194 752.235 756.1125000000001 1000 50 0.9998766 +195 756.1125 759.99 1000 50 0.92697793 +196 759.99 763.8675000000001 1000 50 0.99585056 +197 763.8675 767.745 1000 50 0.9985511 +198 771.6225 775.5 1000 50 0.9998023 +199 775.5 779.3775 1000 50 0.7423982 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_13-16-36_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_13-16-36_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d1b8e31169a5e697a283357b8d081c71ec14b946 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_13-16-36_annot_2022-11-30_01.txt @@ -0,0 +1,132 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9997495 +2 3.8775 7.755 1000 50 0.9999999 +3 7.755 11.6325 1000 50 0.9999999 +4 11.6325 15.51 1000 50 1.0 +5 15.51 19.3875 1000 50 1.0 +6 19.3875 23.265 1000 50 0.9999982 +7 23.265 27.142500000000002 1000 50 0.9999999 +8 27.1425 31.02 1000 50 1.0 +9 31.02 34.8975 1000 50 0.99992275 +10 34.8975 38.775 1000 50 0.9999856 +11 38.775 42.652499999999996 1000 50 1.0 +12 42.6525 46.53 1000 50 1.0 +13 46.53 50.4075 1000 50 0.99994564 +14 50.4075 54.285 1000 50 0.9999999 +15 54.285 58.162499999999994 1000 50 0.999956 +16 58.1625 62.04 1000 50 0.9999901 +17 62.04 65.9175 1000 50 0.99999976 +18 65.9175 69.795 1000 50 0.9999995 +19 69.795 73.6725 1000 50 0.9999794 +20 73.6725 77.55 1000 50 1.0 +21 77.55 81.4275 1000 50 0.9999659 +22 81.4275 85.30499999999999 1000 50 1.0 +23 85.305 89.1825 1000 50 0.99998474 +24 89.1825 93.06 1000 50 1.0 +25 93.06 96.9375 1000 50 0.9999999 +26 96.9375 100.815 1000 50 1.0 +27 100.815 104.6925 1000 50 1.0 +28 104.6925 108.57 1000 50 0.9999999 +29 108.57 112.44749999999999 1000 50 0.99999964 +30 112.4475 116.325 1000 50 0.999998 +31 116.325 120.2025 1000 50 1.0 +32 120.2025 124.08 1000 50 0.9999547 +33 124.08 127.9575 1000 50 0.99999976 +34 127.9575 131.835 1000 50 0.999974 +35 131.835 135.7125 1000 50 0.9999988 +36 135.7125 139.59 1000 50 1.0 +37 139.59 143.4675 1000 50 0.99992585 +38 143.4675 147.345 1000 50 1.0 +39 147.345 151.2225 1000 50 1.0 +40 151.2225 155.1 1000 50 0.9999802 +41 155.1 158.9775 1000 50 0.9999685 +42 158.9775 162.855 1000 50 0.9999927 +43 162.855 166.7325 1000 50 0.9976178 +44 166.7325 170.60999999999999 1000 50 0.9997992 +45 170.61 174.4875 1000 50 0.9999995 +46 174.4875 178.365 1000 50 0.9999993 +47 178.365 182.2425 1000 50 0.9982224 +48 182.2425 186.12 1000 50 0.9999417 +49 186.12 189.9975 1000 50 0.9999864 +50 189.9975 193.875 1000 50 1.0 +51 193.875 197.7525 1000 50 0.9999709 +52 197.7525 201.63 1000 50 0.9999875 +53 201.63 205.5075 1000 50 0.99999917 +54 205.5075 209.385 1000 50 0.99999845 +55 209.385 213.2625 1000 50 0.99998224 +56 213.2625 217.14 1000 50 0.9999776 +57 217.14 221.01749999999998 1000 50 0.999795 +58 221.0175 224.895 1000 50 0.9999639 +59 224.895 228.7725 1000 50 0.99997616 +60 228.7725 232.65 1000 50 0.9996444 +61 232.65 236.5275 1000 50 0.9999788 +62 236.5275 240.405 1000 50 0.9999733 +63 240.405 244.2825 1000 50 0.99999976 +64 244.2825 248.16 1000 50 0.99999857 +65 248.16 252.0375 1000 50 0.9084 +66 252.0375 255.915 1000 50 0.9999926 +67 255.915 259.7925 1000 50 0.99997306 +68 259.7925 263.67 1000 50 0.99873465 +69 263.67 267.5475 1000 50 0.99991095 +70 267.5475 271.425 1000 50 0.99999774 +71 271.425 275.3025 1000 50 0.97674644 +72 275.3025 279.18 1000 50 0.9999981 +73 279.18 283.0575 1000 50 0.99964166 +74 283.0575 286.935 1000 50 1.0 +75 286.935 290.8125 1000 50 0.99990976 +76 290.8125 294.69 1000 50 0.9999188 +77 294.69 298.5675 1000 50 0.9999856 +78 298.5675 302.445 1000 50 0.99525523 +79 302.445 306.3225 1000 50 1.0 +80 306.3225 310.2 1000 50 0.99992025 +81 310.2 314.0775 1000 50 0.9999833 +82 314.0775 317.955 1000 50 0.9998914 +83 317.955 321.8325 1000 50 0.99999726 +84 321.8325 325.71 1000 50 0.9999143 +85 325.71 329.5875 1000 50 0.9988918 +86 329.5875 333.465 1000 50 0.9999616 +87 333.465 337.3425 1000 50 0.9997483 +88 337.3425 341.21999999999997 1000 50 0.9999136 +89 341.22 345.0975 1000 50 0.99999976 +90 348.975 352.8525 1000 50 1.0 +91 352.8525 356.73 1000 50 0.99999917 +92 356.73 360.6075 1000 50 0.99833566 +93 360.6075 364.485 1000 50 0.9865545 +94 364.485 368.3625 1000 50 0.9999906 +95 368.3625 372.24 1000 50 0.99392796 +96 372.24 376.1175 1000 50 1.0 +97 376.1175 379.995 1000 50 0.9998271 +98 379.995 383.8725 1000 50 0.9990778 +99 383.8725 387.75 1000 50 0.9999913 +100 387.75 391.6275 1000 50 0.99998164 +101 391.6275 395.505 1000 50 0.9987551 +102 395.505 399.3825 1000 50 0.9999896 +103 399.3825 403.26 1000 50 0.9996125 +104 403.26 407.1375 1000 50 0.9999876 +105 407.1375 411.015 1000 50 0.99989927 +106 411.015 414.8925 1000 50 0.99979454 +107 414.8925 418.77 1000 50 0.99999964 +108 418.77 422.6475 1000 50 0.9999995 +109 422.6475 426.525 1000 50 0.99999964 +110 426.525 430.4025 1000 50 0.99999964 +111 430.4025 434.28 1000 50 0.99999416 +112 434.28 438.15749999999997 1000 50 0.99999607 +113 438.1575 442.035 1000 50 1.0 +114 442.035 445.9125 1000 50 0.99999964 +115 445.9125 449.79 1000 50 0.9999913 +116 449.79 453.6675 1000 50 0.9998425 +117 453.6675 457.545 1000 50 1.0 +118 457.545 461.4225 1000 50 0.9999907 +119 461.4225 465.3 1000 50 1.0 +120 465.3 469.1775 1000 50 0.9999999 +121 469.1775 473.055 1000 50 0.99998605 +122 473.055 476.9325 1000 50 1.0 +123 476.9325 480.81 1000 50 0.9999999 +124 480.81 484.6875 1000 50 1.0 +125 484.6875 488.565 1000 50 0.9999993 +126 488.565 492.4425 1000 50 0.99999964 +127 492.4425 496.32 1000 50 0.99999976 +128 496.32 500.1975 1000 50 0.9999914 +129 500.1975 504.075 1000 50 1.0 +130 504.075 507.9525 1000 50 0.99999785 +131 507.9525 511.83 1000 50 0.9157552 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_14-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_14-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..89e1087aea0038e12a3cd98d5756a96d92c49883 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_14-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,271 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99999964 +2 3.8775 7.755 1000 50 0.99997306 +3 7.755 11.6325 1000 50 0.9999919 +4 11.6325 15.51 1000 50 0.99968565 +5 15.51 19.3875 1000 50 0.9671801 +6 19.3875 23.265 1000 50 0.99877924 +7 23.265 27.142500000000002 1000 50 0.9996828 +8 27.1425 31.02 1000 50 0.99999976 +9 31.02 34.8975 1000 50 0.9999999 +10 34.8975 38.775 1000 50 0.9996038 +11 38.775 42.652499999999996 1000 50 0.9998247 +12 42.6525 46.53 1000 50 0.9841606 +13 46.53 50.4075 1000 50 0.5509826 +14 50.4075 54.285 1000 50 0.9999999 +15 54.285 58.162499999999994 1000 50 0.9943581 +16 58.1625 62.04 1000 50 0.99999917 +17 62.04 65.9175 1000 50 0.9996524 +18 65.9175 69.795 1000 50 0.99967444 +19 69.795 73.6725 1000 50 0.99963415 +20 73.6725 77.55 1000 50 0.99999344 +21 77.55 81.4275 1000 50 0.9937729 +22 81.4275 85.30499999999999 1000 50 0.9934503 +23 85.305 89.1825 1000 50 0.9990491 +24 89.1825 93.06 1000 50 0.9993519 +25 93.06 96.9375 1000 50 0.9999932 +26 96.9375 100.815 1000 50 0.96620166 +27 100.815 104.6925 1000 50 0.9999999 +28 104.6925 108.57 1000 50 0.99999905 +29 108.57 112.44749999999999 1000 50 0.9999999 +30 112.4475 116.325 1000 50 0.99994826 +31 116.325 120.2025 1000 50 0.99963343 +32 120.2025 124.08 1000 50 0.99999964 +33 124.08 127.9575 1000 50 0.99998283 +34 127.9575 131.835 1000 50 1.0 +35 131.835 135.7125 1000 50 0.98720455 +36 135.7125 139.59 1000 50 1.0 +37 139.59 143.4675 1000 50 1.0 +38 143.4675 147.345 1000 50 0.9292573 +39 147.345 151.2225 1000 50 0.9999596 +40 151.2225 155.1 1000 50 0.9999908 +41 155.1 158.9775 1000 50 0.9996191 +42 158.9775 162.855 1000 50 1.0 +43 162.855 166.7325 1000 50 0.9998474 +44 166.7325 170.60999999999999 1000 50 0.9998252 +45 170.61 174.4875 1000 50 0.9999999 +46 174.4875 178.365 1000 50 0.99999833 +47 178.365 182.2425 1000 50 0.99999285 +48 182.2425 186.12 1000 50 0.99999595 +49 186.12 189.9975 1000 50 0.99999905 +50 189.9975 193.875 1000 50 0.9999664 +51 193.875 197.7525 1000 50 0.99999845 +52 197.7525 201.63 1000 50 0.9999982 +53 201.63 205.5075 1000 50 0.796659 +54 205.5075 209.385 1000 50 0.99893874 +55 209.385 213.2625 1000 50 0.9999298 +56 213.2625 217.14 1000 50 0.99594325 +57 217.14 221.01749999999998 1000 50 0.53037316 +58 221.0175 224.895 1000 50 0.9999906 +59 224.895 228.7725 1000 50 0.984125 +60 228.7725 232.65 1000 50 0.9999999 +61 232.65 236.5275 1000 50 1.0 +62 236.5275 240.405 1000 50 0.99999976 +63 240.405 244.2825 1000 50 0.9995466 +64 244.2825 248.16 1000 50 0.9999994 +65 248.16 252.0375 1000 50 1.0 +66 252.0375 255.915 1000 50 0.99992645 +67 255.915 259.7925 1000 50 0.8478306 +68 259.7925 263.67 1000 50 0.99989915 +69 263.67 267.5475 1000 50 1.0 +70 267.5475 271.425 1000 50 0.99999547 +71 271.425 275.3025 1000 50 0.99995005 +72 275.3025 279.18 1000 50 1.0 +73 279.18 283.0575 1000 50 1.0 +74 283.0575 286.935 1000 50 0.99992824 +75 286.935 290.8125 1000 50 0.99999607 +76 290.8125 294.69 1000 50 0.99999976 +77 294.69 298.5675 1000 50 0.9999987 +78 298.5675 302.445 1000 50 1.0 +79 302.445 306.3225 1000 50 0.9999963 +80 306.3225 310.2 1000 50 0.9999925 +81 310.2 314.0775 1000 50 0.9998443 +82 314.0775 317.955 1000 50 0.9999752 +83 317.955 321.8325 1000 50 0.9999945 +84 321.8325 325.71 1000 50 0.9999801 +85 325.71 329.5875 1000 50 0.9999945 +86 329.5875 333.465 1000 50 1.0 +87 333.465 337.3425 1000 50 0.9999999 +88 337.3425 341.21999999999997 1000 50 1.0 +89 341.22 345.0975 1000 50 1.0 +90 345.0975 348.975 1000 50 0.9997297 +91 348.975 352.8525 1000 50 1.0 +92 352.8525 356.73 1000 50 0.99999905 +93 356.73 360.6075 1000 50 0.99992347 +94 360.6075 364.485 1000 50 0.9999995 +95 364.485 368.3625 1000 50 0.9999931 +96 368.3625 372.24 1000 50 0.99999857 +97 372.24 376.1175 1000 50 0.9999989 +98 376.1175 379.995 1000 50 0.9995766 +99 379.995 383.8725 1000 50 1.0 +100 383.8725 387.75 1000 50 0.99994826 +101 387.75 391.6275 1000 50 0.99997365 +102 391.6275 395.505 1000 50 1.0 +103 395.505 399.3825 1000 50 1.0 +104 399.3825 403.26 1000 50 0.99999523 +105 403.26 407.1375 1000 50 1.0 +106 407.1375 411.015 1000 50 0.9999833 +107 411.015 414.8925 1000 50 0.99999475 +108 414.8925 418.77 1000 50 0.9997936 +109 418.77 422.6475 1000 50 0.9877194 +110 422.6475 426.525 1000 50 1.0 +111 426.525 430.4025 1000 50 1.0 +112 430.4025 434.28 1000 50 0.99999905 +113 434.28 438.15749999999997 1000 50 1.0 +114 438.1575 442.035 1000 50 0.9999982 +115 442.035 445.9125 1000 50 0.9999869 +116 445.9125 449.79 1000 50 0.9999999 +117 449.79 453.6675 1000 50 0.99999905 +118 453.6675 457.545 1000 50 0.9724591 +119 457.545 461.4225 1000 50 0.9999907 +120 461.4225 465.3 1000 50 0.99866843 +121 465.3 469.1775 1000 50 0.99898535 +122 469.1775 473.055 1000 50 0.99999523 +123 473.055 476.9325 1000 50 0.9999882 +124 476.9325 480.81 1000 50 0.991698 +125 480.81 484.6875 1000 50 0.99999595 +126 484.6875 488.565 1000 50 0.9923538 +127 488.565 492.4425 1000 50 0.9998846 +128 492.4425 496.32 1000 50 0.9999902 +129 496.32 500.1975 1000 50 0.99999905 +130 500.1975 504.075 1000 50 0.9972071 +131 504.075 507.9525 1000 50 0.9997143 +132 507.9525 511.83 1000 50 0.9997371 +133 511.83 515.7075 1000 50 0.9949066 +134 515.7075 519.585 1000 50 0.98383856 +135 519.585 523.4625000000001 1000 50 0.9999839 +136 523.4625 527.34 1000 50 0.99999857 +137 527.34 531.2175000000001 1000 50 1.0 +138 531.2175 535.095 1000 50 0.99992526 +139 535.095 538.9725000000001 1000 50 0.9818392 +140 538.9725 542.85 1000 50 0.99999714 +141 542.85 546.7275000000001 1000 50 0.99998724 +142 546.7275 550.605 1000 50 0.9999995 +143 550.605 554.4825000000001 1000 50 0.9999999 +144 554.4825 558.36 1000 50 0.99997354 +145 558.36 562.2375000000001 1000 50 0.9998939 +146 562.2375 566.115 1000 50 0.99995244 +147 566.115 569.9925000000001 1000 50 0.9994671 +148 573.87 577.7475000000001 1000 50 0.99865603 +149 585.5025 589.3800000000001 1000 50 0.98465574 +150 593.2575 597.1350000000001 1000 50 0.93673164 +151 597.135 601.0125 1000 50 0.99975306 +152 601.0125 604.8900000000001 1000 50 0.99791545 +153 604.89 608.7675 1000 50 0.59294975 +154 608.7675 612.6450000000001 1000 50 0.9904349 +155 620.4 624.2775 1000 50 0.9969753 +156 624.2775 628.1550000000001 1000 50 0.7550293 +157 628.155 632.0325 1000 50 0.9997665 +158 632.0325 635.9100000000001 1000 50 0.973389 +159 635.91 639.7875 1000 50 0.82836723 +160 639.7875 643.6650000000001 1000 50 0.949451 +161 643.665 647.5425 1000 50 0.5268991 +162 651.42 655.2975 1000 50 0.9958989 +163 655.2975 659.1750000000001 1000 50 0.90678 +164 659.175 663.0525 1000 50 0.955846 +165 663.0525 666.9300000000001 1000 50 0.8252722 +166 670.8075 674.6850000000001 1000 50 0.8916069 +167 674.685 678.5625 1000 50 0.98785305 +168 678.5625 682.44 1000 50 0.9996018 +169 682.44 686.3175000000001 1000 50 0.9844446 +170 690.195 694.0725000000001 1000 50 0.99999475 +171 694.0725 697.95 1000 50 0.94174844 +172 697.95 701.8275000000001 1000 50 0.6958212 +173 701.8275 705.705 1000 50 0.98786956 +174 705.705 709.5825000000001 1000 50 0.99048764 +175 709.5825 713.46 1000 50 0.9999248 +176 713.46 717.3375000000001 1000 50 0.9998209 +177 717.3375 721.215 1000 50 0.9997453 +178 721.215 725.0925000000001 1000 50 0.99999964 +179 725.0925 728.97 1000 50 0.99999774 +180 728.97 732.8475000000001 1000 50 0.97808564 +181 732.8475 736.725 1000 50 0.9967098 +182 736.725 740.6025000000001 1000 50 0.9999291 +183 740.6025 744.48 1000 50 0.99908686 +184 744.48 748.3575000000001 1000 50 0.9919742 +185 752.235 756.1125000000001 1000 50 0.99981123 +186 756.1125 759.99 1000 50 0.8886965 +187 759.99 763.8675000000001 1000 50 0.99998796 +188 763.8675 767.745 1000 50 0.9999993 +189 767.745 771.6225000000001 1000 50 0.7286832 +190 771.6225 775.5 1000 50 0.99997973 +191 775.5 779.3775 1000 50 0.9999089 +192 779.3775 783.2550000000001 1000 50 0.9846636 +193 783.255 787.1325 1000 50 1.0 +194 787.1325 791.0100000000001 1000 50 0.99999833 +195 791.01 794.8875 1000 50 0.99906486 +196 794.8875 798.7650000000001 1000 50 0.9999987 +197 798.765 802.6425 1000 50 0.9999993 +198 802.6425 806.5200000000001 1000 50 0.8370896 +199 806.52 810.3975 1000 50 0.9998362 +200 810.3975 814.2750000000001 1000 50 0.9999318 +201 814.275 818.1525 1000 50 0.9999963 +202 818.1525 822.0300000000001 1000 50 0.9989348 +203 822.03 825.9075 1000 50 1.0 +204 825.9075 829.7850000000001 1000 50 0.997384 +205 829.785 833.6625 1000 50 0.9258786 +206 833.6625 837.5400000000001 1000 50 0.99948525 +207 837.54 841.4175 1000 50 0.999915 +208 841.4175 845.2950000000001 1000 50 0.9999956 +209 845.295 849.1725 1000 50 0.99696034 +210 849.1725 853.0500000000001 1000 50 0.9999962 +211 853.05 856.9275 1000 50 0.99999857 +212 856.9275 860.8050000000001 1000 50 0.9999944 +213 860.805 864.6825 1000 50 1.0 +214 864.6825 868.5600000000001 1000 50 0.9999058 +215 868.56 872.4375 1000 50 1.0 +216 872.4375 876.315 1000 50 0.9997743 +217 876.315 880.1925000000001 1000 50 0.9957925 +218 880.1925 884.07 1000 50 0.99973255 +219 884.07 887.9475000000001 1000 50 0.9999918 +220 887.9475 891.825 1000 50 0.99995494 +221 891.825 895.7025000000001 1000 50 0.999905 +222 895.7025 899.58 1000 50 0.9997305 +223 899.58 903.4575000000001 1000 50 1.0 +224 903.4575 907.335 1000 50 0.9999869 +225 907.335 911.2125000000001 1000 50 0.9999981 +226 911.2125 915.09 1000 50 1.0 +227 915.09 918.9675000000001 1000 50 0.9993735 +228 918.9675 922.845 1000 50 1.0 +229 922.845 926.7225000000001 1000 50 1.0 +230 926.7225 930.6 1000 50 0.9999541 +231 930.6 934.4775000000001 1000 50 0.9999999 +232 934.4775 938.355 1000 50 0.9999981 +233 938.355 942.2325000000001 1000 50 0.99676126 +234 942.2325 946.11 1000 50 0.99998975 +235 946.11 949.9875000000001 1000 50 0.99999774 +236 949.9875 953.865 1000 50 0.9987282 +237 953.865 957.7425000000001 1000 50 0.9999989 +238 957.7425 961.62 1000 50 1.0 +239 961.62 965.4975000000001 1000 50 0.9823627 +240 965.4975 969.375 1000 50 0.9999908 +241 969.375 973.2525 1000 50 0.97035044 +242 973.2525 977.1300000000001 1000 50 0.99997723 +243 977.13 981.0075 1000 50 0.99999654 +244 981.0075 984.8850000000001 1000 50 0.99995565 +245 984.885 988.7625 1000 50 0.9987477 +246 988.7625 992.6400000000001 1000 50 0.99978894 +247 992.64 996.5175 1000 50 0.99978894 +248 996.5175 1000.3950000000001 1000 50 1.0 +249 1000.395 1004.2725 1000 50 0.9708134 +250 1004.2725 1008.1500000000001 1000 50 0.99937963 +251 1008.15 1012.0275 1000 50 0.99999344 +252 1012.0275 1015.9050000000001 1000 50 0.998594 +253 1015.905 1019.7825 1000 50 0.9998405 +254 1019.7825 1023.6600000000001 1000 50 0.999686 +255 1023.66 1027.5375 1000 50 0.9994197 +256 1027.5375 1031.415 1000 50 0.9910062 +257 1031.415 1035.2925 1000 50 0.9985257 +258 1035.2925 1039.17 1000 50 0.9999844 +259 1039.17 1043.0475000000001 1000 50 1.0 +260 1043.0475 1046.925 1000 50 1.0 +261 1046.925 1050.8025 1000 50 0.9904061 +262 1050.8025 1054.68 1000 50 0.9999213 +263 1054.68 1058.5575000000001 1000 50 1.0 +264 1058.5575 1062.435 1000 50 0.9999627 +265 1062.435 1066.3125 1000 50 1.0 +266 1066.3125 1070.19 1000 50 0.99999845 +267 1070.19 1074.0675 1000 50 0.99995756 +268 1074.0675 1077.9450000000002 1000 50 1.0 +269 1077.945 1081.8225 1000 50 0.9998165 +270 1081.8225 1085.7 1000 50 0.99998915 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_14-21-43_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_14-21-43_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..4ab1a36ddcb8a735063c12498c516996a1e9e22c --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_14-21-43_annot_2022-11-30_01.txt @@ -0,0 +1,35 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9996101 +2 3.8775 7.755 1000 50 0.9971796 +3 7.755 11.6325 1000 50 0.99999213 +4 11.6325 15.51 1000 50 0.9658315 +5 15.51 19.3875 1000 50 0.9995784 +6 19.3875 23.265 1000 50 0.9993598 +7 23.265 27.142500000000002 1000 50 0.9972258 +8 27.1425 31.02 1000 50 0.9982821 +9 31.02 34.8975 1000 50 0.54044366 +10 34.8975 38.775 1000 50 0.95125306 +11 38.775 42.652499999999996 1000 50 0.8474194 +12 42.6525 46.53 1000 50 0.93335384 +13 46.53 50.4075 1000 50 0.9998479 +14 50.4075 54.285 1000 50 0.95257026 +15 58.1625 62.04 1000 50 0.9958192 +16 62.04 65.9175 1000 50 0.99998796 +17 65.9175 69.795 1000 50 0.98139805 +18 69.795 73.6725 1000 50 0.90762824 +19 77.55 81.4275 1000 50 0.99996996 +20 81.4275 85.30499999999999 1000 50 0.9987331 +21 85.305 89.1825 1000 50 0.99427176 +22 93.06 96.9375 1000 50 0.99865556 +23 96.9375 100.815 1000 50 0.71150076 +24 104.6925 108.57 1000 50 0.9999455 +25 108.57 112.44749999999999 1000 50 0.9284328 +26 116.325 120.2025 1000 50 0.9959486 +27 143.4675 147.345 1000 50 0.93559235 +28 147.345 151.2225 1000 50 0.9236661 +29 162.855 166.7325 1000 50 0.95503867 +30 170.61 174.4875 1000 50 0.9154502 +31 174.4875 178.365 1000 50 0.9962547 +32 182.2425 186.12 1000 50 0.9865202 +33 186.12 189.9975 1000 50 0.9707724 +34 189.9975 193.875 1000 50 0.89688 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_15-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_15-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..b92a6733d05a59d513b5791018064a81cbec2776 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_15-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,346 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.93570286 +2 3.8775 7.755 1000 50 0.6131107 +3 7.755 11.6325 1000 50 0.71549356 +4 15.51 19.3875 1000 50 0.9748686 +5 19.3875 23.265 1000 50 0.99045944 +6 27.1425 31.02 1000 50 0.9999596 +7 31.02 34.8975 1000 50 0.9867387 +8 38.775 42.652499999999996 1000 50 0.9999957 +9 42.6525 46.53 1000 50 0.98862445 +10 46.53 50.4075 1000 50 0.6512967 +11 50.4075 54.285 1000 50 0.9999993 +12 54.285 58.162499999999994 1000 50 0.99657404 +13 58.1625 62.04 1000 50 0.9999876 +14 62.04 65.9175 1000 50 0.9998191 +15 65.9175 69.795 1000 50 0.997773 +16 69.795 73.6725 1000 50 0.99997544 +17 73.6725 77.55 1000 50 0.9999447 +18 77.55 81.4275 1000 50 0.9999583 +19 81.4275 85.30499999999999 1000 50 0.999998 +20 85.305 89.1825 1000 50 0.99621284 +21 89.1825 93.06 1000 50 0.9999665 +22 93.06 96.9375 1000 50 0.9999379 +23 96.9375 100.815 1000 50 0.99994767 +24 100.815 104.6925 1000 50 0.98908746 +25 104.6925 108.57 1000 50 0.9997764 +26 108.57 112.44749999999999 1000 50 0.8231144 +27 112.4475 116.325 1000 50 0.84877163 +28 116.325 120.2025 1000 50 0.9998833 +29 120.2025 124.08 1000 50 0.893869 +30 124.08 127.9575 1000 50 0.9997968 +31 127.9575 131.835 1000 50 0.999951 +32 131.835 135.7125 1000 50 0.57765806 +33 135.7125 139.59 1000 50 0.7614816 +34 139.59 143.4675 1000 50 0.99999857 +35 143.4675 147.345 1000 50 0.9999337 +36 147.345 151.2225 1000 50 0.99727875 +37 151.2225 155.1 1000 50 0.99998915 +38 155.1 158.9775 1000 50 0.9963378 +39 158.9775 162.855 1000 50 0.9481147 +40 162.855 166.7325 1000 50 0.9999939 +41 166.7325 170.60999999999999 1000 50 0.9995316 +42 170.61 174.4875 1000 50 0.99980396 +43 174.4875 178.365 1000 50 1.0 +44 178.365 182.2425 1000 50 0.7426354 +45 182.2425 186.12 1000 50 0.95134217 +46 186.12 189.9975 1000 50 0.9999999 +47 189.9975 193.875 1000 50 0.99994314 +48 193.875 197.7525 1000 50 0.9951526 +49 197.7525 201.63 1000 50 0.99999976 +50 201.63 205.5075 1000 50 0.99529606 +51 205.5075 209.385 1000 50 0.9999496 +52 209.385 213.2625 1000 50 0.9999995 +53 213.2625 217.14 1000 50 0.9999056 +54 217.14 221.01749999999998 1000 50 0.99999976 +55 221.0175 224.895 1000 50 0.99999917 +56 224.895 228.7725 1000 50 0.9980724 +57 228.7725 232.65 1000 50 0.9999721 +58 232.65 236.5275 1000 50 0.9999945 +59 236.5275 240.405 1000 50 0.99993944 +60 240.405 244.2825 1000 50 0.9999975 +61 244.2825 248.16 1000 50 0.99999845 +62 248.16 252.0375 1000 50 0.98966694 +63 252.0375 255.915 1000 50 0.9999988 +64 255.915 259.7925 1000 50 1.0 +65 259.7925 263.67 1000 50 0.99998116 +66 263.67 267.5475 1000 50 0.99999154 +67 267.5475 271.425 1000 50 1.0 +68 271.425 275.3025 1000 50 0.9999906 +69 275.3025 279.18 1000 50 0.9959021 +70 279.18 283.0575 1000 50 0.99874425 +71 283.0575 286.935 1000 50 0.99995506 +72 286.935 290.8125 1000 50 0.99983346 +73 290.8125 294.69 1000 50 0.9970799 +74 294.69 298.5675 1000 50 0.9999989 +75 298.5675 302.445 1000 50 1.0 +76 302.445 306.3225 1000 50 0.9998716 +77 306.3225 310.2 1000 50 1.0 +78 310.2 314.0775 1000 50 0.9999999 +79 314.0775 317.955 1000 50 0.99999857 +80 317.955 321.8325 1000 50 0.9999993 +81 321.8325 325.71 1000 50 0.9999999 +82 325.71 329.5875 1000 50 0.9999945 +83 329.5875 333.465 1000 50 1.0 +84 333.465 337.3425 1000 50 0.9981329 +85 337.3425 341.21999999999997 1000 50 0.99999464 +86 341.22 345.0975 1000 50 0.9999876 +87 345.0975 348.975 1000 50 0.99987745 +88 348.975 352.8525 1000 50 0.9999925 +89 352.8525 356.73 1000 50 0.9999993 +90 356.73 360.6075 1000 50 0.99999976 +91 360.6075 364.485 1000 50 0.9999993 +92 364.485 368.3625 1000 50 0.99492717 +93 368.3625 372.24 1000 50 0.9999969 +94 376.1175 379.995 1000 50 0.99962246 +95 379.995 383.8725 1000 50 0.99984956 +96 383.8725 387.75 1000 50 0.7328661 +97 387.75 391.6275 1000 50 0.9999409 +98 391.6275 395.505 1000 50 0.99962103 +99 395.505 399.3825 1000 50 0.9995541 +100 399.3825 403.26 1000 50 0.99999547 +101 403.26 407.1375 1000 50 0.9999776 +102 407.1375 411.015 1000 50 0.99998546 +103 411.015 414.8925 1000 50 0.9999989 +104 414.8925 418.77 1000 50 0.9992092 +105 418.77 422.6475 1000 50 1.0 +106 422.6475 426.525 1000 50 0.9996177 +107 426.525 430.4025 1000 50 0.99979216 +108 430.4025 434.28 1000 50 0.9998004 +109 434.28 438.15749999999997 1000 50 0.9864746 +110 438.1575 442.035 1000 50 0.9999403 +111 442.035 445.9125 1000 50 0.9999995 +112 445.9125 449.79 1000 50 0.99995744 +113 449.79 453.6675 1000 50 0.9989017 +114 453.6675 457.545 1000 50 0.99999976 +115 457.545 461.4225 1000 50 0.80049646 +116 461.4225 465.3 1000 50 0.95026416 +117 465.3 469.1775 1000 50 0.99569064 +118 469.1775 473.055 1000 50 0.9998093 +119 473.055 476.9325 1000 50 0.99999726 +120 476.9325 480.81 1000 50 0.99979347 +121 480.81 484.6875 1000 50 0.9836556 +122 484.6875 488.565 1000 50 0.9999976 +123 488.565 492.4425 1000 50 0.99960846 +124 492.4425 496.32 1000 50 0.99999964 +125 496.32 500.1975 1000 50 0.9997358 +126 500.1975 504.075 1000 50 0.99997926 +127 504.075 507.9525 1000 50 0.9998605 +128 507.9525 511.83 1000 50 0.99987876 +129 511.83 515.7075 1000 50 0.964724 +130 515.7075 519.585 1000 50 0.99839693 +131 519.585 523.4625000000001 1000 50 0.99818486 +132 523.4625 527.34 1000 50 0.9775904 +133 527.34 531.2175000000001 1000 50 0.9518519 +134 531.2175 535.095 1000 50 0.86632377 +135 535.095 538.9725000000001 1000 50 0.9992518 +136 538.9725 542.85 1000 50 0.99430436 +137 542.85 546.7275000000001 1000 50 0.9763523 +138 546.7275 550.605 1000 50 0.9999999 +139 550.605 554.4825000000001 1000 50 0.9999443 +140 554.4825 558.36 1000 50 0.9994499 +141 558.36 562.2375000000001 1000 50 0.97578853 +142 562.2375 566.115 1000 50 0.9999323 +143 566.115 569.9925000000001 1000 50 0.99855775 +144 569.9925 573.87 1000 50 0.85688484 +145 573.87 577.7475000000001 1000 50 0.9993773 +146 577.7475 581.625 1000 50 0.99999964 +147 581.625 585.5025 1000 50 0.9997236 +148 585.5025 589.3800000000001 1000 50 0.7571601 +149 589.38 593.2575 1000 50 0.9897368 +150 593.2575 597.1350000000001 1000 50 0.98410714 +151 597.135 601.0125 1000 50 0.99942976 +152 601.0125 604.8900000000001 1000 50 0.9998229 +153 604.89 608.7675 1000 50 0.99993324 +154 608.7675 612.6450000000001 1000 50 0.99848926 +155 612.645 616.5225 1000 50 0.99991286 +156 616.5225 620.4000000000001 1000 50 0.99993765 +157 620.4 624.2775 1000 50 0.997157 +158 624.2775 628.1550000000001 1000 50 0.973043 +159 628.155 632.0325 1000 50 0.99999785 +160 632.0325 635.9100000000001 1000 50 0.9965984 +161 635.91 639.7875 1000 50 0.9860384 +162 639.7875 643.6650000000001 1000 50 0.9991091 +163 643.665 647.5425 1000 50 0.99999785 +164 647.5425 651.4200000000001 1000 50 0.76148856 +165 651.42 655.2975 1000 50 0.98435163 +166 655.2975 659.1750000000001 1000 50 0.9984244 +167 663.0525 666.9300000000001 1000 50 0.9954295 +168 666.93 670.8075 1000 50 0.9958657 +169 670.8075 674.6850000000001 1000 50 0.9716052 +170 674.685 678.5625 1000 50 0.9823308 +171 678.5625 682.44 1000 50 0.9670322 +172 686.3175 690.195 1000 50 0.99998665 +173 694.0725 697.95 1000 50 0.59559005 +174 697.95 701.8275000000001 1000 50 0.93149716 +175 701.8275 705.705 1000 50 0.9743696 +176 705.705 709.5825000000001 1000 50 0.99313676 +177 709.5825 713.46 1000 50 0.86983883 +178 717.3375 721.215 1000 50 0.99993324 +179 732.8475 736.725 1000 50 0.6809879 +180 736.725 740.6025000000001 1000 50 0.53514576 +181 740.6025 744.48 1000 50 0.79162294 +182 744.48 748.3575000000001 1000 50 0.99638945 +183 748.3575 752.235 1000 50 0.9982237 +184 756.1125 759.99 1000 50 0.99844307 +185 759.99 763.8675000000001 1000 50 0.88792723 +186 763.8675 767.745 1000 50 0.8816262 +187 767.745 771.6225000000001 1000 50 0.8418602 +188 771.6225 775.5 1000 50 0.9996176 +189 775.5 779.3775 1000 50 0.9974859 +190 779.3775 783.2550000000001 1000 50 0.998298 +191 783.255 787.1325 1000 50 0.9237937 +192 787.1325 791.0100000000001 1000 50 0.8279573 +193 791.01 794.8875 1000 50 0.9999976 +194 794.8875 798.7650000000001 1000 50 0.99988496 +195 798.765 802.6425 1000 50 0.99955255 +196 802.6425 806.5200000000001 1000 50 0.9752619 +197 806.52 810.3975 1000 50 0.9996238 +198 810.3975 814.2750000000001 1000 50 0.9805782 +199 814.275 818.1525 1000 50 0.99792373 +200 818.1525 822.0300000000001 1000 50 0.9982646 +201 822.03 825.9075 1000 50 0.99627423 +202 825.9075 829.7850000000001 1000 50 0.95080227 +203 829.785 833.6625 1000 50 0.99909246 +204 833.6625 837.5400000000001 1000 50 1.0 +205 837.54 841.4175 1000 50 0.99988365 +206 841.4175 845.2950000000001 1000 50 0.99991405 +207 845.295 849.1725 1000 50 0.87898284 +208 849.1725 853.0500000000001 1000 50 0.9988426 +209 853.05 856.9275 1000 50 0.999393 +210 856.9275 860.8050000000001 1000 50 0.8646219 +211 860.805 864.6825 1000 50 0.9998161 +212 864.6825 868.5600000000001 1000 50 0.9977055 +213 868.56 872.4375 1000 50 0.9911543 +214 872.4375 876.315 1000 50 0.99058026 +215 876.315 880.1925000000001 1000 50 0.7190157 +216 880.1925 884.07 1000 50 0.9999428 +217 884.07 887.9475000000001 1000 50 1.0 +218 887.9475 891.825 1000 50 0.78865373 +219 891.825 895.7025000000001 1000 50 0.75133586 +220 895.7025 899.58 1000 50 0.9968225 +221 899.58 903.4575000000001 1000 50 0.7361195 +222 903.4575 907.335 1000 50 0.99253595 +223 907.335 911.2125000000001 1000 50 0.9999995 +224 911.2125 915.09 1000 50 0.8647829 +225 915.09 918.9675000000001 1000 50 0.91615844 +226 918.9675 922.845 1000 50 0.98464555 +227 922.845 926.7225000000001 1000 50 0.9999925 +228 926.7225 930.6 1000 50 0.9943356 +229 930.6 934.4775000000001 1000 50 0.9992526 +230 934.4775 938.355 1000 50 0.99989235 +231 938.355 942.2325000000001 1000 50 0.977469 +232 942.2325 946.11 1000 50 0.9825549 +233 946.11 949.9875000000001 1000 50 0.9995499 +234 949.9875 953.865 1000 50 0.9644127 +235 953.865 957.7425000000001 1000 50 0.99764204 +236 957.7425 961.62 1000 50 0.9995888 +237 961.62 965.4975000000001 1000 50 0.9998178 +238 965.4975 969.375 1000 50 0.9973489 +239 969.375 973.2525 1000 50 0.99974364 +240 973.2525 977.1300000000001 1000 50 0.99984586 +241 977.13 981.0075 1000 50 0.9999994 +242 981.0075 984.8850000000001 1000 50 0.9999089 +243 984.885 988.7625 1000 50 0.9997584 +244 988.7625 992.6400000000001 1000 50 0.5508109 +245 992.64 996.5175 1000 50 0.9999968 +246 996.5175 1000.3950000000001 1000 50 0.999992 +247 1000.395 1004.2725 1000 50 0.9899156 +248 1004.2725 1008.1500000000001 1000 50 0.99940884 +249 1008.15 1012.0275 1000 50 0.91927856 +250 1012.0275 1015.9050000000001 1000 50 0.99986553 +251 1015.905 1019.7825 1000 50 0.99920195 +252 1019.7825 1023.6600000000001 1000 50 0.98488545 +253 1023.66 1027.5375 1000 50 0.99961674 +254 1027.5375 1031.415 1000 50 0.99999964 +255 1031.415 1035.2925 1000 50 0.99975055 +256 1039.17 1043.0475000000001 1000 50 0.9999999 +257 1043.0475 1046.925 1000 50 0.99673235 +258 1046.925 1050.8025 1000 50 0.9964875 +259 1050.8025 1054.68 1000 50 0.99999607 +260 1054.68 1058.5575000000001 1000 50 0.99987733 +261 1058.5575 1062.435 1000 50 0.5129104 +262 1062.435 1066.3125 1000 50 0.9999665 +263 1066.3125 1070.19 1000 50 0.99987197 +264 1070.19 1074.0675 1000 50 0.9999424 +265 1074.0675 1077.9450000000002 1000 50 1.0 +266 1077.945 1081.8225 1000 50 0.9995358 +267 1081.8225 1085.7 1000 50 0.99712723 +268 1085.7 1089.5775 1000 50 0.9999969 +269 1089.5775 1093.4550000000002 1000 50 0.99816567 +270 1093.455 1097.3325 1000 50 0.9992417 +271 1097.3325 1101.21 1000 50 0.99980444 +272 1101.21 1105.0875 1000 50 0.9971264 +273 1105.0875 1108.9650000000001 1000 50 0.9764582 +274 1108.965 1112.8425 1000 50 1.0 +275 1112.8425 1116.72 1000 50 0.98193604 +276 1116.72 1120.5975 1000 50 0.89507765 +277 1120.5975 1124.4750000000001 1000 50 0.9999627 +278 1124.475 1128.3525 1000 50 0.9828393 +279 1128.3525 1132.23 1000 50 0.9999901 +280 1132.23 1136.1075 1000 50 0.99852234 +281 1136.1075 1139.9850000000001 1000 50 0.9997596 +282 1139.985 1143.8625 1000 50 0.99999475 +283 1143.8625 1147.74 1000 50 0.9987644 +284 1147.74 1151.6175 1000 50 0.9999999 +285 1151.6175 1155.4950000000001 1000 50 0.9003925 +286 1155.495 1159.3725 1000 50 0.9999484 +287 1159.3725 1163.25 1000 50 0.9999994 +288 1163.25 1167.1275 1000 50 0.9995024 +289 1167.1275 1171.005 1000 50 0.99925095 +290 1171.005 1174.8825000000002 1000 50 0.99998736 +291 1174.8825 1178.76 1000 50 0.999969 +292 1178.76 1182.6375 1000 50 0.9996495 +293 1182.6375 1186.515 1000 50 0.9999963 +294 1190.3925 1194.27 1000 50 0.99998546 +295 1194.27 1198.1475 1000 50 0.9999039 +296 1202.025 1205.9025000000001 1000 50 0.99999964 +297 1205.9025 1209.78 1000 50 0.99999595 +298 1209.78 1213.6575 1000 50 0.96621746 +299 1213.6575 1217.535 1000 50 0.87450635 +300 1217.535 1221.4125000000001 1000 50 0.99998474 +301 1221.4125 1225.29 1000 50 0.9999989 +302 1225.29 1229.1675 1000 50 0.9387541 +303 1229.1675 1233.045 1000 50 0.9478351 +304 1233.045 1236.9225000000001 1000 50 0.99995935 +305 1236.9225 1240.8 1000 50 0.9964786 +306 1240.8 1244.6775 1000 50 0.9997718 +307 1244.6775 1248.555 1000 50 0.6601687 +308 1248.555 1252.4325000000001 1000 50 0.99998486 +309 1252.4325 1256.31 1000 50 0.9921983 +310 1256.31 1260.1875 1000 50 0.992894 +311 1260.1875 1264.065 1000 50 0.99998736 +312 1264.065 1267.9425 1000 50 0.9364171 +313 1267.9425 1271.8200000000002 1000 50 0.978095 +314 1271.82 1275.6975 1000 50 0.9821969 +315 1275.6975 1279.575 1000 50 0.98929137 +316 1279.575 1283.4525 1000 50 0.99998105 +317 1283.4525 1287.3300000000002 1000 50 0.9992637 +318 1287.33 1291.2075 1000 50 0.99243903 +319 1291.2075 1295.085 1000 50 0.99923277 +320 1295.085 1298.9625 1000 50 0.9312948 +321 1298.9625 1302.8400000000001 1000 50 0.9998586 +322 1302.84 1306.7175 1000 50 0.9946867 +323 1306.7175 1310.595 1000 50 0.9385351 +324 1310.595 1314.4725 1000 50 0.91922927 +325 1314.4725 1318.3500000000001 1000 50 0.991235 +326 1318.35 1322.2275 1000 50 0.9870417 +327 1322.2275 1326.105 1000 50 0.9982223 +328 1326.105 1329.9825 1000 50 0.98249006 +329 1329.9825 1333.8600000000001 1000 50 0.9999975 +330 1333.86 1337.7375 1000 50 0.9999999 +331 1337.7375 1341.615 1000 50 0.99782455 +332 1341.615 1345.4925 1000 50 0.99939704 +333 1345.4925 1349.3700000000001 1000 50 0.9951946 +334 1349.37 1353.2475 1000 50 0.99593496 +335 1353.2475 1357.125 1000 50 0.9428945 +336 1357.125 1361.0025 1000 50 0.9999918 +337 1361.0025 1364.88 1000 50 0.99990094 +338 1364.88 1368.7575000000002 1000 50 0.99999547 +339 1368.7575 1372.635 1000 50 0.9990589 +340 1372.635 1376.5125 1000 50 0.9998894 +341 1376.5125 1380.39 1000 50 0.9929589 +342 1380.39 1384.2675000000002 1000 50 0.99971825 +343 1384.2675 1388.145 1000 50 0.9997559 +344 1388.145 1392.0225 1000 50 0.9996903 +345 1392.0225 1395.9 1000 50 0.965624 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_16-01-54_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_16-01-54_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1bcb5ee07b6ad2438c236d406144e222ebf12d7e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_16-01-54_annot_2022-11-30_01.txt @@ -0,0 +1,317 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9997905 +2 3.8775 7.755 1000 50 0.95002395 +3 7.755 11.6325 1000 50 0.99996114 +4 15.51 19.3875 1000 50 0.9287205 +5 19.3875 23.265 1000 50 0.9999006 +6 27.1425 31.02 1000 50 0.98645395 +7 31.02 34.8975 1000 50 0.8729691 +8 34.8975 38.775 1000 50 0.9996611 +9 38.775 42.652499999999996 1000 50 0.98833805 +10 42.6525 46.53 1000 50 0.9990429 +11 46.53 50.4075 1000 50 0.9911578 +12 50.4075 54.285 1000 50 0.76977134 +13 54.285 58.162499999999994 1000 50 0.99869835 +14 58.1625 62.04 1000 50 0.99314547 +15 62.04 65.9175 1000 50 0.995193 +16 65.9175 69.795 1000 50 0.99966776 +17 69.795 73.6725 1000 50 0.68848664 +18 73.6725 77.55 1000 50 0.97916585 +19 77.55 81.4275 1000 50 0.9999043 +20 81.4275 85.30499999999999 1000 50 0.9454108 +21 85.305 89.1825 1000 50 0.8129589 +22 89.1825 93.06 1000 50 0.71236587 +23 93.06 96.9375 1000 50 0.5530837 +24 96.9375 100.815 1000 50 0.56767297 +25 100.815 104.6925 1000 50 0.9999621 +26 108.57 112.44749999999999 1000 50 0.9416595 +27 112.4475 116.325 1000 50 0.98320293 +28 116.325 120.2025 1000 50 0.9286326 +29 120.2025 124.08 1000 50 0.9983032 +30 124.08 127.9575 1000 50 0.9761663 +31 131.835 135.7125 1000 50 0.9463723 +32 135.7125 139.59 1000 50 0.9583804 +33 143.4675 147.345 1000 50 0.9801446 +34 155.1 158.9775 1000 50 0.60465205 +35 162.855 166.7325 1000 50 0.99999154 +36 166.7325 170.60999999999999 1000 50 0.9999094 +37 170.61 174.4875 1000 50 0.99648595 +38 178.365 182.2425 1000 50 0.99991083 +39 182.2425 186.12 1000 50 0.99999726 +40 186.12 189.9975 1000 50 0.7580998 +41 189.9975 193.875 1000 50 0.9999995 +42 193.875 197.7525 1000 50 0.9958722 +43 197.7525 201.63 1000 50 0.99997866 +44 205.5075 209.385 1000 50 0.9930947 +45 209.385 213.2625 1000 50 0.60053766 +46 213.2625 217.14 1000 50 0.6598778 +47 217.14 221.01749999999998 1000 50 0.9945438 +48 221.0175 224.895 1000 50 0.9902908 +49 224.895 228.7725 1000 50 0.8509968 +50 228.7725 232.65 1000 50 0.99954337 +51 232.65 236.5275 1000 50 0.99998903 +52 236.5275 240.405 1000 50 0.9978624 +53 240.405 244.2825 1000 50 0.9987489 +54 244.2825 248.16 1000 50 0.8976565 +55 248.16 252.0375 1000 50 0.8841537 +56 255.915 259.7925 1000 50 0.99993324 +57 267.5475 271.425 1000 50 0.99999726 +58 271.425 275.3025 1000 50 0.9939957 +59 279.18 283.0575 1000 50 0.9999871 +60 283.0575 286.935 1000 50 0.99897814 +61 286.935 290.8125 1000 50 0.9908971 +62 290.8125 294.69 1000 50 0.9964637 +63 294.69 298.5675 1000 50 0.9999957 +64 298.5675 302.445 1000 50 0.9957217 +65 302.445 306.3225 1000 50 0.9993162 +66 306.3225 310.2 1000 50 0.9999999 +67 310.2 314.0775 1000 50 0.50277424 +68 314.0775 317.955 1000 50 0.99999905 +69 317.955 321.8325 1000 50 0.99960166 +70 321.8325 325.71 1000 50 0.99404067 +71 325.71 329.5875 1000 50 0.9999995 +72 329.5875 333.465 1000 50 0.999995 +73 333.465 337.3425 1000 50 0.99918157 +74 337.3425 341.21999999999997 1000 50 1.0 +75 341.22 345.0975 1000 50 0.9999881 +76 345.0975 348.975 1000 50 0.9986003 +77 348.975 352.8525 1000 50 0.9999937 +78 352.8525 356.73 1000 50 0.9979547 +79 356.73 360.6075 1000 50 0.9999671 +80 360.6075 364.485 1000 50 0.9996568 +81 364.485 368.3625 1000 50 0.9999876 +82 368.3625 372.24 1000 50 0.99983203 +83 372.24 376.1175 1000 50 0.9973654 +84 376.1175 379.995 1000 50 0.9999672 +85 379.995 383.8725 1000 50 0.99917525 +86 383.8725 387.75 1000 50 0.99962735 +87 387.75 391.6275 1000 50 0.9814564 +88 391.6275 395.505 1000 50 0.9996494 +89 395.505 399.3825 1000 50 0.99558157 +90 399.3825 403.26 1000 50 0.9848429 +91 403.26 407.1375 1000 50 0.99794453 +92 407.1375 411.015 1000 50 0.9999844 +93 411.015 414.8925 1000 50 0.99993885 +94 414.8925 418.77 1000 50 0.9999083 +95 418.77 422.6475 1000 50 0.9999304 +96 422.6475 426.525 1000 50 0.9999889 +97 426.525 430.4025 1000 50 0.9999794 +98 430.4025 434.28 1000 50 0.9999714 +99 434.28 438.15749999999997 1000 50 0.9872435 +100 438.1575 442.035 1000 50 1.0 +101 442.035 445.9125 1000 50 0.9999962 +102 445.9125 449.79 1000 50 0.9997063 +103 449.79 453.6675 1000 50 0.9999999 +104 453.6675 457.545 1000 50 0.99996805 +105 457.545 461.4225 1000 50 1.0 +106 461.4225 465.3 1000 50 0.9970686 +107 465.3 469.1775 1000 50 0.99978167 +108 469.1775 473.055 1000 50 0.9999671 +109 473.055 476.9325 1000 50 0.9994733 +110 476.9325 480.81 1000 50 0.9999975 +111 480.81 484.6875 1000 50 0.9999981 +112 484.6875 488.565 1000 50 0.9999989 +113 488.565 492.4425 1000 50 0.999997 +114 492.4425 496.32 1000 50 0.9995116 +115 496.32 500.1975 1000 50 0.99977833 +116 500.1975 504.075 1000 50 0.99911314 +117 504.075 507.9525 1000 50 0.98430264 +118 507.9525 511.83 1000 50 0.9984419 +119 511.83 515.7075 1000 50 0.99889946 +120 519.585 523.4625000000001 1000 50 0.99981695 +121 523.4625 527.34 1000 50 0.99628025 +122 527.34 531.2175000000001 1000 50 0.99998784 +123 531.2175 535.095 1000 50 0.9999918 +124 535.095 538.9725000000001 1000 50 0.6653001 +125 538.9725 542.85 1000 50 0.991024 +126 542.85 546.7275000000001 1000 50 0.99999964 +127 546.7275 550.605 1000 50 1.0 +128 550.605 554.4825000000001 1000 50 0.9999893 +129 554.4825 558.36 1000 50 0.9999975 +130 558.36 562.2375000000001 1000 50 0.99988043 +131 562.2375 566.115 1000 50 0.99999976 +132 566.115 569.9925000000001 1000 50 0.9999995 +133 569.9925 573.87 1000 50 0.9997471 +134 573.87 577.7475000000001 1000 50 1.0 +135 577.7475 581.625 1000 50 0.99999964 +136 581.625 585.5025 1000 50 0.99999857 +137 585.5025 589.3800000000001 1000 50 1.0 +138 589.38 593.2575 1000 50 1.0 +139 593.2575 597.1350000000001 1000 50 1.0 +140 597.135 601.0125 1000 50 1.0 +141 601.0125 604.8900000000001 1000 50 0.9999832 +142 604.89 608.7675 1000 50 0.99999976 +143 608.7675 612.6450000000001 1000 50 0.99999976 +144 612.645 616.5225 1000 50 0.9999944 +145 616.5225 620.4000000000001 1000 50 0.9995826 +146 620.4 624.2775 1000 50 0.99999905 +147 624.2775 628.1550000000001 1000 50 0.9995258 +148 628.155 632.0325 1000 50 0.99996734 +149 632.0325 635.9100000000001 1000 50 0.9999987 +150 635.91 639.7875 1000 50 0.9999896 +151 639.7875 643.6650000000001 1000 50 0.99866426 +152 643.665 647.5425 1000 50 0.9999993 +153 647.5425 651.4200000000001 1000 50 0.99930644 +154 651.42 655.2975 1000 50 0.9999982 +155 655.2975 659.1750000000001 1000 50 0.9997887 +156 659.175 663.0525 1000 50 0.99999917 +157 663.0525 666.9300000000001 1000 50 0.9999993 +158 666.93 670.8075 1000 50 0.99951065 +159 670.8075 674.6850000000001 1000 50 0.9999728 +160 674.685 678.5625 1000 50 1.0 +161 678.5625 682.44 1000 50 0.99999785 +162 682.44 686.3175000000001 1000 50 0.9985727 +163 686.3175 690.195 1000 50 0.99984396 +164 690.195 694.0725000000001 1000 50 0.9998534 +165 694.0725 697.95 1000 50 0.99918765 +166 697.95 701.8275000000001 1000 50 0.9990195 +167 701.8275 705.705 1000 50 0.9994061 +168 705.705 709.5825000000001 1000 50 0.9999144 +169 709.5825 713.46 1000 50 0.9996604 +170 713.46 717.3375000000001 1000 50 0.99600667 +171 717.3375 721.215 1000 50 0.9998946 +172 721.215 725.0925000000001 1000 50 1.0 +173 725.0925 728.97 1000 50 0.99999213 +174 728.97 732.8475000000001 1000 50 0.99984765 +175 732.8475 736.725 1000 50 0.99957424 +176 736.725 740.6025000000001 1000 50 0.9998031 +177 740.6025 744.48 1000 50 0.9918887 +178 744.48 748.3575000000001 1000 50 0.99917275 +179 748.3575 752.235 1000 50 0.9999807 +180 752.235 756.1125000000001 1000 50 0.998323 +181 756.1125 759.99 1000 50 0.987082 +182 767.745 771.6225000000001 1000 50 0.9481888 +183 771.6225 775.5 1000 50 0.96601105 +184 779.3775 783.2550000000001 1000 50 0.9975206 +185 783.255 787.1325 1000 50 0.9958508 +186 787.1325 791.0100000000001 1000 50 0.82992107 +187 791.01 794.8875 1000 50 0.9385085 +188 794.8875 798.7650000000001 1000 50 0.9991856 +189 798.765 802.6425 1000 50 0.777814 +190 806.52 810.3975 1000 50 0.9999993 +191 810.3975 814.2750000000001 1000 50 0.99981457 +192 814.275 818.1525 1000 50 0.9995309 +193 818.1525 822.0300000000001 1000 50 0.99995565 +194 822.03 825.9075 1000 50 0.54500186 +195 829.785 833.6625 1000 50 0.72318536 +196 833.6625 837.5400000000001 1000 50 0.83741516 +197 837.54 841.4175 1000 50 0.85308105 +198 841.4175 845.2950000000001 1000 50 0.96003836 +199 845.295 849.1725 1000 50 0.96047205 +200 849.1725 853.0500000000001 1000 50 0.8840535 +201 856.9275 860.8050000000001 1000 50 0.94855493 +202 860.805 864.6825 1000 50 0.9989141 +203 868.56 872.4375 1000 50 0.99969804 +204 872.4375 876.315 1000 50 0.90291077 +205 880.1925 884.07 1000 50 0.99842584 +206 887.9475 891.825 1000 50 0.99969614 +207 899.58 903.4575000000001 1000 50 0.99999785 +208 903.4575 907.335 1000 50 0.95533854 +209 907.335 911.2125000000001 1000 50 0.98306495 +210 922.845 926.7225000000001 1000 50 0.99970335 +211 934.4775 938.355 1000 50 0.98921585 +212 938.355 942.2325000000001 1000 50 0.9593859 +213 942.2325 946.11 1000 50 0.76371866 +214 946.11 949.9875000000001 1000 50 0.99709225 +215 953.865 957.7425000000001 1000 50 0.77714956 +216 957.7425 961.62 1000 50 0.7307517 +217 961.62 965.4975000000001 1000 50 0.9542675 +218 965.4975 969.375 1000 50 0.6590868 +219 969.375 973.2525 1000 50 0.66359806 +220 988.7625 992.6400000000001 1000 50 0.9931004 +221 992.64 996.5175 1000 50 0.9904908 +222 996.5175 1000.3950000000001 1000 50 0.7480035 +223 1004.2725 1008.1500000000001 1000 50 0.97429216 +224 1008.15 1012.0275 1000 50 0.6241937 +225 1012.0275 1015.9050000000001 1000 50 0.9999198 +226 1015.905 1019.7825 1000 50 0.9443928 +227 1019.7825 1023.6600000000001 1000 50 0.99137974 +228 1023.66 1027.5375 1000 50 0.98263747 +229 1027.5375 1031.415 1000 50 0.7566313 +230 1031.415 1035.2925 1000 50 0.634342 +231 1035.2925 1039.17 1000 50 0.99487203 +232 1039.17 1043.0475000000001 1000 50 0.92145574 +233 1043.0475 1046.925 1000 50 0.92947584 +234 1046.925 1050.8025 1000 50 0.9696955 +235 1050.8025 1054.68 1000 50 0.87583077 +236 1054.68 1058.5575000000001 1000 50 0.9993261 +237 1058.5575 1062.435 1000 50 0.99997246 +238 1062.435 1066.3125 1000 50 0.99971396 +239 1066.3125 1070.19 1000 50 0.99969757 +240 1070.19 1074.0675 1000 50 0.90503955 +241 1074.0675 1077.9450000000002 1000 50 0.99979466 +242 1077.945 1081.8225 1000 50 0.99297285 +243 1081.8225 1085.7 1000 50 0.99999785 +244 1085.7 1089.5775 1000 50 0.91138685 +245 1089.5775 1093.4550000000002 1000 50 0.6128924 +246 1093.455 1097.3325 1000 50 0.9975713 +247 1097.3325 1101.21 1000 50 0.9984987 +248 1101.21 1105.0875 1000 50 0.9999999 +249 1105.0875 1108.9650000000001 1000 50 0.99893755 +250 1108.965 1112.8425 1000 50 0.9994599 +251 1112.8425 1116.72 1000 50 0.98882884 +252 1116.72 1120.5975 1000 50 0.68738896 +253 1120.5975 1124.4750000000001 1000 50 0.9994485 +254 1124.475 1128.3525 1000 50 0.99972314 +255 1128.3525 1132.23 1000 50 0.91112626 +256 1132.23 1136.1075 1000 50 0.99312496 +257 1136.1075 1139.9850000000001 1000 50 0.99601376 +258 1143.8625 1147.74 1000 50 0.99611604 +259 1147.74 1151.6175 1000 50 0.95502913 +260 1151.6175 1155.4950000000001 1000 50 0.9840247 +261 1155.495 1159.3725 1000 50 0.9962513 +262 1159.3725 1163.25 1000 50 0.9908868 +263 1163.25 1167.1275 1000 50 0.9515784 +264 1167.1275 1171.005 1000 50 0.9994816 +265 1171.005 1174.8825000000002 1000 50 0.9999783 +266 1174.8825 1178.76 1000 50 0.9859482 +267 1182.6375 1186.515 1000 50 0.9918263 +268 1186.515 1190.3925000000002 1000 50 0.99919516 +269 1190.3925 1194.27 1000 50 0.9836744 +270 1194.27 1198.1475 1000 50 0.9998098 +271 1198.1475 1202.025 1000 50 0.9960045 +272 1202.025 1205.9025000000001 1000 50 0.94233495 +273 1205.9025 1209.78 1000 50 0.9999887 +274 1209.78 1213.6575 1000 50 0.9984029 +275 1213.6575 1217.535 1000 50 0.9999571 +276 1217.535 1221.4125000000001 1000 50 0.9999778 +277 1221.4125 1225.29 1000 50 0.9998343 +278 1225.29 1229.1675 1000 50 0.9999989 +279 1229.1675 1233.045 1000 50 0.9663521 +280 1233.045 1236.9225000000001 1000 50 1.0 +281 1236.9225 1240.8 1000 50 0.9820992 +282 1240.8 1244.6775 1000 50 0.9999943 +283 1244.6775 1248.555 1000 50 0.9994161 +284 1248.555 1252.4325000000001 1000 50 0.9642874 +285 1252.4325 1256.31 1000 50 0.99997663 +286 1256.31 1260.1875 1000 50 0.99981385 +287 1264.065 1267.9425 1000 50 0.9999925 +288 1267.9425 1271.8200000000002 1000 50 0.99606955 +289 1271.82 1275.6975 1000 50 0.83674425 +290 1275.6975 1279.575 1000 50 0.99999964 +291 1279.575 1283.4525 1000 50 0.99476826 +292 1283.4525 1287.3300000000002 1000 50 0.9420588 +293 1287.33 1291.2075 1000 50 0.99989784 +294 1291.2075 1295.085 1000 50 0.99884653 +295 1295.085 1298.9625 1000 50 0.9997993 +296 1298.9625 1302.8400000000001 1000 50 0.9998603 +297 1302.84 1306.7175 1000 50 0.99923277 +298 1306.7175 1310.595 1000 50 1.0 +299 1310.595 1314.4725 1000 50 0.9968354 +300 1314.4725 1318.3500000000001 1000 50 0.9941419 +301 1318.35 1322.2275 1000 50 0.9871466 +302 1322.2275 1326.105 1000 50 0.9999608 +303 1329.9825 1333.8600000000001 1000 50 0.9997799 +304 1337.7375 1341.615 1000 50 0.9999981 +305 1341.615 1345.4925 1000 50 0.99988484 +306 1349.37 1353.2475 1000 50 0.9998704 +307 1353.2475 1357.125 1000 50 0.8941368 +308 1357.125 1361.0025 1000 50 0.9999695 +309 1361.0025 1364.88 1000 50 0.9890865 +310 1364.88 1368.7575000000002 1000 50 0.99739385 +311 1368.7575 1372.635 1000 50 0.99976295 +312 1372.635 1376.5125 1000 50 0.9977719 +313 1376.5125 1380.39 1000 50 0.9998053 +314 1380.39 1384.2675000000002 1000 50 0.99688965 +315 1384.2675 1388.145 1000 50 0.998928 +316 1388.145 1392.0225 1000 50 0.9999999 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_17-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_17-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..8493e68ccf32d8c29eff49eae722d4dcdf95c13d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_17-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,54 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.999998 +2 3.8775 7.755 1000 50 0.9997187 +3 7.755 11.6325 1000 50 0.9999728 +4 11.6325 15.51 1000 50 0.9999999 +5 15.51 19.3875 1000 50 0.9990915 +6 19.3875 23.265 1000 50 0.9999999 +7 23.265 27.142500000000002 1000 50 1.0 +8 27.1425 31.02 1000 50 0.99999714 +9 31.02 34.8975 1000 50 0.99999726 +10 34.8975 38.775 1000 50 1.0 +11 38.775 42.652499999999996 1000 50 0.9997826 +12 42.6525 46.53 1000 50 0.99872166 +13 46.53 50.4075 1000 50 0.99999964 +14 50.4075 54.285 1000 50 0.9999956 +15 54.285 58.162499999999994 1000 50 0.9928012 +16 58.1625 62.04 1000 50 0.9999449 +17 62.04 65.9175 1000 50 0.9999994 +18 65.9175 69.795 1000 50 0.9989236 +19 69.795 73.6725 1000 50 0.99999905 +20 73.6725 77.55 1000 50 0.9999864 +21 77.55 81.4275 1000 50 0.99434596 +22 81.4275 85.30499999999999 1000 50 0.9999975 +23 85.305 89.1825 1000 50 0.9999912 +24 89.1825 93.06 1000 50 0.9998952 +25 93.06 96.9375 1000 50 0.9999918 +26 96.9375 100.815 1000 50 0.9980178 +27 100.815 104.6925 1000 50 0.99976426 +28 104.6925 108.57 1000 50 0.9818933 +29 108.57 112.44749999999999 1000 50 0.9964529 +30 112.4475 116.325 1000 50 0.98198617 +31 116.325 120.2025 1000 50 0.99941576 +32 120.2025 124.08 1000 50 0.80683494 +33 124.08 127.9575 1000 50 0.9999976 +34 127.9575 131.835 1000 50 0.9900412 +35 135.7125 139.59 1000 50 0.99155945 +36 139.59 143.4675 1000 50 0.9955356 +37 143.4675 147.345 1000 50 0.97428304 +38 147.345 151.2225 1000 50 0.99999785 +39 151.2225 155.1 1000 50 0.9091569 +40 155.1 158.9775 1000 50 0.9657427 +41 158.9775 162.855 1000 50 0.9593841 +42 166.7325 170.60999999999999 1000 50 0.9995834 +43 170.61 174.4875 1000 50 0.59162855 +44 174.4875 178.365 1000 50 0.8516854 +45 182.2425 186.12 1000 50 0.99840254 +46 186.12 189.9975 1000 50 0.8569494 +47 189.9975 193.875 1000 50 0.9999975 +48 193.875 197.7525 1000 50 0.9999925 +49 197.7525 201.63 1000 50 0.99373937 +50 201.63 205.5075 1000 50 0.9999747 +51 205.5075 209.385 1000 50 0.9964084 +52 209.385 213.2625 1000 50 0.9400318 +53 213.2625 217.14 1000 50 0.9860577 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_17-07-12_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_17-07-12_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..314ba322b03771a4cc5ab85af0e33613facd1212 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_17-07-12_annot_2022-11-30_01.txt @@ -0,0 +1,256 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.8703548 +2 3.8775 7.755 1000 50 0.99999726 +3 7.755 11.6325 1000 50 0.99996877 +4 11.6325 15.51 1000 50 0.9837209 +5 15.51 19.3875 1000 50 0.9999999 +6 19.3875 23.265 1000 50 0.98182917 +7 23.265 27.142500000000002 1000 50 0.9999993 +8 27.1425 31.02 1000 50 0.99926704 +9 31.02 34.8975 1000 50 0.96692914 +10 34.8975 38.775 1000 50 0.9999566 +11 38.775 42.652499999999996 1000 50 0.999049 +12 42.6525 46.53 1000 50 0.9998857 +13 46.53 50.4075 1000 50 0.8946182 +14 50.4075 54.285 1000 50 0.9967462 +15 54.285 58.162499999999994 1000 50 0.9996414 +16 58.1625 62.04 1000 50 0.9984274 +17 62.04 65.9175 1000 50 1.0 +18 65.9175 69.795 1000 50 0.99663085 +19 69.795 73.6725 1000 50 0.9997205 +20 73.6725 77.55 1000 50 0.9999919 +21 77.55 81.4275 1000 50 0.9941182 +22 81.4275 85.30499999999999 1000 50 0.99781585 +23 85.305 89.1825 1000 50 0.9991135 +24 89.1825 93.06 1000 50 0.99999726 +25 93.06 96.9375 1000 50 0.9999949 +26 96.9375 100.815 1000 50 0.99999964 +27 100.815 104.6925 1000 50 0.9999893 +28 104.6925 108.57 1000 50 0.98239636 +29 108.57 112.44749999999999 1000 50 0.9998105 +30 112.4475 116.325 1000 50 0.9999964 +31 116.325 120.2025 1000 50 0.99616253 +32 120.2025 124.08 1000 50 0.9999572 +33 124.08 127.9575 1000 50 0.9998838 +34 127.9575 131.835 1000 50 0.99881697 +35 131.835 135.7125 1000 50 0.999962 +36 135.7125 139.59 1000 50 0.9999968 +37 139.59 143.4675 1000 50 0.998147 +38 143.4675 147.345 1000 50 0.99999845 +39 147.345 151.2225 1000 50 0.99998534 +40 151.2225 155.1 1000 50 0.99988127 +41 155.1 158.9775 1000 50 0.9995192 +42 158.9775 162.855 1000 50 0.9997298 +43 162.855 166.7325 1000 50 0.9999994 +44 170.61 174.4875 1000 50 0.99999785 +45 174.4875 178.365 1000 50 0.999788 +46 178.365 182.2425 1000 50 0.97234017 +47 182.2425 186.12 1000 50 0.9999999 +48 186.12 189.9975 1000 50 0.96377265 +49 189.9975 193.875 1000 50 0.9998547 +50 193.875 197.7525 1000 50 0.9999999 +51 197.7525 201.63 1000 50 0.99974996 +52 201.63 205.5075 1000 50 0.9998776 +53 205.5075 209.385 1000 50 0.99975616 +54 209.385 213.2625 1000 50 0.8804144 +55 213.2625 217.14 1000 50 0.99999976 +56 217.14 221.01749999999998 1000 50 0.9999889 +57 221.0175 224.895 1000 50 0.996802 +58 224.895 228.7725 1000 50 1.0 +59 228.7725 232.65 1000 50 0.99967706 +60 232.65 236.5275 1000 50 0.81405824 +61 236.5275 240.405 1000 50 0.99980587 +62 240.405 244.2825 1000 50 0.9997609 +63 244.2825 248.16 1000 50 0.9992673 +64 248.16 252.0375 1000 50 0.99914265 +65 252.0375 255.915 1000 50 0.9973018 +66 255.915 259.7925 1000 50 0.9828787 +67 259.7925 263.67 1000 50 0.9987608 +68 263.67 267.5475 1000 50 0.999871 +69 267.5475 271.425 1000 50 0.9999045 +70 271.425 275.3025 1000 50 0.9999888 +71 275.3025 279.18 1000 50 0.9841101 +72 279.18 283.0575 1000 50 0.9999466 +73 283.0575 286.935 1000 50 0.95528173 +74 286.935 290.8125 1000 50 0.9952533 +75 290.8125 294.69 1000 50 0.99998105 +76 294.69 298.5675 1000 50 0.99946445 +77 298.5675 302.445 1000 50 0.9958657 +78 302.445 306.3225 1000 50 0.999642 +79 306.3225 310.2 1000 50 0.89747673 +80 310.2 314.0775 1000 50 0.99903893 +81 314.0775 317.955 1000 50 0.99977523 +82 317.955 321.8325 1000 50 0.9996419 +83 321.8325 325.71 1000 50 0.95658386 +84 325.71 329.5875 1000 50 0.99953854 +85 329.5875 333.465 1000 50 0.9623847 +86 333.465 337.3425 1000 50 0.84647185 +87 337.3425 341.21999999999997 1000 50 0.9999565 +88 341.22 345.0975 1000 50 0.9771618 +89 345.0975 348.975 1000 50 0.9996488 +90 348.975 352.8525 1000 50 0.9078056 +91 352.8525 356.73 1000 50 0.99990094 +92 356.73 360.6075 1000 50 0.9998597 +93 360.6075 364.485 1000 50 0.9998838 +94 364.485 368.3625 1000 50 0.99999666 +95 368.3625 372.24 1000 50 0.99890685 +96 372.24 376.1175 1000 50 0.97807956 +97 376.1175 379.995 1000 50 0.94164926 +98 379.995 383.8725 1000 50 0.9860729 +99 383.8725 387.75 1000 50 0.99998903 +100 387.75 391.6275 1000 50 0.99211544 +101 395.505 399.3825 1000 50 0.9999285 +102 399.3825 403.26 1000 50 0.9606831 +103 403.26 407.1375 1000 50 0.9958507 +104 407.1375 411.015 1000 50 0.9972066 +105 414.8925 418.77 1000 50 0.7269797 +106 418.77 422.6475 1000 50 0.9993476 +107 426.525 430.4025 1000 50 0.95421964 +108 430.4025 434.28 1000 50 0.9999993 +109 434.28 438.15749999999997 1000 50 0.99252033 +110 438.1575 442.035 1000 50 0.99655885 +111 442.035 445.9125 1000 50 0.98173875 +112 445.9125 449.79 1000 50 0.99940693 +113 449.79 453.6675 1000 50 0.9998387 +114 453.6675 457.545 1000 50 0.8926591 +115 457.545 461.4225 1000 50 0.9996111 +116 461.4225 465.3 1000 50 0.9978498 +117 465.3 469.1775 1000 50 0.9987948 +118 469.1775 473.055 1000 50 0.96726906 +119 473.055 476.9325 1000 50 0.98927796 +120 476.9325 480.81 1000 50 0.5992482 +121 480.81 484.6875 1000 50 0.5377329 +122 484.6875 488.565 1000 50 0.99711007 +123 488.565 492.4425 1000 50 0.9950517 +124 500.1975 504.075 1000 50 0.99928963 +125 504.075 507.9525 1000 50 0.5542248 +126 507.9525 511.83 1000 50 0.9349394 +127 511.83 515.7075 1000 50 0.92184114 +128 519.585 523.4625000000001 1000 50 0.99916065 +129 523.4625 527.34 1000 50 0.9950295 +130 527.34 531.2175000000001 1000 50 0.98765045 +131 531.2175 535.095 1000 50 0.9815088 +132 535.095 538.9725000000001 1000 50 0.50623566 +133 538.9725 542.85 1000 50 0.9600493 +134 542.85 546.7275000000001 1000 50 0.97907853 +135 546.7275 550.605 1000 50 0.6030744 +136 550.605 554.4825000000001 1000 50 0.93749785 +137 554.4825 558.36 1000 50 0.9967489 +138 558.36 562.2375000000001 1000 50 0.5647309 +139 562.2375 566.115 1000 50 0.9961152 +140 566.115 569.9925000000001 1000 50 0.9974801 +141 569.9925 573.87 1000 50 0.9848626 +142 573.87 577.7475000000001 1000 50 0.98881894 +143 577.7475 581.625 1000 50 0.9993383 +144 581.625 585.5025 1000 50 0.9995435 +145 585.5025 589.3800000000001 1000 50 0.9818662 +146 589.38 593.2575 1000 50 0.98858976 +147 597.135 601.0125 1000 50 0.99967146 +148 601.0125 604.8900000000001 1000 50 0.9946643 +149 604.89 608.7675 1000 50 0.9970521 +150 608.7675 612.6450000000001 1000 50 0.99480575 +151 612.645 616.5225 1000 50 0.92870367 +152 616.5225 620.4000000000001 1000 50 0.70683587 +153 620.4 624.2775 1000 50 0.9565724 +154 624.2775 628.1550000000001 1000 50 0.9735343 +155 628.155 632.0325 1000 50 0.99896204 +156 632.0325 635.9100000000001 1000 50 0.961434 +157 639.7875 643.6650000000001 1000 50 0.9994425 +158 643.665 647.5425 1000 50 0.99999976 +159 647.5425 651.4200000000001 1000 50 0.9999846 +160 655.2975 659.1750000000001 1000 50 0.99994564 +161 659.175 663.0525 1000 50 0.99985933 +162 663.0525 666.9300000000001 1000 50 0.99806255 +163 666.93 670.8075 1000 50 0.95865697 +164 670.8075 674.6850000000001 1000 50 0.9996948 +165 674.685 678.5625 1000 50 0.9903865 +166 678.5625 682.44 1000 50 0.99931633 +167 682.44 686.3175000000001 1000 50 0.9995851 +168 686.3175 690.195 1000 50 0.9945322 +169 690.195 694.0725000000001 1000 50 0.9882541 +170 697.95 701.8275000000001 1000 50 0.99998677 +171 701.8275 705.705 1000 50 0.99995065 +172 709.5825 713.46 1000 50 0.99970657 +173 713.46 717.3375000000001 1000 50 0.99981266 +174 717.3375 721.215 1000 50 0.99994004 +175 721.215 725.0925000000001 1000 50 0.9825717 +176 725.0925 728.97 1000 50 0.95387655 +177 728.97 732.8475000000001 1000 50 0.7794982 +178 732.8475 736.725 1000 50 0.9976169 +179 740.6025 744.48 1000 50 0.9999261 +180 744.48 748.3575000000001 1000 50 0.99316543 +181 748.3575 752.235 1000 50 0.8698853 +182 752.235 756.1125000000001 1000 50 0.60226357 +183 756.1125 759.99 1000 50 0.9999269 +184 759.99 763.8675000000001 1000 50 0.9983948 +185 763.8675 767.745 1000 50 0.8990549 +186 771.6225 775.5 1000 50 0.89882195 +187 775.5 779.3775 1000 50 0.99995375 +188 779.3775 783.2550000000001 1000 50 0.9306461 +189 783.255 787.1325 1000 50 0.9995117 +190 787.1325 791.0100000000001 1000 50 0.53018504 +191 791.01 794.8875 1000 50 0.9748301 +192 794.8875 798.7650000000001 1000 50 0.999997 +193 798.765 802.6425 1000 50 0.9972613 +194 802.6425 806.5200000000001 1000 50 0.93251795 +195 806.52 810.3975 1000 50 0.98969704 +196 810.3975 814.2750000000001 1000 50 0.9999391 +197 814.275 818.1525 1000 50 0.89673316 +198 818.1525 822.0300000000001 1000 50 0.8766533 +199 825.9075 829.7850000000001 1000 50 0.99754363 +200 841.4175 845.2950000000001 1000 50 0.96536404 +201 849.1725 853.0500000000001 1000 50 0.94046897 +202 853.05 856.9275 1000 50 0.65844303 +203 860.805 864.6825 1000 50 0.99229676 +204 864.6825 868.5600000000001 1000 50 0.9869075 +205 868.56 872.4375 1000 50 0.81246686 +206 872.4375 876.315 1000 50 0.9932121 +207 876.315 880.1925000000001 1000 50 0.5072363 +208 880.1925 884.07 1000 50 0.9739361 +209 884.07 887.9475000000001 1000 50 0.98425573 +210 891.825 895.7025000000001 1000 50 0.72696453 +211 895.7025 899.58 1000 50 0.72852045 +212 899.58 903.4575000000001 1000 50 0.9726511 +213 903.4575 907.335 1000 50 0.9811317 +214 907.335 911.2125000000001 1000 50 0.99949586 +215 911.2125 915.09 1000 50 0.9919525 +216 915.09 918.9675000000001 1000 50 0.99982834 +217 918.9675 922.845 1000 50 0.9997379 +218 922.845 926.7225000000001 1000 50 0.9742955 +219 926.7225 930.6 1000 50 0.99977976 +220 930.6 934.4775000000001 1000 50 0.8822246 +221 934.4775 938.355 1000 50 0.9999306 +222 938.355 942.2325000000001 1000 50 0.9999454 +223 942.2325 946.11 1000 50 0.9999963 +224 946.11 949.9875000000001 1000 50 0.68814105 +225 949.9875 953.865 1000 50 0.9999994 +226 953.865 957.7425000000001 1000 50 0.98713756 +227 957.7425 961.62 1000 50 0.998973 +228 961.62 965.4975000000001 1000 50 0.9987947 +229 965.4975 969.375 1000 50 0.99330336 +230 969.375 973.2525 1000 50 0.999793 +231 973.2525 977.1300000000001 1000 50 0.99952686 +232 977.13 981.0075 1000 50 0.9959935 +233 981.0075 984.8850000000001 1000 50 0.9979393 +234 984.885 988.7625 1000 50 0.991251 +235 992.64 996.5175 1000 50 0.99895704 +236 996.5175 1000.3950000000001 1000 50 0.99994767 +237 1000.395 1004.2725 1000 50 0.9940701 +238 1004.2725 1008.1500000000001 1000 50 0.9999976 +239 1008.15 1012.0275 1000 50 0.99907947 +240 1012.0275 1015.9050000000001 1000 50 0.99999905 +241 1015.905 1019.7825 1000 50 0.99979705 +242 1019.7825 1023.6600000000001 1000 50 0.999948 +243 1023.66 1027.5375 1000 50 0.9999951 +244 1027.5375 1031.415 1000 50 0.99999833 +245 1031.415 1035.2925 1000 50 0.9999963 +246 1035.2925 1039.17 1000 50 0.9999908 +247 1039.17 1043.0475000000001 1000 50 0.99999714 +248 1043.0475 1046.925 1000 50 0.99987936 +249 1046.925 1050.8025 1000 50 0.99972445 +250 1050.8025 1054.68 1000 50 0.99986327 +251 1054.68 1058.5575000000001 1000 50 0.9996557 +252 1058.5575 1062.435 1000 50 0.9986401 +253 1062.435 1066.3125 1000 50 0.9999006 +254 1066.3125 1070.19 1000 50 0.9995591 +255 1070.19 1074.0675 1000 50 0.9999813 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_18-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_18-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..88940bb6493250e6c606af6f065943a4e4f9b286 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_18-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,131 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9998826 +2 3.8775 7.755 1000 50 0.9999993 +3 7.755 11.6325 1000 50 0.9999914 +4 11.6325 15.51 1000 50 0.9985989 +5 15.51 19.3875 1000 50 0.99996006 +6 19.3875 23.265 1000 50 0.9996494 +7 23.265 27.142500000000002 1000 50 0.9999887 +8 27.1425 31.02 1000 50 0.8553019 +9 34.8975 38.775 1000 50 0.6924079 +10 38.775 42.652499999999996 1000 50 0.872702 +11 50.4075 54.285 1000 50 0.98008746 +12 54.285 58.162499999999994 1000 50 0.70106965 +13 58.1625 62.04 1000 50 0.9737118 +14 62.04 65.9175 1000 50 0.81017387 +15 65.9175 69.795 1000 50 0.57373434 +16 69.795 73.6725 1000 50 0.9943046 +17 73.6725 77.55 1000 50 0.8293334 +18 77.55 81.4275 1000 50 0.8853572 +19 81.4275 85.30499999999999 1000 50 0.9972127 +20 85.305 89.1825 1000 50 0.7106223 +21 89.1825 93.06 1000 50 0.8470207 +22 93.06 96.9375 1000 50 0.990457 +23 96.9375 100.815 1000 50 0.99926645 +24 100.815 104.6925 1000 50 0.5631762 +25 104.6925 108.57 1000 50 0.7726342 +26 108.57 112.44749999999999 1000 50 0.9617762 +27 112.4475 116.325 1000 50 0.9933595 +28 116.325 120.2025 1000 50 0.9999789 +29 120.2025 124.08 1000 50 0.9991042 +30 124.08 127.9575 1000 50 0.999212 +31 127.9575 131.835 1000 50 0.9992901 +32 131.835 135.7125 1000 50 0.99996626 +33 135.7125 139.59 1000 50 0.98632437 +34 139.59 143.4675 1000 50 0.9999993 +35 143.4675 147.345 1000 50 0.98131335 +36 147.345 151.2225 1000 50 0.9996178 +37 151.2225 155.1 1000 50 0.9996371 +38 155.1 158.9775 1000 50 0.9999815 +39 158.9775 162.855 1000 50 0.99990654 +40 162.855 166.7325 1000 50 0.99985015 +41 166.7325 170.60999999999999 1000 50 0.9999367 +42 170.61 174.4875 1000 50 0.99841166 +43 174.4875 178.365 1000 50 0.99997985 +44 178.365 182.2425 1000 50 0.9993998 +45 182.2425 186.12 1000 50 0.9999994 +46 186.12 189.9975 1000 50 0.9999951 +47 189.9975 193.875 1000 50 0.9999788 +48 193.875 197.7525 1000 50 0.99999964 +49 197.7525 201.63 1000 50 0.98660165 +50 201.63 205.5075 1000 50 0.9999856 +51 205.5075 209.385 1000 50 0.9999877 +52 209.385 213.2625 1000 50 0.98579526 +53 213.2625 217.14 1000 50 0.999959 +54 217.14 221.01749999999998 1000 50 0.99524903 +55 221.0175 224.895 1000 50 0.99999964 +56 224.895 228.7725 1000 50 0.7439104 +57 228.7725 232.65 1000 50 0.88223827 +58 232.65 236.5275 1000 50 1.0 +59 236.5275 240.405 1000 50 0.7735724 +60 240.405 244.2825 1000 50 1.0 +61 244.2825 248.16 1000 50 0.9999964 +62 248.16 252.0375 1000 50 0.99793124 +63 252.0375 255.915 1000 50 0.9999789 +64 255.915 259.7925 1000 50 0.9999995 +65 259.7925 263.67 1000 50 0.999998 +66 263.67 267.5475 1000 50 1.0 +67 267.5475 271.425 1000 50 0.99885654 +68 271.425 275.3025 1000 50 0.99997437 +69 275.3025 279.18 1000 50 0.99985707 +70 279.18 283.0575 1000 50 0.7466269 +71 283.0575 286.935 1000 50 0.9999262 +72 286.935 290.8125 1000 50 0.8517601 +73 290.8125 294.69 1000 50 0.9999838 +74 294.69 298.5675 1000 50 0.99999917 +75 298.5675 302.445 1000 50 0.99909973 +76 302.445 306.3225 1000 50 1.0 +77 306.3225 310.2 1000 50 0.9914213 +78 310.2 314.0775 1000 50 0.9998068 +79 314.0775 317.955 1000 50 0.9999994 +80 317.955 321.8325 1000 50 0.9999999 +81 321.8325 325.71 1000 50 0.9999999 +82 325.71 329.5875 1000 50 0.9999722 +83 329.5875 333.465 1000 50 0.9999956 +84 333.465 337.3425 1000 50 0.9999416 +85 341.22 345.0975 1000 50 0.99999964 +86 345.0975 348.975 1000 50 0.9999999 +87 348.975 352.8525 1000 50 0.9999913 +88 352.8525 356.73 1000 50 0.9994653 +89 356.73 360.6075 1000 50 0.9998778 +90 360.6075 364.485 1000 50 0.9999999 +91 364.485 368.3625 1000 50 0.9899768 +92 368.3625 372.24 1000 50 0.9999155 +93 372.24 376.1175 1000 50 0.99923563 +94 376.1175 379.995 1000 50 0.687611 +95 379.995 383.8725 1000 50 0.9997385 +96 383.8725 387.75 1000 50 0.99997556 +97 387.75 391.6275 1000 50 0.99989176 +98 391.6275 395.505 1000 50 0.9999261 +99 395.505 399.3825 1000 50 0.9999939 +100 399.3825 403.26 1000 50 0.83560634 +101 403.26 407.1375 1000 50 0.9988016 +102 407.1375 411.015 1000 50 0.9999964 +103 411.015 414.8925 1000 50 0.99964714 +104 414.8925 418.77 1000 50 0.9999633 +105 418.77 422.6475 1000 50 0.9999999 +106 422.6475 426.525 1000 50 0.98227763 +107 426.525 430.4025 1000 50 0.99999547 +108 430.4025 434.28 1000 50 0.99770135 +109 434.28 438.15749999999997 1000 50 0.96613455 +110 438.1575 442.035 1000 50 0.9999957 +111 442.035 445.9125 1000 50 0.99999464 +112 445.9125 449.79 1000 50 0.99999833 +113 449.79 453.6675 1000 50 0.99998176 +114 453.6675 457.545 1000 50 0.9929021 +115 457.545 461.4225 1000 50 0.9999908 +116 461.4225 465.3 1000 50 0.9994204 +117 465.3 469.1775 1000 50 0.99982446 +118 469.1775 473.055 1000 50 0.9999937 +119 473.055 476.9325 1000 50 0.99995553 +120 476.9325 480.81 1000 50 0.9955291 +121 480.81 484.6875 1000 50 0.9959247 +122 484.6875 488.565 1000 50 0.99786985 +123 488.565 492.4425 1000 50 0.9955936 +124 496.32 500.1975 1000 50 0.9195577 +125 500.1975 504.075 1000 50 0.7346119 +126 504.075 507.9525 1000 50 0.99869126 +127 507.9525 511.83 1000 50 0.9024634 +128 515.7075 519.585 1000 50 0.9964791 +129 519.585 523.4625000000001 1000 50 0.7081966 +130 527.34 531.2175000000001 1000 50 0.76921356 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_18-14-22_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_18-14-22_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..8010f37a0d2b567d9d5b0d459fa5889bc88312bf --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_18-14-22_annot_2022-11-30_01.txt @@ -0,0 +1,162 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9518732 +2 3.8775 7.755 1000 50 0.9845881 +3 7.755 11.6325 1000 50 0.9999727 +4 11.6325 15.51 1000 50 0.9388493 +5 15.51 19.3875 1000 50 0.9999851 +6 19.3875 23.265 1000 50 0.99999833 +7 23.265 27.142500000000002 1000 50 0.9999963 +8 27.1425 31.02 1000 50 0.69978756 +9 31.02 34.8975 1000 50 0.99453765 +10 34.8975 38.775 1000 50 0.9914437 +11 38.775 42.652499999999996 1000 50 0.9999465 +12 42.6525 46.53 1000 50 0.99893826 +13 46.53 50.4075 1000 50 0.9991105 +14 50.4075 54.285 1000 50 0.93762654 +15 54.285 58.162499999999994 1000 50 0.98717463 +16 58.1625 62.04 1000 50 0.9163257 +17 62.04 65.9175 1000 50 1.0 +18 65.9175 69.795 1000 50 0.99824774 +19 69.795 73.6725 1000 50 0.97854334 +20 73.6725 77.55 1000 50 0.9851778 +21 77.55 81.4275 1000 50 0.9999925 +22 81.4275 85.30499999999999 1000 50 0.99998426 +23 85.305 89.1825 1000 50 0.99603707 +24 89.1825 93.06 1000 50 0.99999774 +25 93.06 96.9375 1000 50 0.9999888 +26 96.9375 100.815 1000 50 0.9999492 +27 100.815 104.6925 1000 50 0.99998105 +28 104.6925 108.57 1000 50 0.9975121 +29 108.57 112.44749999999999 1000 50 0.9999869 +30 112.4475 116.325 1000 50 0.8856002 +31 116.325 120.2025 1000 50 0.9999932 +32 120.2025 124.08 1000 50 0.9999125 +33 124.08 127.9575 1000 50 0.9779765 +34 127.9575 131.835 1000 50 0.9999765 +35 131.835 135.7125 1000 50 0.9995672 +36 135.7125 139.59 1000 50 0.9952043 +37 139.59 143.4675 1000 50 1.0 +38 143.4675 147.345 1000 50 0.9997675 +39 147.345 151.2225 1000 50 0.9999515 +40 151.2225 155.1 1000 50 0.9999999 +41 155.1 158.9775 1000 50 0.98422766 +42 158.9775 162.855 1000 50 1.0 +43 162.855 166.7325 1000 50 0.9999999 +44 166.7325 170.60999999999999 1000 50 0.9999809 +45 170.61 174.4875 1000 50 1.0 +46 174.4875 178.365 1000 50 0.9998925 +47 178.365 182.2425 1000 50 0.99999547 +48 182.2425 186.12 1000 50 0.99753296 +49 186.12 189.9975 1000 50 1.0 +50 189.9975 193.875 1000 50 1.0 +51 193.875 197.7525 1000 50 0.9996424 +52 197.7525 201.63 1000 50 0.99998415 +53 201.63 205.5075 1000 50 0.99999547 +54 205.5075 209.385 1000 50 1.0 +55 209.385 213.2625 1000 50 0.9999931 +56 213.2625 217.14 1000 50 0.99917006 +57 217.14 221.01749999999998 1000 50 0.999845 +58 221.0175 224.895 1000 50 0.9999999 +59 224.895 228.7725 1000 50 0.9999913 +60 228.7725 232.65 1000 50 1.0 +61 232.65 236.5275 1000 50 0.9999999 +62 236.5275 240.405 1000 50 0.99988365 +63 240.405 244.2825 1000 50 0.99997854 +64 244.2825 248.16 1000 50 1.0 +65 248.16 252.0375 1000 50 0.99999547 +66 252.0375 255.915 1000 50 0.99996793 +67 255.915 259.7925 1000 50 0.9989863 +68 259.7925 263.67 1000 50 0.99998116 +69 263.67 267.5475 1000 50 0.9999993 +70 267.5475 271.425 1000 50 0.9999863 +71 271.425 275.3025 1000 50 0.9999535 +72 275.3025 279.18 1000 50 0.9999883 +73 279.18 283.0575 1000 50 0.9999609 +74 283.0575 286.935 1000 50 0.9897529 +75 286.935 290.8125 1000 50 1.0 +76 290.8125 294.69 1000 50 0.9997689 +77 294.69 298.5675 1000 50 1.0 +78 298.5675 302.445 1000 50 0.99985635 +79 302.445 306.3225 1000 50 0.99970144 +80 306.3225 310.2 1000 50 1.0 +81 310.2 314.0775 1000 50 0.9889966 +82 314.0775 317.955 1000 50 0.9999989 +83 317.955 321.8325 1000 50 1.0 +84 321.8325 325.71 1000 50 1.0 +85 325.71 329.5875 1000 50 0.9996201 +86 329.5875 333.465 1000 50 0.9990564 +87 333.465 337.3425 1000 50 0.9999993 +88 337.3425 341.21999999999997 1000 50 0.99998665 +89 341.22 345.0975 1000 50 0.99999714 +90 345.0975 348.975 1000 50 1.0 +91 348.975 352.8525 1000 50 0.9999987 +92 352.8525 356.73 1000 50 0.99971634 +93 356.73 360.6075 1000 50 0.99997926 +94 360.6075 364.485 1000 50 0.9999795 +95 364.485 368.3625 1000 50 1.0 +96 368.3625 372.24 1000 50 0.99972016 +97 372.24 376.1175 1000 50 0.99989426 +98 376.1175 379.995 1000 50 1.0 +99 379.995 383.8725 1000 50 0.9999126 +100 383.8725 387.75 1000 50 0.9999937 +101 387.75 391.6275 1000 50 0.9988079 +102 391.6275 395.505 1000 50 0.99999917 +103 395.505 399.3825 1000 50 0.99577713 +104 399.3825 403.26 1000 50 0.999985 +105 403.26 407.1375 1000 50 0.9996859 +106 407.1375 411.015 1000 50 0.9999999 +107 411.015 414.8925 1000 50 1.0 +108 414.8925 418.77 1000 50 0.9998683 +109 418.77 422.6475 1000 50 1.0 +110 422.6475 426.525 1000 50 1.0 +111 426.525 430.4025 1000 50 0.9999995 +112 430.4025 434.28 1000 50 0.99999976 +113 434.28 438.15749999999997 1000 50 0.9999995 +114 438.1575 442.035 1000 50 0.99996054 +115 442.035 445.9125 1000 50 0.99999964 +116 445.9125 449.79 1000 50 0.9999976 +117 449.79 453.6675 1000 50 0.99999976 +118 453.6675 457.545 1000 50 0.9999734 +119 457.545 461.4225 1000 50 0.9998418 +120 461.4225 465.3 1000 50 0.99917185 +121 465.3 469.1775 1000 50 0.9994912 +122 469.1775 473.055 1000 50 0.999206 +123 473.055 476.9325 1000 50 0.99160343 +124 476.9325 480.81 1000 50 0.9998926 +125 480.81 484.6875 1000 50 0.95697695 +126 484.6875 488.565 1000 50 0.6270207 +127 492.4425 496.32 1000 50 0.99843377 +128 496.32 500.1975 1000 50 0.9975775 +129 500.1975 504.075 1000 50 0.9946896 +130 504.075 507.9525 1000 50 0.99819934 +131 507.9525 511.83 1000 50 0.6649727 +132 511.83 515.7075 1000 50 0.9934377 +133 515.7075 519.585 1000 50 0.7451564 +134 523.4625 527.34 1000 50 0.9833176 +135 527.34 531.2175000000001 1000 50 0.9899532 +136 531.2175 535.095 1000 50 0.64689535 +137 535.095 538.9725000000001 1000 50 0.97739 +138 538.9725 542.85 1000 50 0.9904198 +139 542.85 546.7275000000001 1000 50 0.99995494 +140 546.7275 550.605 1000 50 0.60305464 +141 550.605 554.4825000000001 1000 50 0.76626486 +142 562.2375 566.115 1000 50 0.8850227 +143 566.115 569.9925000000001 1000 50 0.93884516 +144 569.9925 573.87 1000 50 0.67273504 +145 573.87 577.7475000000001 1000 50 0.9791269 +146 577.7475 581.625 1000 50 0.51710737 +147 581.625 585.5025 1000 50 0.79801595 +148 585.5025 589.3800000000001 1000 50 0.9823099 +149 589.38 593.2575 1000 50 0.9988494 +150 593.2575 597.1350000000001 1000 50 0.9348664 +151 597.135 601.0125 1000 50 0.9885582 +152 601.0125 604.8900000000001 1000 50 0.5074651 +153 604.89 608.7675 1000 50 0.9999993 +154 608.7675 612.6450000000001 1000 50 0.98315305 +155 612.645 616.5225 1000 50 0.99956626 +156 620.4 624.2775 1000 50 0.99989986 +157 624.2775 628.1550000000001 1000 50 0.9955226 +158 628.155 632.0325 1000 50 0.9963977 +159 632.0325 635.9100000000001 1000 50 0.9708104 +160 635.91 639.7875 1000 50 0.92904556 +161 639.7875 643.6650000000001 1000 50 0.9805784 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_19-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_19-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..91ad3431a5d7330dd45875a78f8879bc08bd4fbf --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_19-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,227 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9892265 +2 3.8775 7.755 1000 50 0.68983686 +3 7.755 11.6325 1000 50 0.9949462 +4 11.6325 15.51 1000 50 0.99972826 +5 15.51 19.3875 1000 50 0.9997459 +6 23.265 27.142500000000002 1000 50 0.97134227 +7 27.1425 31.02 1000 50 0.9997389 +8 31.02 34.8975 1000 50 0.9304547 +9 34.8975 38.775 1000 50 0.6958477 +10 38.775 42.652499999999996 1000 50 0.98085517 +11 42.6525 46.53 1000 50 0.60691595 +12 46.53 50.4075 1000 50 0.9685725 +13 50.4075 54.285 1000 50 0.95069194 +14 54.285 58.162499999999994 1000 50 0.9670931 +15 58.1625 62.04 1000 50 0.6623595 +16 62.04 65.9175 1000 50 0.9528772 +17 69.795 73.6725 1000 50 0.995799 +18 73.6725 77.55 1000 50 0.99964833 +19 77.55 81.4275 1000 50 0.999913 +20 81.4275 85.30499999999999 1000 50 0.9996989 +21 85.305 89.1825 1000 50 0.99793696 +22 89.1825 93.06 1000 50 0.99515015 +23 93.06 96.9375 1000 50 0.99232423 +24 96.9375 100.815 1000 50 0.9998241 +25 100.815 104.6925 1000 50 0.9747347 +26 104.6925 108.57 1000 50 0.992031 +27 108.57 112.44749999999999 1000 50 0.99080545 +28 112.4475 116.325 1000 50 0.9999988 +29 116.325 120.2025 1000 50 0.9141811 +30 120.2025 124.08 1000 50 0.9655209 +31 124.08 127.9575 1000 50 0.98126113 +32 131.835 135.7125 1000 50 0.9818289 +33 135.7125 139.59 1000 50 0.94732046 +34 139.59 143.4675 1000 50 0.99980015 +35 143.4675 147.345 1000 50 0.9999888 +36 147.345 151.2225 1000 50 0.79883677 +37 151.2225 155.1 1000 50 0.99999297 +38 155.1 158.9775 1000 50 0.9624765 +39 158.9775 162.855 1000 50 0.9999976 +40 162.855 166.7325 1000 50 0.99992895 +41 166.7325 170.60999999999999 1000 50 0.5920181 +42 170.61 174.4875 1000 50 0.99999285 +43 174.4875 178.365 1000 50 0.9997905 +44 182.2425 186.12 1000 50 0.5023957 +45 186.12 189.9975 1000 50 0.9973816 +46 193.875 197.7525 1000 50 0.8854402 +47 197.7525 201.63 1000 50 0.9973652 +48 201.63 205.5075 1000 50 0.9738897 +49 209.385 213.2625 1000 50 0.9985801 +50 213.2625 217.14 1000 50 0.7665714 +51 217.14 221.01749999999998 1000 50 0.8438072 +52 221.0175 224.895 1000 50 0.9976248 +53 224.895 228.7725 1000 50 0.99890673 +54 232.65 236.5275 1000 50 0.99208975 +55 240.405 244.2825 1000 50 0.9997004 +56 244.2825 248.16 1000 50 0.99837804 +57 248.16 252.0375 1000 50 0.99527454 +58 252.0375 255.915 1000 50 0.99994314 +59 255.915 259.7925 1000 50 0.9827911 +60 259.7925 263.67 1000 50 0.99938846 +61 263.67 267.5475 1000 50 0.9996569 +62 267.5475 271.425 1000 50 0.99992836 +63 271.425 275.3025 1000 50 0.99999845 +64 275.3025 279.18 1000 50 0.9883101 +65 279.18 283.0575 1000 50 0.99999917 +66 283.0575 286.935 1000 50 0.99977595 +67 286.935 290.8125 1000 50 0.9800978 +68 290.8125 294.69 1000 50 0.99999964 +69 294.69 298.5675 1000 50 0.9999999 +70 298.5675 302.445 1000 50 0.99996257 +71 302.445 306.3225 1000 50 0.999998 +72 306.3225 310.2 1000 50 0.999928 +73 310.2 314.0775 1000 50 0.9959496 +74 314.0775 317.955 1000 50 0.99991715 +75 317.955 321.8325 1000 50 0.99998295 +76 321.8325 325.71 1000 50 0.95400655 +77 325.71 329.5875 1000 50 0.99999976 +78 329.5875 333.465 1000 50 0.99997723 +79 333.465 337.3425 1000 50 0.9999964 +80 337.3425 341.21999999999997 1000 50 0.9987704 +81 341.22 345.0975 1000 50 0.99873763 +82 348.975 352.8525 1000 50 0.999998 +83 352.8525 356.73 1000 50 0.999997 +84 356.73 360.6075 1000 50 0.9988304 +85 360.6075 364.485 1000 50 0.99980336 +86 364.485 368.3625 1000 50 0.70729554 +87 368.3625 372.24 1000 50 0.6750242 +88 372.24 376.1175 1000 50 0.9945734 +89 376.1175 379.995 1000 50 0.98895895 +90 379.995 383.8725 1000 50 0.9999788 +91 383.8725 387.75 1000 50 0.9940082 +92 387.75 391.6275 1000 50 0.90903896 +93 395.505 399.3825 1000 50 0.6632586 +94 399.3825 403.26 1000 50 0.9985648 +95 403.26 407.1375 1000 50 0.9851874 +96 407.1375 411.015 1000 50 0.9993525 +97 418.77 422.6475 1000 50 0.94143397 +98 422.6475 426.525 1000 50 0.999995 +99 426.525 430.4025 1000 50 0.9879654 +100 430.4025 434.28 1000 50 0.9087912 +101 434.28 438.15749999999997 1000 50 0.9984836 +102 438.1575 442.035 1000 50 0.86256254 +103 445.9125 449.79 1000 50 0.9021253 +104 449.79 453.6675 1000 50 0.79934347 +105 453.6675 457.545 1000 50 0.8830671 +106 457.545 461.4225 1000 50 0.82774776 +107 461.4225 465.3 1000 50 0.9748259 +108 465.3 469.1775 1000 50 0.9939628 +109 469.1775 473.055 1000 50 0.65111375 +110 473.055 476.9325 1000 50 0.9600129 +111 476.9325 480.81 1000 50 0.9986754 +112 480.81 484.6875 1000 50 0.99847656 +113 484.6875 488.565 1000 50 0.99995637 +114 488.565 492.4425 1000 50 0.9717845 +115 492.4425 496.32 1000 50 0.9999993 +116 496.32 500.1975 1000 50 0.84047806 +117 500.1975 504.075 1000 50 0.95786905 +118 504.075 507.9525 1000 50 0.9991374 +119 507.9525 511.83 1000 50 0.9999994 +120 511.83 515.7075 1000 50 0.98792636 +121 515.7075 519.585 1000 50 0.9993579 +122 519.585 523.4625000000001 1000 50 0.9999982 +123 523.4625 527.34 1000 50 0.9995414 +124 527.34 531.2175000000001 1000 50 0.99995756 +125 531.2175 535.095 1000 50 0.9999962 +126 535.095 538.9725000000001 1000 50 0.7576656 +127 538.9725 542.85 1000 50 0.9999988 +128 542.85 546.7275000000001 1000 50 0.9999113 +129 546.7275 550.605 1000 50 0.9762082 +130 550.605 554.4825000000001 1000 50 0.9999572 +131 554.4825 558.36 1000 50 0.99999833 +132 558.36 562.2375000000001 1000 50 0.99998415 +133 562.2375 566.115 1000 50 0.99868506 +134 566.115 569.9925000000001 1000 50 0.9995115 +135 569.9925 573.87 1000 50 0.52657783 +136 573.87 577.7475000000001 1000 50 0.9992687 +137 577.7475 581.625 1000 50 0.99999654 +138 581.625 585.5025 1000 50 0.9851939 +139 585.5025 589.3800000000001 1000 50 0.89428914 +140 589.38 593.2575 1000 50 0.999984 +141 593.2575 597.1350000000001 1000 50 0.995388 +142 597.135 601.0125 1000 50 0.9967339 +143 601.0125 604.8900000000001 1000 50 0.6971255 +144 604.89 608.7675 1000 50 0.88984936 +145 608.7675 612.6450000000001 1000 50 0.99765366 +146 612.645 616.5225 1000 50 0.99844944 +147 616.5225 620.4000000000001 1000 50 0.9799248 +148 620.4 624.2775 1000 50 0.9999962 +149 624.2775 628.1550000000001 1000 50 0.9999255 +150 628.155 632.0325 1000 50 0.9997179 +151 632.0325 635.9100000000001 1000 50 0.96552646 +152 635.91 639.7875 1000 50 0.96595496 +153 639.7875 643.6650000000001 1000 50 0.999796 +154 643.665 647.5425 1000 50 0.97313833 +155 647.5425 651.4200000000001 1000 50 0.99998975 +156 651.42 655.2975 1000 50 0.72164553 +157 655.2975 659.1750000000001 1000 50 0.9946713 +158 659.175 663.0525 1000 50 0.993911 +159 663.0525 666.9300000000001 1000 50 0.9995178 +160 666.93 670.8075 1000 50 0.99149746 +161 670.8075 674.6850000000001 1000 50 0.8326544 +162 674.685 678.5625 1000 50 0.99989223 +163 678.5625 682.44 1000 50 0.9829265 +164 682.44 686.3175000000001 1000 50 0.9438027 +165 690.195 694.0725000000001 1000 50 0.9879594 +166 694.0725 697.95 1000 50 0.99990296 +167 697.95 701.8275000000001 1000 50 0.99997866 +168 701.8275 705.705 1000 50 0.99990845 +169 705.705 709.5825000000001 1000 50 0.9999703 +170 709.5825 713.46 1000 50 0.9714633 +171 713.46 717.3375000000001 1000 50 0.998725 +172 717.3375 721.215 1000 50 0.9999999 +173 721.215 725.0925000000001 1000 50 0.9913809 +174 725.0925 728.97 1000 50 0.89255 +175 728.97 732.8475000000001 1000 50 0.8309319 +176 732.8475 736.725 1000 50 0.9999758 +177 736.725 740.6025000000001 1000 50 0.9853564 +178 740.6025 744.48 1000 50 0.9229467 +179 744.48 748.3575000000001 1000 50 0.9980903 +180 748.3575 752.235 1000 50 0.99907243 +181 756.1125 759.99 1000 50 0.9376861 +182 759.99 763.8675000000001 1000 50 0.96571887 +183 763.8675 767.745 1000 50 0.86448544 +184 767.745 771.6225000000001 1000 50 0.997088 +185 771.6225 775.5 1000 50 0.9847317 +186 779.3775 783.2550000000001 1000 50 0.99900997 +187 783.255 787.1325 1000 50 0.9475075 +188 787.1325 791.0100000000001 1000 50 0.9012501 +189 791.01 794.8875 1000 50 0.99694794 +190 798.765 802.6425 1000 50 0.9641288 +191 806.52 810.3975 1000 50 0.99972504 +192 810.3975 814.2750000000001 1000 50 0.9343532 +193 814.275 818.1525 1000 50 0.88645446 +194 818.1525 822.0300000000001 1000 50 0.999931 +195 822.03 825.9075 1000 50 0.9978992 +196 825.9075 829.7850000000001 1000 50 0.99990606 +197 829.785 833.6625 1000 50 0.99918526 +198 833.6625 837.5400000000001 1000 50 0.98934466 +199 837.54 841.4175 1000 50 0.6585314 +200 841.4175 845.2950000000001 1000 50 0.93787277 +201 845.295 849.1725 1000 50 0.9950583 +202 849.1725 853.0500000000001 1000 50 0.7059551 +203 853.05 856.9275 1000 50 0.976227 +204 856.9275 860.8050000000001 1000 50 0.9404832 +205 860.805 864.6825 1000 50 0.9900997 +206 864.6825 868.5600000000001 1000 50 0.9984131 +207 872.4375 876.315 1000 50 0.9998672 +208 880.1925 884.07 1000 50 0.98317057 +209 884.07 887.9475000000001 1000 50 0.9988304 +210 887.9475 891.825 1000 50 0.9825968 +211 891.825 895.7025000000001 1000 50 0.9998276 +212 895.7025 899.58 1000 50 0.9999913 +213 899.58 903.4575000000001 1000 50 0.52312696 +214 903.4575 907.335 1000 50 0.9964101 +215 907.335 911.2125000000001 1000 50 0.9217576 +216 911.2125 915.09 1000 50 0.8311069 +217 915.09 918.9675000000001 1000 50 0.774039 +218 918.9675 922.845 1000 50 0.98927456 +219 922.845 926.7225000000001 1000 50 0.985769 +220 926.7225 930.6 1000 50 0.9472335 +221 930.6 934.4775000000001 1000 50 0.9203505 +222 934.4775 938.355 1000 50 0.9999809 +223 938.355 942.2325000000001 1000 50 0.648446 +224 942.2325 946.11 1000 50 0.9985507 +225 946.11 949.9875000000001 1000 50 0.5198373 +226 953.865 957.7425000000001 1000 50 0.7917083 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_19-19-35_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_19-19-35_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5e5d953791f47ac5f1f14243b1740455e5d49ebc --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_19-19-35_annot_2022-11-30_01.txt @@ -0,0 +1,77 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9995802 +2 3.8775 7.755 1000 50 0.9995765 +3 7.755 11.6325 1000 50 0.9994288 +4 11.6325 15.51 1000 50 0.99996316 +5 15.51 19.3875 1000 50 0.99997914 +6 19.3875 23.265 1000 50 0.9954071 +7 23.265 27.142500000000002 1000 50 0.9032994 +8 27.1425 31.02 1000 50 0.99371403 +9 31.02 34.8975 1000 50 0.98052233 +10 38.775 42.652499999999996 1000 50 0.963155 +11 42.6525 46.53 1000 50 0.99987936 +12 46.53 50.4075 1000 50 0.55329686 +13 50.4075 54.285 1000 50 0.85866433 +14 54.285 58.162499999999994 1000 50 0.9999914 +15 58.1625 62.04 1000 50 0.95258766 +16 62.04 65.9175 1000 50 0.90767324 +17 65.9175 69.795 1000 50 0.9668073 +18 69.795 73.6725 1000 50 0.99980706 +19 73.6725 77.55 1000 50 0.98491746 +20 77.55 81.4275 1000 50 0.99987626 +21 81.4275 85.30499999999999 1000 50 0.9992793 +22 85.305 89.1825 1000 50 0.9999999 +23 89.1825 93.06 1000 50 0.97479624 +24 93.06 96.9375 1000 50 0.9995627 +25 96.9375 100.815 1000 50 0.99998724 +26 100.815 104.6925 1000 50 0.9943657 +27 104.6925 108.57 1000 50 0.9582549 +28 108.57 112.44749999999999 1000 50 0.89894927 +29 112.4475 116.325 1000 50 0.99900407 +30 116.325 120.2025 1000 50 0.99969673 +31 120.2025 124.08 1000 50 0.9604018 +32 124.08 127.9575 1000 50 0.709056 +33 127.9575 131.835 1000 50 0.99911886 +34 139.59 143.4675 1000 50 0.9999335 +35 147.345 151.2225 1000 50 0.9995653 +36 151.2225 155.1 1000 50 0.99909997 +37 155.1 158.9775 1000 50 0.8159079 +38 158.9775 162.855 1000 50 0.99987257 +39 162.855 166.7325 1000 50 0.92364526 +40 170.61 174.4875 1000 50 0.7380545 +41 174.4875 178.365 1000 50 0.9944819 +42 182.2425 186.12 1000 50 0.95830333 +43 189.9975 193.875 1000 50 0.9994442 +44 193.875 197.7525 1000 50 0.9474293 +45 197.7525 201.63 1000 50 0.999049 +46 201.63 205.5075 1000 50 0.99992085 +47 205.5075 209.385 1000 50 0.9321991 +48 209.385 213.2625 1000 50 0.9997379 +49 213.2625 217.14 1000 50 0.9264773 +50 217.14 221.01749999999998 1000 50 0.856141 +51 221.0175 224.895 1000 50 0.98600465 +52 224.895 228.7725 1000 50 0.9687862 +53 228.7725 232.65 1000 50 0.78971183 +54 232.65 236.5275 1000 50 0.99999356 +55 236.5275 240.405 1000 50 0.997681 +56 240.405 244.2825 1000 50 0.9994978 +57 244.2825 248.16 1000 50 0.9999981 +58 248.16 252.0375 1000 50 0.99870396 +59 252.0375 255.915 1000 50 0.99895823 +60 255.915 259.7925 1000 50 0.9999902 +61 259.7925 263.67 1000 50 0.8397681 +62 263.67 267.5475 1000 50 0.8346176 +63 267.5475 271.425 1000 50 0.9999901 +64 271.425 275.3025 1000 50 0.99972016 +65 275.3025 279.18 1000 50 0.95836085 +66 279.18 283.0575 1000 50 0.96074265 +67 283.0575 286.935 1000 50 0.9999999 +68 286.935 290.8125 1000 50 0.9997359 +69 290.8125 294.69 1000 50 0.99479103 +70 294.69 298.5675 1000 50 0.9999809 +71 298.5675 302.445 1000 50 0.99993145 +72 302.445 306.3225 1000 50 0.77815974 +73 306.3225 310.2 1000 50 0.9993814 +74 317.955 321.8325 1000 50 0.9995147 +75 321.8325 325.71 1000 50 0.6667114 +76 325.71 329.5875 1000 50 0.99627507 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_20-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_20-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a00d7aeb0607ec7983598c1f745324d07c9026e2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_20-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,305 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.98779243 +2 3.8775 7.755 1000 50 0.8852935 +3 7.755 11.6325 1000 50 0.9466407 +4 11.6325 15.51 1000 50 0.99983597 +5 15.51 19.3875 1000 50 0.9554159 +6 27.1425 31.02 1000 50 0.98944026 +7 38.775 42.652499999999996 1000 50 0.9999982 +8 42.6525 46.53 1000 50 0.99986637 +9 50.4075 54.285 1000 50 0.9998957 +10 54.285 58.162499999999994 1000 50 0.9993374 +11 58.1625 62.04 1000 50 0.99993217 +12 62.04 65.9175 1000 50 1.0 +13 65.9175 69.795 1000 50 0.99666095 +14 69.795 73.6725 1000 50 0.99999917 +15 73.6725 77.55 1000 50 0.98512655 +16 77.55 81.4275 1000 50 0.9998596 +17 81.4275 85.30499999999999 1000 50 0.9999894 +18 85.305 89.1825 1000 50 0.9998448 +19 89.1825 93.06 1000 50 0.99981004 +20 93.06 96.9375 1000 50 0.99999213 +21 96.9375 100.815 1000 50 0.99673104 +22 100.815 104.6925 1000 50 0.9999778 +23 104.6925 108.57 1000 50 0.9999999 +24 108.57 112.44749999999999 1000 50 0.99994385 +25 112.4475 116.325 1000 50 0.99999726 +26 116.325 120.2025 1000 50 0.9997632 +27 120.2025 124.08 1000 50 0.95170754 +28 124.08 127.9575 1000 50 0.999979 +29 127.9575 131.835 1000 50 0.9999808 +30 131.835 135.7125 1000 50 0.9493533 +31 135.7125 139.59 1000 50 0.999998 +32 139.59 143.4675 1000 50 0.97674656 +33 143.4675 147.345 1000 50 0.9983491 +34 147.345 151.2225 1000 50 0.9999999 +35 151.2225 155.1 1000 50 0.99987495 +36 155.1 158.9775 1000 50 0.9987565 +37 158.9775 162.855 1000 50 0.9996232 +38 162.855 166.7325 1000 50 0.85825795 +39 166.7325 170.60999999999999 1000 50 0.9939201 +40 170.61 174.4875 1000 50 0.9899782 +41 178.365 182.2425 1000 50 0.99999607 +42 182.2425 186.12 1000 50 0.99367946 +43 186.12 189.9975 1000 50 0.99997187 +44 189.9975 193.875 1000 50 0.96444374 +45 193.875 197.7525 1000 50 0.5093506 +46 197.7525 201.63 1000 50 0.85482943 +47 201.63 205.5075 1000 50 0.995369 +48 205.5075 209.385 1000 50 0.5479858 +49 209.385 213.2625 1000 50 0.99133533 +50 213.2625 217.14 1000 50 0.99903476 +51 217.14 221.01749999999998 1000 50 0.96988106 +52 221.0175 224.895 1000 50 0.97422963 +53 224.895 228.7725 1000 50 0.98491883 +54 232.65 236.5275 1000 50 0.97712475 +55 236.5275 240.405 1000 50 0.9754411 +56 240.405 244.2825 1000 50 0.98078555 +57 244.2825 248.16 1000 50 0.9999957 +58 248.16 252.0375 1000 50 0.9584212 +59 252.0375 255.915 1000 50 0.9935608 +60 255.915 259.7925 1000 50 0.9991959 +61 259.7925 263.67 1000 50 0.99137175 +62 263.67 267.5475 1000 50 0.99853945 +63 267.5475 271.425 1000 50 0.99980694 +64 271.425 275.3025 1000 50 0.9974337 +65 275.3025 279.18 1000 50 0.99999547 +66 279.18 283.0575 1000 50 0.9999999 +67 283.0575 286.935 1000 50 0.99999857 +68 286.935 290.8125 1000 50 1.0 +69 290.8125 294.69 1000 50 0.8690576 +70 294.69 298.5675 1000 50 0.862135 +71 298.5675 302.445 1000 50 0.9998016 +72 302.445 306.3225 1000 50 0.9646753 +73 306.3225 310.2 1000 50 0.9905379 +74 310.2 314.0775 1000 50 0.98414373 +75 314.0775 317.955 1000 50 0.9121211 +76 317.955 321.8325 1000 50 0.99980694 +77 325.71 329.5875 1000 50 0.99992335 +78 329.5875 333.465 1000 50 0.8985076 +79 333.465 337.3425 1000 50 0.9817207 +80 337.3425 341.21999999999997 1000 50 0.9974968 +81 341.22 345.0975 1000 50 0.9999218 +82 345.0975 348.975 1000 50 0.9999993 +83 348.975 352.8525 1000 50 0.8716278 +84 352.8525 356.73 1000 50 0.9999609 +85 356.73 360.6075 1000 50 0.9998022 +86 360.6075 364.485 1000 50 0.99606484 +87 364.485 368.3625 1000 50 0.9846746 +88 368.3625 372.24 1000 50 0.9998605 +89 372.24 376.1175 1000 50 0.999401 +90 376.1175 379.995 1000 50 0.7761429 +91 379.995 383.8725 1000 50 0.98284346 +92 383.8725 387.75 1000 50 0.97018147 +93 387.75 391.6275 1000 50 0.95458853 +94 391.6275 395.505 1000 50 0.9998883 +95 395.505 399.3825 1000 50 0.98770976 +96 399.3825 403.26 1000 50 0.9989268 +97 403.26 407.1375 1000 50 0.99639565 +98 407.1375 411.015 1000 50 0.99942243 +99 411.015 414.8925 1000 50 0.9971079 +100 414.8925 418.77 1000 50 0.9958099 +101 418.77 422.6475 1000 50 0.99996054 +102 422.6475 426.525 1000 50 0.9980725 +103 426.525 430.4025 1000 50 0.9988551 +104 430.4025 434.28 1000 50 0.9543137 +105 434.28 438.15749999999997 1000 50 0.99941564 +106 442.035 445.9125 1000 50 0.9678602 +107 445.9125 449.79 1000 50 0.99920267 +108 449.79 453.6675 1000 50 0.9851562 +109 453.6675 457.545 1000 50 0.96455926 +110 457.545 461.4225 1000 50 0.99849105 +111 461.4225 465.3 1000 50 0.9909786 +112 465.3 469.1775 1000 50 0.997095 +113 469.1775 473.055 1000 50 0.85393256 +114 473.055 476.9325 1000 50 0.81643856 +115 488.565 492.4425 1000 50 0.79351974 +116 492.4425 496.32 1000 50 0.56841886 +117 496.32 500.1975 1000 50 0.5811005 +118 500.1975 504.075 1000 50 0.9964246 +119 507.9525 511.83 1000 50 0.9101809 +120 511.83 515.7075 1000 50 0.9999913 +121 519.585 523.4625000000001 1000 50 0.99977905 +122 531.2175 535.095 1000 50 0.75654733 +123 535.095 538.9725000000001 1000 50 0.9242087 +124 538.9725 542.85 1000 50 0.99546057 +125 542.85 546.7275000000001 1000 50 0.6927858 +126 550.605 554.4825000000001 1000 50 0.6809798 +127 554.4825 558.36 1000 50 0.65714216 +128 558.36 562.2375000000001 1000 50 0.96415496 +129 562.2375 566.115 1000 50 0.9003302 +130 566.115 569.9925000000001 1000 50 0.775008 +131 569.9925 573.87 1000 50 0.9912298 +132 573.87 577.7475000000001 1000 50 0.5849905 +133 577.7475 581.625 1000 50 0.83632874 +134 581.625 585.5025 1000 50 0.98319006 +135 585.5025 589.3800000000001 1000 50 0.6911211 +136 593.2575 597.1350000000001 1000 50 0.8146571 +137 597.135 601.0125 1000 50 0.9988438 +138 604.89 608.7675 1000 50 0.9836029 +139 608.7675 612.6450000000001 1000 50 0.99999607 +140 612.645 616.5225 1000 50 0.999951 +141 616.5225 620.4000000000001 1000 50 0.9999517 +142 620.4 624.2775 1000 50 0.89671373 +143 624.2775 628.1550000000001 1000 50 1.0 +144 628.155 632.0325 1000 50 0.9876387 +145 632.0325 635.9100000000001 1000 50 0.998609 +146 635.91 639.7875 1000 50 0.99553007 +147 639.7875 643.6650000000001 1000 50 0.9910193 +148 643.665 647.5425 1000 50 0.98733795 +149 647.5425 651.4200000000001 1000 50 0.99990594 +150 651.42 655.2975 1000 50 0.9999645 +151 655.2975 659.1750000000001 1000 50 0.9924972 +152 659.175 663.0525 1000 50 0.99264824 +153 663.0525 666.9300000000001 1000 50 0.99414307 +154 666.93 670.8075 1000 50 0.99990094 +155 670.8075 674.6850000000001 1000 50 0.9966253 +156 674.685 678.5625 1000 50 0.9999943 +157 678.5625 682.44 1000 50 0.99117553 +158 682.44 686.3175000000001 1000 50 0.9999604 +159 686.3175 690.195 1000 50 0.9994362 +160 690.195 694.0725000000001 1000 50 0.99999976 +161 694.0725 697.95 1000 50 0.99984205 +162 697.95 701.8275000000001 1000 50 0.99981326 +163 701.8275 705.705 1000 50 0.99966013 +164 705.705 709.5825000000001 1000 50 0.99994195 +165 709.5825 713.46 1000 50 0.99987495 +166 713.46 717.3375000000001 1000 50 0.99987006 +167 717.3375 721.215 1000 50 0.9942731 +168 721.215 725.0925000000001 1000 50 0.9999851 +169 725.0925 728.97 1000 50 0.9966809 +170 728.97 732.8475000000001 1000 50 0.99999976 +171 732.8475 736.725 1000 50 0.8205464 +172 736.725 740.6025000000001 1000 50 0.94302404 +173 740.6025 744.48 1000 50 0.99855214 +174 744.48 748.3575000000001 1000 50 0.9946116 +175 748.3575 752.235 1000 50 0.99976474 +176 752.235 756.1125000000001 1000 50 0.99984586 +177 756.1125 759.99 1000 50 0.99999416 +178 759.99 763.8675000000001 1000 50 0.9999895 +179 763.8675 767.745 1000 50 0.9876857 +180 767.745 771.6225000000001 1000 50 1.0 +181 771.6225 775.5 1000 50 0.9907549 +182 775.5 779.3775 1000 50 0.9986964 +183 779.3775 783.2550000000001 1000 50 0.9999541 +184 783.255 787.1325 1000 50 0.92533207 +185 787.1325 791.0100000000001 1000 50 0.99986005 +186 791.01 794.8875 1000 50 0.99999046 +187 794.8875 798.7650000000001 1000 50 0.99409467 +188 798.765 802.6425 1000 50 0.9998746 +189 802.6425 806.5200000000001 1000 50 0.99999774 +190 806.52 810.3975 1000 50 0.70308733 +191 810.3975 814.2750000000001 1000 50 0.9991665 +192 814.275 818.1525 1000 50 0.9993901 +193 818.1525 822.0300000000001 1000 50 0.84279615 +194 822.03 825.9075 1000 50 0.8501391 +195 825.9075 829.7850000000001 1000 50 0.7674516 +196 829.785 833.6625 1000 50 0.6626303 +197 833.6625 837.5400000000001 1000 50 0.5937089 +198 837.54 841.4175 1000 50 0.99344987 +199 841.4175 845.2950000000001 1000 50 0.9726572 +200 845.295 849.1725 1000 50 0.79697907 +201 849.1725 853.0500000000001 1000 50 0.9964805 +202 853.05 856.9275 1000 50 0.6865135 +203 856.9275 860.8050000000001 1000 50 0.99595886 +204 860.805 864.6825 1000 50 0.97840345 +205 868.56 872.4375 1000 50 0.8826496 +206 872.4375 876.315 1000 50 0.95465773 +207 876.315 880.1925000000001 1000 50 0.99504155 +208 880.1925 884.07 1000 50 0.9998522 +209 884.07 887.9475000000001 1000 50 0.9999918 +210 887.9475 891.825 1000 50 0.99998844 +211 891.825 895.7025000000001 1000 50 0.9998468 +212 895.7025 899.58 1000 50 0.99879813 +213 899.58 903.4575000000001 1000 50 0.99944335 +214 903.4575 907.335 1000 50 0.98741966 +215 907.335 911.2125000000001 1000 50 0.9990858 +216 911.2125 915.09 1000 50 0.9999999 +217 915.09 918.9675000000001 1000 50 0.9952055 +218 918.9675 922.845 1000 50 0.99987376 +219 922.845 926.7225000000001 1000 50 0.9999753 +220 926.7225 930.6 1000 50 0.9998368 +221 930.6 934.4775000000001 1000 50 0.9999825 +222 934.4775 938.355 1000 50 0.9999994 +223 938.355 942.2325000000001 1000 50 0.9999858 +224 942.2325 946.11 1000 50 0.9999938 +225 946.11 949.9875000000001 1000 50 0.9998559 +226 949.9875 953.865 1000 50 0.99466866 +227 953.865 957.7425000000001 1000 50 0.998566 +228 957.7425 961.62 1000 50 0.9998547 +229 961.62 965.4975000000001 1000 50 0.99863297 +230 965.4975 969.375 1000 50 0.9998479 +231 969.375 973.2525 1000 50 0.98046714 +232 973.2525 977.1300000000001 1000 50 0.76261836 +233 977.13 981.0075 1000 50 0.9986947 +234 981.0075 984.8850000000001 1000 50 0.99872094 +235 984.885 988.7625 1000 50 0.9998331 +236 988.7625 992.6400000000001 1000 50 0.9998833 +237 992.64 996.5175 1000 50 0.99788994 +238 1000.395 1004.2725 1000 50 0.9920439 +239 1004.2725 1008.1500000000001 1000 50 0.9982498 +240 1012.0275 1015.9050000000001 1000 50 0.9991629 +241 1015.905 1019.7825 1000 50 0.9990429 +242 1019.7825 1023.6600000000001 1000 50 0.5812052 +243 1023.66 1027.5375 1000 50 0.96139294 +244 1027.5375 1031.415 1000 50 0.971006 +245 1031.415 1035.2925 1000 50 0.99999523 +246 1035.2925 1039.17 1000 50 0.99999833 +247 1043.0475 1046.925 1000 50 0.99994516 +248 1046.925 1050.8025 1000 50 0.99814117 +249 1050.8025 1054.68 1000 50 0.99998343 +250 1054.68 1058.5575000000001 1000 50 0.99999344 +251 1058.5575 1062.435 1000 50 0.9953219 +252 1062.435 1066.3125 1000 50 0.99755126 +253 1066.3125 1070.19 1000 50 1.0 +254 1070.19 1074.0675 1000 50 0.9999901 +255 1074.0675 1077.9450000000002 1000 50 0.98236877 +256 1077.945 1081.8225 1000 50 0.99999607 +257 1081.8225 1085.7 1000 50 0.9960471 +258 1085.7 1089.5775 1000 50 0.67635405 +259 1089.5775 1093.4550000000002 1000 50 0.9999999 +260 1093.455 1097.3325 1000 50 0.9985191 +261 1097.3325 1101.21 1000 50 0.7544424 +262 1101.21 1105.0875 1000 50 0.9713941 +263 1105.0875 1108.9650000000001 1000 50 0.66261995 +264 1112.8425 1116.72 1000 50 0.9561133 +265 1116.72 1120.5975 1000 50 0.9990879 +266 1120.5975 1124.4750000000001 1000 50 0.8996115 +267 1124.475 1128.3525 1000 50 0.9999552 +268 1128.3525 1132.23 1000 50 0.90292203 +269 1132.23 1136.1075 1000 50 0.9995704 +270 1136.1075 1139.9850000000001 1000 50 0.90458995 +271 1139.985 1143.8625 1000 50 0.98884296 +272 1143.8625 1147.74 1000 50 0.99931824 +273 1147.74 1151.6175 1000 50 0.994803 +274 1151.6175 1155.4950000000001 1000 50 0.98550564 +275 1155.495 1159.3725 1000 50 0.9937581 +276 1159.3725 1163.25 1000 50 0.9997987 +277 1163.25 1167.1275 1000 50 0.99329364 +278 1167.1275 1171.005 1000 50 0.9999999 +279 1171.005 1174.8825000000002 1000 50 0.9985868 +280 1174.8825 1178.76 1000 50 0.9999232 +281 1178.76 1182.6375 1000 50 0.9205288 +282 1182.6375 1186.515 1000 50 0.9999964 +283 1186.515 1190.3925000000002 1000 50 0.99997115 +284 1190.3925 1194.27 1000 50 0.9999914 +285 1194.27 1198.1475 1000 50 0.9982973 +286 1198.1475 1202.025 1000 50 0.9999769 +287 1202.025 1205.9025000000001 1000 50 0.9999969 +288 1205.9025 1209.78 1000 50 0.9997496 +289 1209.78 1213.6575 1000 50 0.99987507 +290 1213.6575 1217.535 1000 50 0.99987113 +291 1217.535 1221.4125000000001 1000 50 0.999806 +292 1221.4125 1225.29 1000 50 0.9080716 +293 1225.29 1229.1675 1000 50 0.9892074 +294 1229.1675 1233.045 1000 50 0.9969614 +295 1233.045 1236.9225000000001 1000 50 0.9994331 +296 1240.8 1244.6775 1000 50 0.9999937 +297 1244.6775 1248.555 1000 50 0.9999982 +298 1248.555 1252.4325000000001 1000 50 0.56253034 +299 1252.4325 1256.31 1000 50 0.9979559 +300 1256.31 1260.1875 1000 50 0.9999924 +301 1260.1875 1264.065 1000 50 0.5682326 +302 1264.065 1267.9425 1000 50 0.9999682 +303 1267.9425 1271.8200000000002 1000 50 0.99975723 +304 1271.82 1275.6975 1000 50 0.99994886 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_20-24-54_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_20-24-54_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..c66d5a9379fcc30c76956987774762c28ec2f9aa --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_20-24-54_annot_2022-11-30_01.txt @@ -0,0 +1,4 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.5734643 +2 3.8775 7.755 1000 50 0.9989054 +3 7.755 11.6325 1000 50 0.9946748 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_21-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_21-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..c63dd23d1bf204a4df5cf2892ad3b93b6eaf40da --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_21-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,370 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.7676029 +2 7.755 11.6325 1000 50 0.997212 +3 11.6325 15.51 1000 50 0.9998086 +4 15.51 19.3875 1000 50 0.9994875 +5 19.3875 23.265 1000 50 0.9999112 +6 23.265 27.142500000000002 1000 50 0.999951 +7 27.1425 31.02 1000 50 0.999995 +8 31.02 34.8975 1000 50 0.9986939 +9 34.8975 38.775 1000 50 1.0 +10 38.775 42.652499999999996 1000 50 0.99890673 +11 42.6525 46.53 1000 50 0.99988675 +12 46.53 50.4075 1000 50 1.0 +13 50.4075 54.285 1000 50 0.9999964 +14 54.285 58.162499999999994 1000 50 0.9999994 +15 58.1625 62.04 1000 50 0.99916387 +16 62.04 65.9175 1000 50 0.9996025 +17 65.9175 69.795 1000 50 1.0 +18 69.795 73.6725 1000 50 0.99999905 +19 73.6725 77.55 1000 50 0.9999813 +20 77.55 81.4275 1000 50 0.99981505 +21 81.4275 85.30499999999999 1000 50 1.0 +22 85.305 89.1825 1000 50 0.9999901 +23 89.1825 93.06 1000 50 0.9997501 +24 93.06 96.9375 1000 50 0.99999976 +25 96.9375 100.815 1000 50 0.9999459 +26 100.815 104.6925 1000 50 0.99945563 +27 104.6925 108.57 1000 50 0.9997999 +28 108.57 112.44749999999999 1000 50 0.99997854 +29 112.4475 116.325 1000 50 0.99913615 +30 116.325 120.2025 1000 50 0.9992465 +31 120.2025 124.08 1000 50 0.997851 +32 124.08 127.9575 1000 50 0.9929904 +33 127.9575 131.835 1000 50 0.9997347 +34 131.835 135.7125 1000 50 0.99995184 +35 135.7125 139.59 1000 50 0.8544377 +36 139.59 143.4675 1000 50 0.99918026 +37 143.4675 147.345 1000 50 0.99964714 +38 147.345 151.2225 1000 50 0.99992776 +39 151.2225 155.1 1000 50 0.9995204 +40 155.1 158.9775 1000 50 0.9962049 +41 158.9775 162.855 1000 50 0.9663008 +42 162.855 166.7325 1000 50 0.999995 +43 166.7325 170.60999999999999 1000 50 1.0 +44 170.61 174.4875 1000 50 0.9873417 +45 174.4875 178.365 1000 50 0.9999964 +46 178.365 182.2425 1000 50 0.9303477 +47 182.2425 186.12 1000 50 0.9997646 +48 186.12 189.9975 1000 50 0.9999845 +49 189.9975 193.875 1000 50 0.99999917 +50 193.875 197.7525 1000 50 0.99979955 +51 197.7525 201.63 1000 50 0.9997931 +52 201.63 205.5075 1000 50 0.9930298 +53 205.5075 209.385 1000 50 0.99990606 +54 209.385 213.2625 1000 50 0.9672919 +55 213.2625 217.14 1000 50 0.9955675 +56 217.14 221.01749999999998 1000 50 0.9999987 +57 221.0175 224.895 1000 50 0.9994797 +58 224.895 228.7725 1000 50 0.999984 +59 228.7725 232.65 1000 50 0.999703 +60 232.65 236.5275 1000 50 0.9997695 +61 236.5275 240.405 1000 50 0.9993543 +62 240.405 244.2825 1000 50 0.9999989 +63 244.2825 248.16 1000 50 0.99895644 +64 248.16 252.0375 1000 50 0.9811117 +65 252.0375 255.915 1000 50 0.9999918 +66 255.915 259.7925 1000 50 0.98090196 +67 259.7925 263.67 1000 50 0.9968911 +68 263.67 267.5475 1000 50 0.9998247 +69 267.5475 271.425 1000 50 0.7622515 +70 275.3025 279.18 1000 50 0.9993224 +71 279.18 283.0575 1000 50 0.99791175 +72 283.0575 286.935 1000 50 0.989512 +73 286.935 290.8125 1000 50 0.9997454 +74 290.8125 294.69 1000 50 0.98913026 +75 294.69 298.5675 1000 50 0.9985672 +76 298.5675 302.445 1000 50 0.7242701 +77 302.445 306.3225 1000 50 0.9999516 +78 306.3225 310.2 1000 50 0.9779324 +79 310.2 314.0775 1000 50 0.99701285 +80 314.0775 317.955 1000 50 0.99998474 +81 317.955 321.8325 1000 50 0.9956027 +82 321.8325 325.71 1000 50 0.92339736 +83 325.71 329.5875 1000 50 0.999987 +84 329.5875 333.465 1000 50 0.99921143 +85 333.465 337.3425 1000 50 0.99953926 +86 337.3425 341.21999999999997 1000 50 0.9998766 +87 341.22 345.0975 1000 50 0.999977 +88 345.0975 348.975 1000 50 0.99995124 +89 348.975 352.8525 1000 50 0.99999356 +90 352.8525 356.73 1000 50 0.9999789 +91 356.73 360.6075 1000 50 0.9999355 +92 360.6075 364.485 1000 50 0.99991095 +93 364.485 368.3625 1000 50 0.99997175 +94 368.3625 372.24 1000 50 0.9999999 +95 372.24 376.1175 1000 50 0.9998099 +96 376.1175 379.995 1000 50 0.9965765 +97 379.995 383.8725 1000 50 0.998691 +98 383.8725 387.75 1000 50 0.99773216 +99 387.75 391.6275 1000 50 0.8797964 +100 391.6275 395.505 1000 50 0.99905485 +101 395.505 399.3825 1000 50 0.9996445 +102 399.3825 403.26 1000 50 0.999912 +103 403.26 407.1375 1000 50 0.99999094 +104 407.1375 411.015 1000 50 0.9999676 +105 411.015 414.8925 1000 50 0.99418056 +106 414.8925 418.77 1000 50 0.85718894 +107 418.77 422.6475 1000 50 0.99820054 +108 422.6475 426.525 1000 50 0.87446725 +109 426.525 430.4025 1000 50 0.99999833 +110 430.4025 434.28 1000 50 0.99999785 +111 434.28 438.15749999999997 1000 50 0.99999475 +112 438.1575 442.035 1000 50 0.9999982 +113 442.035 445.9125 1000 50 0.9996822 +114 445.9125 449.79 1000 50 0.9996043 +115 449.79 453.6675 1000 50 0.98584056 +116 453.6675 457.545 1000 50 0.99999976 +117 457.545 461.4225 1000 50 0.9898784 +118 461.4225 465.3 1000 50 0.95902807 +119 465.3 469.1775 1000 50 0.973763 +120 469.1775 473.055 1000 50 0.99992466 +121 473.055 476.9325 1000 50 0.9999981 +122 476.9325 480.81 1000 50 0.9999994 +123 480.81 484.6875 1000 50 0.9999721 +124 484.6875 488.565 1000 50 0.9999076 +125 488.565 492.4425 1000 50 0.9995639 +126 492.4425 496.32 1000 50 0.99854314 +127 496.32 500.1975 1000 50 0.9999138 +128 500.1975 504.075 1000 50 1.0 +129 504.075 507.9525 1000 50 0.99973303 +130 507.9525 511.83 1000 50 0.99999547 +131 511.83 515.7075 1000 50 0.9999981 +132 515.7075 519.585 1000 50 0.99999964 +133 519.585 523.4625000000001 1000 50 0.9999994 +134 523.4625 527.34 1000 50 0.9999999 +135 527.34 531.2175000000001 1000 50 0.99361587 +136 531.2175 535.095 1000 50 0.9998517 +137 535.095 538.9725000000001 1000 50 0.9999695 +138 538.9725 542.85 1000 50 0.9982206 +139 542.85 546.7275000000001 1000 50 0.99996877 +140 550.605 554.4825000000001 1000 50 0.99884474 +141 554.4825 558.36 1000 50 0.9826956 +142 558.36 562.2375000000001 1000 50 0.996058 +143 562.2375 566.115 1000 50 0.99424654 +144 566.115 569.9925000000001 1000 50 0.9564944 +145 569.9925 573.87 1000 50 0.99999833 +146 573.87 577.7475000000001 1000 50 0.9891567 +147 577.7475 581.625 1000 50 0.98273313 +148 581.625 585.5025 1000 50 0.99999964 +149 585.5025 589.3800000000001 1000 50 0.9991923 +150 589.38 593.2575 1000 50 0.9982133 +151 593.2575 597.1350000000001 1000 50 0.9986162 +152 597.135 601.0125 1000 50 0.9998882 +153 601.0125 604.8900000000001 1000 50 0.60733914 +154 604.89 608.7675 1000 50 0.99534154 +155 612.645 616.5225 1000 50 0.90252995 +156 616.5225 620.4000000000001 1000 50 0.9247379 +157 628.155 632.0325 1000 50 0.9979913 +158 632.0325 635.9100000000001 1000 50 0.98917925 +159 639.7875 643.6650000000001 1000 50 0.9603368 +160 651.42 655.2975 1000 50 0.9948591 +161 655.2975 659.1750000000001 1000 50 0.8364704 +162 663.0525 666.9300000000001 1000 50 0.9979133 +163 666.93 670.8075 1000 50 0.9969118 +164 670.8075 674.6850000000001 1000 50 0.9980896 +165 674.685 678.5625 1000 50 0.99996257 +166 678.5625 682.44 1000 50 0.99999475 +167 682.44 686.3175000000001 1000 50 1.0 +168 686.3175 690.195 1000 50 0.9999926 +169 690.195 694.0725000000001 1000 50 0.8273404 +170 694.0725 697.95 1000 50 0.9987355 +171 697.95 701.8275000000001 1000 50 0.9999938 +172 701.8275 705.705 1000 50 0.97343147 +173 705.705 709.5825000000001 1000 50 0.9999987 +174 709.5825 713.46 1000 50 0.99952435 +175 713.46 717.3375000000001 1000 50 0.9999958 +176 717.3375 721.215 1000 50 0.9997639 +177 721.215 725.0925000000001 1000 50 0.99991834 +178 725.0925 728.97 1000 50 0.9999608 +179 728.97 732.8475000000001 1000 50 1.0 +180 732.8475 736.725 1000 50 0.9999453 +181 736.725 740.6025000000001 1000 50 1.0 +182 740.6025 744.48 1000 50 0.9999994 +183 744.48 748.3575000000001 1000 50 0.99999964 +184 748.3575 752.235 1000 50 0.9999857 +185 752.235 756.1125000000001 1000 50 0.9993315 +186 756.1125 759.99 1000 50 0.96868896 +187 759.99 763.8675000000001 1000 50 0.9995005 +188 763.8675 767.745 1000 50 0.70597786 +189 767.745 771.6225000000001 1000 50 0.9992163 +190 771.6225 775.5 1000 50 0.9999999 +191 775.5 779.3775 1000 50 0.99588 +192 779.3775 783.2550000000001 1000 50 0.9989531 +193 783.255 787.1325 1000 50 0.9999999 +194 787.1325 791.0100000000001 1000 50 0.9358816 +195 791.01 794.8875 1000 50 0.9998535 +196 794.8875 798.7650000000001 1000 50 0.99773467 +197 798.765 802.6425 1000 50 0.99998176 +198 802.6425 806.5200000000001 1000 50 0.99994063 +199 806.52 810.3975 1000 50 0.9987752 +200 810.3975 814.2750000000001 1000 50 0.99970007 +201 814.275 818.1525 1000 50 0.99999976 +202 818.1525 822.0300000000001 1000 50 0.9999975 +203 822.03 825.9075 1000 50 0.9992423 +204 825.9075 829.7850000000001 1000 50 0.9999641 +205 829.785 833.6625 1000 50 0.99991703 +206 833.6625 837.5400000000001 1000 50 1.0 +207 837.54 841.4175 1000 50 0.9999871 +208 841.4175 845.2950000000001 1000 50 0.9999546 +209 845.295 849.1725 1000 50 0.9999999 +210 849.1725 853.0500000000001 1000 50 0.99984086 +211 853.05 856.9275 1000 50 1.0 +212 856.9275 860.8050000000001 1000 50 1.0 +213 860.805 864.6825 1000 50 0.9996729 +214 864.6825 868.5600000000001 1000 50 0.99999404 +215 868.56 872.4375 1000 50 0.99999964 +216 876.315 880.1925000000001 1000 50 0.99999976 +217 880.1925 884.07 1000 50 0.99999976 +218 884.07 887.9475000000001 1000 50 0.97699547 +219 887.9475 891.825 1000 50 0.999997 +220 891.825 895.7025000000001 1000 50 0.9722419 +221 895.7025 899.58 1000 50 0.9981933 +222 899.58 903.4575000000001 1000 50 0.9920357 +223 903.4575 907.335 1000 50 0.99821657 +224 907.335 911.2125000000001 1000 50 0.999979 +225 911.2125 915.09 1000 50 0.99801123 +226 915.09 918.9675000000001 1000 50 0.99987555 +227 918.9675 922.845 1000 50 0.99920875 +228 922.845 926.7225000000001 1000 50 0.9999995 +229 926.7225 930.6 1000 50 0.6780421 +230 930.6 934.4775000000001 1000 50 0.66917104 +231 934.4775 938.355 1000 50 0.63696814 +232 938.355 942.2325000000001 1000 50 0.94954735 +233 942.2325 946.11 1000 50 0.9998196 +234 946.11 949.9875000000001 1000 50 0.9908861 +235 949.9875 953.865 1000 50 0.99948114 +236 953.865 957.7425000000001 1000 50 0.99364144 +237 957.7425 961.62 1000 50 0.9995072 +238 961.62 965.4975000000001 1000 50 0.9999994 +239 965.4975 969.375 1000 50 0.9670711 +240 969.375 973.2525 1000 50 0.9977883 +241 973.2525 977.1300000000001 1000 50 0.9997193 +242 977.13 981.0075 1000 50 0.9999845 +243 984.885 988.7625 1000 50 0.99845695 +244 988.7625 992.6400000000001 1000 50 0.9966786 +245 992.64 996.5175 1000 50 0.9999999 +246 996.5175 1000.3950000000001 1000 50 0.9985524 +247 1000.395 1004.2725 1000 50 0.97870946 +248 1004.2725 1008.1500000000001 1000 50 0.99901867 +249 1008.15 1012.0275 1000 50 0.99995685 +250 1012.0275 1015.9050000000001 1000 50 0.9972663 +251 1015.905 1019.7825 1000 50 0.9945964 +252 1019.7825 1023.6600000000001 1000 50 0.9999924 +253 1023.66 1027.5375 1000 50 0.9999964 +254 1027.5375 1031.415 1000 50 0.9995241 +255 1031.415 1035.2925 1000 50 0.9863782 +256 1035.2925 1039.17 1000 50 0.95486313 +257 1039.17 1043.0475000000001 1000 50 0.9984499 +258 1043.0475 1046.925 1000 50 0.985885 +259 1046.925 1050.8025 1000 50 0.99197066 +260 1050.8025 1054.68 1000 50 0.99999917 +261 1054.68 1058.5575000000001 1000 50 0.99993837 +262 1062.435 1066.3125 1000 50 0.97940105 +263 1066.3125 1070.19 1000 50 0.9993311 +264 1070.19 1074.0675 1000 50 0.9977463 +265 1074.0675 1077.9450000000002 1000 50 0.9998616 +266 1077.945 1081.8225 1000 50 0.9955379 +267 1081.8225 1085.7 1000 50 0.999634 +268 1085.7 1089.5775 1000 50 0.99990594 +269 1089.5775 1093.4550000000002 1000 50 0.9972736 +270 1093.455 1097.3325 1000 50 0.99845505 +271 1097.3325 1101.21 1000 50 0.92494446 +272 1101.21 1105.0875 1000 50 0.99950624 +273 1105.0875 1108.9650000000001 1000 50 0.9712603 +274 1108.965 1112.8425 1000 50 0.59874094 +275 1112.8425 1116.72 1000 50 0.9999089 +276 1116.72 1120.5975 1000 50 0.99732435 +277 1120.5975 1124.4750000000001 1000 50 0.99592847 +278 1124.475 1128.3525 1000 50 0.9986827 +279 1128.3525 1132.23 1000 50 0.99994457 +280 1132.23 1136.1075 1000 50 0.9999995 +281 1136.1075 1139.9850000000001 1000 50 0.99655735 +282 1139.985 1143.8625 1000 50 0.9999707 +283 1143.8625 1147.74 1000 50 0.9997075 +284 1147.74 1151.6175 1000 50 0.9999969 +285 1151.6175 1155.4950000000001 1000 50 0.9999746 +286 1155.495 1159.3725 1000 50 0.9997614 +287 1159.3725 1163.25 1000 50 0.9990565 +288 1163.25 1167.1275 1000 50 0.99999726 +289 1167.1275 1171.005 1000 50 0.98509604 +290 1171.005 1174.8825000000002 1000 50 0.9992712 +291 1174.8825 1178.76 1000 50 0.9999746 +292 1178.76 1182.6375 1000 50 0.9950295 +293 1182.6375 1186.515 1000 50 0.9995596 +294 1186.515 1190.3925000000002 1000 50 0.98942006 +295 1190.3925 1194.27 1000 50 0.85673344 +296 1194.27 1198.1475 1000 50 0.58439565 +297 1198.1475 1202.025 1000 50 0.59703314 +298 1202.025 1205.9025000000001 1000 50 0.9933965 +299 1209.78 1213.6575 1000 50 0.9702222 +300 1217.535 1221.4125000000001 1000 50 0.8854471 +301 1221.4125 1225.29 1000 50 0.7674849 +302 1225.29 1229.1675 1000 50 0.9896628 +303 1233.045 1236.9225000000001 1000 50 0.9994911 +304 1236.9225 1240.8 1000 50 0.81563103 +305 1244.6775 1248.555 1000 50 0.9899402 +306 1248.555 1252.4325000000001 1000 50 0.99902284 +307 1252.4325 1256.31 1000 50 0.99999845 +308 1256.31 1260.1875 1000 50 0.9999478 +309 1260.1875 1264.065 1000 50 0.99994826 +310 1264.065 1267.9425 1000 50 0.99999607 +311 1267.9425 1271.8200000000002 1000 50 0.9999975 +312 1271.82 1275.6975 1000 50 0.9999999 +313 1275.6975 1279.575 1000 50 0.9432955 +314 1279.575 1283.4525 1000 50 0.9999914 +315 1283.4525 1287.3300000000002 1000 50 0.999992 +316 1287.33 1291.2075 1000 50 0.9998715 +317 1291.2075 1295.085 1000 50 1.0 +318 1295.085 1298.9625 1000 50 0.9999963 +319 1298.9625 1302.8400000000001 1000 50 0.9999938 +320 1302.84 1306.7175 1000 50 0.9998529 +321 1306.7175 1310.595 1000 50 0.9999691 +322 1310.595 1314.4725 1000 50 0.99999964 +323 1314.4725 1318.3500000000001 1000 50 0.99382496 +324 1322.2275 1326.105 1000 50 0.99989724 +325 1326.105 1329.9825 1000 50 0.9999783 +326 1329.9825 1333.8600000000001 1000 50 0.99998856 +327 1333.86 1337.7375 1000 50 1.0 +328 1337.7375 1341.615 1000 50 0.99920964 +329 1341.615 1345.4925 1000 50 0.9995474 +330 1345.4925 1349.3700000000001 1000 50 0.99999726 +331 1349.37 1353.2475 1000 50 0.9999349 +332 1353.2475 1357.125 1000 50 0.99997914 +333 1357.125 1361.0025 1000 50 0.99999785 +334 1361.0025 1364.88 1000 50 0.9991493 +335 1364.88 1368.7575000000002 1000 50 0.99999964 +336 1368.7575 1372.635 1000 50 1.0 +337 1372.635 1376.5125 1000 50 1.0 +338 1376.5125 1380.39 1000 50 0.9994246 +339 1380.39 1384.2675000000002 1000 50 1.0 +340 1384.2675 1388.145 1000 50 0.99999404 +341 1388.145 1392.0225 1000 50 0.9999999 +342 1392.0225 1395.9 1000 50 0.99999905 +343 1395.9 1399.7775000000001 1000 50 0.99843186 +344 1399.7775 1403.655 1000 50 0.9999989 +345 1403.655 1407.5325 1000 50 0.9999747 +346 1407.5325 1411.41 1000 50 0.99998045 +347 1411.41 1415.2875000000001 1000 50 0.9999864 +348 1415.2875 1419.165 1000 50 0.99426126 +349 1419.165 1423.0425 1000 50 0.9998963 +350 1423.0425 1426.92 1000 50 0.9998623 +351 1426.92 1430.7975000000001 1000 50 0.99989605 +352 1430.7975 1434.675 1000 50 0.9999994 +353 1434.675 1438.5525 1000 50 0.951711 +354 1438.5525 1442.43 1000 50 1.0 +355 1442.43 1446.3075000000001 1000 50 0.99999 +356 1446.3075 1450.185 1000 50 0.9995529 +357 1450.185 1454.0625 1000 50 0.9999999 +358 1454.0625 1457.94 1000 50 0.9999999 +359 1457.94 1461.8175 1000 50 0.98955554 +360 1461.8175 1465.6950000000002 1000 50 1.0 +361 1465.695 1469.5725 1000 50 0.99986005 +362 1469.5725 1473.45 1000 50 0.99965966 +363 1473.45 1477.3275 1000 50 0.9550088 +364 1477.3275 1481.2050000000002 1000 50 1.0 +365 1481.205 1485.0825 1000 50 0.99928147 +366 1485.0825 1488.96 1000 50 0.6047905 +367 1488.96 1492.8375 1000 50 0.9892217 +368 1492.8375 1496.7150000000001 1000 50 0.999979 +369 1496.715 1500.5925 1000 50 0.99928445 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_22-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_22-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..3424108e4cce3d07bd8b4fa0b78e95303fd5bb26 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_22-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,26 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99751234 +2 3.8775 7.755 1000 50 0.9999653 +3 7.755 11.6325 1000 50 0.9999999 +4 11.6325 15.51 1000 50 0.9999975 +5 15.51 19.3875 1000 50 1.0 +6 19.3875 23.265 1000 50 0.99991846 +7 23.265 27.142500000000002 1000 50 0.99999404 +8 27.1425 31.02 1000 50 1.0 +9 31.02 34.8975 1000 50 0.99997044 +10 34.8975 38.775 1000 50 0.9999999 +11 38.775 42.652499999999996 1000 50 0.9999988 +12 42.6525 46.53 1000 50 0.99998736 +13 46.53 50.4075 1000 50 0.9997787 +14 50.4075 54.285 1000 50 1.0 +15 54.285 58.162499999999994 1000 50 0.99993384 +16 58.1625 62.04 1000 50 0.9968934 +17 62.04 65.9175 1000 50 0.99998283 +18 65.9175 69.795 1000 50 0.9999975 +19 69.795 73.6725 1000 50 0.9916072 +20 73.6725 77.55 1000 50 0.99080956 +21 77.55 81.4275 1000 50 0.99990356 +22 81.4275 85.30499999999999 1000 50 0.9999993 +23 85.305 89.1825 1000 50 0.9997694 +24 89.1825 93.06 1000 50 0.99992967 +25 93.06 96.9375 1000 50 0.9807922 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_22-05-13_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_22-05-13_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..8d3b4c8114f0474fcbc691ed5461e762acfaeb6f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_22-05-13_annot_2022-11-30_01.txt @@ -0,0 +1,299 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.998396 +2 3.8775 7.755 1000 50 0.9999733 +3 7.755 11.6325 1000 50 0.99999714 +4 11.6325 15.51 1000 50 0.9997044 +5 15.51 19.3875 1000 50 0.9974432 +6 19.3875 23.265 1000 50 0.9999945 +7 23.265 27.142500000000002 1000 50 0.9714031 +8 27.1425 31.02 1000 50 0.9999988 +9 31.02 34.8975 1000 50 0.9962296 +10 34.8975 38.775 1000 50 0.9395676 +11 38.775 42.652499999999996 1000 50 0.9997545 +12 42.6525 46.53 1000 50 0.9935428 +13 46.53 50.4075 1000 50 0.9713388 +14 50.4075 54.285 1000 50 0.98983127 +15 58.1625 62.04 1000 50 0.9980725 +16 62.04 65.9175 1000 50 0.9930374 +17 65.9175 69.795 1000 50 0.99999726 +18 69.795 73.6725 1000 50 0.99999976 +19 73.6725 77.55 1000 50 0.9872171 +20 77.55 81.4275 1000 50 0.99999857 +21 81.4275 85.30499999999999 1000 50 0.9841463 +22 85.305 89.1825 1000 50 1.0 +23 89.1825 93.06 1000 50 0.9997868 +24 93.06 96.9375 1000 50 0.9999337 +25 96.9375 100.815 1000 50 0.9999999 +26 100.815 104.6925 1000 50 0.9999981 +27 104.6925 108.57 1000 50 1.0 +28 108.57 112.44749999999999 1000 50 0.99995446 +29 112.4475 116.325 1000 50 0.9998821 +30 116.325 120.2025 1000 50 0.9999949 +31 120.2025 124.08 1000 50 0.99627376 +32 124.08 127.9575 1000 50 0.9997546 +33 127.9575 131.835 1000 50 0.9999604 +34 131.835 135.7125 1000 50 0.9999981 +35 135.7125 139.59 1000 50 0.9999051 +36 139.59 143.4675 1000 50 0.98901653 +37 143.4675 147.345 1000 50 0.99994624 +38 147.345 151.2225 1000 50 0.99419856 +39 151.2225 155.1 1000 50 0.99993074 +40 155.1 158.9775 1000 50 0.91209996 +41 158.9775 162.855 1000 50 1.0 +42 162.855 166.7325 1000 50 0.9938141 +43 166.7325 170.60999999999999 1000 50 0.99998057 +44 170.61 174.4875 1000 50 0.99869764 +45 174.4875 178.365 1000 50 0.96379185 +46 178.365 182.2425 1000 50 0.9999993 +47 182.2425 186.12 1000 50 0.9831754 +48 186.12 189.9975 1000 50 0.93533176 +49 189.9975 193.875 1000 50 0.5577334 +50 193.875 197.7525 1000 50 0.9189535 +51 197.7525 201.63 1000 50 0.9916222 +52 205.5075 209.385 1000 50 0.5178344 +53 209.385 213.2625 1000 50 0.7713243 +54 224.895 228.7725 1000 50 0.9996382 +55 228.7725 232.65 1000 50 0.99962866 +56 232.65 236.5275 1000 50 0.6447082 +57 236.5275 240.405 1000 50 0.59977967 +58 240.405 244.2825 1000 50 0.99136996 +59 244.2825 248.16 1000 50 0.99487007 +60 248.16 252.0375 1000 50 0.98654777 +61 252.0375 255.915 1000 50 0.9864666 +62 255.915 259.7925 1000 50 0.67013884 +63 259.7925 263.67 1000 50 0.7369674 +64 263.67 267.5475 1000 50 0.99953365 +65 267.5475 271.425 1000 50 0.9980274 +66 279.18 283.0575 1000 50 0.9985104 +67 283.0575 286.935 1000 50 0.9974401 +68 290.8125 294.69 1000 50 0.999164 +69 294.69 298.5675 1000 50 0.9754126 +70 298.5675 302.445 1000 50 0.93989974 +71 302.445 306.3225 1000 50 0.862287 +72 306.3225 310.2 1000 50 0.99757844 +73 310.2 314.0775 1000 50 0.9789731 +74 314.0775 317.955 1000 50 0.9911875 +75 317.955 321.8325 1000 50 0.9908585 +76 321.8325 325.71 1000 50 0.9997421 +77 325.71 329.5875 1000 50 0.9987501 +78 329.5875 333.465 1000 50 0.9994943 +79 333.465 337.3425 1000 50 0.9997253 +80 337.3425 341.21999999999997 1000 50 0.9997696 +81 341.22 345.0975 1000 50 0.99992347 +82 345.0975 348.975 1000 50 0.98571557 +83 348.975 352.8525 1000 50 0.99998236 +84 352.8525 356.73 1000 50 0.9702964 +85 356.73 360.6075 1000 50 0.9988636 +86 360.6075 364.485 1000 50 0.99999356 +87 364.485 368.3625 1000 50 0.99999917 +88 368.3625 372.24 1000 50 0.99999905 +89 372.24 376.1175 1000 50 0.93565863 +90 376.1175 379.995 1000 50 0.9998834 +91 379.995 383.8725 1000 50 0.9999999 +92 383.8725 387.75 1000 50 0.9769315 +93 387.75 391.6275 1000 50 0.9999169 +94 391.6275 395.505 1000 50 0.9561066 +95 395.505 399.3825 1000 50 0.99984276 +96 399.3825 403.26 1000 50 0.99999344 +97 403.26 407.1375 1000 50 0.9999237 +98 407.1375 411.015 1000 50 0.9999422 +99 411.015 414.8925 1000 50 0.9996824 +100 414.8925 418.77 1000 50 0.9999938 +101 418.77 422.6475 1000 50 0.9999944 +102 422.6475 426.525 1000 50 1.0 +103 426.525 430.4025 1000 50 0.98623484 +104 430.4025 434.28 1000 50 0.999992 +105 434.28 438.15749999999997 1000 50 0.99991333 +106 438.1575 442.035 1000 50 0.999332 +107 442.035 445.9125 1000 50 0.99996614 +108 445.9125 449.79 1000 50 0.9999993 +109 449.79 453.6675 1000 50 0.99998856 +110 453.6675 457.545 1000 50 0.99999 +111 457.545 461.4225 1000 50 0.9197908 +112 465.3 469.1775 1000 50 0.9996947 +113 469.1775 473.055 1000 50 0.8170355 +114 473.055 476.9325 1000 50 0.9998462 +115 476.9325 480.81 1000 50 0.6120025 +116 480.81 484.6875 1000 50 0.90822935 +117 484.6875 488.565 1000 50 0.51827383 +118 488.565 492.4425 1000 50 0.6506466 +119 492.4425 496.32 1000 50 0.82906014 +120 496.32 500.1975 1000 50 0.9997304 +121 500.1975 504.075 1000 50 0.67438865 +122 504.075 507.9525 1000 50 0.9956786 +123 507.9525 511.83 1000 50 0.98055947 +124 511.83 515.7075 1000 50 0.9998802 +125 515.7075 519.585 1000 50 0.9999894 +126 519.585 523.4625000000001 1000 50 0.9951839 +127 523.4625 527.34 1000 50 0.99999964 +128 527.34 531.2175000000001 1000 50 1.0 +129 531.2175 535.095 1000 50 0.999951 +130 535.095 538.9725000000001 1000 50 0.9999951 +131 538.9725 542.85 1000 50 0.9999887 +132 542.85 546.7275000000001 1000 50 0.99632394 +133 546.7275 550.605 1000 50 0.9999968 +134 550.605 554.4825000000001 1000 50 0.99907935 +135 554.4825 558.36 1000 50 0.9993781 +136 558.36 562.2375000000001 1000 50 0.9973909 +137 562.2375 566.115 1000 50 0.9999776 +138 566.115 569.9925000000001 1000 50 0.99986005 +139 569.9925 573.87 1000 50 0.9998223 +140 573.87 577.7475000000001 1000 50 0.9999969 +141 577.7475 581.625 1000 50 0.9999918 +142 581.625 585.5025 1000 50 0.9998821 +143 585.5025 589.3800000000001 1000 50 0.99932003 +144 589.38 593.2575 1000 50 0.9856647 +145 593.2575 597.1350000000001 1000 50 0.9991013 +146 597.135 601.0125 1000 50 0.99851674 +147 601.0125 604.8900000000001 1000 50 0.99999976 +148 604.89 608.7675 1000 50 0.90809035 +149 608.7675 612.6450000000001 1000 50 0.9990619 +150 612.645 616.5225 1000 50 1.0 +151 616.5225 620.4000000000001 1000 50 0.99999154 +152 620.4 624.2775 1000 50 1.0 +153 624.2775 628.1550000000001 1000 50 0.99998784 +154 628.155 632.0325 1000 50 0.99857044 +155 632.0325 635.9100000000001 1000 50 0.9999838 +156 635.91 639.7875 1000 50 0.9598615 +157 639.7875 643.6650000000001 1000 50 0.9999758 +158 643.665 647.5425 1000 50 0.99999976 +159 647.5425 651.4200000000001 1000 50 0.99881965 +160 651.42 655.2975 1000 50 0.9998903 +161 655.2975 659.1750000000001 1000 50 0.99995303 +162 659.175 663.0525 1000 50 0.99924135 +163 663.0525 666.9300000000001 1000 50 0.99989426 +164 666.93 670.8075 1000 50 0.9999999 +165 670.8075 674.6850000000001 1000 50 0.9966917 +166 674.685 678.5625 1000 50 0.9999994 +167 678.5625 682.44 1000 50 0.9986914 +168 682.44 686.3175000000001 1000 50 0.99998593 +169 686.3175 690.195 1000 50 0.9157365 +170 690.195 694.0725000000001 1000 50 0.9998888 +171 694.0725 697.95 1000 50 0.9867033 +172 697.95 701.8275000000001 1000 50 0.9703737 +173 701.8275 705.705 1000 50 0.99906796 +174 705.705 709.5825000000001 1000 50 0.9986952 +175 713.46 717.3375000000001 1000 50 0.9998956 +176 717.3375 721.215 1000 50 0.9925597 +177 721.215 725.0925000000001 1000 50 0.9999938 +178 725.0925 728.97 1000 50 0.99996436 +179 728.97 732.8475000000001 1000 50 0.81650627 +180 732.8475 736.725 1000 50 0.9999995 +181 736.725 740.6025000000001 1000 50 0.99970263 +182 740.6025 744.48 1000 50 0.99999964 +183 744.48 748.3575000000001 1000 50 0.9999974 +184 748.3575 752.235 1000 50 0.98979574 +185 752.235 756.1125000000001 1000 50 0.99985075 +186 756.1125 759.99 1000 50 0.995216 +187 759.99 763.8675000000001 1000 50 0.99105096 +188 763.8675 767.745 1000 50 0.9674182 +189 767.745 771.6225000000001 1000 50 0.99974257 +190 771.6225 775.5 1000 50 0.9987733 +191 775.5 779.3775 1000 50 0.9930957 +192 779.3775 783.2550000000001 1000 50 0.99812263 +193 783.255 787.1325 1000 50 0.9999976 +194 787.1325 791.0100000000001 1000 50 0.8910209 +195 791.01 794.8875 1000 50 0.9999639 +196 794.8875 798.7650000000001 1000 50 0.99968314 +197 798.765 802.6425 1000 50 1.0 +198 802.6425 806.5200000000001 1000 50 0.9976279 +199 806.52 810.3975 1000 50 1.0 +200 810.3975 814.2750000000001 1000 50 0.9996599 +201 814.275 818.1525 1000 50 0.9999857 +202 818.1525 822.0300000000001 1000 50 0.99999106 +203 822.03 825.9075 1000 50 0.999785 +204 825.9075 829.7850000000001 1000 50 0.99206114 +205 829.785 833.6625 1000 50 0.967885 +206 833.6625 837.5400000000001 1000 50 0.99857295 +207 837.54 841.4175 1000 50 0.9999943 +208 841.4175 845.2950000000001 1000 50 0.9999999 +209 845.295 849.1725 1000 50 0.99978596 +210 849.1725 853.0500000000001 1000 50 0.99999034 +211 853.05 856.9275 1000 50 0.99999535 +212 856.9275 860.8050000000001 1000 50 0.9999982 +213 860.805 864.6825 1000 50 0.9989808 +214 864.6825 868.5600000000001 1000 50 1.0 +215 868.56 872.4375 1000 50 0.9999981 +216 872.4375 876.315 1000 50 0.99986494 +217 876.315 880.1925000000001 1000 50 0.9999416 +218 880.1925 884.07 1000 50 0.9998166 +219 884.07 887.9475000000001 1000 50 0.99999535 +220 887.9475 891.825 1000 50 1.0 +221 891.825 895.7025000000001 1000 50 0.9999937 +222 895.7025 899.58 1000 50 0.98224545 +223 899.58 903.4575000000001 1000 50 0.99984574 +224 903.4575 907.335 1000 50 0.9999896 +225 907.335 911.2125000000001 1000 50 0.999645 +226 911.2125 915.09 1000 50 1.0 +227 915.09 918.9675000000001 1000 50 0.9999362 +228 918.9675 922.845 1000 50 0.99996436 +229 922.845 926.7225000000001 1000 50 0.9999999 +230 926.7225 930.6 1000 50 0.99873704 +231 930.6 934.4775000000001 1000 50 0.99683905 +232 934.4775 938.355 1000 50 1.0 +233 938.355 942.2325000000001 1000 50 0.9999548 +234 942.2325 946.11 1000 50 0.99999964 +235 946.11 949.9875000000001 1000 50 0.9918835 +236 949.9875 953.865 1000 50 0.99999917 +237 953.865 957.7425000000001 1000 50 0.9999999 +238 957.7425 961.62 1000 50 0.9979346 +239 961.62 965.4975000000001 1000 50 0.99999225 +240 965.4975 969.375 1000 50 0.9999596 +241 969.375 973.2525 1000 50 0.9997378 +242 973.2525 977.1300000000001 1000 50 0.99995756 +243 977.13 981.0075 1000 50 0.9999385 +244 981.0075 984.8850000000001 1000 50 0.9999994 +245 984.885 988.7625 1000 50 0.99997747 +246 988.7625 992.6400000000001 1000 50 0.9991548 +247 992.64 996.5175 1000 50 0.99979264 +248 996.5175 1000.3950000000001 1000 50 0.99783736 +249 1000.395 1004.2725 1000 50 0.9999629 +250 1004.2725 1008.1500000000001 1000 50 0.99983346 +251 1008.15 1012.0275 1000 50 0.9999995 +252 1012.0275 1015.9050000000001 1000 50 0.99995494 +253 1015.905 1019.7825 1000 50 0.91784567 +254 1019.7825 1023.6600000000001 1000 50 0.9999492 +255 1023.66 1027.5375 1000 50 0.99998796 +256 1027.5375 1031.415 1000 50 0.9999994 +257 1031.415 1035.2925 1000 50 0.9999999 +258 1035.2925 1039.17 1000 50 0.9994617 +259 1039.17 1043.0475000000001 1000 50 1.0 +260 1043.0475 1046.925 1000 50 0.99999833 +261 1046.925 1050.8025 1000 50 0.99997854 +262 1050.8025 1054.68 1000 50 0.9999999 +263 1054.68 1058.5575000000001 1000 50 0.994776 +264 1058.5575 1062.435 1000 50 0.99999964 +265 1062.435 1066.3125 1000 50 0.9999734 +266 1066.3125 1070.19 1000 50 0.9988919 +267 1070.19 1074.0675 1000 50 0.99680614 +268 1074.0675 1077.9450000000002 1000 50 0.9999521 +269 1077.945 1081.8225 1000 50 0.9999993 +270 1081.8225 1085.7 1000 50 0.9999925 +271 1085.7 1089.5775 1000 50 0.9998927 +272 1089.5775 1093.4550000000002 1000 50 0.9991374 +273 1093.455 1097.3325 1000 50 0.9999918 +274 1097.3325 1101.21 1000 50 0.99999285 +275 1101.21 1105.0875 1000 50 0.99999404 +276 1105.0875 1108.9650000000001 1000 50 1.0 +277 1108.965 1112.8425 1000 50 0.99996424 +278 1112.8425 1116.72 1000 50 0.9936336 +279 1116.72 1120.5975 1000 50 1.0 +280 1120.5975 1124.4750000000001 1000 50 0.99997115 +281 1124.475 1128.3525 1000 50 0.943762 +282 1128.3525 1132.23 1000 50 0.99997747 +283 1132.23 1136.1075 1000 50 0.99929774 +284 1136.1075 1139.9850000000001 1000 50 0.9999974 +285 1139.985 1143.8625 1000 50 1.0 +286 1143.8625 1147.74 1000 50 0.99989307 +287 1147.74 1151.6175 1000 50 0.9999552 +288 1151.6175 1155.4950000000001 1000 50 1.0 +289 1155.495 1159.3725 1000 50 0.9999999 +290 1159.3725 1163.25 1000 50 0.99999905 +291 1163.25 1167.1275 1000 50 1.0 +292 1167.1275 1171.005 1000 50 0.9999833 +293 1171.005 1174.8825000000002 1000 50 0.9989506 +294 1174.8825 1178.76 1000 50 0.9948488 +295 1178.76 1182.6375 1000 50 0.99922633 +296 1182.6375 1186.515 1000 50 0.99930525 +297 1186.515 1190.3925000000002 1000 50 0.99999774 +298 1190.3925 1194.27 1000 50 0.9999908 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_23-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_23-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..3d625de0e850a11a3a8035cf2762197f29726826 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_23-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,105 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99998784 +2 3.8775 7.755 1000 50 0.99975973 +3 7.755 11.6325 1000 50 0.99999964 +4 11.6325 15.51 1000 50 0.999997 +5 15.51 19.3875 1000 50 0.99999523 +6 19.3875 23.265 1000 50 0.9999987 +7 23.265 27.142500000000002 1000 50 0.9999565 +8 27.1425 31.02 1000 50 0.9999987 +9 31.02 34.8975 1000 50 0.9999999 +10 34.8975 38.775 1000 50 1.0 +11 38.775 42.652499999999996 1000 50 0.99999774 +12 42.6525 46.53 1000 50 0.9999999 +13 46.53 50.4075 1000 50 0.99999976 +14 50.4075 54.285 1000 50 0.99996686 +15 54.285 58.162499999999994 1000 50 0.9999999 +16 58.1625 62.04 1000 50 0.9999999 +17 62.04 65.9175 1000 50 0.9999999 +18 65.9175 69.795 1000 50 0.9998673 +19 69.795 73.6725 1000 50 0.99998844 +20 73.6725 77.55 1000 50 0.99999535 +21 77.55 81.4275 1000 50 0.99981457 +22 81.4275 85.30499999999999 1000 50 0.99997437 +23 85.305 89.1825 1000 50 0.9999995 +24 89.1825 93.06 1000 50 0.9998913 +25 93.06 96.9375 1000 50 0.9999988 +26 96.9375 100.815 1000 50 0.98900247 +27 100.815 104.6925 1000 50 0.9999281 +28 104.6925 108.57 1000 50 0.99999976 +29 108.57 112.44749999999999 1000 50 0.99999964 +30 112.4475 116.325 1000 50 0.99997425 +31 116.325 120.2025 1000 50 0.9999925 +32 120.2025 124.08 1000 50 0.9999304 +33 124.08 127.9575 1000 50 0.9998975 +34 127.9575 131.835 1000 50 1.0 +35 131.835 135.7125 1000 50 0.99999905 +36 135.7125 139.59 1000 50 0.9999964 +37 139.59 143.4675 1000 50 0.99992645 +38 143.4675 147.345 1000 50 0.9994764 +39 147.345 151.2225 1000 50 0.99999845 +40 151.2225 155.1 1000 50 0.99999964 +41 155.1 158.9775 1000 50 0.9999896 +42 158.9775 162.855 1000 50 0.9999796 +43 162.855 166.7325 1000 50 0.99974614 +44 166.7325 170.60999999999999 1000 50 1.0 +45 170.61 174.4875 1000 50 0.9999999 +46 174.4875 178.365 1000 50 0.9999968 +47 178.365 182.2425 1000 50 0.99997675 +48 182.2425 186.12 1000 50 1.0 +49 186.12 189.9975 1000 50 0.99999905 +50 189.9975 193.875 1000 50 0.99999654 +51 193.875 197.7525 1000 50 0.99999976 +52 197.7525 201.63 1000 50 1.0 +53 201.63 205.5075 1000 50 1.0 +54 205.5075 209.385 1000 50 0.99999976 +55 209.385 213.2625 1000 50 0.99955267 +56 213.2625 217.14 1000 50 0.9999331 +57 217.14 221.01749999999998 1000 50 0.9974679 +58 221.0175 224.895 1000 50 0.99998724 +59 224.895 228.7725 1000 50 0.9999999 +60 228.7725 232.65 1000 50 0.99999976 +61 232.65 236.5275 1000 50 0.99989915 +62 236.5275 240.405 1000 50 0.9999888 +63 240.405 244.2825 1000 50 1.0 +64 244.2825 248.16 1000 50 0.99646974 +65 248.16 252.0375 1000 50 0.9985783 +66 252.0375 255.915 1000 50 0.9999187 +67 255.915 259.7925 1000 50 1.0 +68 259.7925 263.67 1000 50 0.99997187 +69 263.67 267.5475 1000 50 0.9998654 +70 267.5475 271.425 1000 50 0.9999999 +71 271.425 275.3025 1000 50 0.99989593 +72 275.3025 279.18 1000 50 0.99941194 +73 279.18 283.0575 1000 50 0.999998 +74 283.0575 286.935 1000 50 0.87715364 +75 286.935 290.8125 1000 50 0.9969433 +76 290.8125 294.69 1000 50 0.9953342 +77 294.69 298.5675 1000 50 0.9954045 +78 298.5675 302.445 1000 50 0.9993273 +79 302.445 306.3225 1000 50 0.8984932 +80 310.2 314.0775 1000 50 0.99992275 +81 314.0775 317.955 1000 50 0.99996114 +82 317.955 321.8325 1000 50 0.8107379 +83 321.8325 325.71 1000 50 0.99812895 +84 325.71 329.5875 1000 50 0.96053857 +85 333.465 337.3425 1000 50 0.99999964 +86 337.3425 341.21999999999997 1000 50 0.99903214 +87 341.22 345.0975 1000 50 0.991364 +88 345.0975 348.975 1000 50 0.9990758 +89 348.975 352.8525 1000 50 0.9859595 +90 352.8525 356.73 1000 50 0.99451053 +91 356.73 360.6075 1000 50 0.99988735 +92 360.6075 364.485 1000 50 0.99994266 +93 364.485 368.3625 1000 50 0.99986887 +94 368.3625 372.24 1000 50 0.9974693 +95 376.1175 379.995 1000 50 0.999853 +96 379.995 383.8725 1000 50 0.9994685 +97 383.8725 387.75 1000 50 0.9944226 +98 387.75 391.6275 1000 50 0.9999999 +99 391.6275 395.505 1000 50 0.995609 +100 395.505 399.3825 1000 50 0.99993455 +101 399.3825 403.26 1000 50 0.9999975 +102 403.26 407.1375 1000 50 0.9999976 +103 407.1375 411.015 1000 50 0.9948197 +104 411.015 414.8925 1000 50 0.90274024 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_23-10-33_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_23-10-33_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..44ab895a738026e7c8667aff71a9032da691e661 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-18_2kHz/channelA_2021-03-18_23-10-33_annot_2022-11-30_01.txt @@ -0,0 +1,221 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9996904 +2 3.8775 7.755 1000 50 0.9996044 +3 7.755 11.6325 1000 50 0.99011034 +4 11.6325 15.51 1000 50 0.750566 +5 15.51 19.3875 1000 50 0.9900013 +6 19.3875 23.265 1000 50 0.9999925 +7 23.265 27.142500000000002 1000 50 0.999848 +8 27.1425 31.02 1000 50 0.9999404 +9 31.02 34.8975 1000 50 0.999592 +10 34.8975 38.775 1000 50 0.9969855 +11 38.775 42.652499999999996 1000 50 0.99812645 +12 42.6525 46.53 1000 50 0.5217036 +13 46.53 50.4075 1000 50 0.9994455 +14 50.4075 54.285 1000 50 0.6988673 +15 54.285 58.162499999999994 1000 50 0.769948 +16 58.1625 62.04 1000 50 0.99330294 +17 62.04 65.9175 1000 50 0.9039605 +18 65.9175 69.795 1000 50 0.88242936 +19 69.795 73.6725 1000 50 0.9997974 +20 73.6725 77.55 1000 50 0.99836427 +21 77.55 81.4275 1000 50 0.9994307 +22 81.4275 85.30499999999999 1000 50 0.99973434 +23 85.305 89.1825 1000 50 0.9918726 +24 89.1825 93.06 1000 50 0.9999156 +25 93.06 96.9375 1000 50 0.9998276 +26 96.9375 100.815 1000 50 0.99998045 +27 100.815 104.6925 1000 50 0.99743915 +28 104.6925 108.57 1000 50 0.9999999 +29 108.57 112.44749999999999 1000 50 0.99996674 +30 112.4475 116.325 1000 50 1.0 +31 116.325 120.2025 1000 50 1.0 +32 120.2025 124.08 1000 50 0.9999999 +33 124.08 127.9575 1000 50 1.0 +34 127.9575 131.835 1000 50 1.0 +35 131.835 135.7125 1000 50 0.9950536 +36 135.7125 139.59 1000 50 0.9999695 +37 139.59 143.4675 1000 50 1.0 +38 143.4675 147.345 1000 50 0.99977654 +39 147.345 151.2225 1000 50 1.0 +40 151.2225 155.1 1000 50 1.0 +41 155.1 158.9775 1000 50 1.0 +42 158.9775 162.855 1000 50 0.9928773 +43 162.855 166.7325 1000 50 0.99999356 +44 166.7325 170.60999999999999 1000 50 0.9999993 +45 170.61 174.4875 1000 50 0.9999995 +46 174.4875 178.365 1000 50 0.9999856 +47 178.365 182.2425 1000 50 0.9999989 +48 182.2425 186.12 1000 50 0.99997544 +49 186.12 189.9975 1000 50 0.99999666 +50 189.9975 193.875 1000 50 0.99999106 +51 193.875 197.7525 1000 50 0.9999988 +52 197.7525 201.63 1000 50 0.9999999 +53 201.63 205.5075 1000 50 0.9451992 +54 205.5075 209.385 1000 50 0.9996178 +55 209.385 213.2625 1000 50 0.9999974 +56 213.2625 217.14 1000 50 0.99954236 +57 217.14 221.01749999999998 1000 50 0.9990119 +58 221.0175 224.895 1000 50 0.99999976 +59 224.895 228.7725 1000 50 0.8895181 +60 228.7725 232.65 1000 50 1.0 +61 232.65 236.5275 1000 50 0.99766576 +62 236.5275 240.405 1000 50 0.9999995 +63 240.405 244.2825 1000 50 0.99999976 +64 244.2825 248.16 1000 50 0.99500763 +65 248.16 252.0375 1000 50 0.9999416 +66 252.0375 255.915 1000 50 0.9999987 +67 255.915 259.7925 1000 50 0.999992 +68 259.7925 263.67 1000 50 1.0 +69 263.67 267.5475 1000 50 0.9999578 +70 267.5475 271.425 1000 50 0.9997507 +71 271.425 275.3025 1000 50 1.0 +72 275.3025 279.18 1000 50 0.99999356 +73 279.18 283.0575 1000 50 0.9989994 +74 283.0575 286.935 1000 50 1.0 +75 286.935 290.8125 1000 50 0.99969184 +76 290.8125 294.69 1000 50 0.9997526 +77 294.69 298.5675 1000 50 0.99973506 +78 298.5675 302.445 1000 50 0.99973255 +79 302.445 306.3225 1000 50 0.9692283 +80 306.3225 310.2 1000 50 0.9997191 +81 310.2 314.0775 1000 50 0.9989819 +82 314.0775 317.955 1000 50 0.9999933 +83 317.955 321.8325 1000 50 0.99954575 +84 321.8325 325.71 1000 50 1.0 +85 325.71 329.5875 1000 50 1.0 +86 329.5875 333.465 1000 50 0.99999785 +87 333.465 337.3425 1000 50 0.99956733 +88 337.3425 341.21999999999997 1000 50 0.99999976 +89 341.22 345.0975 1000 50 1.0 +90 345.0975 348.975 1000 50 0.9997495 +91 348.975 352.8525 1000 50 0.9999982 +92 352.8525 356.73 1000 50 1.0 +93 356.73 360.6075 1000 50 0.99999595 +94 360.6075 364.485 1000 50 1.0 +95 364.485 368.3625 1000 50 0.99983394 +96 368.3625 372.24 1000 50 1.0 +97 372.24 376.1175 1000 50 0.99999845 +98 376.1175 379.995 1000 50 0.9999995 +99 379.995 383.8725 1000 50 0.99999654 +100 383.8725 387.75 1000 50 1.0 +101 387.75 391.6275 1000 50 0.999998 +102 391.6275 395.505 1000 50 0.999948 +103 395.505 399.3825 1000 50 0.9999783 +104 399.3825 403.26 1000 50 0.99999917 +105 403.26 407.1375 1000 50 0.9999174 +106 407.1375 411.015 1000 50 1.0 +107 411.015 414.8925 1000 50 1.0 +108 414.8925 418.77 1000 50 0.99999976 +109 418.77 422.6475 1000 50 0.9999982 +110 422.6475 426.525 1000 50 0.9994105 +111 426.525 430.4025 1000 50 0.9994911 +112 430.4025 434.28 1000 50 1.0 +113 434.28 438.15749999999997 1000 50 0.9993013 +114 438.1575 442.035 1000 50 0.9915051 +115 442.035 445.9125 1000 50 0.9999999 +116 445.9125 449.79 1000 50 0.9999995 +117 449.79 453.6675 1000 50 1.0 +118 453.6675 457.545 1000 50 0.9999981 +119 457.545 461.4225 1000 50 0.9990262 +120 461.4225 465.3 1000 50 0.99999976 +121 465.3 469.1775 1000 50 1.0 +122 469.1775 473.055 1000 50 0.9997924 +123 473.055 476.9325 1000 50 0.9999883 +124 476.9325 480.81 1000 50 0.9997609 +125 480.81 484.6875 1000 50 0.9997248 +126 484.6875 488.565 1000 50 1.0 +127 488.565 492.4425 1000 50 0.99999726 +128 492.4425 496.32 1000 50 0.9999962 +129 496.32 500.1975 1000 50 0.99999964 +130 500.1975 504.075 1000 50 1.0 +131 504.075 507.9525 1000 50 0.9999999 +132 507.9525 511.83 1000 50 1.0 +133 511.83 515.7075 1000 50 0.9999763 +134 515.7075 519.585 1000 50 0.9999039 +135 519.585 523.4625000000001 1000 50 0.97605944 +136 523.4625 527.34 1000 50 0.9999963 +137 527.34 531.2175000000001 1000 50 0.9880642 +138 531.2175 535.095 1000 50 0.8435855 +139 535.095 538.9725000000001 1000 50 0.9999875 +140 538.9725 542.85 1000 50 0.99998975 +141 542.85 546.7275000000001 1000 50 0.99967074 +142 546.7275 550.605 1000 50 0.99999213 +143 550.605 554.4825000000001 1000 50 0.99999785 +144 554.4825 558.36 1000 50 0.9999026 +145 558.36 562.2375000000001 1000 50 0.99950147 +146 566.115 569.9925000000001 1000 50 0.99873596 +147 569.9925 573.87 1000 50 0.9999274 +148 573.87 577.7475000000001 1000 50 0.9970385 +149 577.7475 581.625 1000 50 0.99975973 +150 581.625 585.5025 1000 50 0.99995005 +151 585.5025 589.3800000000001 1000 50 0.9999869 +152 589.38 593.2575 1000 50 0.99994636 +153 593.2575 597.1350000000001 1000 50 0.9999441 +154 597.135 601.0125 1000 50 0.99999905 +155 601.0125 604.8900000000001 1000 50 0.99941635 +156 604.89 608.7675 1000 50 0.9994803 +157 608.7675 612.6450000000001 1000 50 0.99988973 +158 612.645 616.5225 1000 50 0.99996173 +159 616.5225 620.4000000000001 1000 50 0.9740941 +160 620.4 624.2775 1000 50 0.9998468 +161 624.2775 628.1550000000001 1000 50 0.9999647 +162 628.155 632.0325 1000 50 0.9980774 +163 632.0325 635.9100000000001 1000 50 0.9078906 +164 635.91 639.7875 1000 50 0.9837504 +165 643.665 647.5425 1000 50 0.869739 +166 647.5425 651.4200000000001 1000 50 0.73189634 +167 659.175 663.0525 1000 50 0.72214 +168 666.93 670.8075 1000 50 0.99566686 +169 670.8075 674.6850000000001 1000 50 0.99693835 +170 674.685 678.5625 1000 50 0.99912196 +171 678.5625 682.44 1000 50 0.999532 +172 682.44 686.3175000000001 1000 50 0.9274867 +173 686.3175 690.195 1000 50 0.99617165 +174 690.195 694.0725000000001 1000 50 1.0 +175 694.0725 697.95 1000 50 0.99999547 +176 697.95 701.8275000000001 1000 50 0.9999627 +177 701.8275 705.705 1000 50 0.99997973 +178 705.705 709.5825000000001 1000 50 0.9997949 +179 709.5825 713.46 1000 50 0.9993789 +180 713.46 717.3375000000001 1000 50 0.9997205 +181 717.3375 721.215 1000 50 0.99999964 +182 721.215 725.0925000000001 1000 50 0.99999905 +183 725.0925 728.97 1000 50 0.99876165 +184 728.97 732.8475000000001 1000 50 0.99999523 +185 732.8475 736.725 1000 50 0.9998093 +186 736.725 740.6025000000001 1000 50 0.99997056 +187 740.6025 744.48 1000 50 0.999962 +188 744.48 748.3575000000001 1000 50 0.99718827 +189 748.3575 752.235 1000 50 0.99947006 +190 752.235 756.1125000000001 1000 50 0.9999994 +191 756.1125 759.99 1000 50 0.99999106 +192 759.99 763.8675000000001 1000 50 0.9999229 +193 763.8675 767.745 1000 50 0.99999976 +194 767.745 771.6225000000001 1000 50 1.0 +195 771.6225 775.5 1000 50 0.99999905 +196 775.5 779.3775 1000 50 0.9999982 +197 779.3775 783.2550000000001 1000 50 0.99888617 +198 783.255 787.1325 1000 50 0.9993917 +199 787.1325 791.0100000000001 1000 50 0.99999857 +200 791.01 794.8875 1000 50 0.9999945 +201 794.8875 798.7650000000001 1000 50 0.99904114 +202 798.765 802.6425 1000 50 0.99990356 +203 802.6425 806.5200000000001 1000 50 0.99993527 +204 806.52 810.3975 1000 50 0.9999963 +205 810.3975 814.2750000000001 1000 50 0.9999989 +206 814.275 818.1525 1000 50 0.99993134 +207 818.1525 822.0300000000001 1000 50 0.9755005 +208 822.03 825.9075 1000 50 0.9999789 +209 825.9075 829.7850000000001 1000 50 0.99998856 +210 829.785 833.6625 1000 50 0.99995697 +211 833.6625 837.5400000000001 1000 50 0.9999726 +212 837.54 841.4175 1000 50 0.95983464 +213 841.4175 845.2950000000001 1000 50 0.999997 +214 845.295 849.1725 1000 50 0.9999999 +215 849.1725 853.0500000000001 1000 50 0.9998642 +216 853.05 856.9275 1000 50 1.0 +217 856.9275 860.8050000000001 1000 50 1.0 +218 860.805 864.6825 1000 50 0.9999875 +219 864.6825 868.5600000000001 1000 50 0.9999943 +220 868.56 872.4375 1000 50 0.99971956 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_00-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_00-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d0fc67ca5ab5f48c220ebca0c0dabd853242eb79 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_00-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,185 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.999746 +2 3.8775 7.755 1000 50 0.99999964 +3 7.755 11.6325 1000 50 0.53312016 +4 11.6325 15.51 1000 50 1.0 +5 15.51 19.3875 1000 50 0.99999094 +6 19.3875 23.265 1000 50 0.99576974 +7 23.265 27.142500000000002 1000 50 0.99999917 +8 27.1425 31.02 1000 50 0.9999963 +9 34.8975 38.775 1000 50 0.99999774 +10 38.775 42.652499999999996 1000 50 0.9998274 +11 42.6525 46.53 1000 50 0.9999857 +12 46.53 50.4075 1000 50 0.99999976 +13 50.4075 54.285 1000 50 0.9992894 +14 54.285 58.162499999999994 1000 50 0.9996736 +15 58.1625 62.04 1000 50 0.9997745 +16 62.04 65.9175 1000 50 0.99911195 +17 65.9175 69.795 1000 50 0.5657836 +18 69.795 73.6725 1000 50 0.99992394 +19 73.6725 77.55 1000 50 0.9999993 +20 77.55 81.4275 1000 50 0.999915 +21 81.4275 85.30499999999999 1000 50 0.9998548 +22 85.305 89.1825 1000 50 0.9999709 +23 89.1825 93.06 1000 50 0.9999999 +24 93.06 96.9375 1000 50 1.0 +25 96.9375 100.815 1000 50 1.0 +26 100.815 104.6925 1000 50 1.0 +27 104.6925 108.57 1000 50 0.9999654 +28 108.57 112.44749999999999 1000 50 0.9993918 +29 112.4475 116.325 1000 50 1.0 +30 116.325 120.2025 1000 50 0.99991226 +31 120.2025 124.08 1000 50 1.0 +32 124.08 127.9575 1000 50 0.99999964 +33 127.9575 131.835 1000 50 0.9999875 +34 131.835 135.7125 1000 50 0.9592586 +35 135.7125 139.59 1000 50 0.9999695 +36 139.59 143.4675 1000 50 0.9999949 +37 143.4675 147.345 1000 50 0.9999999 +38 147.345 151.2225 1000 50 0.99999976 +39 151.2225 155.1 1000 50 0.99999416 +40 155.1 158.9775 1000 50 0.93964833 +41 158.9775 162.855 1000 50 1.0 +42 162.855 166.7325 1000 50 0.9999957 +43 166.7325 170.60999999999999 1000 50 0.99991906 +44 170.61 174.4875 1000 50 0.9999999 +45 174.4875 178.365 1000 50 0.9999999 +46 178.365 182.2425 1000 50 0.99999917 +47 182.2425 186.12 1000 50 0.99999344 +48 186.12 189.9975 1000 50 0.9997328 +49 189.9975 193.875 1000 50 0.99999976 +50 193.875 197.7525 1000 50 0.99943906 +51 197.7525 201.63 1000 50 0.99993026 +52 201.63 205.5075 1000 50 0.9999651 +53 205.5075 209.385 1000 50 0.9948848 +54 209.385 213.2625 1000 50 0.99870193 +55 213.2625 217.14 1000 50 1.0 +56 217.14 221.01749999999998 1000 50 0.9999789 +57 221.0175 224.895 1000 50 1.0 +58 224.895 228.7725 1000 50 0.99981123 +59 228.7725 232.65 1000 50 0.99569196 +60 232.65 236.5275 1000 50 0.9999976 +61 236.5275 240.405 1000 50 0.9999387 +62 240.405 244.2825 1000 50 0.9449529 +63 244.2825 248.16 1000 50 0.9999999 +64 248.16 252.0375 1000 50 0.9999908 +65 252.0375 255.915 1000 50 0.9999995 +66 255.915 259.7925 1000 50 0.9999994 +67 259.7925 263.67 1000 50 0.99992 +68 263.67 267.5475 1000 50 0.9529582 +69 267.5475 271.425 1000 50 0.99987376 +70 271.425 275.3025 1000 50 0.9999987 +71 275.3025 279.18 1000 50 0.9984028 +72 279.18 283.0575 1000 50 0.98669285 +73 283.0575 286.935 1000 50 0.9999999 +74 286.935 290.8125 1000 50 0.9892512 +75 290.8125 294.69 1000 50 0.9978084 +76 294.69 298.5675 1000 50 0.9998783 +77 298.5675 302.445 1000 50 0.99168867 +78 302.445 306.3225 1000 50 0.9984999 +79 306.3225 310.2 1000 50 0.99999905 +80 310.2 314.0775 1000 50 0.9916943 +81 317.955 321.8325 1000 50 0.9999404 +82 325.71 329.5875 1000 50 0.9788713 +83 329.5875 333.465 1000 50 0.9996444 +84 333.465 337.3425 1000 50 0.99984396 +85 337.3425 341.21999999999997 1000 50 0.99999857 +86 341.22 345.0975 1000 50 0.99999976 +87 345.0975 348.975 1000 50 0.99659 +88 348.975 352.8525 1000 50 0.999998 +89 352.8525 356.73 1000 50 0.97019416 +90 356.73 360.6075 1000 50 0.9999875 +91 360.6075 364.485 1000 50 0.99981827 +92 364.485 368.3625 1000 50 0.99576914 +93 368.3625 372.24 1000 50 0.99998736 +94 372.24 376.1175 1000 50 0.9999999 +95 376.1175 379.995 1000 50 0.9628052 +96 379.995 383.8725 1000 50 0.99997854 +97 383.8725 387.75 1000 50 0.99999225 +98 387.75 391.6275 1000 50 0.9997516 +99 391.6275 395.505 1000 50 0.9938811 +100 395.505 399.3825 1000 50 0.999995 +101 399.3825 403.26 1000 50 0.9828587 +102 403.26 407.1375 1000 50 0.999995 +103 407.1375 411.015 1000 50 0.9994947 +104 414.8925 418.77 1000 50 0.93817526 +105 418.77 422.6475 1000 50 0.99999976 +106 422.6475 426.525 1000 50 0.99744236 +107 426.525 430.4025 1000 50 0.9999931 +108 430.4025 434.28 1000 50 0.99999845 +109 434.28 438.15749999999997 1000 50 0.9999975 +110 438.1575 442.035 1000 50 0.9999894 +111 442.035 445.9125 1000 50 0.99999964 +112 445.9125 449.79 1000 50 1.0 +113 449.79 453.6675 1000 50 0.99953985 +114 453.6675 457.545 1000 50 0.99994636 +115 457.545 461.4225 1000 50 0.9999949 +116 461.4225 465.3 1000 50 0.9994784 +117 465.3 469.1775 1000 50 1.0 +118 469.1775 473.055 1000 50 0.9999914 +119 473.055 476.9325 1000 50 0.9997229 +120 476.9325 480.81 1000 50 0.9999999 +121 480.81 484.6875 1000 50 0.99999976 +122 484.6875 488.565 1000 50 0.9887643 +123 488.565 492.4425 1000 50 0.9999993 +124 492.4425 496.32 1000 50 1.0 +125 496.32 500.1975 1000 50 0.9999964 +126 500.1975 504.075 1000 50 1.0 +127 504.075 507.9525 1000 50 0.99998987 +128 507.9525 511.83 1000 50 0.9999987 +129 511.83 515.7075 1000 50 1.0 +130 515.7075 519.585 1000 50 0.9999995 +131 519.585 523.4625000000001 1000 50 0.99979204 +132 523.4625 527.34 1000 50 1.0 +133 527.34 531.2175000000001 1000 50 1.0 +134 531.2175 535.095 1000 50 0.9999995 +135 535.095 538.9725000000001 1000 50 1.0 +136 538.9725 542.85 1000 50 0.99934644 +137 542.85 546.7275000000001 1000 50 1.0 +138 546.7275 550.605 1000 50 0.9999999 +139 550.605 554.4825000000001 1000 50 0.9999865 +140 554.4825 558.36 1000 50 0.99962723 +141 558.36 562.2375000000001 1000 50 1.0 +142 562.2375 566.115 1000 50 0.9999994 +143 566.115 569.9925000000001 1000 50 1.0 +144 569.9925 573.87 1000 50 0.9998054 +145 573.87 577.7475000000001 1000 50 0.9996045 +146 577.7475 581.625 1000 50 0.9999981 +147 581.625 585.5025 1000 50 1.0 +148 585.5025 589.3800000000001 1000 50 0.99999976 +149 589.38 593.2575 1000 50 1.0 +150 593.2575 597.1350000000001 1000 50 0.9999701 +151 597.135 601.0125 1000 50 0.99965584 +152 601.0125 604.8900000000001 1000 50 0.9999901 +153 604.89 608.7675 1000 50 1.0 +154 608.7675 612.6450000000001 1000 50 0.99998415 +155 612.645 616.5225 1000 50 0.9999939 +156 616.5225 620.4000000000001 1000 50 1.0 +157 620.4 624.2775 1000 50 0.98343235 +158 624.2775 628.1550000000001 1000 50 0.94614035 +159 628.155 632.0325 1000 50 0.9999988 +160 632.0325 635.9100000000001 1000 50 0.99976355 +161 635.91 639.7875 1000 50 0.999997 +162 639.7875 643.6650000000001 1000 50 0.99509144 +163 643.665 647.5425 1000 50 0.9998592 +164 647.5425 651.4200000000001 1000 50 0.9999995 +165 651.42 655.2975 1000 50 1.0 +166 655.2975 659.1750000000001 1000 50 1.0 +167 659.175 663.0525 1000 50 1.0 +168 663.0525 666.9300000000001 1000 50 0.9999993 +169 666.93 670.8075 1000 50 0.99998724 +170 670.8075 674.6850000000001 1000 50 0.9999999 +171 674.685 678.5625 1000 50 0.9999933 +172 678.5625 682.44 1000 50 0.90950584 +173 682.44 686.3175000000001 1000 50 0.9999993 +174 686.3175 690.195 1000 50 0.99999964 +175 690.195 694.0725000000001 1000 50 0.99428844 +176 694.0725 697.95 1000 50 1.0 +177 697.95 701.8275000000001 1000 50 0.99999976 +178 701.8275 705.705 1000 50 0.7260691 +179 705.705 709.5825000000001 1000 50 0.99999976 +180 709.5825 713.46 1000 50 0.9972282 +181 713.46 717.3375000000001 1000 50 0.99993896 +182 717.3375 721.215 1000 50 1.0 +183 721.215 725.0925000000001 1000 50 0.99999535 +184 725.0925 728.97 1000 50 0.9999565 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_00-15-49_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_00-15-49_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..735dfe7ad3c6f6e983d2bf7599c5297d9bf32279 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_00-15-49_annot_2022-11-30_01.txt @@ -0,0 +1,145 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999676 +2 3.8775 7.755 1000 50 0.9999974 +3 7.755 11.6325 1000 50 0.99989986 +4 11.6325 15.51 1000 50 0.9995999 +5 15.51 19.3875 1000 50 0.99999976 +6 19.3875 23.265 1000 50 0.9941566 +7 23.265 27.142500000000002 1000 50 0.9999989 +8 27.1425 31.02 1000 50 0.99890876 +9 31.02 34.8975 1000 50 0.9271977 +10 34.8975 38.775 1000 50 0.9997818 +11 38.775 42.652499999999996 1000 50 1.0 +12 42.6525 46.53 1000 50 0.9999989 +13 46.53 50.4075 1000 50 0.99978477 +14 50.4075 54.285 1000 50 0.99869317 +15 54.285 58.162499999999994 1000 50 0.99977 +16 58.1625 62.04 1000 50 1.0 +17 62.04 65.9175 1000 50 0.54154503 +18 65.9175 69.795 1000 50 0.9999335 +19 69.795 73.6725 1000 50 0.9999943 +20 73.6725 77.55 1000 50 0.9999999 +21 77.55 81.4275 1000 50 0.99999917 +22 81.4275 85.30499999999999 1000 50 0.9993837 +23 85.305 89.1825 1000 50 0.9929852 +24 89.1825 93.06 1000 50 1.0 +25 93.06 96.9375 1000 50 0.9999988 +26 96.9375 100.815 1000 50 0.99999976 +27 100.815 104.6925 1000 50 0.9999988 +28 104.6925 108.57 1000 50 0.99997365 +29 108.57 112.44749999999999 1000 50 1.0 +30 112.4475 116.325 1000 50 1.0 +31 116.325 120.2025 1000 50 0.999998 +32 120.2025 124.08 1000 50 1.0 +33 124.08 127.9575 1000 50 0.99998903 +34 127.9575 131.835 1000 50 1.0 +35 131.835 135.7125 1000 50 0.99998415 +36 135.7125 139.59 1000 50 1.0 +37 139.59 143.4675 1000 50 1.0 +38 143.4675 147.345 1000 50 0.9999937 +39 147.345 151.2225 1000 50 0.9999995 +40 151.2225 155.1 1000 50 0.99998856 +41 155.1 158.9775 1000 50 0.99999464 +42 158.9775 162.855 1000 50 1.0 +43 162.855 166.7325 1000 50 0.9999962 +44 166.7325 170.60999999999999 1000 50 0.9999926 +45 170.61 174.4875 1000 50 0.99992657 +46 174.4875 178.365 1000 50 0.9999999 +47 178.365 182.2425 1000 50 0.99887747 +48 182.2425 186.12 1000 50 0.9999969 +49 186.12 189.9975 1000 50 0.9998722 +50 189.9975 193.875 1000 50 0.9996412 +51 193.875 197.7525 1000 50 1.0 +52 197.7525 201.63 1000 50 0.9841552 +53 201.63 205.5075 1000 50 0.9999635 +54 205.5075 209.385 1000 50 0.93032414 +55 209.385 213.2625 1000 50 0.99990404 +56 213.2625 217.14 1000 50 0.9993937 +57 217.14 221.01749999999998 1000 50 0.9999924 +58 221.0175 224.895 1000 50 0.9980337 +59 224.895 228.7725 1000 50 0.9999652 +60 228.7725 232.65 1000 50 0.9999732 +61 232.65 236.5275 1000 50 0.99999917 +62 236.5275 240.405 1000 50 1.0 +63 240.405 244.2825 1000 50 0.99993753 +64 244.2825 248.16 1000 50 0.99999857 +65 248.16 252.0375 1000 50 0.99996006 +66 252.0375 255.915 1000 50 0.9999615 +67 255.915 259.7925 1000 50 1.0 +68 259.7925 263.67 1000 50 0.9999577 +69 263.67 267.5475 1000 50 0.99998975 +70 267.5475 271.425 1000 50 1.0 +71 271.425 275.3025 1000 50 0.9999083 +72 275.3025 279.18 1000 50 0.9998505 +73 279.18 283.0575 1000 50 0.9999999 +74 283.0575 286.935 1000 50 0.99628806 +75 286.935 290.8125 1000 50 0.99915934 +76 290.8125 294.69 1000 50 0.99997914 +77 294.69 298.5675 1000 50 0.99999976 +78 298.5675 302.445 1000 50 0.9999995 +79 302.445 306.3225 1000 50 0.9999987 +80 306.3225 310.2 1000 50 0.99999917 +81 310.2 314.0775 1000 50 1.0 +82 314.0775 317.955 1000 50 0.9999933 +83 317.955 321.8325 1000 50 0.9999999 +84 321.8325 325.71 1000 50 0.99999976 +85 325.71 329.5875 1000 50 1.0 +86 329.5875 333.465 1000 50 1.0 +87 333.465 337.3425 1000 50 1.0 +88 337.3425 341.21999999999997 1000 50 0.9999852 +89 341.22 345.0975 1000 50 0.99997795 +90 345.0975 348.975 1000 50 1.0 +91 348.975 352.8525 1000 50 0.9999987 +92 352.8525 356.73 1000 50 0.9341486 +93 356.73 360.6075 1000 50 1.0 +94 360.6075 364.485 1000 50 0.9999999 +95 364.485 368.3625 1000 50 0.99999964 +96 368.3625 372.24 1000 50 0.99999917 +97 372.24 376.1175 1000 50 0.99941516 +98 376.1175 379.995 1000 50 0.99965096 +99 379.995 383.8725 1000 50 1.0 +100 383.8725 387.75 1000 50 0.99991643 +101 387.75 391.6275 1000 50 0.99995863 +102 391.6275 395.505 1000 50 1.0 +103 395.505 399.3825 1000 50 0.99995816 +104 399.3825 403.26 1000 50 0.99971515 +105 403.26 407.1375 1000 50 1.0 +106 407.1375 411.015 1000 50 0.97185135 +107 411.015 414.8925 1000 50 0.99999976 +108 414.8925 418.77 1000 50 0.99999917 +109 418.77 422.6475 1000 50 1.0 +110 422.6475 426.525 1000 50 0.998049 +111 426.525 430.4025 1000 50 0.9999782 +112 430.4025 434.28 1000 50 0.9999963 +113 434.28 438.15749999999997 1000 50 0.9999999 +114 438.1575 442.035 1000 50 0.9735163 +115 442.035 445.9125 1000 50 0.9995906 +116 445.9125 449.79 1000 50 1.0 +117 449.79 453.6675 1000 50 0.99999845 +118 453.6675 457.545 1000 50 1.0 +119 457.545 461.4225 1000 50 0.99999976 +120 461.4225 465.3 1000 50 0.99999905 +121 465.3 469.1775 1000 50 0.9999995 +122 469.1775 473.055 1000 50 0.99999976 +123 473.055 476.9325 1000 50 0.99991596 +124 476.9325 480.81 1000 50 0.9999449 +125 480.81 484.6875 1000 50 0.9999999 +126 484.6875 488.565 1000 50 0.9999236 +127 488.565 492.4425 1000 50 0.9999993 +128 492.4425 496.32 1000 50 0.9999975 +129 496.32 500.1975 1000 50 0.99999976 +130 500.1975 504.075 1000 50 1.0 +131 504.075 507.9525 1000 50 0.999995 +132 507.9525 511.83 1000 50 1.0 +133 511.83 515.7075 1000 50 1.0 +134 515.7075 519.585 1000 50 1.0 +135 519.585 523.4625000000001 1000 50 1.0 +136 523.4625 527.34 1000 50 0.9999362 +137 527.34 531.2175000000001 1000 50 0.99987507 +138 531.2175 535.095 1000 50 0.9999659 +139 535.095 538.9725000000001 1000 50 0.99998426 +140 538.9725 542.85 1000 50 0.9999988 +141 542.85 546.7275000000001 1000 50 1.0 +142 546.7275 550.605 1000 50 0.99999905 +143 550.605 554.4825000000001 1000 50 1.0 +144 554.4825 558.36 1000 50 0.9999163 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_01-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_01-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a45c9a1b7d5be3b26ed20bd399344790e098021c --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_01-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,261 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999615 +2 3.8775 7.755 1000 50 0.99898356 +3 7.755 11.6325 1000 50 0.99193865 +4 11.6325 15.51 1000 50 0.9999995 +5 15.51 19.3875 1000 50 1.0 +6 19.3875 23.265 1000 50 0.999913 +7 23.265 27.142500000000002 1000 50 0.9999527 +8 27.1425 31.02 1000 50 0.99998367 +9 31.02 34.8975 1000 50 0.99999964 +10 34.8975 38.775 1000 50 0.9999528 +11 38.775 42.652499999999996 1000 50 0.99999964 +12 42.6525 46.53 1000 50 0.99999976 +13 46.53 50.4075 1000 50 0.999884 +14 50.4075 54.285 1000 50 0.9998254 +15 54.285 58.162499999999994 1000 50 1.0 +16 58.1625 62.04 1000 50 0.9999 +17 62.04 65.9175 1000 50 0.9999999 +18 65.9175 69.795 1000 50 0.9997739 +19 69.795 73.6725 1000 50 0.999995 +20 73.6725 77.55 1000 50 0.9991708 +21 77.55 81.4275 1000 50 0.99206793 +22 81.4275 85.30499999999999 1000 50 0.99967575 +23 85.305 89.1825 1000 50 1.0 +24 89.1825 93.06 1000 50 0.9999982 +25 93.06 96.9375 1000 50 0.99999917 +26 96.9375 100.815 1000 50 0.99999535 +27 100.815 104.6925 1000 50 0.99947697 +28 104.6925 108.57 1000 50 0.99871576 +29 108.57 112.44749999999999 1000 50 0.9971746 +30 112.4475 116.325 1000 50 0.99996567 +31 116.325 120.2025 1000 50 0.9999875 +32 120.2025 124.08 1000 50 0.99999976 +33 124.08 127.9575 1000 50 0.8643879 +34 127.9575 131.835 1000 50 0.99996614 +35 131.835 135.7125 1000 50 0.9865509 +36 135.7125 139.59 1000 50 0.82446444 +37 139.59 143.4675 1000 50 0.99839514 +38 155.1 158.9775 1000 50 0.9886531 +39 158.9775 162.855 1000 50 0.9981517 +40 162.855 166.7325 1000 50 0.99948275 +41 166.7325 170.60999999999999 1000 50 0.9999058 +42 170.61 174.4875 1000 50 0.99991333 +43 174.4875 178.365 1000 50 0.84426093 +44 178.365 182.2425 1000 50 0.99618983 +45 182.2425 186.12 1000 50 0.9999368 +46 186.12 189.9975 1000 50 0.99994075 +47 189.9975 193.875 1000 50 0.9973132 +48 193.875 197.7525 1000 50 0.9961979 +49 201.63 205.5075 1000 50 0.8569265 +50 205.5075 209.385 1000 50 0.69443464 +51 213.2625 217.14 1000 50 0.99244833 +52 217.14 221.01749999999998 1000 50 0.9973882 +53 221.0175 224.895 1000 50 0.9989994 +54 224.895 228.7725 1000 50 0.99197197 +55 228.7725 232.65 1000 50 0.8991704 +56 236.5275 240.405 1000 50 0.9841084 +57 244.2825 248.16 1000 50 0.9996872 +58 248.16 252.0375 1000 50 0.7550509 +59 255.915 259.7925 1000 50 0.99630487 +60 259.7925 263.67 1000 50 0.88262784 +61 263.67 267.5475 1000 50 0.95052797 +62 267.5475 271.425 1000 50 0.93334645 +63 271.425 275.3025 1000 50 0.8682093 +64 275.3025 279.18 1000 50 0.9561576 +65 279.18 283.0575 1000 50 0.5521065 +66 283.0575 286.935 1000 50 0.7880573 +67 286.935 290.8125 1000 50 0.9996123 +68 290.8125 294.69 1000 50 0.99895656 +69 298.5675 302.445 1000 50 0.8290384 +70 302.445 306.3225 1000 50 0.97033924 +71 306.3225 310.2 1000 50 0.9997656 +72 310.2 314.0775 1000 50 0.99857545 +73 314.0775 317.955 1000 50 0.9999678 +74 317.955 321.8325 1000 50 0.9958215 +75 321.8325 325.71 1000 50 0.9987727 +76 325.71 329.5875 1000 50 0.9968887 +77 329.5875 333.465 1000 50 0.69996643 +78 333.465 337.3425 1000 50 0.99996877 +79 337.3425 341.21999999999997 1000 50 0.999506 +80 341.22 345.0975 1000 50 0.9999944 +81 345.0975 348.975 1000 50 0.9999807 +82 348.975 352.8525 1000 50 0.9985672 +83 352.8525 356.73 1000 50 0.9995715 +84 356.73 360.6075 1000 50 0.99999857 +85 360.6075 364.485 1000 50 0.9992774 +86 364.485 368.3625 1000 50 0.9061956 +87 368.3625 372.24 1000 50 0.9161792 +88 372.24 376.1175 1000 50 0.99403644 +89 376.1175 379.995 1000 50 0.9999995 +90 379.995 383.8725 1000 50 0.999995 +91 383.8725 387.75 1000 50 1.0 +92 387.75 391.6275 1000 50 0.9997125 +93 391.6275 395.505 1000 50 1.0 +94 395.505 399.3825 1000 50 0.997858 +95 399.3825 403.26 1000 50 0.99999917 +96 403.26 407.1375 1000 50 0.9998566 +97 407.1375 411.015 1000 50 0.999998 +98 411.015 414.8925 1000 50 0.99999976 +99 414.8925 418.77 1000 50 0.9999999 +100 418.77 422.6475 1000 50 0.9996599 +101 422.6475 426.525 1000 50 0.99999964 +102 426.525 430.4025 1000 50 0.99861276 +103 430.4025 434.28 1000 50 0.9998623 +104 434.28 438.15749999999997 1000 50 1.0 +105 438.1575 442.035 1000 50 0.99992275 +106 442.035 445.9125 1000 50 1.0 +107 445.9125 449.79 1000 50 0.999997 +108 449.79 453.6675 1000 50 0.99999475 +109 453.6675 457.545 1000 50 1.0 +110 457.545 461.4225 1000 50 0.9999937 +111 461.4225 465.3 1000 50 1.0 +112 465.3 469.1775 1000 50 1.0 +113 469.1775 473.055 1000 50 0.99735993 +114 473.055 476.9325 1000 50 1.0 +115 476.9325 480.81 1000 50 0.9999999 +116 480.81 484.6875 1000 50 0.99998486 +117 484.6875 488.565 1000 50 0.99998796 +118 488.565 492.4425 1000 50 1.0 +119 492.4425 496.32 1000 50 0.99999976 +120 496.32 500.1975 1000 50 0.9999988 +121 500.1975 504.075 1000 50 0.9999962 +122 504.075 507.9525 1000 50 0.99999976 +123 507.9525 511.83 1000 50 1.0 +124 511.83 515.7075 1000 50 0.99999714 +125 515.7075 519.585 1000 50 0.98372203 +126 519.585 523.4625000000001 1000 50 0.99999964 +127 523.4625 527.34 1000 50 0.9999993 +128 527.34 531.2175000000001 1000 50 0.99883443 +129 531.2175 535.095 1000 50 0.9998988 +130 535.095 538.9725000000001 1000 50 0.99999654 +131 538.9725 542.85 1000 50 0.9999939 +132 542.85 546.7275000000001 1000 50 1.0 +133 546.7275 550.605 1000 50 1.0 +134 550.605 554.4825000000001 1000 50 0.99999523 +135 554.4825 558.36 1000 50 0.9999944 +136 558.36 562.2375000000001 1000 50 0.99999964 +137 562.2375 566.115 1000 50 0.9999796 +138 566.115 569.9925000000001 1000 50 0.99999976 +139 569.9925 573.87 1000 50 0.99999964 +140 573.87 577.7475000000001 1000 50 0.9999758 +141 577.7475 581.625 1000 50 0.99999964 +142 581.625 585.5025 1000 50 0.99935 +143 585.5025 589.3800000000001 1000 50 0.796416 +144 589.38 593.2575 1000 50 1.0 +145 593.2575 597.1350000000001 1000 50 0.99999666 +146 597.135 601.0125 1000 50 0.99616575 +147 601.0125 604.8900000000001 1000 50 0.99998116 +148 604.89 608.7675 1000 50 0.988703 +149 608.7675 612.6450000000001 1000 50 1.0 +150 612.645 616.5225 1000 50 1.0 +151 616.5225 620.4000000000001 1000 50 0.99836653 +152 620.4 624.2775 1000 50 0.9998223 +153 624.2775 628.1550000000001 1000 50 1.0 +154 628.155 632.0325 1000 50 0.99973875 +155 632.0325 635.9100000000001 1000 50 0.99997175 +156 635.91 639.7875 1000 50 1.0 +157 639.7875 643.6650000000001 1000 50 0.99995375 +158 643.665 647.5425 1000 50 1.0 +159 647.5425 651.4200000000001 1000 50 0.77439064 +160 651.42 655.2975 1000 50 0.9997354 +161 655.2975 659.1750000000001 1000 50 0.9999999 +162 659.175 663.0525 1000 50 0.99995756 +163 663.0525 666.9300000000001 1000 50 0.9984048 +164 666.93 670.8075 1000 50 0.999972 +165 670.8075 674.6850000000001 1000 50 0.9997814 +166 674.685 678.5625 1000 50 0.9999819 +167 678.5625 682.44 1000 50 0.9999949 +168 682.44 686.3175000000001 1000 50 0.9998876 +169 686.3175 690.195 1000 50 0.99975294 +170 690.195 694.0725000000001 1000 50 0.9999994 +171 694.0725 697.95 1000 50 0.9994771 +172 697.95 701.8275000000001 1000 50 1.0 +173 701.8275 705.705 1000 50 0.99888295 +174 705.705 709.5825000000001 1000 50 0.99995756 +175 709.5825 713.46 1000 50 0.9999542 +176 713.46 717.3375000000001 1000 50 0.99986744 +177 717.3375 721.215 1000 50 0.9999144 +178 721.215 725.0925000000001 1000 50 0.9999989 +179 725.0925 728.97 1000 50 0.9999466 +180 728.97 732.8475000000001 1000 50 0.99995136 +181 732.8475 736.725 1000 50 0.9993518 +182 736.725 740.6025000000001 1000 50 1.0 +183 740.6025 744.48 1000 50 0.99999547 +184 744.48 748.3575000000001 1000 50 0.99999416 +185 748.3575 752.235 1000 50 0.99999905 +186 752.235 756.1125000000001 1000 50 1.0 +187 756.1125 759.99 1000 50 0.9999914 +188 759.99 763.8675000000001 1000 50 1.0 +189 763.8675 767.745 1000 50 0.99983275 +190 767.745 771.6225000000001 1000 50 0.99929655 +191 771.6225 775.5 1000 50 0.9997341 +192 775.5 779.3775 1000 50 0.99992204 +193 779.3775 783.2550000000001 1000 50 1.0 +194 783.255 787.1325 1000 50 0.99988866 +195 787.1325 791.0100000000001 1000 50 0.99994636 +196 791.01 794.8875 1000 50 0.9999919 +197 794.8875 798.7650000000001 1000 50 0.99999976 +198 798.765 802.6425 1000 50 0.9958501 +199 802.6425 806.5200000000001 1000 50 1.0 +200 806.52 810.3975 1000 50 0.9999999 +201 810.3975 814.2750000000001 1000 50 0.9999945 +202 814.275 818.1525 1000 50 0.9999994 +203 818.1525 822.0300000000001 1000 50 0.9997663 +204 822.03 825.9075 1000 50 1.0 +205 825.9075 829.7850000000001 1000 50 1.0 +206 829.785 833.6625 1000 50 0.99999285 +207 833.6625 837.5400000000001 1000 50 0.99999905 +208 837.54 841.4175 1000 50 0.9999999 +209 841.4175 845.2950000000001 1000 50 1.0 +210 845.295 849.1725 1000 50 1.0 +211 849.1725 853.0500000000001 1000 50 0.99999464 +212 853.05 856.9275 1000 50 0.9999999 +213 856.9275 860.8050000000001 1000 50 0.9999999 +214 860.805 864.6825 1000 50 1.0 +215 864.6825 868.5600000000001 1000 50 1.0 +216 868.56 872.4375 1000 50 0.99999976 +217 872.4375 876.315 1000 50 1.0 +218 876.315 880.1925000000001 1000 50 1.0 +219 880.1925 884.07 1000 50 0.999982 +220 884.07 887.9475000000001 1000 50 0.99999976 +221 887.9475 891.825 1000 50 0.9997135 +222 891.825 895.7025000000001 1000 50 0.9998179 +223 895.7025 899.58 1000 50 0.9999963 +224 899.58 903.4575000000001 1000 50 1.0 +225 903.4575 907.335 1000 50 0.99999154 +226 907.335 911.2125000000001 1000 50 0.99999964 +227 911.2125 915.09 1000 50 0.9999999 +228 915.09 918.9675000000001 1000 50 0.99990654 +229 918.9675 922.845 1000 50 0.99999094 +230 922.845 926.7225000000001 1000 50 1.0 +231 926.7225 930.6 1000 50 0.99999976 +232 930.6 934.4775000000001 1000 50 0.9999603 +233 934.4775 938.355 1000 50 0.99997485 +234 938.355 942.2325000000001 1000 50 0.99999726 +235 942.2325 946.11 1000 50 1.0 +236 946.11 949.9875000000001 1000 50 0.99999785 +237 949.9875 953.865 1000 50 0.9999913 +238 953.865 957.7425000000001 1000 50 1.0 +239 957.7425 961.62 1000 50 0.9998473 +240 961.62 965.4975000000001 1000 50 0.98905224 +241 965.4975 969.375 1000 50 0.8915989 +242 969.375 973.2525 1000 50 0.9999844 +243 973.2525 977.1300000000001 1000 50 0.99955827 +244 977.13 981.0075 1000 50 0.997045 +245 981.0075 984.8850000000001 1000 50 0.9997137 +246 984.885 988.7625 1000 50 0.99953246 +247 988.7625 992.6400000000001 1000 50 0.9999995 +248 992.64 996.5175 1000 50 0.9989844 +249 996.5175 1000.3950000000001 1000 50 0.9997167 +250 1000.395 1004.2725 1000 50 1.0 +251 1004.2725 1008.1500000000001 1000 50 0.99632543 +252 1008.15 1012.0275 1000 50 0.9999821 +253 1012.0275 1015.9050000000001 1000 50 0.99999785 +254 1015.905 1019.7825 1000 50 0.9999969 +255 1019.7825 1023.6600000000001 1000 50 0.9543839 +256 1023.66 1027.5375 1000 50 0.99999964 +257 1031.415 1035.2925 1000 50 0.98158354 +258 1035.2925 1039.17 1000 50 0.9992632 +259 1039.17 1043.0475000000001 1000 50 0.9821875 +260 1043.0475 1046.925 1000 50 0.8174793 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_01-21-07_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_01-21-07_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..94976385020029ae555896c21feec8ba29e93a59 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_01-21-07_annot_2022-11-30_01.txt @@ -0,0 +1,63 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99999535 +2 3.8775 7.755 1000 50 0.9999943 +3 7.755 11.6325 1000 50 0.99999714 +4 11.6325 15.51 1000 50 0.9999466 +5 15.51 19.3875 1000 50 0.9999964 +6 19.3875 23.265 1000 50 0.9999385 +7 23.265 27.142500000000002 1000 50 0.9970048 +8 27.1425 31.02 1000 50 0.99992514 +9 31.02 34.8975 1000 50 0.99999964 +10 34.8975 38.775 1000 50 0.9999739 +11 38.775 42.652499999999996 1000 50 0.9998833 +12 42.6525 46.53 1000 50 0.99998975 +13 46.53 50.4075 1000 50 0.9999013 +14 50.4075 54.285 1000 50 0.9997303 +15 54.285 58.162499999999994 1000 50 0.99999964 +16 58.1625 62.04 1000 50 0.99819237 +17 62.04 65.9175 1000 50 0.9999999 +18 65.9175 69.795 1000 50 0.99986386 +19 69.795 73.6725 1000 50 0.999818 +20 73.6725 77.55 1000 50 0.9999851 +21 77.55 81.4275 1000 50 0.99992085 +22 81.4275 85.30499999999999 1000 50 0.9959959 +23 85.305 89.1825 1000 50 0.9995239 +24 89.1825 93.06 1000 50 0.9915705 +25 93.06 96.9375 1000 50 1.0 +26 96.9375 100.815 1000 50 0.99998236 +27 100.815 104.6925 1000 50 0.99993074 +28 104.6925 108.57 1000 50 1.0 +29 108.57 112.44749999999999 1000 50 1.0 +30 112.4475 116.325 1000 50 0.99998784 +31 116.325 120.2025 1000 50 0.99953413 +32 120.2025 124.08 1000 50 0.99998295 +33 124.08 127.9575 1000 50 1.0 +34 127.9575 131.835 1000 50 0.9999995 +35 131.835 135.7125 1000 50 0.9999616 +36 135.7125 139.59 1000 50 0.99999964 +37 139.59 143.4675 1000 50 0.99999964 +38 143.4675 147.345 1000 50 0.99500567 +39 147.345 151.2225 1000 50 0.9999963 +40 151.2225 155.1 1000 50 1.0 +41 155.1 158.9775 1000 50 0.99944097 +42 158.9775 162.855 1000 50 0.9999989 +43 162.855 166.7325 1000 50 0.99975747 +44 166.7325 170.60999999999999 1000 50 0.9999999 +45 170.61 174.4875 1000 50 0.99883205 +46 174.4875 178.365 1000 50 0.99999905 +47 178.365 182.2425 1000 50 1.0 +48 182.2425 186.12 1000 50 0.9999993 +49 186.12 189.9975 1000 50 0.9998927 +50 189.9975 193.875 1000 50 0.9972101 +51 193.875 197.7525 1000 50 0.99992216 +52 197.7525 201.63 1000 50 0.99997306 +53 201.63 205.5075 1000 50 1.0 +54 205.5075 209.385 1000 50 0.9971757 +55 209.385 213.2625 1000 50 1.0 +56 213.2625 217.14 1000 50 0.9999969 +57 217.14 221.01749999999998 1000 50 0.99995005 +58 221.0175 224.895 1000 50 0.99998856 +59 224.895 228.7725 1000 50 0.99999976 +60 228.7725 232.65 1000 50 0.95338655 +61 232.65 236.5275 1000 50 0.9994349 +62 236.5275 240.405 1000 50 0.98423135 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_02-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_02-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..eb94ab96276cb6720393ee449e51a6976a545195 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_02-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,340 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9989843 +2 3.8775 7.755 1000 50 0.99999714 +3 7.755 11.6325 1000 50 0.9755196 +4 11.6325 15.51 1000 50 0.99975675 +5 15.51 19.3875 1000 50 0.9999758 +6 19.3875 23.265 1000 50 0.99999905 +7 23.265 27.142500000000002 1000 50 0.99980694 +8 27.1425 31.02 1000 50 1.0 +9 31.02 34.8975 1000 50 0.97307825 +10 34.8975 38.775 1000 50 0.99999976 +11 38.775 42.652499999999996 1000 50 0.99999905 +12 42.6525 46.53 1000 50 0.98101276 +13 46.53 50.4075 1000 50 1.0 +14 50.4075 54.285 1000 50 0.99799997 +15 54.285 58.162499999999994 1000 50 0.99993277 +16 58.1625 62.04 1000 50 0.999866 +17 62.04 65.9175 1000 50 1.0 +18 65.9175 69.795 1000 50 0.99989676 +19 69.795 73.6725 1000 50 0.99999857 +20 73.6725 77.55 1000 50 0.9999894 +21 77.55 81.4275 1000 50 0.9997291 +22 81.4275 85.30499999999999 1000 50 0.99999654 +23 85.305 89.1825 1000 50 0.9643201 +24 89.1825 93.06 1000 50 0.999995 +25 93.06 96.9375 1000 50 1.0 +26 96.9375 100.815 1000 50 0.9999547 +27 100.815 104.6925 1000 50 0.9999993 +28 104.6925 108.57 1000 50 0.99988794 +29 108.57 112.44749999999999 1000 50 1.0 +30 112.4475 116.325 1000 50 1.0 +31 116.325 120.2025 1000 50 0.99999964 +32 120.2025 124.08 1000 50 0.99975973 +33 124.08 127.9575 1000 50 0.9999976 +34 127.9575 131.835 1000 50 0.99990773 +35 131.835 135.7125 1000 50 0.9999969 +36 135.7125 139.59 1000 50 1.0 +37 139.59 143.4675 1000 50 0.9999838 +38 143.4675 147.345 1000 50 0.9413527 +39 147.345 151.2225 1000 50 0.9999999 +40 151.2225 155.1 1000 50 0.9999889 +41 155.1 158.9775 1000 50 0.99979025 +42 158.9775 162.855 1000 50 0.99999416 +43 162.855 166.7325 1000 50 0.99370664 +44 166.7325 170.60999999999999 1000 50 0.99999535 +45 170.61 174.4875 1000 50 0.99997544 +46 174.4875 178.365 1000 50 0.9998275 +47 178.365 182.2425 1000 50 0.9999999 +48 182.2425 186.12 1000 50 0.99998844 +49 186.12 189.9975 1000 50 0.9975127 +50 189.9975 193.875 1000 50 0.999997 +51 193.875 197.7525 1000 50 0.999997 +52 197.7525 201.63 1000 50 0.99990404 +53 201.63 205.5075 1000 50 0.99998665 +54 205.5075 209.385 1000 50 0.99999225 +55 209.385 213.2625 1000 50 0.9999924 +56 213.2625 217.14 1000 50 0.99998367 +57 217.14 221.01749999999998 1000 50 0.99999774 +58 221.0175 224.895 1000 50 0.99999654 +59 224.895 228.7725 1000 50 0.9998386 +60 228.7725 232.65 1000 50 0.9999995 +61 232.65 236.5275 1000 50 0.99996984 +62 236.5275 240.405 1000 50 0.99965036 +63 240.405 244.2825 1000 50 1.0 +64 244.2825 248.16 1000 50 1.0 +65 248.16 252.0375 1000 50 0.99982435 +66 252.0375 255.915 1000 50 0.99999774 +67 255.915 259.7925 1000 50 0.8479655 +68 259.7925 263.67 1000 50 0.99999094 +69 263.67 267.5475 1000 50 0.99997985 +70 267.5475 271.425 1000 50 0.99651223 +71 271.425 275.3025 1000 50 0.9998641 +72 275.3025 279.18 1000 50 0.9999788 +73 279.18 283.0575 1000 50 0.9999939 +74 283.0575 286.935 1000 50 0.99999905 +75 286.935 290.8125 1000 50 0.7188585 +76 290.8125 294.69 1000 50 0.9999869 +77 294.69 298.5675 1000 50 0.9999943 +78 298.5675 302.445 1000 50 0.9814162 +79 302.445 306.3225 1000 50 0.9999999 +80 306.3225 310.2 1000 50 0.9999628 +81 310.2 314.0775 1000 50 0.9215104 +82 314.0775 317.955 1000 50 1.0 +83 317.955 321.8325 1000 50 0.99967957 +84 321.8325 325.71 1000 50 0.8423698 +85 325.71 329.5875 1000 50 0.9999981 +86 329.5875 333.465 1000 50 0.9999324 +87 333.465 337.3425 1000 50 0.9411319 +88 337.3425 341.21999999999997 1000 50 0.99999917 +89 341.22 345.0975 1000 50 0.99984 +90 345.0975 348.975 1000 50 0.99907315 +91 348.975 352.8525 1000 50 0.9999963 +92 352.8525 356.73 1000 50 0.99999976 +93 356.73 360.6075 1000 50 0.9999988 +94 360.6075 364.485 1000 50 0.9999912 +95 364.485 368.3625 1000 50 0.998804 +96 368.3625 372.24 1000 50 0.99999964 +97 372.24 376.1175 1000 50 0.9999969 +98 376.1175 379.995 1000 50 0.99999535 +99 379.995 383.8725 1000 50 0.99945253 +100 383.8725 387.75 1000 50 0.999892 +101 387.75 391.6275 1000 50 0.99941194 +102 391.6275 395.505 1000 50 0.9999976 +103 395.505 399.3825 1000 50 0.99996233 +104 399.3825 403.26 1000 50 0.7145745 +105 403.26 407.1375 1000 50 0.9999999 +106 407.1375 411.015 1000 50 0.9994205 +107 411.015 414.8925 1000 50 0.9999682 +108 414.8925 418.77 1000 50 0.9999999 +109 418.77 422.6475 1000 50 0.9999974 +110 422.6475 426.525 1000 50 0.9999982 +111 426.525 430.4025 1000 50 0.94509685 +112 430.4025 434.28 1000 50 0.99999905 +113 434.28 438.15749999999997 1000 50 0.9999987 +114 438.1575 442.035 1000 50 0.8557768 +115 442.035 445.9125 1000 50 0.9996226 +116 445.9125 449.79 1000 50 0.9997936 +117 449.79 453.6675 1000 50 0.99999595 +118 453.6675 457.545 1000 50 0.9999958 +119 457.545 461.4225 1000 50 0.9999999 +120 461.4225 465.3 1000 50 0.9999939 +121 465.3 469.1775 1000 50 0.99998593 +122 469.1775 473.055 1000 50 0.9998331 +123 473.055 476.9325 1000 50 0.99998343 +124 476.9325 480.81 1000 50 0.99994195 +125 480.81 484.6875 1000 50 0.9999993 +126 484.6875 488.565 1000 50 0.9997876 +127 488.565 492.4425 1000 50 0.99864453 +128 492.4425 496.32 1000 50 0.99993956 +129 496.32 500.1975 1000 50 0.99900216 +130 500.1975 504.075 1000 50 0.9998776 +131 504.075 507.9525 1000 50 0.99825674 +132 507.9525 511.83 1000 50 0.9978301 +133 511.83 515.7075 1000 50 0.6305272 +134 515.7075 519.585 1000 50 0.72639066 +135 519.585 523.4625000000001 1000 50 0.9834763 +136 523.4625 527.34 1000 50 0.92715937 +137 527.34 531.2175000000001 1000 50 0.8972496 +138 535.095 538.9725000000001 1000 50 0.9820661 +139 538.9725 542.85 1000 50 0.95298624 +140 546.7275 550.605 1000 50 0.99648917 +141 550.605 554.4825000000001 1000 50 0.9769925 +142 554.4825 558.36 1000 50 0.9983418 +143 558.36 562.2375000000001 1000 50 0.8231517 +144 566.115 569.9925000000001 1000 50 0.9985448 +145 569.9925 573.87 1000 50 0.856453 +146 573.87 577.7475000000001 1000 50 0.996227 +147 581.625 585.5025 1000 50 0.98907197 +148 585.5025 589.3800000000001 1000 50 0.6723606 +149 589.38 593.2575 1000 50 0.996962 +150 593.2575 597.1350000000001 1000 50 0.7313856 +151 601.0125 604.8900000000001 1000 50 0.57932967 +152 604.89 608.7675 1000 50 0.9673486 +153 608.7675 612.6450000000001 1000 50 0.75327146 +154 612.645 616.5225 1000 50 0.9421849 +155 620.4 624.2775 1000 50 0.9027719 +156 624.2775 628.1550000000001 1000 50 0.99924576 +157 628.155 632.0325 1000 50 0.99872106 +158 632.0325 635.9100000000001 1000 50 0.9999981 +159 635.91 639.7875 1000 50 0.99987686 +160 639.7875 643.6650000000001 1000 50 0.9999801 +161 643.665 647.5425 1000 50 0.9999999 +162 647.5425 651.4200000000001 1000 50 0.9999156 +163 651.42 655.2975 1000 50 0.999998 +164 655.2975 659.1750000000001 1000 50 0.98153645 +165 659.175 663.0525 1000 50 1.0 +166 663.0525 666.9300000000001 1000 50 0.9861193 +167 666.93 670.8075 1000 50 0.9999993 +168 670.8075 674.6850000000001 1000 50 0.9999976 +169 674.685 678.5625 1000 50 0.99757797 +170 678.5625 682.44 1000 50 1.0 +171 682.44 686.3175000000001 1000 50 0.9992323 +172 686.3175 690.195 1000 50 0.9997663 +173 690.195 694.0725000000001 1000 50 0.99999833 +174 694.0725 697.95 1000 50 0.9990163 +175 697.95 701.8275000000001 1000 50 0.9999949 +176 701.8275 705.705 1000 50 0.9997371 +177 705.705 709.5825000000001 1000 50 0.99999964 +178 709.5825 713.46 1000 50 0.9997652 +179 713.46 717.3375000000001 1000 50 0.999997 +180 717.3375 721.215 1000 50 0.9677251 +181 721.215 725.0925000000001 1000 50 0.9999994 +182 728.97 732.8475000000001 1000 50 0.9999229 +183 732.8475 736.725 1000 50 0.9997439 +184 740.6025 744.48 1000 50 0.88075995 +185 744.48 748.3575000000001 1000 50 0.9999993 +186 748.3575 752.235 1000 50 0.99904054 +187 752.235 756.1125000000001 1000 50 0.9869177 +188 756.1125 759.99 1000 50 0.9999944 +189 759.99 763.8675000000001 1000 50 0.9999958 +190 763.8675 767.745 1000 50 0.99808085 +191 767.745 771.6225000000001 1000 50 0.9963303 +192 771.6225 775.5 1000 50 0.9999994 +193 775.5 779.3775 1000 50 0.9991912 +194 779.3775 783.2550000000001 1000 50 0.99999046 +195 783.255 787.1325 1000 50 0.9999578 +196 787.1325 791.0100000000001 1000 50 0.9989957 +197 791.01 794.8875 1000 50 0.9999896 +198 794.8875 798.7650000000001 1000 50 0.9999598 +199 798.765 802.6425 1000 50 0.9999989 +200 802.6425 806.5200000000001 1000 50 0.9998062 +201 806.52 810.3975 1000 50 0.9999951 +202 810.3975 814.2750000000001 1000 50 0.99999905 +203 814.275 818.1525 1000 50 0.9999995 +204 822.03 825.9075 1000 50 1.0 +205 825.9075 829.7850000000001 1000 50 0.9999989 +206 829.785 833.6625 1000 50 0.99985623 +207 833.6625 837.5400000000001 1000 50 1.0 +208 837.54 841.4175 1000 50 0.99952304 +209 841.4175 845.2950000000001 1000 50 0.9999827 +210 845.295 849.1725 1000 50 0.9999987 +211 849.1725 853.0500000000001 1000 50 0.99999917 +212 853.05 856.9275 1000 50 0.9999956 +213 856.9275 860.8050000000001 1000 50 0.9999982 +214 860.805 864.6825 1000 50 0.9996569 +215 864.6825 868.5600000000001 1000 50 0.99999976 +216 868.56 872.4375 1000 50 0.99997675 +217 872.4375 876.315 1000 50 0.9999987 +218 876.315 880.1925000000001 1000 50 1.0 +219 880.1925 884.07 1000 50 0.99999845 +220 884.07 887.9475000000001 1000 50 0.9999937 +221 887.9475 891.825 1000 50 0.9999999 +222 891.825 895.7025000000001 1000 50 0.9999999 +223 895.7025 899.58 1000 50 0.99882454 +224 899.58 903.4575000000001 1000 50 1.0 +225 903.4575 907.335 1000 50 0.99996877 +226 907.335 911.2125000000001 1000 50 0.9999957 +227 911.2125 915.09 1000 50 0.7933718 +228 915.09 918.9675000000001 1000 50 0.99362755 +229 918.9675 922.845 1000 50 0.9949739 +230 922.845 926.7225000000001 1000 50 0.99999845 +231 926.7225 930.6 1000 50 0.99999845 +232 930.6 934.4775000000001 1000 50 0.999992 +233 934.4775 938.355 1000 50 0.99887484 +234 938.355 942.2325000000001 1000 50 0.99999666 +235 942.2325 946.11 1000 50 0.9999895 +236 946.11 949.9875000000001 1000 50 0.9610031 +237 949.9875 953.865 1000 50 0.9999999 +238 953.865 957.7425000000001 1000 50 0.9934174 +239 957.7425 961.62 1000 50 0.9999738 +240 961.62 965.4975000000001 1000 50 0.9963236 +241 965.4975 969.375 1000 50 0.9977068 +242 969.375 973.2525 1000 50 0.99999714 +243 973.2525 977.1300000000001 1000 50 0.9999982 +244 977.13 981.0075 1000 50 0.99961853 +245 981.0075 984.8850000000001 1000 50 0.999925 +246 984.885 988.7625 1000 50 0.9999192 +247 988.7625 992.6400000000001 1000 50 1.0 +248 992.64 996.5175 1000 50 0.9996327 +249 996.5175 1000.3950000000001 1000 50 0.99967337 +250 1000.395 1004.2725 1000 50 0.99999917 +251 1004.2725 1008.1500000000001 1000 50 0.9984863 +252 1008.15 1012.0275 1000 50 1.0 +253 1012.0275 1015.9050000000001 1000 50 0.9999999 +254 1015.905 1019.7825 1000 50 0.9999647 +255 1019.7825 1023.6600000000001 1000 50 0.9972861 +256 1023.66 1027.5375 1000 50 0.59800506 +257 1027.5375 1031.415 1000 50 1.0 +258 1031.415 1035.2925 1000 50 0.9999981 +259 1035.2925 1039.17 1000 50 0.99998605 +260 1039.17 1043.0475000000001 1000 50 0.99999976 +261 1043.0475 1046.925 1000 50 0.99997795 +262 1046.925 1050.8025 1000 50 0.9996735 +263 1050.8025 1054.68 1000 50 1.0 +264 1058.5575 1062.435 1000 50 0.99999225 +265 1062.435 1066.3125 1000 50 0.9999993 +266 1066.3125 1070.19 1000 50 0.91355646 +267 1070.19 1074.0675 1000 50 0.99998426 +268 1074.0675 1077.9450000000002 1000 50 0.9971205 +269 1077.945 1081.8225 1000 50 0.99999964 +270 1081.8225 1085.7 1000 50 0.98041004 +271 1085.7 1089.5775 1000 50 0.9998487 +272 1089.5775 1093.4550000000002 1000 50 0.99605966 +273 1093.455 1097.3325 1000 50 0.9990908 +274 1097.3325 1101.21 1000 50 0.99976 +275 1101.21 1105.0875 1000 50 0.9997694 +276 1105.0875 1108.9650000000001 1000 50 0.9988226 +277 1108.965 1112.8425 1000 50 0.99760675 +278 1112.8425 1116.72 1000 50 0.8872179 +279 1116.72 1120.5975 1000 50 0.999866 +280 1120.5975 1124.4750000000001 1000 50 0.9999832 +281 1124.475 1128.3525 1000 50 0.99844474 +282 1128.3525 1132.23 1000 50 0.99999213 +283 1132.23 1136.1075 1000 50 0.9999995 +284 1136.1075 1139.9850000000001 1000 50 0.99992764 +285 1139.985 1143.8625 1000 50 0.9999974 +286 1143.8625 1147.74 1000 50 0.99999547 +287 1147.74 1151.6175 1000 50 0.99999547 +288 1151.6175 1155.4950000000001 1000 50 0.99994004 +289 1155.495 1159.3725 1000 50 0.89364964 +290 1159.3725 1163.25 1000 50 0.9998271 +291 1163.25 1167.1275 1000 50 0.99999714 +292 1167.1275 1171.005 1000 50 0.99989593 +293 1171.005 1174.8825000000002 1000 50 0.9999732 +294 1174.8825 1178.76 1000 50 0.9999747 +295 1178.76 1182.6375 1000 50 0.9880441 +296 1182.6375 1186.515 1000 50 0.9724081 +297 1186.515 1190.3925000000002 1000 50 0.9975453 +298 1190.3925 1194.27 1000 50 0.9989058 +299 1198.1475 1202.025 1000 50 0.9566505 +300 1209.78 1213.6575 1000 50 0.8733056 +301 1213.6575 1217.535 1000 50 0.99524057 +302 1217.535 1221.4125000000001 1000 50 0.9999002 +303 1221.4125 1225.29 1000 50 0.99779797 +304 1225.29 1229.1675 1000 50 0.9465444 +305 1229.1675 1233.045 1000 50 0.9929512 +306 1233.045 1236.9225000000001 1000 50 0.9983411 +307 1236.9225 1240.8 1000 50 0.91961545 +308 1240.8 1244.6775 1000 50 0.9999994 +309 1244.6775 1248.555 1000 50 1.0 +310 1252.4325 1256.31 1000 50 0.99999857 +311 1256.31 1260.1875 1000 50 0.9999956 +312 1260.1875 1264.065 1000 50 0.99993443 +313 1264.065 1267.9425 1000 50 0.99978095 +314 1267.9425 1271.8200000000002 1000 50 0.99991286 +315 1271.82 1275.6975 1000 50 0.99997807 +316 1275.6975 1279.575 1000 50 0.9993032 +317 1279.575 1283.4525 1000 50 0.99965143 +318 1283.4525 1287.3300000000002 1000 50 0.964314 +319 1287.33 1291.2075 1000 50 0.9999995 +320 1291.2075 1295.085 1000 50 0.99934083 +321 1295.085 1298.9625 1000 50 0.98403543 +322 1298.9625 1302.8400000000001 1000 50 0.98687035 +323 1302.84 1306.7175 1000 50 0.99395967 +324 1306.7175 1310.595 1000 50 0.9999957 +325 1310.595 1314.4725 1000 50 0.9868656 +326 1314.4725 1318.3500000000001 1000 50 0.99999547 +327 1318.35 1322.2275 1000 50 0.9998666 +328 1322.2275 1326.105 1000 50 0.99991405 +329 1326.105 1329.9825 1000 50 0.99869776 +330 1329.9825 1333.8600000000001 1000 50 0.7157762 +331 1333.86 1337.7375 1000 50 0.9997985 +332 1337.7375 1341.615 1000 50 0.9887326 +333 1341.615 1345.4925 1000 50 0.9999037 +334 1345.4925 1349.3700000000001 1000 50 0.9999995 +335 1349.37 1353.2475 1000 50 0.9980028 +336 1353.2475 1357.125 1000 50 0.99886215 +337 1357.125 1361.0025 1000 50 0.999961 +338 1361.0025 1364.88 1000 50 0.99999857 +339 1364.88 1368.7575000000002 1000 50 0.9259814 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_03-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_03-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e17bec6c359f2e772d2ed38f6ebe38c68476fbc4 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_03-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,367 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.6818022 +2 3.8775 7.755 1000 50 0.97001654 +3 7.755 11.6325 1000 50 0.99994254 +4 11.6325 15.51 1000 50 0.82282025 +5 15.51 19.3875 1000 50 0.9699901 +6 19.3875 23.265 1000 50 0.9997396 +7 23.265 27.142500000000002 1000 50 0.9991743 +8 27.1425 31.02 1000 50 0.9999964 +9 31.02 34.8975 1000 50 0.9135485 +10 34.8975 38.775 1000 50 0.9999845 +11 38.775 42.652499999999996 1000 50 0.9950401 +12 42.6525 46.53 1000 50 0.99797434 +13 46.53 50.4075 1000 50 0.9999862 +14 50.4075 54.285 1000 50 0.99816376 +15 54.285 58.162499999999994 1000 50 0.9999461 +16 58.1625 62.04 1000 50 0.9999554 +17 62.04 65.9175 1000 50 0.80955297 +18 65.9175 69.795 1000 50 0.9999113 +19 69.795 73.6725 1000 50 1.0 +20 73.6725 77.55 1000 50 0.9999535 +21 77.55 81.4275 1000 50 0.99986076 +22 81.4275 85.30499999999999 1000 50 0.9329544 +23 85.305 89.1825 1000 50 0.99995387 +24 89.1825 93.06 1000 50 0.9999994 +25 93.06 96.9375 1000 50 0.99999976 +26 96.9375 100.815 1000 50 1.0 +27 100.815 104.6925 1000 50 0.99999666 +28 104.6925 108.57 1000 50 1.0 +29 108.57 112.44749999999999 1000 50 0.9999943 +30 112.4475 116.325 1000 50 0.99952745 +31 116.325 120.2025 1000 50 0.99965584 +32 120.2025 124.08 1000 50 0.9972052 +33 124.08 127.9575 1000 50 0.99999976 +34 127.9575 131.835 1000 50 0.99888974 +35 131.835 135.7125 1000 50 0.99999654 +36 135.7125 139.59 1000 50 0.99995804 +37 139.59 143.4675 1000 50 0.9999999 +38 143.4675 147.345 1000 50 0.9999995 +39 147.345 151.2225 1000 50 0.9995652 +40 151.2225 155.1 1000 50 0.9999999 +41 155.1 158.9775 1000 50 0.99976796 +42 158.9775 162.855 1000 50 0.9998485 +43 162.855 166.7325 1000 50 0.95305306 +44 166.7325 170.60999999999999 1000 50 0.99999475 +45 170.61 174.4875 1000 50 0.99734503 +46 174.4875 178.365 1000 50 0.74483687 +47 178.365 182.2425 1000 50 0.9995308 +48 182.2425 186.12 1000 50 0.9999927 +49 186.12 189.9975 1000 50 0.99376994 +50 189.9975 193.875 1000 50 0.9999286 +51 193.875 197.7525 1000 50 0.99748456 +52 197.7525 201.63 1000 50 0.9993092 +53 201.63 205.5075 1000 50 0.99998 +54 205.5075 209.385 1000 50 0.99974674 +55 209.385 213.2625 1000 50 0.99902153 +56 213.2625 217.14 1000 50 0.99963355 +57 217.14 221.01749999999998 1000 50 0.99944204 +58 221.0175 224.895 1000 50 0.9977673 +59 224.895 228.7725 1000 50 0.999998 +60 228.7725 232.65 1000 50 0.954433 +61 232.65 236.5275 1000 50 1.0 +62 236.5275 240.405 1000 50 0.9999951 +63 240.405 244.2825 1000 50 0.9991605 +64 244.2825 248.16 1000 50 0.999943 +65 248.16 252.0375 1000 50 0.99984694 +66 252.0375 255.915 1000 50 0.9984603 +67 255.915 259.7925 1000 50 0.9998665 +68 259.7925 263.67 1000 50 0.99999964 +69 263.67 267.5475 1000 50 0.9999844 +70 267.5475 271.425 1000 50 0.9992219 +71 271.425 275.3025 1000 50 0.99997497 +72 275.3025 279.18 1000 50 0.99970657 +73 279.18 283.0575 1000 50 0.87570924 +74 283.0575 286.935 1000 50 0.9999993 +75 286.935 290.8125 1000 50 0.9999995 +76 290.8125 294.69 1000 50 0.99999917 +77 294.69 298.5675 1000 50 0.9997737 +78 298.5675 302.445 1000 50 0.9999989 +79 302.445 306.3225 1000 50 1.0 +80 306.3225 310.2 1000 50 0.99999917 +81 310.2 314.0775 1000 50 0.9983438 +82 314.0775 317.955 1000 50 0.9990701 +83 317.955 321.8325 1000 50 0.99982905 +84 321.8325 325.71 1000 50 0.99999976 +85 325.71 329.5875 1000 50 0.99998295 +86 329.5875 333.465 1000 50 1.0 +87 333.465 337.3425 1000 50 0.99997246 +88 337.3425 341.21999999999997 1000 50 0.99995804 +89 341.22 345.0975 1000 50 0.9999999 +90 345.0975 348.975 1000 50 0.99999356 +91 348.975 352.8525 1000 50 0.9977004 +92 352.8525 356.73 1000 50 0.5048827 +93 356.73 360.6075 1000 50 1.0 +94 360.6075 364.485 1000 50 0.9999926 +95 364.485 368.3625 1000 50 0.99997437 +96 368.3625 372.24 1000 50 0.9998964 +97 372.24 376.1175 1000 50 0.9993482 +98 376.1175 379.995 1000 50 0.9998641 +99 379.995 383.8725 1000 50 0.9999993 +100 383.8725 387.75 1000 50 0.9999939 +101 387.75 391.6275 1000 50 0.9983741 +102 391.6275 395.505 1000 50 0.98549557 +103 395.505 399.3825 1000 50 0.60378164 +104 399.3825 403.26 1000 50 0.8939709 +105 411.015 414.8925 1000 50 0.5983502 +106 418.77 422.6475 1000 50 0.60905826 +107 422.6475 426.525 1000 50 0.60684556 +108 426.525 430.4025 1000 50 0.6522079 +109 434.28 438.15749999999997 1000 50 0.9671825 +110 445.9125 449.79 1000 50 0.9853173 +111 453.6675 457.545 1000 50 0.98724896 +112 461.4225 465.3 1000 50 0.9214698 +113 469.1775 473.055 1000 50 0.92070526 +114 484.6875 488.565 1000 50 0.673988 +115 488.565 492.4425 1000 50 0.7932223 +116 496.32 500.1975 1000 50 0.5041674 +117 504.075 507.9525 1000 50 0.9677059 +118 507.9525 511.83 1000 50 0.9999887 +119 511.83 515.7075 1000 50 0.99937963 +120 515.7075 519.585 1000 50 1.0 +121 519.585 523.4625000000001 1000 50 0.99877053 +122 523.4625 527.34 1000 50 0.9999993 +123 527.34 531.2175000000001 1000 50 0.99961746 +124 531.2175 535.095 1000 50 0.99972874 +125 535.095 538.9725000000001 1000 50 0.996338 +126 538.9725 542.85 1000 50 0.9999348 +127 542.85 546.7275000000001 1000 50 0.9999968 +128 546.7275 550.605 1000 50 0.99903524 +129 550.605 554.4825000000001 1000 50 0.99968314 +130 554.4825 558.36 1000 50 1.0 +131 558.36 562.2375000000001 1000 50 0.9999962 +132 562.2375 566.115 1000 50 0.9998511 +133 566.115 569.9925000000001 1000 50 0.99999547 +134 569.9925 573.87 1000 50 0.99967945 +135 573.87 577.7475000000001 1000 50 0.99997556 +136 577.7475 581.625 1000 50 0.973217 +137 581.625 585.5025 1000 50 0.9999951 +138 585.5025 589.3800000000001 1000 50 0.97998285 +139 589.38 593.2575 1000 50 0.999418 +140 593.2575 597.1350000000001 1000 50 0.9999999 +141 597.135 601.0125 1000 50 0.99991715 +142 601.0125 604.8900000000001 1000 50 0.9952453 +143 604.89 608.7675 1000 50 0.9999982 +144 608.7675 612.6450000000001 1000 50 0.9991691 +145 612.645 616.5225 1000 50 0.9983714 +146 616.5225 620.4000000000001 1000 50 0.9999894 +147 620.4 624.2775 1000 50 0.9999703 +148 624.2775 628.1550000000001 1000 50 1.0 +149 628.155 632.0325 1000 50 0.99962234 +150 632.0325 635.9100000000001 1000 50 0.99997985 +151 635.91 639.7875 1000 50 0.9999994 +152 639.7875 643.6650000000001 1000 50 0.99987996 +153 643.665 647.5425 1000 50 0.99970776 +154 647.5425 651.4200000000001 1000 50 0.99999964 +155 651.42 655.2975 1000 50 0.9999974 +156 655.2975 659.1750000000001 1000 50 0.99999857 +157 659.175 663.0525 1000 50 0.99998116 +158 663.0525 666.9300000000001 1000 50 1.0 +159 666.93 670.8075 1000 50 0.9999951 +160 670.8075 674.6850000000001 1000 50 0.9999716 +161 674.685 678.5625 1000 50 0.9999863 +162 678.5625 682.44 1000 50 0.99999774 +163 682.44 686.3175000000001 1000 50 1.0 +164 686.3175 690.195 1000 50 0.9999963 +165 690.195 694.0725000000001 1000 50 0.99999976 +166 694.0725 697.95 1000 50 1.0 +167 697.95 701.8275000000001 1000 50 0.99999976 +168 701.8275 705.705 1000 50 1.0 +169 705.705 709.5825000000001 1000 50 0.9999989 +170 709.5825 713.46 1000 50 0.9999989 +171 713.46 717.3375000000001 1000 50 0.99961555 +172 717.3375 721.215 1000 50 0.9999137 +173 721.215 725.0925000000001 1000 50 0.99999964 +174 728.97 732.8475000000001 1000 50 0.9999938 +175 732.8475 736.725 1000 50 0.9999962 +176 736.725 740.6025000000001 1000 50 0.94270164 +177 740.6025 744.48 1000 50 0.9999999 +178 744.48 748.3575000000001 1000 50 0.99997663 +179 748.3575 752.235 1000 50 0.99648213 +180 752.235 756.1125000000001 1000 50 1.0 +181 756.1125 759.99 1000 50 0.9999999 +182 759.99 763.8675000000001 1000 50 1.0 +183 763.8675 767.745 1000 50 0.99859434 +184 767.745 771.6225000000001 1000 50 0.99999654 +185 771.6225 775.5 1000 50 0.9999999 +186 775.5 779.3775 1000 50 1.0 +187 779.3775 783.2550000000001 1000 50 0.9999933 +188 783.255 787.1325 1000 50 0.99999845 +189 787.1325 791.0100000000001 1000 50 0.99985814 +190 791.01 794.8875 1000 50 1.0 +191 794.8875 798.7650000000001 1000 50 0.99999547 +192 798.765 802.6425 1000 50 0.99999976 +193 802.6425 806.5200000000001 1000 50 0.9999796 +194 806.52 810.3975 1000 50 0.99999726 +195 810.3975 814.2750000000001 1000 50 0.9998714 +196 814.275 818.1525 1000 50 0.9998549 +197 818.1525 822.0300000000001 1000 50 0.9999858 +198 822.03 825.9075 1000 50 0.9999795 +199 825.9075 829.7850000000001 1000 50 0.99977857 +200 829.785 833.6625 1000 50 0.99999464 +201 833.6625 837.5400000000001 1000 50 0.99942696 +202 837.54 841.4175 1000 50 0.8161714 +203 841.4175 845.2950000000001 1000 50 0.999995 +204 845.295 849.1725 1000 50 0.99999917 +205 849.1725 853.0500000000001 1000 50 0.9999999 +206 853.05 856.9275 1000 50 0.99999917 +207 856.9275 860.8050000000001 1000 50 1.0 +208 860.805 864.6825 1000 50 0.9999901 +209 864.6825 868.5600000000001 1000 50 0.99866295 +210 868.56 872.4375 1000 50 0.9967527 +211 872.4375 876.315 1000 50 0.9999343 +212 876.315 880.1925000000001 1000 50 0.9999672 +213 880.1925 884.07 1000 50 0.99960536 +214 884.07 887.9475000000001 1000 50 0.9587819 +215 891.825 895.7025000000001 1000 50 0.8466491 +216 895.7025 899.58 1000 50 0.9999999 +217 899.58 903.4575000000001 1000 50 1.0 +218 903.4575 907.335 1000 50 0.99642485 +219 907.335 911.2125000000001 1000 50 0.8429261 +220 911.2125 915.09 1000 50 0.9998437 +221 915.09 918.9675000000001 1000 50 0.99962175 +222 918.9675 922.845 1000 50 0.9999999 +223 922.845 926.7225000000001 1000 50 0.99962115 +224 926.7225 930.6 1000 50 0.9630904 +225 930.6 934.4775000000001 1000 50 1.0 +226 934.4775 938.355 1000 50 0.5633336 +227 938.355 942.2325000000001 1000 50 0.9998921 +228 942.2325 946.11 1000 50 0.9999993 +229 946.11 949.9875000000001 1000 50 0.9980001 +230 949.9875 953.865 1000 50 0.9999094 +231 953.865 957.7425000000001 1000 50 0.9999993 +232 957.7425 961.62 1000 50 0.58180255 +233 961.62 965.4975000000001 1000 50 0.9983814 +234 965.4975 969.375 1000 50 0.99999547 +235 969.375 973.2525 1000 50 1.0 +236 973.2525 977.1300000000001 1000 50 0.9999995 +237 977.13 981.0075 1000 50 0.99999297 +238 981.0075 984.8850000000001 1000 50 0.9492029 +239 984.885 988.7625 1000 50 0.9999999 +240 988.7625 992.6400000000001 1000 50 0.9999052 +241 992.64 996.5175 1000 50 0.99998987 +242 996.5175 1000.3950000000001 1000 50 0.99577063 +243 1000.395 1004.2725 1000 50 0.9999728 +244 1004.2725 1008.1500000000001 1000 50 0.999998 +245 1008.15 1012.0275 1000 50 0.9999354 +246 1012.0275 1015.9050000000001 1000 50 0.99999607 +247 1015.905 1019.7825 1000 50 0.99999905 +248 1019.7825 1023.6600000000001 1000 50 0.99999857 +249 1023.66 1027.5375 1000 50 0.999969 +250 1027.5375 1031.415 1000 50 0.9999615 +251 1031.415 1035.2925 1000 50 0.9999927 +252 1035.2925 1039.17 1000 50 0.99999654 +253 1039.17 1043.0475000000001 1000 50 0.9948996 +254 1043.0475 1046.925 1000 50 0.9998659 +255 1046.925 1050.8025 1000 50 0.9999999 +256 1050.8025 1054.68 1000 50 0.999869 +257 1054.68 1058.5575000000001 1000 50 0.99912864 +258 1058.5575 1062.435 1000 50 0.99902546 +259 1062.435 1066.3125 1000 50 0.99999034 +260 1066.3125 1070.19 1000 50 0.9999504 +261 1070.19 1074.0675 1000 50 0.9999887 +262 1074.0675 1077.9450000000002 1000 50 0.99984527 +263 1077.945 1081.8225 1000 50 0.9999994 +264 1081.8225 1085.7 1000 50 0.9840688 +265 1085.7 1089.5775 1000 50 0.9999877 +266 1089.5775 1093.4550000000002 1000 50 0.9397617 +267 1093.455 1097.3325 1000 50 0.99996984 +268 1097.3325 1101.21 1000 50 0.944751 +269 1101.21 1105.0875 1000 50 0.99999607 +270 1105.0875 1108.9650000000001 1000 50 0.99999976 +271 1108.965 1112.8425 1000 50 0.9995621 +272 1112.8425 1116.72 1000 50 0.9998406 +273 1116.72 1120.5975 1000 50 0.9999889 +274 1120.5975 1124.4750000000001 1000 50 0.9928479 +275 1124.475 1128.3525 1000 50 0.9901584 +276 1128.3525 1132.23 1000 50 0.999984 +277 1132.23 1136.1075 1000 50 0.9995441 +278 1136.1075 1139.9850000000001 1000 50 0.9929483 +279 1139.985 1143.8625 1000 50 0.99999976 +280 1143.8625 1147.74 1000 50 0.9999964 +281 1147.74 1151.6175 1000 50 0.99999976 +282 1151.6175 1155.4950000000001 1000 50 0.99999523 +283 1155.495 1159.3725 1000 50 0.99847585 +284 1159.3725 1163.25 1000 50 0.9999939 +285 1163.25 1167.1275 1000 50 0.9999101 +286 1167.1275 1171.005 1000 50 0.9998996 +287 1171.005 1174.8825000000002 1000 50 0.9999442 +288 1174.8825 1178.76 1000 50 0.99998426 +289 1178.76 1182.6375 1000 50 0.9999999 +290 1182.6375 1186.515 1000 50 0.999998 +291 1186.515 1190.3925000000002 1000 50 0.9999999 +292 1190.3925 1194.27 1000 50 0.9999809 +293 1194.27 1198.1475 1000 50 0.99999595 +294 1198.1475 1202.025 1000 50 0.99982613 +295 1202.025 1205.9025000000001 1000 50 0.99997866 +296 1205.9025 1209.78 1000 50 0.99978894 +297 1209.78 1213.6575 1000 50 0.9999366 +298 1213.6575 1217.535 1000 50 0.99956053 +299 1217.535 1221.4125000000001 1000 50 0.99973565 +300 1221.4125 1225.29 1000 50 0.99999857 +301 1225.29 1229.1675 1000 50 0.9997961 +302 1229.1675 1233.045 1000 50 0.9999981 +303 1233.045 1236.9225000000001 1000 50 0.9999993 +304 1236.9225 1240.8 1000 50 0.9999982 +305 1240.8 1244.6775 1000 50 0.99999905 +306 1244.6775 1248.555 1000 50 0.99989307 +307 1248.555 1252.4325000000001 1000 50 0.9999244 +308 1252.4325 1256.31 1000 50 0.99952257 +309 1256.31 1260.1875 1000 50 0.999998 +310 1260.1875 1264.065 1000 50 0.99999154 +311 1264.065 1267.9425 1000 50 0.93071586 +312 1267.9425 1271.8200000000002 1000 50 0.9999993 +313 1271.82 1275.6975 1000 50 0.9999238 +314 1275.6975 1279.575 1000 50 0.999977 +315 1283.4525 1287.3300000000002 1000 50 0.9997956 +316 1287.33 1291.2075 1000 50 0.9999968 +317 1291.2075 1295.085 1000 50 0.99829453 +318 1295.085 1298.9625 1000 50 0.99999714 +319 1298.9625 1302.8400000000001 1000 50 0.99313426 +320 1302.84 1306.7175 1000 50 0.9990031 +321 1306.7175 1310.595 1000 50 0.9998965 +322 1310.595 1314.4725 1000 50 0.9984378 +323 1314.4725 1318.3500000000001 1000 50 0.6023304 +324 1318.35 1322.2275 1000 50 0.9999815 +325 1322.2275 1326.105 1000 50 0.9871293 +326 1326.105 1329.9825 1000 50 0.9997298 +327 1329.9825 1333.8600000000001 1000 50 0.9856162 +328 1337.7375 1341.615 1000 50 0.9998915 +329 1341.615 1345.4925 1000 50 0.9936299 +330 1345.4925 1349.3700000000001 1000 50 0.5838533 +331 1349.37 1353.2475 1000 50 0.9999701 +332 1361.0025 1364.88 1000 50 0.9999907 +333 1364.88 1368.7575000000002 1000 50 0.90356004 +334 1368.7575 1372.635 1000 50 0.96316904 +335 1372.635 1376.5125 1000 50 0.949266 +336 1376.5125 1380.39 1000 50 0.99997747 +337 1380.39 1384.2675000000002 1000 50 0.9999994 +338 1384.2675 1388.145 1000 50 0.9164808 +339 1392.0225 1395.9 1000 50 1.0 +340 1395.9 1399.7775000000001 1000 50 0.9999267 +341 1399.7775 1403.655 1000 50 0.99875987 +342 1403.655 1407.5325 1000 50 0.99954295 +343 1407.5325 1411.41 1000 50 0.9996326 +344 1411.41 1415.2875000000001 1000 50 0.99999535 +345 1415.2875 1419.165 1000 50 0.9999584 +346 1419.165 1423.0425 1000 50 0.9952301 +347 1423.0425 1426.92 1000 50 0.99997497 +348 1426.92 1430.7975000000001 1000 50 0.9999995 +349 1430.7975 1434.675 1000 50 0.99743146 +350 1434.675 1438.5525 1000 50 1.0 +351 1438.5525 1442.43 1000 50 0.99996054 +352 1442.43 1446.3075000000001 1000 50 0.9964489 +353 1446.3075 1450.185 1000 50 1.0 +354 1450.185 1454.0625 1000 50 0.9996754 +355 1454.0625 1457.94 1000 50 0.99934894 +356 1457.94 1461.8175 1000 50 1.0 +357 1461.8175 1465.6950000000002 1000 50 0.9970094 +358 1465.695 1469.5725 1000 50 0.9999399 +359 1469.5725 1473.45 1000 50 0.9998585 +360 1473.45 1477.3275 1000 50 0.99998903 +361 1477.3275 1481.2050000000002 1000 50 1.0 +362 1481.205 1485.0825 1000 50 0.9999962 +363 1485.0825 1488.96 1000 50 1.0 +364 1488.96 1492.8375 1000 50 0.9999809 +365 1492.8375 1496.7150000000001 1000 50 1.0 +366 1496.715 1500.5925 1000 50 1.0 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_04-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_04-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ac9241ff33211a0faa1de4c2d264314b73849ac8 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_04-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,12 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999999 +2 3.8775 7.755 1000 50 0.9978465 +3 15.51 19.3875 1000 50 0.789599 +4 31.02 34.8975 1000 50 0.9992493 +5 38.775 42.652499999999996 1000 50 0.5189401 +6 54.285 58.162499999999994 1000 50 0.81030256 +7 62.04 65.9175 1000 50 0.9633844 +8 65.9175 69.795 1000 50 0.9937959 +9 81.4275 85.30499999999999 1000 50 0.5055843 +10 93.06 96.9375 1000 50 0.8644442 +11 100.815 104.6925 1000 50 0.50116515 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_04-07-14_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_04-07-14_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..939c6cc314bdcab1b834f4609eb8be333297bc1e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_04-07-14_annot_2022-11-30_01.txt @@ -0,0 +1,269 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999968 +2 3.8775 7.755 1000 50 0.9999567 +3 7.755 11.6325 1000 50 0.999087 +4 11.6325 15.51 1000 50 0.99999976 +5 15.51 19.3875 1000 50 0.99314636 +6 19.3875 23.265 1000 50 0.9998186 +7 23.265 27.142500000000002 1000 50 0.9988776 +8 27.1425 31.02 1000 50 0.9999999 +9 31.02 34.8975 1000 50 0.99962986 +10 34.8975 38.775 1000 50 0.9261104 +11 38.775 42.652499999999996 1000 50 0.9999945 +12 42.6525 46.53 1000 50 0.9977824 +13 46.53 50.4075 1000 50 0.9996815 +14 50.4075 54.285 1000 50 0.9972716 +15 54.285 58.162499999999994 1000 50 0.9999999 +16 58.1625 62.04 1000 50 0.9999839 +17 62.04 65.9175 1000 50 0.9955325 +18 65.9175 69.795 1000 50 0.999997 +19 69.795 73.6725 1000 50 0.9998491 +20 73.6725 77.55 1000 50 0.9987984 +21 77.55 81.4275 1000 50 0.99999905 +22 81.4275 85.30499999999999 1000 50 0.9999914 +23 85.305 89.1825 1000 50 0.9935076 +24 89.1825 93.06 1000 50 0.99988914 +25 93.06 96.9375 1000 50 0.99939823 +26 96.9375 100.815 1000 50 0.9969127 +27 100.815 104.6925 1000 50 0.99990225 +28 104.6925 108.57 1000 50 0.9989555 +29 108.57 112.44749999999999 1000 50 0.999915 +30 112.4475 116.325 1000 50 0.9999999 +31 116.325 120.2025 1000 50 0.98523545 +32 120.2025 124.08 1000 50 0.9994412 +33 124.08 127.9575 1000 50 0.99993765 +34 127.9575 131.835 1000 50 0.9999465 +35 131.835 135.7125 1000 50 0.99998796 +36 135.7125 139.59 1000 50 0.9990657 +37 139.59 143.4675 1000 50 1.0 +38 143.4675 147.345 1000 50 0.9996582 +39 147.345 151.2225 1000 50 0.75597954 +40 151.2225 155.1 1000 50 0.9997826 +41 155.1 158.9775 1000 50 0.9935638 +42 158.9775 162.855 1000 50 0.99992454 +43 162.855 166.7325 1000 50 0.99996483 +44 166.7325 170.60999999999999 1000 50 0.9994543 +45 170.61 174.4875 1000 50 0.99999464 +46 174.4875 178.365 1000 50 0.852554 +47 178.365 182.2425 1000 50 0.99999046 +48 182.2425 186.12 1000 50 0.9994259 +49 186.12 189.9975 1000 50 0.9999912 +50 189.9975 193.875 1000 50 0.98613375 +51 193.875 197.7525 1000 50 0.9999831 +52 197.7525 201.63 1000 50 0.9999999 +53 201.63 205.5075 1000 50 0.9998292 +54 205.5075 209.385 1000 50 0.99991655 +55 209.385 213.2625 1000 50 0.99983 +56 213.2625 217.14 1000 50 0.9999919 +57 217.14 221.01749999999998 1000 50 0.99526227 +58 221.0175 224.895 1000 50 0.9999902 +59 224.895 228.7725 1000 50 0.99816835 +60 228.7725 232.65 1000 50 0.99797076 +61 232.65 236.5275 1000 50 0.9990119 +62 236.5275 240.405 1000 50 0.99991727 +63 240.405 244.2825 1000 50 0.9995809 +64 244.2825 248.16 1000 50 0.99999356 +65 248.16 252.0375 1000 50 0.99997437 +66 252.0375 255.915 1000 50 0.99984264 +67 255.915 259.7925 1000 50 0.99983144 +68 259.7925 263.67 1000 50 0.9998714 +69 263.67 267.5475 1000 50 0.99997747 +70 267.5475 271.425 1000 50 0.99931157 +71 271.425 275.3025 1000 50 0.9998621 +72 275.3025 279.18 1000 50 0.99990714 +73 279.18 283.0575 1000 50 0.99989414 +74 283.0575 286.935 1000 50 0.99914014 +75 286.935 290.8125 1000 50 0.9996507 +76 290.8125 294.69 1000 50 1.0 +77 294.69 298.5675 1000 50 0.99992454 +78 298.5675 302.445 1000 50 0.99997735 +79 302.445 306.3225 1000 50 0.9971162 +80 306.3225 310.2 1000 50 1.0 +81 310.2 314.0775 1000 50 0.99999976 +82 314.0775 317.955 1000 50 0.99819535 +83 317.955 321.8325 1000 50 0.99998736 +84 321.8325 325.71 1000 50 0.9999999 +85 325.71 329.5875 1000 50 0.9999999 +86 329.5875 333.465 1000 50 0.99999917 +87 333.465 337.3425 1000 50 0.99999976 +88 337.3425 341.21999999999997 1000 50 0.9999999 +89 341.22 345.0975 1000 50 1.0 +90 345.0975 348.975 1000 50 0.9999535 +91 348.975 352.8525 1000 50 0.99997604 +92 352.8525 356.73 1000 50 0.9999999 +93 356.73 360.6075 1000 50 1.0 +94 360.6075 364.485 1000 50 0.99996626 +95 364.485 368.3625 1000 50 0.99995565 +96 368.3625 372.24 1000 50 0.998302 +97 372.24 376.1175 1000 50 0.9980963 +98 376.1175 379.995 1000 50 0.9994485 +99 379.995 383.8725 1000 50 0.9999819 +100 387.75 391.6275 1000 50 0.99233353 +101 391.6275 395.505 1000 50 0.9223335 +102 395.505 399.3825 1000 50 0.9957896 +103 399.3825 403.26 1000 50 0.9999732 +104 403.26 407.1375 1000 50 0.99954957 +105 407.1375 411.015 1000 50 0.9198465 +106 411.015 414.8925 1000 50 0.9982749 +107 414.8925 418.77 1000 50 0.6042212 +108 418.77 422.6475 1000 50 0.98877895 +109 422.6475 426.525 1000 50 1.0 +110 426.525 430.4025 1000 50 0.73053104 +111 430.4025 434.28 1000 50 0.99296606 +112 434.28 438.15749999999997 1000 50 0.9999943 +113 438.1575 442.035 1000 50 0.9991091 +114 442.035 445.9125 1000 50 0.9999883 +115 445.9125 449.79 1000 50 0.9809599 +116 449.79 453.6675 1000 50 0.9974413 +117 453.6675 457.545 1000 50 0.99805593 +118 457.545 461.4225 1000 50 0.998855 +119 461.4225 465.3 1000 50 1.0 +120 465.3 469.1775 1000 50 0.9977182 +121 473.055 476.9325 1000 50 0.9999522 +122 476.9325 480.81 1000 50 0.99275655 +123 480.81 484.6875 1000 50 0.9997043 +124 484.6875 488.565 1000 50 0.99955016 +125 488.565 492.4425 1000 50 0.9997193 +126 492.4425 496.32 1000 50 0.9998957 +127 496.32 500.1975 1000 50 0.9969977 +128 500.1975 504.075 1000 50 0.9998919 +129 504.075 507.9525 1000 50 0.99989915 +130 507.9525 511.83 1000 50 0.99962413 +131 511.83 515.7075 1000 50 0.9929014 +132 515.7075 519.585 1000 50 0.99994946 +133 519.585 523.4625000000001 1000 50 0.99999857 +134 523.4625 527.34 1000 50 0.99812263 +135 527.34 531.2175000000001 1000 50 0.97748154 +136 531.2175 535.095 1000 50 0.99967325 +137 535.095 538.9725000000001 1000 50 0.82122225 +138 538.9725 542.85 1000 50 0.99999976 +139 542.85 546.7275000000001 1000 50 0.98251134 +140 546.7275 550.605 1000 50 0.87869716 +141 550.605 554.4825000000001 1000 50 0.9999993 +142 554.4825 558.36 1000 50 0.73458064 +143 558.36 562.2375000000001 1000 50 0.8723443 +144 562.2375 566.115 1000 50 0.9999753 +145 566.115 569.9925000000001 1000 50 0.5025097 +146 569.9925 573.87 1000 50 0.9972395 +147 573.87 577.7475000000001 1000 50 0.99983716 +148 577.7475 581.625 1000 50 0.9701137 +149 581.625 585.5025 1000 50 0.9999945 +150 585.5025 589.3800000000001 1000 50 0.999997 +151 589.38 593.2575 1000 50 0.9660066 +152 593.2575 597.1350000000001 1000 50 0.99993885 +153 597.135 601.0125 1000 50 0.99994457 +154 601.0125 604.8900000000001 1000 50 0.8388621 +155 604.89 608.7675 1000 50 0.99999917 +156 608.7675 612.6450000000001 1000 50 0.9998909 +157 612.645 616.5225 1000 50 0.9999664 +158 616.5225 620.4000000000001 1000 50 1.0 +159 620.4 624.2775 1000 50 0.99981934 +160 624.2775 628.1550000000001 1000 50 0.99999845 +161 628.155 632.0325 1000 50 0.9999347 +162 632.0325 635.9100000000001 1000 50 1.0 +163 635.91 639.7875 1000 50 0.9988626 +164 639.7875 643.6650000000001 1000 50 0.99999917 +165 643.665 647.5425 1000 50 0.9999722 +166 647.5425 651.4200000000001 1000 50 0.99891186 +167 651.42 655.2975 1000 50 1.0 +168 655.2975 659.1750000000001 1000 50 0.9763598 +169 659.175 663.0525 1000 50 0.9929021 +170 663.0525 666.9300000000001 1000 50 0.98966146 +171 666.93 670.8075 1000 50 1.0 +172 670.8075 674.6850000000001 1000 50 0.96453285 +173 674.685 678.5625 1000 50 0.9999709 +174 678.5625 682.44 1000 50 0.99986255 +175 686.3175 690.195 1000 50 0.99993896 +176 690.195 694.0725000000001 1000 50 0.99997103 +177 694.0725 697.95 1000 50 0.999938 +178 697.95 701.8275000000001 1000 50 0.9996495 +179 701.8275 705.705 1000 50 0.9999976 +180 705.705 709.5825000000001 1000 50 0.99718225 +181 709.5825 713.46 1000 50 1.0 +182 717.3375 721.215 1000 50 0.9999927 +183 721.215 725.0925000000001 1000 50 0.97995055 +184 725.0925 728.97 1000 50 0.998185 +185 728.97 732.8475000000001 1000 50 1.0 +186 732.8475 736.725 1000 50 0.98013216 +187 736.725 740.6025000000001 1000 50 0.9999957 +188 740.6025 744.48 1000 50 0.9765778 +189 744.48 748.3575000000001 1000 50 0.8065887 +190 748.3575 752.235 1000 50 0.99955374 +191 752.235 756.1125000000001 1000 50 0.99997437 +192 756.1125 759.99 1000 50 0.7914209 +193 759.99 763.8675000000001 1000 50 0.9952571 +194 763.8675 767.745 1000 50 0.9999895 +195 767.745 771.6225000000001 1000 50 0.98940724 +196 771.6225 775.5 1000 50 0.99620205 +197 775.5 779.3775 1000 50 0.95163864 +198 779.3775 783.2550000000001 1000 50 0.99933124 +199 783.255 787.1325 1000 50 0.99999905 +200 787.1325 791.0100000000001 1000 50 0.9886934 +201 791.01 794.8875 1000 50 0.8855438 +202 794.8875 798.7650000000001 1000 50 0.9996 +203 798.765 802.6425 1000 50 0.99986887 +204 802.6425 806.5200000000001 1000 50 0.9998467 +205 806.52 810.3975 1000 50 0.99999964 +206 810.3975 814.2750000000001 1000 50 0.999908 +207 814.275 818.1525 1000 50 0.99990463 +208 818.1525 822.0300000000001 1000 50 0.99980575 +209 822.03 825.9075 1000 50 0.99670535 +210 825.9075 829.7850000000001 1000 50 0.8503617 +211 829.785 833.6625 1000 50 0.97017044 +212 837.54 841.4175 1000 50 0.9868181 +213 841.4175 845.2950000000001 1000 50 0.79552424 +214 849.1725 853.0500000000001 1000 50 0.9999275 +215 853.05 856.9275 1000 50 0.8335722 +216 856.9275 860.8050000000001 1000 50 0.9996867 +217 860.805 864.6825 1000 50 0.99960285 +218 864.6825 868.5600000000001 1000 50 0.984463 +219 868.56 872.4375 1000 50 0.6387907 +220 872.4375 876.315 1000 50 0.99982905 +221 876.315 880.1925000000001 1000 50 0.9781647 +222 880.1925 884.07 1000 50 0.9792063 +223 884.07 887.9475000000001 1000 50 0.937957 +224 887.9475 891.825 1000 50 0.99979764 +225 891.825 895.7025000000001 1000 50 0.97624606 +226 895.7025 899.58 1000 50 0.9726175 +227 899.58 903.4575000000001 1000 50 0.99999917 +228 903.4575 907.335 1000 50 0.99012417 +229 907.335 911.2125000000001 1000 50 0.9971347 +230 911.2125 915.09 1000 50 0.99999845 +231 915.09 918.9675000000001 1000 50 0.99870455 +232 918.9675 922.845 1000 50 0.9598743 +233 922.845 926.7225000000001 1000 50 0.9990814 +234 926.7225 930.6 1000 50 0.9997155 +235 930.6 934.4775000000001 1000 50 0.9999943 +236 934.4775 938.355 1000 50 0.9975923 +237 938.355 942.2325000000001 1000 50 0.99857664 +238 942.2325 946.11 1000 50 0.9998248 +239 946.11 949.9875000000001 1000 50 0.999726 +240 949.9875 953.865 1000 50 0.99999356 +241 953.865 957.7425000000001 1000 50 0.9999999 +242 957.7425 961.62 1000 50 0.99998736 +243 961.62 965.4975000000001 1000 50 0.9999428 +244 965.4975 969.375 1000 50 0.8919112 +245 969.375 973.2525 1000 50 0.99999845 +246 973.2525 977.1300000000001 1000 50 0.9997719 +247 977.13 981.0075 1000 50 0.9993837 +248 981.0075 984.8850000000001 1000 50 0.9996799 +249 984.885 988.7625 1000 50 0.9999927 +250 988.7625 992.6400000000001 1000 50 0.9998832 +251 992.64 996.5175 1000 50 0.99997365 +252 996.5175 1000.3950000000001 1000 50 0.9999981 +253 1000.395 1004.2725 1000 50 0.98953325 +254 1004.2725 1008.1500000000001 1000 50 0.9955728 +255 1008.15 1012.0275 1000 50 0.99999547 +256 1012.0275 1015.9050000000001 1000 50 0.9999989 +257 1015.905 1019.7825 1000 50 0.9980831 +258 1019.7825 1023.6600000000001 1000 50 0.99999976 +259 1023.66 1027.5375 1000 50 0.99620855 +260 1027.5375 1031.415 1000 50 0.9981608 +261 1035.2925 1039.17 1000 50 0.9914573 +262 1039.17 1043.0475000000001 1000 50 1.0 +263 1043.0475 1046.925 1000 50 0.99641305 +264 1046.925 1050.8025 1000 50 0.5571159 +265 1050.8025 1054.68 1000 50 0.99996173 +266 1054.68 1058.5575000000001 1000 50 0.999233 +267 1062.435 1066.3125 1000 50 0.99221283 +268 1066.3125 1070.19 1000 50 0.7559301 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_05-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_05-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f60a9d49267ad386606f93cacf82c19b2f0ce946 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_05-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,133 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.999585 +2 3.8775 7.755 1000 50 0.9972161 +3 7.755 11.6325 1000 50 0.80941015 +4 11.6325 15.51 1000 50 0.96693957 +5 15.51 19.3875 1000 50 0.98331326 +6 19.3875 23.265 1000 50 0.9862278 +7 23.265 27.142500000000002 1000 50 0.616883 +8 31.02 34.8975 1000 50 0.99212027 +9 34.8975 38.775 1000 50 0.98154217 +10 38.775 42.652499999999996 1000 50 0.999928 +11 42.6525 46.53 1000 50 0.9748556 +12 46.53 50.4075 1000 50 0.9715849 +13 50.4075 54.285 1000 50 0.9983706 +14 54.285 58.162499999999994 1000 50 0.9993286 +15 58.1625 62.04 1000 50 0.99990094 +16 62.04 65.9175 1000 50 0.9999956 +17 65.9175 69.795 1000 50 0.99904245 +18 69.795 73.6725 1000 50 0.99973613 +19 73.6725 77.55 1000 50 0.9999925 +20 77.55 81.4275 1000 50 0.9996253 +21 81.4275 85.30499999999999 1000 50 0.9999975 +22 85.305 89.1825 1000 50 1.0 +23 89.1825 93.06 1000 50 0.99997926 +24 93.06 96.9375 1000 50 0.9999995 +25 96.9375 100.815 1000 50 0.99999964 +26 100.815 104.6925 1000 50 0.99997866 +27 104.6925 108.57 1000 50 0.9890855 +28 108.57 112.44749999999999 1000 50 0.9999999 +29 112.4475 116.325 1000 50 0.9999728 +30 116.325 120.2025 1000 50 0.99993443 +31 120.2025 124.08 1000 50 0.99994457 +32 124.08 127.9575 1000 50 0.99999833 +33 127.9575 131.835 1000 50 1.0 +34 131.835 135.7125 1000 50 0.99999857 +35 135.7125 139.59 1000 50 0.9999007 +36 139.59 143.4675 1000 50 0.99999547 +37 143.4675 147.345 1000 50 0.99985063 +38 147.345 151.2225 1000 50 0.9998423 +39 151.2225 155.1 1000 50 0.9999989 +40 155.1 158.9775 1000 50 0.99993205 +41 158.9775 162.855 1000 50 0.9999716 +42 162.855 166.7325 1000 50 0.9999906 +43 166.7325 170.60999999999999 1000 50 0.999938 +44 170.61 174.4875 1000 50 0.99992216 +45 174.4875 178.365 1000 50 0.999998 +46 178.365 182.2425 1000 50 0.99999475 +47 182.2425 186.12 1000 50 0.99652076 +48 186.12 189.9975 1000 50 0.99985075 +49 189.9975 193.875 1000 50 1.0 +50 193.875 197.7525 1000 50 0.9990835 +51 197.7525 201.63 1000 50 0.9993949 +52 201.63 205.5075 1000 50 0.99987614 +53 205.5075 209.385 1000 50 0.98048294 +54 209.385 213.2625 1000 50 0.9995609 +55 213.2625 217.14 1000 50 0.99999654 +56 217.14 221.01749999999998 1000 50 0.9999809 +57 221.0175 224.895 1000 50 0.99998474 +58 224.895 228.7725 1000 50 0.9995691 +59 228.7725 232.65 1000 50 0.9961921 +60 232.65 236.5275 1000 50 0.99871135 +61 236.5275 240.405 1000 50 0.9999659 +62 240.405 244.2825 1000 50 0.999838 +63 244.2825 248.16 1000 50 0.99421316 +64 248.16 252.0375 1000 50 0.9993749 +65 252.0375 255.915 1000 50 0.99515015 +66 255.915 259.7925 1000 50 0.99994755 +67 259.7925 263.67 1000 50 0.9985317 +68 263.67 267.5475 1000 50 0.99849224 +69 267.5475 271.425 1000 50 0.97318655 +70 271.425 275.3025 1000 50 0.9999995 +71 275.3025 279.18 1000 50 0.9999968 +72 279.18 283.0575 1000 50 0.8251782 +73 283.0575 286.935 1000 50 0.9999995 +74 286.935 290.8125 1000 50 0.95184886 +75 290.8125 294.69 1000 50 0.9957677 +76 294.69 298.5675 1000 50 0.9998766 +77 298.5675 302.445 1000 50 0.9999827 +78 302.445 306.3225 1000 50 0.99983966 +79 306.3225 310.2 1000 50 0.9999994 +80 310.2 314.0775 1000 50 0.9999995 +81 314.0775 317.955 1000 50 0.9999188 +82 317.955 321.8325 1000 50 0.99999917 +83 321.8325 325.71 1000 50 0.9997516 +84 325.71 329.5875 1000 50 1.0 +85 329.5875 333.465 1000 50 0.9962961 +86 333.465 337.3425 1000 50 0.99759895 +87 337.3425 341.21999999999997 1000 50 1.0 +88 341.22 345.0975 1000 50 0.9829641 +89 345.0975 348.975 1000 50 0.9998368 +90 348.975 352.8525 1000 50 0.99988544 +91 352.8525 356.73 1000 50 0.9989172 +92 356.73 360.6075 1000 50 0.99995244 +93 360.6075 364.485 1000 50 0.99799675 +94 364.485 368.3625 1000 50 0.99923706 +95 368.3625 372.24 1000 50 0.99969685 +96 372.24 376.1175 1000 50 0.99991786 +97 376.1175 379.995 1000 50 0.9997583 +98 379.995 383.8725 1000 50 0.99983823 +99 383.8725 387.75 1000 50 0.997232 +100 387.75 391.6275 1000 50 0.9636514 +101 391.6275 395.505 1000 50 0.9999367 +102 395.505 399.3825 1000 50 0.9943745 +103 399.3825 403.26 1000 50 0.9861566 +104 403.26 407.1375 1000 50 0.99882084 +105 407.1375 411.015 1000 50 0.99992085 +106 411.015 414.8925 1000 50 0.9934144 +107 414.8925 418.77 1000 50 0.9999981 +108 418.77 422.6475 1000 50 1.0 +109 422.6475 426.525 1000 50 0.9996722 +110 426.525 430.4025 1000 50 0.99995506 +111 430.4025 434.28 1000 50 0.99980026 +112 434.28 438.15749999999997 1000 50 0.99977845 +113 438.1575 442.035 1000 50 0.99819 +114 442.035 445.9125 1000 50 0.999726 +115 445.9125 449.79 1000 50 0.99994147 +116 449.79 453.6675 1000 50 0.99980956 +117 453.6675 457.545 1000 50 0.9991749 +118 457.545 461.4225 1000 50 0.99955493 +119 461.4225 465.3 1000 50 0.9999976 +120 465.3 469.1775 1000 50 0.99838555 +121 469.1775 473.055 1000 50 0.99999833 +122 473.055 476.9325 1000 50 0.9991953 +123 476.9325 480.81 1000 50 0.99998796 +124 480.81 484.6875 1000 50 0.99758303 +125 484.6875 488.565 1000 50 0.99951637 +126 488.565 492.4425 1000 50 0.99999654 +127 492.4425 496.32 1000 50 0.99988294 +128 496.32 500.1975 1000 50 0.9999989 +129 500.1975 504.075 1000 50 0.99999976 +130 504.075 507.9525 1000 50 0.99982494 +131 507.9525 511.83 1000 50 0.99999976 +132 511.83 515.7075 1000 50 0.9999764 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_05-12-16_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_05-12-16_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..ada1748c04ccc611fbdbb4e9882fff7e7a47a4a9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_05-12-16_annot_2022-11-30_01.txt @@ -0,0 +1,194 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99989843 +2 3.8775 7.755 1000 50 0.99999976 +3 7.755 11.6325 1000 50 0.99999976 +4 11.6325 15.51 1000 50 0.99682534 +5 15.51 19.3875 1000 50 0.9999783 +6 19.3875 23.265 1000 50 0.99977213 +7 23.265 27.142500000000002 1000 50 1.0 +8 27.1425 31.02 1000 50 0.99993527 +9 31.02 34.8975 1000 50 0.99999857 +10 34.8975 38.775 1000 50 0.99999976 +11 38.775 42.652499999999996 1000 50 0.9983376 +12 42.6525 46.53 1000 50 0.99999917 +13 46.53 50.4075 1000 50 0.9999999 +14 50.4075 54.285 1000 50 0.9993315 +15 54.285 58.162499999999994 1000 50 0.9999895 +16 58.1625 62.04 1000 50 0.99999774 +17 62.04 65.9175 1000 50 0.9999372 +18 65.9175 69.795 1000 50 0.998898 +19 69.795 73.6725 1000 50 0.99973434 +20 73.6725 77.55 1000 50 0.99953735 +21 77.55 81.4275 1000 50 0.99956554 +22 81.4275 85.30499999999999 1000 50 0.999746 +23 85.305 89.1825 1000 50 0.99999964 +24 89.1825 93.06 1000 50 0.9986546 +25 93.06 96.9375 1000 50 0.99999976 +26 96.9375 100.815 1000 50 0.9999995 +27 100.815 104.6925 1000 50 0.9443297 +28 104.6925 108.57 1000 50 0.999951 +29 108.57 112.44749999999999 1000 50 0.9984511 +30 112.4475 116.325 1000 50 0.99983096 +31 116.325 120.2025 1000 50 0.99951565 +32 120.2025 124.08 1000 50 0.99993074 +33 124.08 127.9575 1000 50 0.9984471 +34 127.9575 131.835 1000 50 0.9999095 +35 131.835 135.7125 1000 50 0.91911256 +36 135.7125 139.59 1000 50 0.99713755 +37 139.59 143.4675 1000 50 0.99716115 +38 143.4675 147.345 1000 50 0.99993587 +39 147.345 151.2225 1000 50 0.96380335 +40 151.2225 155.1 1000 50 0.99999917 +41 155.1 158.9775 1000 50 0.9788711 +42 158.9775 162.855 1000 50 0.99798286 +43 162.855 166.7325 1000 50 0.99870217 +44 166.7325 170.60999999999999 1000 50 0.99845016 +45 170.61 174.4875 1000 50 0.95451486 +46 174.4875 178.365 1000 50 0.98723745 +47 178.365 182.2425 1000 50 0.99795485 +48 182.2425 186.12 1000 50 0.99993134 +49 186.12 189.9975 1000 50 0.9996774 +50 189.9975 193.875 1000 50 0.9992962 +51 193.875 197.7525 1000 50 0.95552754 +52 197.7525 201.63 1000 50 0.9803052 +53 201.63 205.5075 1000 50 0.9999231 +54 205.5075 209.385 1000 50 0.8920318 +55 209.385 213.2625 1000 50 0.99987197 +56 213.2625 217.14 1000 50 0.99992657 +57 217.14 221.01749999999998 1000 50 0.999686 +58 221.0175 224.895 1000 50 0.9890744 +59 224.895 228.7725 1000 50 0.99935263 +60 228.7725 232.65 1000 50 0.5851066 +61 232.65 236.5275 1000 50 0.990448 +62 236.5275 240.405 1000 50 0.9999964 +63 240.405 244.2825 1000 50 0.99968815 +64 244.2825 248.16 1000 50 0.9756507 +65 248.16 252.0375 1000 50 0.99985933 +66 252.0375 255.915 1000 50 0.98411983 +67 255.915 259.7925 1000 50 0.9999938 +68 259.7925 263.67 1000 50 0.9246387 +69 263.67 267.5475 1000 50 0.94165635 +70 267.5475 271.425 1000 50 0.94584304 +71 271.425 275.3025 1000 50 0.965265 +72 275.3025 279.18 1000 50 0.99544674 +73 279.18 283.0575 1000 50 0.9397852 +74 283.0575 286.935 1000 50 0.8959902 +75 286.935 290.8125 1000 50 0.997276 +76 290.8125 294.69 1000 50 0.93296975 +77 294.69 298.5675 1000 50 0.9913628 +78 298.5675 302.445 1000 50 0.99998105 +79 302.445 306.3225 1000 50 0.97817767 +80 306.3225 310.2 1000 50 0.72503763 +81 310.2 314.0775 1000 50 0.99999976 +82 317.955 321.8325 1000 50 0.99968934 +83 321.8325 325.71 1000 50 0.9506175 +84 329.5875 333.465 1000 50 0.99999344 +85 333.465 337.3425 1000 50 0.9931023 +86 337.3425 341.21999999999997 1000 50 0.99659973 +87 341.22 345.0975 1000 50 0.9999993 +88 345.0975 348.975 1000 50 0.91940904 +89 348.975 352.8525 1000 50 0.8962997 +90 352.8525 356.73 1000 50 0.99996233 +91 356.73 360.6075 1000 50 0.99897987 +92 360.6075 364.485 1000 50 0.99883837 +93 364.485 368.3625 1000 50 0.86035824 +94 368.3625 372.24 1000 50 0.9530004 +95 372.24 376.1175 1000 50 0.9971923 +96 376.1175 379.995 1000 50 0.8635743 +97 379.995 383.8725 1000 50 0.8183608 +98 383.8725 387.75 1000 50 0.9999552 +99 387.75 391.6275 1000 50 0.9740176 +100 391.6275 395.505 1000 50 0.99999976 +101 395.505 399.3825 1000 50 0.9995766 +102 399.3825 403.26 1000 50 0.9999995 +103 403.26 407.1375 1000 50 0.999405 +104 407.1375 411.015 1000 50 0.99994326 +105 411.015 414.8925 1000 50 0.9999999 +106 414.8925 418.77 1000 50 0.99700075 +107 418.77 422.6475 1000 50 0.99996257 +108 422.6475 426.525 1000 50 0.99991846 +109 426.525 430.4025 1000 50 1.0 +110 430.4025 434.28 1000 50 1.0 +111 434.28 438.15749999999997 1000 50 0.98587066 +112 438.1575 442.035 1000 50 0.9999826 +113 442.035 445.9125 1000 50 0.99993527 +114 445.9125 449.79 1000 50 0.99975115 +115 449.79 453.6675 1000 50 0.9999163 +116 453.6675 457.545 1000 50 0.9999943 +117 457.545 461.4225 1000 50 0.99955016 +118 461.4225 465.3 1000 50 0.9996743 +119 465.3 469.1775 1000 50 0.9968797 +120 469.1775 473.055 1000 50 0.9999949 +121 473.055 476.9325 1000 50 0.9966624 +122 476.9325 480.81 1000 50 0.9999826 +123 480.81 484.6875 1000 50 0.9969398 +124 484.6875 488.565 1000 50 0.9999068 +125 488.565 492.4425 1000 50 0.99996257 +126 492.4425 496.32 1000 50 0.99917465 +127 496.32 500.1975 1000 50 0.99731594 +128 500.1975 504.075 1000 50 0.9997578 +129 504.075 507.9525 1000 50 0.9996543 +130 507.9525 511.83 1000 50 0.9999844 +131 511.83 515.7075 1000 50 0.9999702 +132 515.7075 519.585 1000 50 0.65112484 +133 519.585 523.4625000000001 1000 50 0.94522315 +134 523.4625 527.34 1000 50 0.99997604 +135 527.34 531.2175000000001 1000 50 0.9866909 +136 531.2175 535.095 1000 50 0.9975733 +137 535.095 538.9725000000001 1000 50 0.9647199 +138 538.9725 542.85 1000 50 0.9993351 +139 542.85 546.7275000000001 1000 50 0.9999901 +140 546.7275 550.605 1000 50 0.99991417 +141 550.605 554.4825000000001 1000 50 0.99999976 +142 554.4825 558.36 1000 50 0.99995625 +143 558.36 562.2375000000001 1000 50 0.9503208 +144 562.2375 566.115 1000 50 0.99992156 +145 566.115 569.9925000000001 1000 50 0.9999492 +146 569.9925 573.87 1000 50 0.9999994 +147 573.87 577.7475000000001 1000 50 0.999038 +148 577.7475 581.625 1000 50 0.7931719 +149 581.625 585.5025 1000 50 0.9999994 +150 585.5025 589.3800000000001 1000 50 1.0 +151 589.38 593.2575 1000 50 0.9985935 +152 593.2575 597.1350000000001 1000 50 0.9999186 +153 597.135 601.0125 1000 50 0.9999378 +154 601.0125 604.8900000000001 1000 50 0.99989295 +155 604.89 608.7675 1000 50 1.0 +156 608.7675 612.6450000000001 1000 50 0.9933363 +157 612.645 616.5225 1000 50 0.9997489 +158 616.5225 620.4000000000001 1000 50 0.9999802 +159 620.4 624.2775 1000 50 0.9695721 +160 624.2775 628.1550000000001 1000 50 0.999992 +161 628.155 632.0325 1000 50 0.9999919 +162 632.0325 635.9100000000001 1000 50 0.99431616 +163 635.91 639.7875 1000 50 1.0 +164 639.7875 643.6650000000001 1000 50 0.9898872 +165 643.665 647.5425 1000 50 0.99635386 +166 647.5425 651.4200000000001 1000 50 0.9999988 +167 651.42 655.2975 1000 50 0.9931558 +168 655.2975 659.1750000000001 1000 50 0.99998033 +169 659.175 663.0525 1000 50 0.9999988 +170 663.0525 666.9300000000001 1000 50 0.99895227 +171 666.93 670.8075 1000 50 0.9997745 +172 670.8075 674.6850000000001 1000 50 0.9989537 +173 674.685 678.5625 1000 50 0.99980277 +174 678.5625 682.44 1000 50 0.9999018 +175 682.44 686.3175000000001 1000 50 0.7819585 +176 686.3175 690.195 1000 50 0.99848276 +177 690.195 694.0725000000001 1000 50 0.99998915 +178 694.0725 697.95 1000 50 0.9814299 +179 705.705 709.5825000000001 1000 50 0.9133866 +180 709.5825 713.46 1000 50 0.9989059 +181 717.3375 721.215 1000 50 0.9998635 +182 721.215 725.0925000000001 1000 50 0.99901307 +183 725.0925 728.97 1000 50 0.8155212 +184 728.97 732.8475000000001 1000 50 0.99998903 +185 732.8475 736.725 1000 50 0.99719316 +186 736.725 740.6025000000001 1000 50 0.7938749 +187 740.6025 744.48 1000 50 0.9752372 +188 744.48 748.3575000000001 1000 50 0.9983229 +189 748.3575 752.235 1000 50 0.99959844 +190 752.235 756.1125000000001 1000 50 0.9999889 +191 756.1125 759.99 1000 50 0.9999734 +192 759.99 763.8675000000001 1000 50 0.91419005 +193 763.8675 767.745 1000 50 0.9998975 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_06-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_06-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..514b197922b45224ac2cbeb89a216910550b231c --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_06-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,195 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9763209 +2 3.8775 7.755 1000 50 0.99996495 +3 7.755 11.6325 1000 50 0.99999964 +4 11.6325 15.51 1000 50 0.99997413 +5 15.51 19.3875 1000 50 0.9913027 +6 19.3875 23.265 1000 50 0.9998822 +7 23.265 27.142500000000002 1000 50 0.99808735 +8 27.1425 31.02 1000 50 0.9979436 +9 31.02 34.8975 1000 50 0.6180252 +10 38.775 42.652499999999996 1000 50 0.99986064 +11 42.6525 46.53 1000 50 0.99998987 +12 46.53 50.4075 1000 50 0.98979634 +13 50.4075 54.285 1000 50 0.9328713 +14 54.285 58.162499999999994 1000 50 0.9999733 +15 58.1625 62.04 1000 50 0.9863505 +16 62.04 65.9175 1000 50 0.8088734 +17 65.9175 69.795 1000 50 0.9999981 +18 69.795 73.6725 1000 50 0.9668656 +19 73.6725 77.55 1000 50 0.9999683 +20 77.55 81.4275 1000 50 0.9999089 +21 85.305 89.1825 1000 50 0.9999502 +22 89.1825 93.06 1000 50 0.999818 +23 93.06 96.9375 1000 50 0.857006 +24 96.9375 100.815 1000 50 0.99999523 +25 100.815 104.6925 1000 50 1.0 +26 104.6925 108.57 1000 50 0.9893909 +27 108.57 112.44749999999999 1000 50 0.999982 +28 112.4475 116.325 1000 50 0.99227554 +29 116.325 120.2025 1000 50 0.9809245 +30 120.2025 124.08 1000 50 1.0 +31 127.9575 131.835 1000 50 0.74778855 +32 131.835 135.7125 1000 50 0.9999014 +33 135.7125 139.59 1000 50 0.99995446 +34 139.59 143.4675 1000 50 0.9998419 +35 143.4675 147.345 1000 50 0.99995136 +36 147.345 151.2225 1000 50 0.99952817 +37 151.2225 155.1 1000 50 1.0 +38 155.1 158.9775 1000 50 0.99997425 +39 158.9775 162.855 1000 50 0.9999907 +40 162.855 166.7325 1000 50 0.99995613 +41 166.7325 170.60999999999999 1000 50 0.9999989 +42 170.61 174.4875 1000 50 0.51727325 +43 174.4875 178.365 1000 50 0.99999905 +44 178.365 182.2425 1000 50 0.99972504 +45 182.2425 186.12 1000 50 0.97537816 +46 186.12 189.9975 1000 50 0.9999974 +47 189.9975 193.875 1000 50 0.9999995 +48 193.875 197.7525 1000 50 0.9996263 +49 197.7525 201.63 1000 50 0.99999595 +50 201.63 205.5075 1000 50 0.99894994 +51 205.5075 209.385 1000 50 0.99963975 +52 209.385 213.2625 1000 50 0.9999993 +53 213.2625 217.14 1000 50 1.0 +54 217.14 221.01749999999998 1000 50 0.9997416 +55 221.0175 224.895 1000 50 0.9999653 +56 224.895 228.7725 1000 50 0.99999416 +57 228.7725 232.65 1000 50 0.9999039 +58 232.65 236.5275 1000 50 0.999962 +59 236.5275 240.405 1000 50 0.99988294 +60 240.405 244.2825 1000 50 0.9996542 +61 244.2825 248.16 1000 50 0.99996734 +62 248.16 252.0375 1000 50 0.99997175 +63 252.0375 255.915 1000 50 0.99989605 +64 255.915 259.7925 1000 50 0.9999918 +65 259.7925 263.67 1000 50 0.990703 +66 263.67 267.5475 1000 50 0.99996436 +67 267.5475 271.425 1000 50 0.99999964 +68 271.425 275.3025 1000 50 0.9995065 +69 275.3025 279.18 1000 50 0.99991345 +70 279.18 283.0575 1000 50 0.99999726 +71 283.0575 286.935 1000 50 0.99999964 +72 286.935 290.8125 1000 50 0.99995697 +73 290.8125 294.69 1000 50 0.99998796 +74 294.69 298.5675 1000 50 0.9985771 +75 298.5675 302.445 1000 50 0.99990165 +76 302.445 306.3225 1000 50 0.9999726 +77 306.3225 310.2 1000 50 0.9999945 +78 310.2 314.0775 1000 50 0.9997589 +79 314.0775 317.955 1000 50 0.99996996 +80 317.955 321.8325 1000 50 0.9999424 +81 321.8325 325.71 1000 50 0.99996114 +82 325.71 329.5875 1000 50 0.9996049 +83 329.5875 333.465 1000 50 0.9999918 +84 333.465 337.3425 1000 50 0.99999964 +85 337.3425 341.21999999999997 1000 50 0.9996037 +86 341.22 345.0975 1000 50 0.9999995 +87 345.0975 348.975 1000 50 1.0 +88 348.975 352.8525 1000 50 0.99999976 +89 352.8525 356.73 1000 50 0.99999714 +90 356.73 360.6075 1000 50 0.999288 +91 360.6075 364.485 1000 50 0.99999166 +92 364.485 368.3625 1000 50 0.999701 +93 368.3625 372.24 1000 50 0.9999794 +94 372.24 376.1175 1000 50 0.998906 +95 376.1175 379.995 1000 50 1.0 +96 379.995 383.8725 1000 50 0.9874511 +97 383.8725 387.75 1000 50 0.999998 +98 387.75 391.6275 1000 50 0.99999833 +99 391.6275 395.505 1000 50 0.9999995 +100 395.505 399.3825 1000 50 0.999705 +101 399.3825 403.26 1000 50 0.99998796 +102 403.26 407.1375 1000 50 0.9984842 +103 407.1375 411.015 1000 50 0.9983423 +104 411.015 414.8925 1000 50 0.9999448 +105 414.8925 418.77 1000 50 0.99999964 +106 418.77 422.6475 1000 50 0.99999964 +107 422.6475 426.525 1000 50 0.9999993 +108 426.525 430.4025 1000 50 0.99999917 +109 430.4025 434.28 1000 50 0.99999976 +110 434.28 438.15749999999997 1000 50 0.99999976 +111 438.1575 442.035 1000 50 0.9999976 +112 442.035 445.9125 1000 50 0.99935883 +113 445.9125 449.79 1000 50 0.99999964 +114 449.79 453.6675 1000 50 0.99955004 +115 453.6675 457.545 1000 50 0.9999908 +116 457.545 461.4225 1000 50 0.9999999 +117 461.4225 465.3 1000 50 1.0 +118 465.3 469.1775 1000 50 1.0 +119 469.1775 473.055 1000 50 1.0 +120 473.055 476.9325 1000 50 0.99997497 +121 476.9325 480.81 1000 50 0.93062145 +122 480.81 484.6875 1000 50 0.9999511 +123 484.6875 488.565 1000 50 0.9990946 +124 488.565 492.4425 1000 50 0.99992967 +125 492.4425 496.32 1000 50 0.9999045 +126 504.075 507.9525 1000 50 0.9991297 +127 507.9525 511.83 1000 50 0.9999906 +128 511.83 515.7075 1000 50 0.9568554 +129 515.7075 519.585 1000 50 0.8334952 +130 519.585 523.4625000000001 1000 50 0.9977316 +131 523.4625 527.34 1000 50 0.9997379 +132 527.34 531.2175000000001 1000 50 0.9993162 +133 531.2175 535.095 1000 50 0.92044884 +134 535.095 538.9725000000001 1000 50 0.99436474 +135 538.9725 542.85 1000 50 0.99996734 +136 542.85 546.7275000000001 1000 50 0.990157 +137 546.7275 550.605 1000 50 0.8644341 +138 550.605 554.4825000000001 1000 50 0.8656971 +139 554.4825 558.36 1000 50 0.9214112 +140 558.36 562.2375000000001 1000 50 0.9999974 +141 562.2375 566.115 1000 50 0.9996418 +142 566.115 569.9925000000001 1000 50 0.9847341 +143 569.9925 573.87 1000 50 0.94897664 +144 573.87 577.7475000000001 1000 50 0.99546236 +145 577.7475 581.625 1000 50 0.99803144 +146 581.625 585.5025 1000 50 0.85970646 +147 585.5025 589.3800000000001 1000 50 0.9969632 +148 589.38 593.2575 1000 50 0.9687574 +149 593.2575 597.1350000000001 1000 50 0.55850285 +150 597.135 601.0125 1000 50 0.99639773 +151 608.7675 612.6450000000001 1000 50 0.84172094 +152 612.645 616.5225 1000 50 0.90160173 +153 616.5225 620.4000000000001 1000 50 0.9409805 +154 628.155 632.0325 1000 50 0.57554567 +155 632.0325 635.9100000000001 1000 50 0.74024785 +156 635.91 639.7875 1000 50 0.831777 +157 639.7875 643.6650000000001 1000 50 0.9665904 +158 643.665 647.5425 1000 50 0.9966865 +159 647.5425 651.4200000000001 1000 50 0.90291613 +160 651.42 655.2975 1000 50 0.8102328 +161 655.2975 659.1750000000001 1000 50 0.72014844 +162 663.0525 666.9300000000001 1000 50 0.98808074 +163 666.93 670.8075 1000 50 0.6386727 +164 670.8075 674.6850000000001 1000 50 0.9790982 +165 678.5625 682.44 1000 50 0.9895599 +166 682.44 686.3175000000001 1000 50 0.5120713 +167 686.3175 690.195 1000 50 0.99194205 +168 694.0725 697.95 1000 50 0.56912 +169 697.95 701.8275000000001 1000 50 0.9799952 +170 701.8275 705.705 1000 50 0.76381886 +171 705.705 709.5825000000001 1000 50 0.63094234 +172 721.215 725.0925000000001 1000 50 0.84425646 +173 725.0925 728.97 1000 50 0.7702587 +174 736.725 740.6025000000001 1000 50 0.99176544 +175 740.6025 744.48 1000 50 0.99494004 +176 744.48 748.3575000000001 1000 50 0.99451643 +177 748.3575 752.235 1000 50 0.999734 +178 752.235 756.1125000000001 1000 50 0.999925 +179 756.1125 759.99 1000 50 0.9999989 +180 759.99 763.8675000000001 1000 50 0.99836963 +181 763.8675 767.745 1000 50 0.9989563 +182 767.745 771.6225000000001 1000 50 0.9999291 +183 771.6225 775.5 1000 50 0.9999013 +184 775.5 779.3775 1000 50 0.995713 +185 779.3775 783.2550000000001 1000 50 0.9999893 +186 783.255 787.1325 1000 50 0.9999982 +187 787.1325 791.0100000000001 1000 50 0.91208065 +188 791.01 794.8875 1000 50 0.9999989 +189 794.8875 798.7650000000001 1000 50 0.99992394 +190 798.765 802.6425 1000 50 0.9979305 +191 802.6425 806.5200000000001 1000 50 0.9999876 +192 806.52 810.3975 1000 50 0.99929583 +193 810.3975 814.2750000000001 1000 50 0.9999999 +194 814.275 818.1525 1000 50 0.9999243 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_06-17-17_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_06-17-17_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..8a3e7e733da042e3d5437683496194002e803af0 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_06-17-17_annot_2022-11-30_01.txt @@ -0,0 +1,120 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.991872 +2 3.8775 7.755 1000 50 0.9999999 +3 7.755 11.6325 1000 50 0.9919482 +4 11.6325 15.51 1000 50 0.8143328 +5 15.51 19.3875 1000 50 0.8963409 +6 19.3875 23.265 1000 50 0.9964563 +7 23.265 27.142500000000002 1000 50 0.99969566 +8 27.1425 31.02 1000 50 0.99997103 +9 31.02 34.8975 1000 50 0.99998903 +10 34.8975 38.775 1000 50 0.99912137 +11 38.775 42.652499999999996 1000 50 0.9999999 +12 42.6525 46.53 1000 50 0.99402964 +13 46.53 50.4075 1000 50 0.998949 +14 50.4075 54.285 1000 50 0.9954775 +15 54.285 58.162499999999994 1000 50 0.95448035 +16 58.1625 62.04 1000 50 0.9999044 +17 65.9175 69.795 1000 50 0.9999963 +18 69.795 73.6725 1000 50 0.9995813 +19 73.6725 77.55 1000 50 0.9999478 +20 77.55 81.4275 1000 50 0.9999838 +21 81.4275 85.30499999999999 1000 50 0.9982127 +22 85.305 89.1825 1000 50 0.999814 +23 89.1825 93.06 1000 50 0.99997103 +24 93.06 96.9375 1000 50 0.999979 +25 96.9375 100.815 1000 50 0.99862194 +26 100.815 104.6925 1000 50 0.999959 +27 104.6925 108.57 1000 50 0.9974063 +28 108.57 112.44749999999999 1000 50 0.9993874 +29 112.4475 116.325 1000 50 0.9998964 +30 116.325 120.2025 1000 50 0.999987 +31 120.2025 124.08 1000 50 0.9932547 +32 124.08 127.9575 1000 50 0.9997043 +33 127.9575 131.835 1000 50 0.9999994 +34 131.835 135.7125 1000 50 0.9985526 +35 135.7125 139.59 1000 50 0.9998815 +36 139.59 143.4675 1000 50 0.9963936 +37 143.4675 147.345 1000 50 0.9968035 +38 147.345 151.2225 1000 50 0.9995876 +39 151.2225 155.1 1000 50 0.9999832 +40 155.1 158.9775 1000 50 0.99990153 +41 158.9775 162.855 1000 50 0.9813716 +42 162.855 166.7325 1000 50 0.9998369 +43 166.7325 170.60999999999999 1000 50 0.9999622 +44 170.61 174.4875 1000 50 0.99999785 +45 174.4875 178.365 1000 50 0.9998863 +46 178.365 182.2425 1000 50 0.99853253 +47 182.2425 186.12 1000 50 0.9997582 +48 186.12 189.9975 1000 50 0.99996555 +49 189.9975 193.875 1000 50 0.99998355 +50 193.875 197.7525 1000 50 0.9999987 +51 197.7525 201.63 1000 50 0.9999894 +52 201.63 205.5075 1000 50 0.6447728 +53 205.5075 209.385 1000 50 0.99995995 +54 209.385 213.2625 1000 50 0.9984962 +55 213.2625 217.14 1000 50 0.9999846 +56 217.14 221.01749999999998 1000 50 0.9999999 +57 221.0175 224.895 1000 50 0.998904 +58 224.895 228.7725 1000 50 0.9999999 +59 228.7725 232.65 1000 50 0.99992037 +60 232.65 236.5275 1000 50 0.99842584 +61 236.5275 240.405 1000 50 0.9999331 +62 240.405 244.2825 1000 50 0.9995454 +63 244.2825 248.16 1000 50 0.99999905 +64 248.16 252.0375 1000 50 1.0 +65 252.0375 255.915 1000 50 0.9997899 +66 255.915 259.7925 1000 50 0.9995234 +67 259.7925 263.67 1000 50 0.9999989 +68 263.67 267.5475 1000 50 0.9996542 +69 267.5475 271.425 1000 50 1.0 +70 271.425 275.3025 1000 50 1.0 +71 275.3025 279.18 1000 50 0.9962921 +72 279.18 283.0575 1000 50 0.9998958 +73 283.0575 286.935 1000 50 0.99999976 +74 286.935 290.8125 1000 50 0.99999666 +75 290.8125 294.69 1000 50 0.9984818 +76 294.69 298.5675 1000 50 0.9992113 +77 298.5675 302.445 1000 50 1.0 +78 302.445 306.3225 1000 50 0.99323624 +79 306.3225 310.2 1000 50 0.99999475 +80 310.2 314.0775 1000 50 0.99998665 +81 314.0775 317.955 1000 50 0.99999654 +82 317.955 321.8325 1000 50 0.9999993 +83 321.8325 325.71 1000 50 0.9999944 +84 325.71 329.5875 1000 50 0.9999994 +85 329.5875 333.465 1000 50 0.999997 +86 333.465 337.3425 1000 50 0.9969414 +87 337.3425 341.21999999999997 1000 50 0.99039865 +88 341.22 345.0975 1000 50 0.99999833 +89 345.0975 348.975 1000 50 0.99885345 +90 348.975 352.8525 1000 50 0.99701536 +91 352.8525 356.73 1000 50 0.99989307 +92 356.73 360.6075 1000 50 0.9487815 +93 360.6075 364.485 1000 50 0.9991598 +94 364.485 368.3625 1000 50 0.9972767 +95 368.3625 372.24 1000 50 1.0 +96 372.24 376.1175 1000 50 0.994538 +97 379.995 383.8725 1000 50 0.9999999 +98 383.8725 387.75 1000 50 0.91611415 +99 387.75 391.6275 1000 50 0.9980241 +100 391.6275 395.505 1000 50 0.9997981 +101 395.505 399.3825 1000 50 0.9970727 +102 399.3825 403.26 1000 50 0.9999949 +103 403.26 407.1375 1000 50 0.9999999 +104 407.1375 411.015 1000 50 0.54117167 +105 411.015 414.8925 1000 50 0.9992793 +106 414.8925 418.77 1000 50 0.999984 +107 418.77 422.6475 1000 50 0.999931 +108 422.6475 426.525 1000 50 0.99999297 +109 426.525 430.4025 1000 50 0.99913675 +110 430.4025 434.28 1000 50 0.9999981 +111 434.28 438.15749999999997 1000 50 0.99993134 +112 438.1575 442.035 1000 50 0.99988425 +113 442.035 445.9125 1000 50 0.99999607 +114 445.9125 449.79 1000 50 0.9998869 +115 449.79 453.6675 1000 50 0.99997926 +116 453.6675 457.545 1000 50 0.99017835 +117 457.545 461.4225 1000 50 0.9997323 +118 461.4225 465.3 1000 50 0.999559 +119 465.3 469.1775 1000 50 0.98192596 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_07-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_07-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0b0bcdbbb3cdc8851cfe45de9c94923dd2d7b346 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_07-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,257 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9873439 +2 3.8775 7.755 1000 50 0.9996093 +3 7.755 11.6325 1000 50 0.9999968 +4 11.6325 15.51 1000 50 0.9367305 +5 15.51 19.3875 1000 50 0.98572785 +6 19.3875 23.265 1000 50 0.9993005 +7 27.1425 31.02 1000 50 0.9990791 +8 31.02 34.8975 1000 50 0.9999994 +9 34.8975 38.775 1000 50 0.6454589 +10 38.775 42.652499999999996 1000 50 0.9956707 +11 42.6525 46.53 1000 50 0.999998 +12 46.53 50.4075 1000 50 0.9999993 +13 50.4075 54.285 1000 50 0.9999999 +14 54.285 58.162499999999994 1000 50 1.0 +15 58.1625 62.04 1000 50 0.7102885 +16 62.04 65.9175 1000 50 1.0 +17 65.9175 69.795 1000 50 1.0 +18 69.795 73.6725 1000 50 0.98140174 +19 73.6725 77.55 1000 50 0.9991129 +20 77.55 81.4275 1000 50 0.99797314 +21 81.4275 85.30499999999999 1000 50 0.9157924 +22 85.305 89.1825 1000 50 0.99999976 +23 89.1825 93.06 1000 50 0.805276 +24 93.06 96.9375 1000 50 0.99991643 +25 96.9375 100.815 1000 50 0.99999964 +26 100.815 104.6925 1000 50 0.9497024 +27 104.6925 108.57 1000 50 0.9999999 +28 108.57 112.44749999999999 1000 50 0.99996984 +29 112.4475 116.325 1000 50 0.9999964 +30 116.325 120.2025 1000 50 0.9999343 +31 120.2025 124.08 1000 50 1.0 +32 124.08 127.9575 1000 50 0.9999647 +33 127.9575 131.835 1000 50 0.9999839 +34 131.835 135.7125 1000 50 0.99999964 +35 135.7125 139.59 1000 50 0.9958104 +36 139.59 143.4675 1000 50 0.99999034 +37 143.4675 147.345 1000 50 1.0 +38 147.345 151.2225 1000 50 0.9999999 +39 151.2225 155.1 1000 50 1.0 +40 155.1 158.9775 1000 50 0.99999523 +41 158.9775 162.855 1000 50 0.99983656 +42 162.855 166.7325 1000 50 0.99995375 +43 166.7325 170.60999999999999 1000 50 0.9997832 +44 170.61 174.4875 1000 50 0.99874914 +45 174.4875 178.365 1000 50 0.9989196 +46 178.365 182.2425 1000 50 0.99857485 +47 182.2425 186.12 1000 50 0.99999976 +48 186.12 189.9975 1000 50 0.99998736 +49 189.9975 193.875 1000 50 0.9996885 +50 193.875 197.7525 1000 50 1.0 +51 197.7525 201.63 1000 50 0.9882061 +52 201.63 205.5075 1000 50 0.9999671 +53 205.5075 209.385 1000 50 0.9999628 +54 209.385 213.2625 1000 50 0.9999989 +55 213.2625 217.14 1000 50 0.999998 +56 217.14 221.01749999999998 1000 50 0.99999964 +57 221.0175 224.895 1000 50 0.9998722 +58 224.895 228.7725 1000 50 0.9466497 +59 228.7725 232.65 1000 50 0.99998116 +60 232.65 236.5275 1000 50 0.9758967 +61 236.5275 240.405 1000 50 0.7852304 +62 240.405 244.2825 1000 50 0.99987006 +63 244.2825 248.16 1000 50 0.9999796 +64 248.16 252.0375 1000 50 0.9996388 +65 252.0375 255.915 1000 50 0.9683412 +66 259.7925 263.67 1000 50 0.9860887 +67 263.67 267.5475 1000 50 0.9456522 +68 267.5475 271.425 1000 50 0.9958429 +69 271.425 275.3025 1000 50 0.9785266 +70 275.3025 279.18 1000 50 0.89130586 +71 279.18 283.0575 1000 50 0.97821814 +72 286.935 290.8125 1000 50 0.99678886 +73 290.8125 294.69 1000 50 0.99333715 +74 294.69 298.5675 1000 50 0.9752112 +75 298.5675 302.445 1000 50 0.99946505 +76 302.445 306.3225 1000 50 0.8623638 +77 306.3225 310.2 1000 50 0.99999213 +78 310.2 314.0775 1000 50 0.96836156 +79 314.0775 317.955 1000 50 0.9965559 +80 317.955 321.8325 1000 50 0.98923486 +81 325.71 329.5875 1000 50 0.6929663 +82 337.3425 341.21999999999997 1000 50 0.9963253 +83 341.22 345.0975 1000 50 0.9981426 +84 345.0975 348.975 1000 50 0.999918 +85 348.975 352.8525 1000 50 0.9999436 +86 352.8525 356.73 1000 50 0.999828 +87 356.73 360.6075 1000 50 0.95538914 +88 360.6075 364.485 1000 50 0.993822 +89 364.485 368.3625 1000 50 0.99987555 +90 368.3625 372.24 1000 50 0.99770373 +91 372.24 376.1175 1000 50 0.9866398 +92 376.1175 379.995 1000 50 0.99980694 +93 383.8725 387.75 1000 50 0.9999232 +94 387.75 391.6275 1000 50 0.999895 +95 391.6275 395.505 1000 50 0.9941399 +96 395.505 399.3825 1000 50 0.96135294 +97 399.3825 403.26 1000 50 0.9999995 +98 403.26 407.1375 1000 50 0.9994412 +99 407.1375 411.015 1000 50 0.9999993 +100 411.015 414.8925 1000 50 0.99832565 +101 418.77 422.6475 1000 50 0.99991107 +102 422.6475 426.525 1000 50 0.9999852 +103 430.4025 434.28 1000 50 0.9996118 +104 434.28 438.15749999999997 1000 50 0.9784444 +105 438.1575 442.035 1000 50 0.5504451 +106 442.035 445.9125 1000 50 0.99999845 +107 445.9125 449.79 1000 50 0.9956779 +108 449.79 453.6675 1000 50 0.99406475 +109 453.6675 457.545 1000 50 0.9999999 +110 457.545 461.4225 1000 50 0.9998683 +111 465.3 469.1775 1000 50 0.99999535 +112 469.1775 473.055 1000 50 0.9999101 +113 473.055 476.9325 1000 50 0.99990773 +114 476.9325 480.81 1000 50 0.99999976 +115 484.6875 488.565 1000 50 0.99907935 +116 488.565 492.4425 1000 50 0.98903555 +117 492.4425 496.32 1000 50 0.98392487 +118 496.32 500.1975 1000 50 0.99936694 +119 500.1975 504.075 1000 50 0.9685172 +120 504.075 507.9525 1000 50 0.9752015 +121 507.9525 511.83 1000 50 0.98623616 +122 511.83 515.7075 1000 50 0.9999361 +123 515.7075 519.585 1000 50 0.9999999 +124 519.585 523.4625000000001 1000 50 0.99826753 +125 523.4625 527.34 1000 50 0.9975122 +126 527.34 531.2175000000001 1000 50 0.9998141 +127 531.2175 535.095 1000 50 0.89790696 +128 535.095 538.9725000000001 1000 50 0.9999901 +129 538.9725 542.85 1000 50 0.9979759 +130 546.7275 550.605 1000 50 0.99953806 +131 550.605 554.4825000000001 1000 50 0.99997294 +132 554.4825 558.36 1000 50 0.9662209 +133 558.36 562.2375000000001 1000 50 0.9999596 +134 562.2375 566.115 1000 50 0.9653562 +135 566.115 569.9925000000001 1000 50 0.99089867 +136 569.9925 573.87 1000 50 0.9999839 +137 577.7475 581.625 1000 50 0.84925956 +138 581.625 585.5025 1000 50 0.97902197 +139 585.5025 589.3800000000001 1000 50 0.9996921 +140 589.38 593.2575 1000 50 0.9999993 +141 593.2575 597.1350000000001 1000 50 0.9999975 +142 597.135 601.0125 1000 50 0.99991417 +143 601.0125 604.8900000000001 1000 50 0.9999925 +144 604.89 608.7675 1000 50 0.9999993 +145 608.7675 612.6450000000001 1000 50 0.99959654 +146 612.645 616.5225 1000 50 0.9999416 +147 616.5225 620.4000000000001 1000 50 0.9999404 +148 620.4 624.2775 1000 50 0.9999275 +149 624.2775 628.1550000000001 1000 50 0.9873778 +150 628.155 632.0325 1000 50 0.99998283 +151 632.0325 635.9100000000001 1000 50 0.9999732 +152 635.91 639.7875 1000 50 1.0 +153 639.7875 643.6650000000001 1000 50 0.9997973 +154 643.665 647.5425 1000 50 1.0 +155 647.5425 651.4200000000001 1000 50 0.9999852 +156 651.42 655.2975 1000 50 0.6319359 +157 655.2975 659.1750000000001 1000 50 0.99996006 +158 659.175 663.0525 1000 50 1.0 +159 663.0525 666.9300000000001 1000 50 0.99997413 +160 666.93 670.8075 1000 50 0.70223325 +161 670.8075 674.6850000000001 1000 50 0.99948066 +162 674.685 678.5625 1000 50 0.99949753 +163 678.5625 682.44 1000 50 1.0 +164 682.44 686.3175000000001 1000 50 0.99998677 +165 686.3175 690.195 1000 50 0.99999964 +166 690.195 694.0725000000001 1000 50 0.9999993 +167 694.0725 697.95 1000 50 0.9999701 +168 697.95 701.8275000000001 1000 50 1.0 +169 701.8275 705.705 1000 50 0.99999833 +170 705.705 709.5825000000001 1000 50 0.99988294 +171 709.5825 713.46 1000 50 0.9999896 +172 713.46 717.3375000000001 1000 50 0.9999049 +173 717.3375 721.215 1000 50 0.9998981 +174 721.215 725.0925000000001 1000 50 0.915463 +175 725.0925 728.97 1000 50 0.9976017 +176 728.97 732.8475000000001 1000 50 0.99999404 +177 732.8475 736.725 1000 50 0.9992206 +178 736.725 740.6025000000001 1000 50 0.9762731 +179 740.6025 744.48 1000 50 0.9997738 +180 744.48 748.3575000000001 1000 50 0.99680257 +181 748.3575 752.235 1000 50 0.99532384 +182 752.235 756.1125000000001 1000 50 0.999972 +183 756.1125 759.99 1000 50 0.98742175 +184 763.8675 767.745 1000 50 0.99990094 +185 767.745 771.6225000000001 1000 50 0.99926025 +186 771.6225 775.5 1000 50 0.98681575 +187 783.255 787.1325 1000 50 0.9692814 +188 787.1325 791.0100000000001 1000 50 0.9999989 +189 791.01 794.8875 1000 50 0.98349726 +190 794.8875 798.7650000000001 1000 50 0.9992175 +191 798.765 802.6425 1000 50 0.5509877 +192 802.6425 806.5200000000001 1000 50 0.99963343 +193 806.52 810.3975 1000 50 0.9994536 +194 810.3975 814.2750000000001 1000 50 0.89681995 +195 814.275 818.1525 1000 50 0.99917775 +196 818.1525 822.0300000000001 1000 50 0.9974955 +197 822.03 825.9075 1000 50 0.99999845 +198 825.9075 829.7850000000001 1000 50 0.9998927 +199 833.6625 837.5400000000001 1000 50 0.99969935 +200 845.295 849.1725 1000 50 0.93363106 +201 856.9275 860.8050000000001 1000 50 0.9900405 +202 860.805 864.6825 1000 50 0.9999287 +203 864.6825 868.5600000000001 1000 50 0.9642608 +204 876.315 880.1925000000001 1000 50 0.9993748 +205 884.07 887.9475000000001 1000 50 0.96868783 +206 887.9475 891.825 1000 50 0.99931765 +207 895.7025 899.58 1000 50 0.91255736 +208 899.58 903.4575000000001 1000 50 0.99462044 +209 907.335 911.2125000000001 1000 50 0.99947006 +210 922.845 926.7225000000001 1000 50 0.9998041 +211 926.7225 930.6 1000 50 0.98592806 +212 930.6 934.4775000000001 1000 50 0.9511191 +213 938.355 942.2325000000001 1000 50 0.688289 +214 942.2325 946.11 1000 50 0.99756014 +215 946.11 949.9875000000001 1000 50 0.6586215 +216 949.9875 953.865 1000 50 0.9286845 +217 953.865 957.7425000000001 1000 50 0.99974114 +218 957.7425 961.62 1000 50 0.9986985 +219 961.62 965.4975000000001 1000 50 0.9923184 +220 965.4975 969.375 1000 50 0.9326067 +221 969.375 973.2525 1000 50 0.9999826 +222 973.2525 977.1300000000001 1000 50 0.9686628 +223 977.13 981.0075 1000 50 0.9634788 +224 981.0075 984.8850000000001 1000 50 0.99954396 +225 984.885 988.7625 1000 50 0.99966705 +226 988.7625 992.6400000000001 1000 50 0.9988894 +227 992.64 996.5175 1000 50 1.0 +228 996.5175 1000.3950000000001 1000 50 0.894334 +229 1000.395 1004.2725 1000 50 0.99999094 +230 1004.2725 1008.1500000000001 1000 50 0.9999738 +231 1008.15 1012.0275 1000 50 0.9998342 +232 1012.0275 1015.9050000000001 1000 50 0.99998605 +233 1015.905 1019.7825 1000 50 0.9999137 +234 1019.7825 1023.6600000000001 1000 50 0.99998975 +235 1023.66 1027.5375 1000 50 0.9997775 +236 1027.5375 1031.415 1000 50 0.99980146 +237 1031.415 1035.2925 1000 50 0.9982274 +238 1035.2925 1039.17 1000 50 0.9999622 +239 1039.17 1043.0475000000001 1000 50 0.9999993 +240 1043.0475 1046.925 1000 50 0.9991277 +241 1046.925 1050.8025 1000 50 0.99999607 +242 1050.8025 1054.68 1000 50 0.99773175 +243 1054.68 1058.5575000000001 1000 50 0.9999993 +244 1058.5575 1062.435 1000 50 0.99999785 +245 1062.435 1066.3125 1000 50 0.9991273 +246 1066.3125 1070.19 1000 50 0.997029 +247 1070.19 1074.0675 1000 50 0.9991271 +248 1074.0675 1077.9450000000002 1000 50 0.9999987 +249 1077.945 1081.8225 1000 50 0.99999905 +250 1081.8225 1085.7 1000 50 0.9999945 +251 1085.7 1089.5775 1000 50 0.9996772 +252 1089.5775 1093.4550000000002 1000 50 0.99997365 +253 1093.455 1097.3325 1000 50 0.9999999 +254 1101.21 1105.0875 1000 50 0.9994586 +255 1105.0875 1108.9650000000001 1000 50 0.99987197 +256 1108.965 1112.8425 1000 50 0.82958794 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_07-22-12_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_07-22-12_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..322c41d5e20b1fbdba5303e692c8c3bec857a602 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_07-22-12_annot_2022-11-30_01.txt @@ -0,0 +1,46 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99961036 +2 3.8775 7.755 1000 50 0.99993217 +3 7.755 11.6325 1000 50 0.99999976 +4 11.6325 15.51 1000 50 0.9999902 +5 15.51 19.3875 1000 50 0.9983486 +6 19.3875 23.265 1000 50 0.9999938 +7 23.265 27.142500000000002 1000 50 0.9999304 +8 27.1425 31.02 1000 50 0.89434546 +9 31.02 34.8975 1000 50 0.9999969 +10 34.8975 38.775 1000 50 0.99973375 +11 38.775 42.652499999999996 1000 50 0.9999875 +12 42.6525 46.53 1000 50 0.9562572 +13 46.53 50.4075 1000 50 0.9998248 +14 50.4075 54.285 1000 50 0.99994314 +15 54.285 58.162499999999994 1000 50 0.99948335 +16 58.1625 62.04 1000 50 0.9897131 +17 62.04 65.9175 1000 50 0.9998073 +18 65.9175 69.795 1000 50 0.999997 +19 69.795 73.6725 1000 50 1.0 +20 73.6725 77.55 1000 50 0.997988 +21 77.55 81.4275 1000 50 0.99998426 +22 81.4275 85.30499999999999 1000 50 0.9999001 +23 85.305 89.1825 1000 50 0.99868494 +24 89.1825 93.06 1000 50 0.99999416 +25 93.06 96.9375 1000 50 0.99999905 +26 96.9375 100.815 1000 50 0.9997658 +27 100.815 104.6925 1000 50 0.99999917 +28 104.6925 108.57 1000 50 0.99998164 +29 108.57 112.44749999999999 1000 50 0.9592938 +30 112.4475 116.325 1000 50 0.99996674 +31 116.325 120.2025 1000 50 0.99991226 +32 120.2025 124.08 1000 50 0.9908722 +33 124.08 127.9575 1000 50 0.97335386 +34 127.9575 131.835 1000 50 1.0 +35 131.835 135.7125 1000 50 0.99699795 +36 135.7125 139.59 1000 50 0.9884334 +37 139.59 143.4675 1000 50 0.99232024 +38 143.4675 147.345 1000 50 0.99999034 +39 147.345 151.2225 1000 50 0.9999491 +40 151.2225 155.1 1000 50 0.99999154 +41 155.1 158.9775 1000 50 0.99876297 +42 158.9775 162.855 1000 50 0.9999685 +43 162.855 166.7325 1000 50 0.9995146 +44 166.7325 170.60999999999999 1000 50 0.9993568 +45 170.61 174.4875 1000 50 0.69443154 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_08-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_08-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..afd8f2289af7b2d732f52bea2da03e27f8a90460 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_08-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,318 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99999976 +2 3.8775 7.755 1000 50 0.9999521 +3 7.755 11.6325 1000 50 0.9556472 +4 11.6325 15.51 1000 50 0.99716645 +5 15.51 19.3875 1000 50 0.9097792 +6 19.3875 23.265 1000 50 0.9843955 +7 23.265 27.142500000000002 1000 50 0.99999416 +8 27.1425 31.02 1000 50 0.9999546 +9 31.02 34.8975 1000 50 0.9997739 +10 34.8975 38.775 1000 50 0.9976676 +11 38.775 42.652499999999996 1000 50 0.9900023 +12 42.6525 46.53 1000 50 0.99989367 +13 46.53 50.4075 1000 50 0.9999788 +14 54.285 58.162499999999994 1000 50 0.99870074 +15 58.1625 62.04 1000 50 0.9792716 +16 62.04 65.9175 1000 50 0.59974 +17 65.9175 69.795 1000 50 0.9999522 +18 69.795 73.6725 1000 50 0.9928433 +19 73.6725 77.55 1000 50 0.9997478 +20 77.55 81.4275 1000 50 0.5811111 +21 81.4275 85.30499999999999 1000 50 0.99884987 +22 85.305 89.1825 1000 50 0.99970764 +23 89.1825 93.06 1000 50 0.8997344 +24 93.06 96.9375 1000 50 0.9979779 +25 96.9375 100.815 1000 50 0.9144272 +26 100.815 104.6925 1000 50 0.9999249 +27 104.6925 108.57 1000 50 0.9989209 +28 108.57 112.44749999999999 1000 50 0.9997336 +29 112.4475 116.325 1000 50 0.99014574 +30 116.325 120.2025 1000 50 0.99999666 +31 120.2025 124.08 1000 50 0.89864475 +32 124.08 127.9575 1000 50 0.9072458 +33 127.9575 131.835 1000 50 0.769199 +34 131.835 135.7125 1000 50 0.99671847 +35 135.7125 139.59 1000 50 0.9997768 +36 139.59 143.4675 1000 50 0.99965703 +37 143.4675 147.345 1000 50 0.9815029 +38 147.345 151.2225 1000 50 0.9998258 +39 151.2225 155.1 1000 50 0.9319673 +40 155.1 158.9775 1000 50 0.99999607 +41 158.9775 162.855 1000 50 0.99819154 +42 162.855 166.7325 1000 50 1.0 +43 166.7325 170.60999999999999 1000 50 0.92749625 +44 170.61 174.4875 1000 50 0.9999988 +45 174.4875 178.365 1000 50 0.99999917 +46 178.365 182.2425 1000 50 0.8693686 +47 182.2425 186.12 1000 50 0.9993649 +48 186.12 189.9975 1000 50 0.99998295 +49 189.9975 193.875 1000 50 0.67108417 +50 193.875 197.7525 1000 50 0.61137253 +51 197.7525 201.63 1000 50 1.0 +52 201.63 205.5075 1000 50 0.93386245 +53 205.5075 209.385 1000 50 0.7486817 +54 209.385 213.2625 1000 50 0.9999999 +55 213.2625 217.14 1000 50 0.99905425 +56 217.14 221.01749999999998 1000 50 0.99872965 +57 221.0175 224.895 1000 50 0.9999987 +58 224.895 228.7725 1000 50 0.99997497 +59 232.65 236.5275 1000 50 0.99998903 +60 236.5275 240.405 1000 50 0.99979585 +61 240.405 244.2825 1000 50 0.9999999 +62 244.2825 248.16 1000 50 0.99995077 +63 248.16 252.0375 1000 50 0.9990878 +64 252.0375 255.915 1000 50 1.0 +65 255.915 259.7925 1000 50 0.9999833 +66 259.7925 263.67 1000 50 0.999734 +67 263.67 267.5475 1000 50 0.9949426 +68 267.5475 271.425 1000 50 0.9999999 +69 275.3025 279.18 1000 50 0.9999999 +70 279.18 283.0575 1000 50 0.99992204 +71 283.0575 286.935 1000 50 0.8137712 +72 286.935 290.8125 1000 50 0.9999826 +73 290.8125 294.69 1000 50 0.99999356 +74 294.69 298.5675 1000 50 0.5252922 +75 298.5675 302.445 1000 50 0.99999595 +76 302.445 306.3225 1000 50 0.9999943 +77 306.3225 310.2 1000 50 0.9869769 +78 310.2 314.0775 1000 50 0.9999819 +79 314.0775 317.955 1000 50 0.99998915 +80 321.8325 325.71 1000 50 1.0 +81 325.71 329.5875 1000 50 0.99755234 +82 329.5875 333.465 1000 50 0.9677986 +83 333.465 337.3425 1000 50 0.9999968 +84 337.3425 341.21999999999997 1000 50 0.9999988 +85 341.22 345.0975 1000 50 0.99999976 +86 345.0975 348.975 1000 50 0.99928904 +87 348.975 352.8525 1000 50 0.9999974 +88 352.8525 356.73 1000 50 0.9999995 +89 356.73 360.6075 1000 50 0.9931365 +90 360.6075 364.485 1000 50 0.9999995 +91 364.485 368.3625 1000 50 0.99853194 +92 368.3625 372.24 1000 50 0.9992888 +93 372.24 376.1175 1000 50 0.9997024 +94 376.1175 379.995 1000 50 1.0 +95 379.995 383.8725 1000 50 0.9966228 +96 383.8725 387.75 1000 50 0.99999857 +97 387.75 391.6275 1000 50 0.99976426 +98 391.6275 395.505 1000 50 0.99981445 +99 395.505 399.3825 1000 50 0.99999905 +100 399.3825 403.26 1000 50 0.999966 +101 403.26 407.1375 1000 50 0.9999995 +102 407.1375 411.015 1000 50 0.99996996 +103 411.015 414.8925 1000 50 0.99999666 +104 414.8925 418.77 1000 50 0.9999999 +105 418.77 422.6475 1000 50 1.0 +106 426.525 430.4025 1000 50 0.99991405 +107 430.4025 434.28 1000 50 0.99840444 +108 434.28 438.15749999999997 1000 50 0.99967384 +109 438.1575 442.035 1000 50 0.9999765 +110 442.035 445.9125 1000 50 0.9149238 +111 445.9125 449.79 1000 50 0.9718489 +112 449.79 453.6675 1000 50 0.999969 +113 453.6675 457.545 1000 50 0.9988117 +114 457.545 461.4225 1000 50 0.9994061 +115 465.3 469.1775 1000 50 0.68829775 +116 473.055 476.9325 1000 50 0.9826865 +117 480.81 484.6875 1000 50 0.7788681 +118 484.6875 488.565 1000 50 0.94482064 +119 492.4425 496.32 1000 50 0.99543434 +120 496.32 500.1975 1000 50 0.99950397 +121 504.075 507.9525 1000 50 0.6038382 +122 515.7075 519.585 1000 50 0.9695245 +123 527.34 531.2175000000001 1000 50 0.99193746 +124 531.2175 535.095 1000 50 0.99991536 +125 538.9725 542.85 1000 50 0.9000643 +126 546.7275 550.605 1000 50 0.9998487 +127 562.2375 566.115 1000 50 0.99871004 +128 566.115 569.9925000000001 1000 50 0.99999976 +129 569.9925 573.87 1000 50 0.82953924 +130 573.87 577.7475000000001 1000 50 0.99960905 +131 577.7475 581.625 1000 50 0.99998116 +132 581.625 585.5025 1000 50 0.98790246 +133 585.5025 589.3800000000001 1000 50 0.9999032 +134 589.38 593.2575 1000 50 0.9999939 +135 593.2575 597.1350000000001 1000 50 0.9954939 +136 597.135 601.0125 1000 50 0.99999964 +137 601.0125 604.8900000000001 1000 50 0.9973484 +138 604.89 608.7675 1000 50 0.99998534 +139 608.7675 612.6450000000001 1000 50 0.5685394 +140 616.5225 620.4000000000001 1000 50 0.9999988 +141 624.2775 628.1550000000001 1000 50 0.9977022 +142 628.155 632.0325 1000 50 0.6203325 +143 632.0325 635.9100000000001 1000 50 0.9800085 +144 635.91 639.7875 1000 50 0.9991844 +145 639.7875 643.6650000000001 1000 50 0.95342445 +146 643.665 647.5425 1000 50 0.9999958 +147 647.5425 651.4200000000001 1000 50 0.9999534 +148 651.42 655.2975 1000 50 0.9969308 +149 655.2975 659.1750000000001 1000 50 0.9999683 +150 659.175 663.0525 1000 50 0.99992394 +151 663.0525 666.9300000000001 1000 50 0.9996977 +152 666.93 670.8075 1000 50 0.99999857 +153 670.8075 674.6850000000001 1000 50 0.9999392 +154 674.685 678.5625 1000 50 0.999874 +155 678.5625 682.44 1000 50 0.9999988 +156 682.44 686.3175000000001 1000 50 0.9998826 +157 686.3175 690.195 1000 50 0.9999999 +158 690.195 694.0725000000001 1000 50 0.85062397 +159 694.0725 697.95 1000 50 0.99988437 +160 697.95 701.8275000000001 1000 50 0.9999832 +161 701.8275 705.705 1000 50 0.99852294 +162 705.705 709.5825000000001 1000 50 0.9932973 +163 709.5825 713.46 1000 50 0.9999999 +164 713.46 717.3375000000001 1000 50 0.99999547 +165 717.3375 721.215 1000 50 1.0 +166 721.215 725.0925000000001 1000 50 0.9995689 +167 725.0925 728.97 1000 50 0.99343455 +168 728.97 732.8475000000001 1000 50 0.9999616 +169 732.8475 736.725 1000 50 0.9863582 +170 736.725 740.6025000000001 1000 50 0.99999785 +171 740.6025 744.48 1000 50 0.99999905 +172 744.48 748.3575000000001 1000 50 0.9998747 +173 748.3575 752.235 1000 50 0.99998903 +174 752.235 756.1125000000001 1000 50 0.99923265 +175 756.1125 759.99 1000 50 0.6749426 +176 759.99 763.8675000000001 1000 50 1.0 +177 763.8675 767.745 1000 50 0.9999094 +178 767.745 771.6225000000001 1000 50 0.99999225 +179 771.6225 775.5 1000 50 0.9999341 +180 775.5 779.3775 1000 50 0.99955577 +181 779.3775 783.2550000000001 1000 50 0.9998703 +182 783.255 787.1325 1000 50 0.9999734 +183 787.1325 791.0100000000001 1000 50 0.99997663 +184 791.01 794.8875 1000 50 0.9974366 +185 794.8875 798.7650000000001 1000 50 0.999995 +186 798.765 802.6425 1000 50 1.0 +187 802.6425 806.5200000000001 1000 50 0.999941 +188 806.52 810.3975 1000 50 1.0 +189 810.3975 814.2750000000001 1000 50 0.99999094 +190 814.275 818.1525 1000 50 0.9999125 +191 818.1525 822.0300000000001 1000 50 0.99991286 +192 822.03 825.9075 1000 50 0.99999416 +193 825.9075 829.7850000000001 1000 50 0.8637232 +194 829.785 833.6625 1000 50 0.99984205 +195 833.6625 837.5400000000001 1000 50 0.9999988 +196 837.54 841.4175 1000 50 0.9998528 +197 841.4175 845.2950000000001 1000 50 0.9993748 +198 845.295 849.1725 1000 50 0.9999938 +199 856.9275 860.8050000000001 1000 50 0.98522043 +200 860.805 864.6825 1000 50 0.9994498 +201 864.6825 868.5600000000001 1000 50 0.911744 +202 872.4375 876.315 1000 50 0.9789215 +203 876.315 880.1925000000001 1000 50 0.99612695 +204 880.1925 884.07 1000 50 0.99999034 +205 884.07 887.9475000000001 1000 50 0.8703818 +206 887.9475 891.825 1000 50 0.98204064 +207 891.825 895.7025000000001 1000 50 0.99987924 +208 895.7025 899.58 1000 50 0.9937331 +209 899.58 903.4575000000001 1000 50 0.999985 +210 903.4575 907.335 1000 50 0.9175517 +211 907.335 911.2125000000001 1000 50 0.9996057 +212 911.2125 915.09 1000 50 0.98455137 +213 915.09 918.9675000000001 1000 50 0.9995578 +214 918.9675 922.845 1000 50 0.9999019 +215 922.845 926.7225000000001 1000 50 0.7306246 +216 926.7225 930.6 1000 50 0.99743277 +217 930.6 934.4775000000001 1000 50 0.99584526 +218 938.355 942.2325000000001 1000 50 0.5154507 +219 942.2325 946.11 1000 50 0.603131 +220 949.9875 953.865 1000 50 0.7647257 +221 953.865 957.7425000000001 1000 50 0.8597262 +222 965.4975 969.375 1000 50 0.9028039 +223 984.885 988.7625 1000 50 0.7413123 +224 992.64 996.5175 1000 50 0.5800067 +225 1000.395 1004.2725 1000 50 0.7534246 +226 1019.7825 1023.6600000000001 1000 50 0.87004524 +227 1023.66 1027.5375 1000 50 0.9633563 +228 1031.415 1035.2925 1000 50 0.5886798 +229 1035.2925 1039.17 1000 50 0.56243205 +230 1043.0475 1046.925 1000 50 0.99985266 +231 1046.925 1050.8025 1000 50 0.9984139 +232 1050.8025 1054.68 1000 50 0.9860216 +233 1054.68 1058.5575000000001 1000 50 0.9998808 +234 1058.5575 1062.435 1000 50 0.9999995 +235 1062.435 1066.3125 1000 50 0.98063993 +236 1066.3125 1070.19 1000 50 0.99999976 +237 1070.19 1074.0675 1000 50 0.74512684 +238 1074.0675 1077.9450000000002 1000 50 0.9975878 +239 1081.8225 1085.7 1000 50 0.99997616 +240 1085.7 1089.5775 1000 50 0.9941801 +241 1089.5775 1093.4550000000002 1000 50 0.99998665 +242 1093.455 1097.3325 1000 50 0.9999919 +243 1097.3325 1101.21 1000 50 0.8327102 +244 1101.21 1105.0875 1000 50 0.9999995 +245 1105.0875 1108.9650000000001 1000 50 1.0 +246 1112.8425 1116.72 1000 50 0.9999677 +247 1116.72 1120.5975 1000 50 0.9999956 +248 1120.5975 1124.4750000000001 1000 50 0.61574066 +249 1124.475 1128.3525 1000 50 0.99995804 +250 1128.3525 1132.23 1000 50 0.9987204 +251 1132.23 1136.1075 1000 50 1.0 +252 1136.1075 1139.9850000000001 1000 50 0.9999999 +253 1139.985 1143.8625 1000 50 0.999997 +254 1143.8625 1147.74 1000 50 0.9999969 +255 1147.74 1151.6175 1000 50 0.99999905 +256 1151.6175 1155.4950000000001 1000 50 0.9999634 +257 1155.495 1159.3725 1000 50 0.9997929 +258 1159.3725 1163.25 1000 50 0.996914 +259 1163.25 1167.1275 1000 50 0.9993381 +260 1167.1275 1171.005 1000 50 0.9999021 +261 1171.005 1174.8825000000002 1000 50 0.99999475 +262 1174.8825 1178.76 1000 50 0.9999988 +263 1178.76 1182.6375 1000 50 0.9722311 +264 1182.6375 1186.515 1000 50 0.9991955 +265 1186.515 1190.3925000000002 1000 50 0.9999753 +266 1190.3925 1194.27 1000 50 0.99999654 +267 1194.27 1198.1475 1000 50 0.99895656 +268 1198.1475 1202.025 1000 50 0.9986627 +269 1202.025 1205.9025000000001 1000 50 0.97016746 +270 1205.9025 1209.78 1000 50 0.9999589 +271 1209.78 1213.6575 1000 50 0.99999464 +272 1213.6575 1217.535 1000 50 0.9999831 +273 1217.535 1221.4125000000001 1000 50 0.9999794 +274 1221.4125 1225.29 1000 50 0.965025 +275 1225.29 1229.1675 1000 50 0.9999999 +276 1229.1675 1233.045 1000 50 0.96762544 +277 1233.045 1236.9225000000001 1000 50 0.9999839 +278 1236.9225 1240.8 1000 50 0.99988043 +279 1240.8 1244.6775 1000 50 0.99987996 +280 1244.6775 1248.555 1000 50 0.9999728 +281 1248.555 1252.4325000000001 1000 50 0.94547534 +282 1252.4325 1256.31 1000 50 0.9995933 +283 1256.31 1260.1875 1000 50 0.9999995 +284 1260.1875 1264.065 1000 50 0.8699046 +285 1264.065 1267.9425 1000 50 0.9953447 +286 1267.9425 1271.8200000000002 1000 50 0.9999938 +287 1271.82 1275.6975 1000 50 0.9997255 +288 1275.6975 1279.575 1000 50 0.98519355 +289 1283.4525 1287.3300000000002 1000 50 0.99996555 +290 1287.33 1291.2075 1000 50 0.9999999 +291 1291.2075 1295.085 1000 50 0.8789745 +292 1295.085 1298.9625 1000 50 0.9999665 +293 1298.9625 1302.8400000000001 1000 50 0.99008876 +294 1302.84 1306.7175 1000 50 0.5112976 +295 1306.7175 1310.595 1000 50 0.99984705 +296 1310.595 1314.4725 1000 50 0.82390964 +297 1314.4725 1318.3500000000001 1000 50 0.5600586 +298 1318.35 1322.2275 1000 50 0.9429847 +299 1322.2275 1326.105 1000 50 0.9980147 +300 1326.105 1329.9825 1000 50 0.9547654 +301 1329.9825 1333.8600000000001 1000 50 0.9856102 +302 1333.86 1337.7375 1000 50 0.9999896 +303 1337.7375 1341.615 1000 50 0.9951007 +304 1341.615 1345.4925 1000 50 0.99681723 +305 1345.4925 1349.3700000000001 1000 50 0.9981427 +306 1349.37 1353.2475 1000 50 0.9918703 +307 1353.2475 1357.125 1000 50 0.99968565 +308 1357.125 1361.0025 1000 50 0.9659755 +309 1361.0025 1364.88 1000 50 0.99996996 +310 1364.88 1368.7575000000002 1000 50 0.999997 +311 1372.635 1376.5125 1000 50 0.9999999 +312 1376.5125 1380.39 1000 50 0.99837375 +313 1380.39 1384.2675000000002 1000 50 0.99985504 +314 1384.2675 1388.145 1000 50 0.99995184 +315 1388.145 1392.0225 1000 50 0.9957742 +316 1392.0225 1395.9 1000 50 0.99972457 +317 1395.9 1399.7775000000001 1000 50 0.9943878 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_09-01-53_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_09-01-53_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..845e4c17a60c3d5e122e063082ae4028cafc758e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_09-01-53_annot_2022-11-30_01.txt @@ -0,0 +1,340 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9997389 +2 3.8775 7.755 1000 50 1.0 +3 7.755 11.6325 1000 50 0.9999902 +4 11.6325 15.51 1000 50 0.5674646 +5 15.51 19.3875 1000 50 0.9996985 +6 19.3875 23.265 1000 50 0.99871063 +7 23.265 27.142500000000002 1000 50 0.988886 +8 27.1425 31.02 1000 50 0.9999982 +9 31.02 34.8975 1000 50 0.9999341 +10 38.775 42.652499999999996 1000 50 1.0 +11 42.6525 46.53 1000 50 0.94132626 +12 50.4075 54.285 1000 50 0.96236604 +13 54.285 58.162499999999994 1000 50 0.71323305 +14 62.04 65.9175 1000 50 0.96772486 +15 65.9175 69.795 1000 50 0.999798 +16 69.795 73.6725 1000 50 1.0 +17 73.6725 77.55 1000 50 0.98726743 +18 77.55 81.4275 1000 50 0.9882776 +19 81.4275 85.30499999999999 1000 50 0.99999547 +20 85.305 89.1825 1000 50 0.999711 +21 89.1825 93.06 1000 50 0.9987746 +22 93.06 96.9375 1000 50 0.999796 +23 96.9375 100.815 1000 50 0.99995947 +24 100.815 104.6925 1000 50 0.999691 +25 104.6925 108.57 1000 50 0.9997403 +26 108.57 112.44749999999999 1000 50 0.9999989 +27 112.4475 116.325 1000 50 0.99832255 +28 116.325 120.2025 1000 50 0.9952697 +29 120.2025 124.08 1000 50 0.9999989 +30 124.08 127.9575 1000 50 0.9814935 +31 127.9575 131.835 1000 50 0.99836975 +32 131.835 135.7125 1000 50 0.99998915 +33 139.59 143.4675 1000 50 0.9997681 +34 143.4675 147.345 1000 50 0.9999989 +35 147.345 151.2225 1000 50 0.9987633 +36 151.2225 155.1 1000 50 0.9999901 +37 155.1 158.9775 1000 50 0.99999964 +38 158.9775 162.855 1000 50 0.99999726 +39 162.855 166.7325 1000 50 0.99999917 +40 166.7325 170.60999999999999 1000 50 0.9999994 +41 170.61 174.4875 1000 50 0.9999999 +42 174.4875 178.365 1000 50 0.9997913 +43 178.365 182.2425 1000 50 0.9998615 +44 182.2425 186.12 1000 50 0.99994504 +45 186.12 189.9975 1000 50 1.0 +46 189.9975 193.875 1000 50 1.0 +47 193.875 197.7525 1000 50 0.99999976 +48 197.7525 201.63 1000 50 0.99999917 +49 201.63 205.5075 1000 50 0.90907305 +50 205.5075 209.385 1000 50 0.99994683 +51 209.385 213.2625 1000 50 0.9999988 +52 213.2625 217.14 1000 50 0.8778228 +53 217.14 221.01749999999998 1000 50 0.99941266 +54 221.0175 224.895 1000 50 0.99955755 +55 224.895 228.7725 1000 50 0.9999975 +56 228.7725 232.65 1000 50 0.99997926 +57 232.65 236.5275 1000 50 0.9999999 +58 236.5275 240.405 1000 50 0.99999976 +59 240.405 244.2825 1000 50 0.99999774 +60 244.2825 248.16 1000 50 0.9999895 +61 248.16 252.0375 1000 50 0.9999777 +62 252.0375 255.915 1000 50 0.99998546 +63 255.915 259.7925 1000 50 1.0 +64 259.7925 263.67 1000 50 0.99972385 +65 263.67 267.5475 1000 50 0.9999956 +66 267.5475 271.425 1000 50 0.9999597 +67 271.425 275.3025 1000 50 0.9999367 +68 275.3025 279.18 1000 50 0.99782073 +69 279.18 283.0575 1000 50 0.9998568 +70 283.0575 286.935 1000 50 0.99999964 +71 286.935 290.8125 1000 50 0.99993825 +72 290.8125 294.69 1000 50 0.9997732 +73 294.69 298.5675 1000 50 0.9999969 +74 298.5675 302.445 1000 50 0.9999813 +75 302.445 306.3225 1000 50 0.99999976 +76 306.3225 310.2 1000 50 0.99999464 +77 310.2 314.0775 1000 50 0.9999728 +78 314.0775 317.955 1000 50 0.9999485 +79 317.955 321.8325 1000 50 0.99999714 +80 321.8325 325.71 1000 50 0.9998944 +81 325.71 329.5875 1000 50 0.9999831 +82 329.5875 333.465 1000 50 0.99991894 +83 333.465 337.3425 1000 50 1.0 +84 337.3425 341.21999999999997 1000 50 0.9999285 +85 341.22 345.0975 1000 50 0.93716574 +86 345.0975 348.975 1000 50 0.99998796 +87 348.975 352.8525 1000 50 0.99999726 +88 352.8525 356.73 1000 50 1.0 +89 356.73 360.6075 1000 50 0.9999989 +90 360.6075 364.485 1000 50 1.0 +91 364.485 368.3625 1000 50 0.99999464 +92 368.3625 372.24 1000 50 1.0 +93 372.24 376.1175 1000 50 0.9999118 +94 376.1175 379.995 1000 50 0.9999999 +95 379.995 383.8725 1000 50 0.9999968 +96 383.8725 387.75 1000 50 0.9944601 +97 387.75 391.6275 1000 50 0.9999982 +98 391.6275 395.505 1000 50 0.8084577 +99 395.505 399.3825 1000 50 0.99998486 +100 399.3825 403.26 1000 50 0.9999995 +101 403.26 407.1375 1000 50 0.9999964 +102 407.1375 411.015 1000 50 0.99927026 +103 411.015 414.8925 1000 50 0.99989104 +104 414.8925 418.77 1000 50 0.8330414 +105 418.77 422.6475 1000 50 0.9999598 +106 422.6475 426.525 1000 50 0.9992519 +107 426.525 430.4025 1000 50 0.999385 +108 430.4025 434.28 1000 50 0.9999933 +109 434.28 438.15749999999997 1000 50 0.9865661 +110 438.1575 442.035 1000 50 0.9599938 +111 442.035 445.9125 1000 50 0.9899003 +112 445.9125 449.79 1000 50 0.99701107 +113 449.79 453.6675 1000 50 0.9530243 +114 453.6675 457.545 1000 50 0.99117416 +115 457.545 461.4225 1000 50 0.9999771 +116 461.4225 465.3 1000 50 0.99920195 +117 465.3 469.1775 1000 50 0.99990726 +118 469.1775 473.055 1000 50 0.9467968 +119 473.055 476.9325 1000 50 0.9993013 +120 476.9325 480.81 1000 50 0.981954 +121 480.81 484.6875 1000 50 0.99731547 +122 484.6875 488.565 1000 50 0.998887 +123 488.565 492.4425 1000 50 0.99997306 +124 492.4425 496.32 1000 50 0.99985445 +125 496.32 500.1975 1000 50 0.9602676 +126 504.075 507.9525 1000 50 0.9999914 +127 507.9525 511.83 1000 50 0.99781656 +128 515.7075 519.585 1000 50 0.99966335 +129 519.585 523.4625000000001 1000 50 0.9977545 +130 523.4625 527.34 1000 50 0.9781521 +131 527.34 531.2175000000001 1000 50 0.99995065 +132 535.095 538.9725000000001 1000 50 0.999553 +133 538.9725 542.85 1000 50 0.9999763 +134 546.7275 550.605 1000 50 0.98889226 +135 550.605 554.4825000000001 1000 50 0.999998 +136 554.4825 558.36 1000 50 0.9996731 +137 558.36 562.2375000000001 1000 50 0.9999919 +138 562.2375 566.115 1000 50 0.99747664 +139 566.115 569.9925000000001 1000 50 0.9562928 +140 569.9925 573.87 1000 50 0.9999999 +141 573.87 577.7475000000001 1000 50 0.9993368 +142 577.7475 581.625 1000 50 0.9999298 +143 581.625 585.5025 1000 50 0.9999869 +144 585.5025 589.3800000000001 1000 50 0.9999968 +145 589.38 593.2575 1000 50 0.9999399 +146 593.2575 597.1350000000001 1000 50 0.9994247 +147 597.135 601.0125 1000 50 0.9723545 +148 601.0125 604.8900000000001 1000 50 0.9999279 +149 604.89 608.7675 1000 50 0.9999763 +150 608.7675 612.6450000000001 1000 50 0.9981014 +151 612.645 616.5225 1000 50 0.9999709 +152 616.5225 620.4000000000001 1000 50 0.99999213 +153 620.4 624.2775 1000 50 0.96489364 +154 624.2775 628.1550000000001 1000 50 0.9998286 +155 628.155 632.0325 1000 50 0.9668238 +156 632.0325 635.9100000000001 1000 50 0.9975211 +157 635.91 639.7875 1000 50 0.99996376 +158 639.7875 643.6650000000001 1000 50 0.93551755 +159 643.665 647.5425 1000 50 0.59689933 +160 647.5425 651.4200000000001 1000 50 0.9956665 +161 651.42 655.2975 1000 50 0.99963975 +162 655.2975 659.1750000000001 1000 50 0.99992144 +163 659.175 663.0525 1000 50 0.99587846 +164 663.0525 666.9300000000001 1000 50 0.99416095 +165 666.93 670.8075 1000 50 0.99891603 +166 670.8075 674.6850000000001 1000 50 0.99988425 +167 674.685 678.5625 1000 50 0.99999344 +168 678.5625 682.44 1000 50 0.96204466 +169 682.44 686.3175000000001 1000 50 0.9999156 +170 686.3175 690.195 1000 50 0.99999654 +171 690.195 694.0725000000001 1000 50 0.9999703 +172 694.0725 697.95 1000 50 0.9976127 +173 697.95 701.8275000000001 1000 50 0.9996032 +174 701.8275 705.705 1000 50 0.9999993 +175 705.705 709.5825000000001 1000 50 0.9999988 +176 709.5825 713.46 1000 50 0.999998 +177 713.46 717.3375000000001 1000 50 0.9999976 +178 717.3375 721.215 1000 50 0.99974483 +179 721.215 725.0925000000001 1000 50 0.9977785 +180 725.0925 728.97 1000 50 0.9995634 +181 728.97 732.8475000000001 1000 50 0.9999989 +182 732.8475 736.725 1000 50 0.9999981 +183 736.725 740.6025000000001 1000 50 0.99496967 +184 740.6025 744.48 1000 50 1.0 +185 744.48 748.3575000000001 1000 50 0.9999951 +186 748.3575 752.235 1000 50 0.99998283 +187 752.235 756.1125000000001 1000 50 1.0 +188 756.1125 759.99 1000 50 0.99995506 +189 759.99 763.8675000000001 1000 50 0.99991524 +190 763.8675 767.745 1000 50 0.99809474 +191 767.745 771.6225000000001 1000 50 0.99994826 +192 771.6225 775.5 1000 50 0.99999976 +193 775.5 779.3775 1000 50 0.9998821 +194 779.3775 783.2550000000001 1000 50 0.9999993 +195 783.255 787.1325 1000 50 0.9188331 +196 787.1325 791.0100000000001 1000 50 0.99988747 +197 791.01 794.8875 1000 50 0.9763041 +198 794.8875 798.7650000000001 1000 50 0.85457593 +199 798.765 802.6425 1000 50 0.999964 +200 802.6425 806.5200000000001 1000 50 0.953287 +201 806.52 810.3975 1000 50 0.797108 +202 810.3975 814.2750000000001 1000 50 0.99958366 +203 814.275 818.1525 1000 50 0.9999 +204 818.1525 822.0300000000001 1000 50 1.0 +205 822.03 825.9075 1000 50 0.99999845 +206 825.9075 829.7850000000001 1000 50 0.9999485 +207 829.785 833.6625 1000 50 0.99999297 +208 833.6625 837.5400000000001 1000 50 0.9999665 +209 837.54 841.4175 1000 50 1.0 +210 841.4175 845.2950000000001 1000 50 0.91834414 +211 845.295 849.1725 1000 50 0.9940935 +212 849.1725 853.0500000000001 1000 50 0.9996575 +213 853.05 856.9275 1000 50 0.9999999 +214 856.9275 860.8050000000001 1000 50 0.9999814 +215 860.805 864.6825 1000 50 0.9999509 +216 864.6825 868.5600000000001 1000 50 0.9998894 +217 868.56 872.4375 1000 50 0.98036605 +218 872.4375 876.315 1000 50 0.9996946 +219 876.315 880.1925000000001 1000 50 0.9996051 +220 880.1925 884.07 1000 50 0.9999554 +221 884.07 887.9475000000001 1000 50 0.9999945 +222 887.9475 891.825 1000 50 0.9998412 +223 891.825 895.7025000000001 1000 50 0.999948 +224 895.7025 899.58 1000 50 0.99975485 +225 899.58 903.4575000000001 1000 50 0.99749583 +226 903.4575 907.335 1000 50 0.99738413 +227 907.335 911.2125000000001 1000 50 0.99754214 +228 911.2125 915.09 1000 50 0.99999833 +229 915.09 918.9675000000001 1000 50 0.99457115 +230 918.9675 922.845 1000 50 0.6072235 +231 922.845 926.7225000000001 1000 50 0.9723325 +232 926.7225 930.6 1000 50 0.9688173 +233 930.6 934.4775000000001 1000 50 0.9841797 +234 934.4775 938.355 1000 50 0.99976236 +235 938.355 942.2325000000001 1000 50 0.9999989 +236 942.2325 946.11 1000 50 0.98763996 +237 946.11 949.9875000000001 1000 50 0.89829516 +238 949.9875 953.865 1000 50 0.999995 +239 953.865 957.7425000000001 1000 50 0.99819046 +240 957.7425 961.62 1000 50 0.9993839 +241 961.62 965.4975000000001 1000 50 0.9995573 +242 965.4975 969.375 1000 50 0.9990946 +243 969.375 973.2525 1000 50 0.9933295 +244 973.2525 977.1300000000001 1000 50 0.99984264 +245 977.13 981.0075 1000 50 0.9996712 +246 981.0075 984.8850000000001 1000 50 0.9911616 +247 984.885 988.7625 1000 50 0.9997924 +248 988.7625 992.6400000000001 1000 50 0.9999869 +249 992.64 996.5175 1000 50 0.8675639 +250 996.5175 1000.3950000000001 1000 50 0.9999783 +251 1000.395 1004.2725 1000 50 0.68760556 +252 1004.2725 1008.1500000000001 1000 50 0.7590273 +253 1008.15 1012.0275 1000 50 0.99953365 +254 1012.0275 1015.9050000000001 1000 50 0.9999491 +255 1023.66 1027.5375 1000 50 0.960776 +256 1027.5375 1031.415 1000 50 0.99916553 +257 1031.415 1035.2925 1000 50 0.6903016 +258 1035.2925 1039.17 1000 50 0.9999999 +259 1039.17 1043.0475000000001 1000 50 0.99999917 +260 1046.925 1050.8025 1000 50 0.9500756 +261 1058.5575 1062.435 1000 50 0.99909496 +262 1066.3125 1070.19 1000 50 0.6678099 +263 1070.19 1074.0675 1000 50 0.99995315 +264 1074.0675 1077.9450000000002 1000 50 0.99856865 +265 1077.945 1081.8225 1000 50 0.9999919 +266 1081.8225 1085.7 1000 50 0.9996093 +267 1085.7 1089.5775 1000 50 0.999997 +268 1089.5775 1093.4550000000002 1000 50 0.99082726 +269 1093.455 1097.3325 1000 50 0.89823544 +270 1097.3325 1101.21 1000 50 0.97592825 +271 1101.21 1105.0875 1000 50 0.995833 +272 1108.965 1112.8425 1000 50 0.995899 +273 1112.8425 1116.72 1000 50 0.99722195 +274 1116.72 1120.5975 1000 50 0.9999709 +275 1120.5975 1124.4750000000001 1000 50 0.99989784 +276 1124.475 1128.3525 1000 50 0.99999976 +277 1128.3525 1132.23 1000 50 1.0 +278 1136.1075 1139.9850000000001 1000 50 0.9999987 +279 1139.985 1143.8625 1000 50 0.9602669 +280 1143.8625 1147.74 1000 50 0.9001734 +281 1147.74 1151.6175 1000 50 0.99919635 +282 1151.6175 1155.4950000000001 1000 50 0.9995815 +283 1155.495 1159.3725 1000 50 0.9688422 +284 1159.3725 1163.25 1000 50 0.9999492 +285 1163.25 1167.1275 1000 50 0.9994838 +286 1167.1275 1171.005 1000 50 0.9966605 +287 1171.005 1174.8825000000002 1000 50 0.999894 +288 1174.8825 1178.76 1000 50 0.9999999 +289 1182.6375 1186.515 1000 50 0.99998677 +290 1186.515 1190.3925000000002 1000 50 0.9999999 +291 1190.3925 1194.27 1000 50 0.9999678 +292 1194.27 1198.1475 1000 50 0.9999975 +293 1198.1475 1202.025 1000 50 0.9975338 +294 1202.025 1205.9025000000001 1000 50 0.9999982 +295 1205.9025 1209.78 1000 50 0.9999796 +296 1209.78 1213.6575 1000 50 0.9992785 +297 1213.6575 1217.535 1000 50 0.9999995 +298 1217.535 1221.4125000000001 1000 50 0.9999999 +299 1221.4125 1225.29 1000 50 1.0 +300 1225.29 1229.1675 1000 50 0.9998528 +301 1229.1675 1233.045 1000 50 0.99999976 +302 1233.045 1236.9225000000001 1000 50 1.0 +303 1236.9225 1240.8 1000 50 0.99998915 +304 1240.8 1244.6775 1000 50 0.99999547 +305 1244.6775 1248.555 1000 50 0.99996495 +306 1248.555 1252.4325000000001 1000 50 1.0 +307 1252.4325 1256.31 1000 50 0.99991 +308 1256.31 1260.1875 1000 50 1.0 +309 1260.1875 1264.065 1000 50 0.999923 +310 1264.065 1267.9425 1000 50 0.99996936 +311 1267.9425 1271.8200000000002 1000 50 0.99999976 +312 1271.82 1275.6975 1000 50 0.99956125 +313 1275.6975 1279.575 1000 50 0.9999645 +314 1279.575 1283.4525 1000 50 0.9999845 +315 1283.4525 1287.3300000000002 1000 50 0.99999225 +316 1287.33 1291.2075 1000 50 0.9997056 +317 1291.2075 1295.085 1000 50 0.9999008 +318 1295.085 1298.9625 1000 50 0.8565265 +319 1298.9625 1302.8400000000001 1000 50 0.9999604 +320 1302.84 1306.7175 1000 50 0.9999981 +321 1306.7175 1310.595 1000 50 0.997792 +322 1310.595 1314.4725 1000 50 0.9999863 +323 1314.4725 1318.3500000000001 1000 50 0.9999982 +324 1318.35 1322.2275 1000 50 0.9640323 +325 1322.2275 1326.105 1000 50 0.9999957 +326 1329.9825 1333.8600000000001 1000 50 0.9999937 +327 1337.7375 1341.615 1000 50 0.53660357 +328 1341.615 1345.4925 1000 50 0.9998878 +329 1345.4925 1349.3700000000001 1000 50 1.0 +330 1349.37 1353.2475 1000 50 0.9985177 +331 1353.2475 1357.125 1000 50 0.99676263 +332 1357.125 1361.0025 1000 50 0.9999918 +333 1361.0025 1364.88 1000 50 0.9399173 +334 1364.88 1368.7575000000002 1000 50 0.9993616 +335 1368.7575 1372.635 1000 50 0.99999917 +336 1372.635 1376.5125 1000 50 0.9941553 +337 1376.5125 1380.39 1000 50 0.9948448 +338 1380.39 1384.2675000000002 1000 50 0.9940454 +339 1388.145 1392.0225 1000 50 0.89204335 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_10-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_10-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..8a20f033b66de3900e9259d809d745a49d23f729 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_10-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,56 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.7429093 +2 3.8775 7.755 1000 50 0.99981326 +3 7.755 11.6325 1000 50 0.9999844 +4 11.6325 15.51 1000 50 0.99998534 +5 15.51 19.3875 1000 50 0.99999344 +6 19.3875 23.265 1000 50 0.9999418 +7 23.265 27.142500000000002 1000 50 0.99933857 +8 27.1425 31.02 1000 50 0.9997886 +9 31.02 34.8975 1000 50 0.9997899 +10 34.8975 38.775 1000 50 0.9989851 +11 38.775 42.652499999999996 1000 50 0.9999989 +12 42.6525 46.53 1000 50 0.9999609 +13 46.53 50.4075 1000 50 0.9974088 +14 50.4075 54.285 1000 50 0.999979 +15 54.285 58.162499999999994 1000 50 0.9956838 +16 58.1625 62.04 1000 50 0.9989518 +17 62.04 65.9175 1000 50 0.9997422 +18 65.9175 69.795 1000 50 0.99989784 +19 69.795 73.6725 1000 50 0.6854159 +20 73.6725 77.55 1000 50 0.9716967 +21 77.55 81.4275 1000 50 0.9994518 +22 81.4275 85.30499999999999 1000 50 0.99997604 +23 85.305 89.1825 1000 50 0.8526172 +24 89.1825 93.06 1000 50 0.99970895 +25 93.06 96.9375 1000 50 0.9999957 +26 96.9375 100.815 1000 50 0.9908121 +27 100.815 104.6925 1000 50 0.99994385 +28 104.6925 108.57 1000 50 0.9999653 +29 108.57 112.44749999999999 1000 50 0.9999999 +30 112.4475 116.325 1000 50 0.999564 +31 116.325 120.2025 1000 50 0.99930716 +32 120.2025 124.08 1000 50 0.9999999 +33 124.08 127.9575 1000 50 0.9999001 +34 127.9575 131.835 1000 50 0.99838483 +35 131.835 135.7125 1000 50 0.99999917 +36 135.7125 139.59 1000 50 0.99088025 +37 139.59 143.4675 1000 50 0.99998987 +38 143.4675 147.345 1000 50 0.9988133 +39 147.345 151.2225 1000 50 0.9951454 +40 151.2225 155.1 1000 50 0.9999021 +41 155.1 158.9775 1000 50 0.999752 +42 158.9775 162.855 1000 50 0.99450314 +43 162.855 166.7325 1000 50 0.9999927 +44 166.7325 170.60999999999999 1000 50 0.99999213 +45 170.61 174.4875 1000 50 0.99734676 +46 174.4875 178.365 1000 50 0.99999726 +47 178.365 182.2425 1000 50 0.9999999 +48 182.2425 186.12 1000 50 0.8997898 +49 186.12 189.9975 1000 50 0.99861324 +50 189.9975 193.875 1000 50 0.99998176 +51 193.875 197.7525 1000 50 0.9981055 +52 197.7525 201.63 1000 50 0.9999863 +53 201.63 205.5075 1000 50 0.99995756 +54 205.5075 209.385 1000 50 0.98154956 +55 209.385 213.2625 1000 50 0.9999802 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_10-07-12_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_10-07-12_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..aa490ffed2b2b56f8286dd16de413c7c858adf76 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_10-07-12_annot_2022-11-30_01.txt @@ -0,0 +1,244 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.8862732 +2 3.8775 7.755 1000 50 0.9659087 +3 7.755 11.6325 1000 50 0.9971826 +4 11.6325 15.51 1000 50 0.8300018 +5 15.51 19.3875 1000 50 0.85172266 +6 19.3875 23.265 1000 50 0.9999994 +7 23.265 27.142500000000002 1000 50 0.9994537 +8 27.1425 31.02 1000 50 0.91306823 +9 31.02 34.8975 1000 50 0.9997124 +10 34.8975 38.775 1000 50 0.9098449 +11 38.775 42.652499999999996 1000 50 0.9999448 +12 42.6525 46.53 1000 50 1.0 +13 46.53 50.4075 1000 50 0.9992932 +14 50.4075 54.285 1000 50 0.99462056 +15 54.285 58.162499999999994 1000 50 0.9999995 +16 58.1625 62.04 1000 50 0.9774621 +17 62.04 65.9175 1000 50 0.9999999 +18 65.9175 69.795 1000 50 0.9999999 +19 69.795 73.6725 1000 50 0.97342616 +20 73.6725 77.55 1000 50 0.9999995 +21 77.55 81.4275 1000 50 0.99995804 +22 81.4275 85.30499999999999 1000 50 0.99967337 +23 85.305 89.1825 1000 50 0.9999851 +24 89.1825 93.06 1000 50 0.9999958 +25 93.06 96.9375 1000 50 1.0 +26 96.9375 100.815 1000 50 0.9999999 +27 100.815 104.6925 1000 50 0.99999976 +28 104.6925 108.57 1000 50 0.97430575 +29 108.57 112.44749999999999 1000 50 0.99999964 +30 112.4475 116.325 1000 50 0.9999974 +31 116.325 120.2025 1000 50 0.9804125 +32 120.2025 124.08 1000 50 0.99999976 +33 124.08 127.9575 1000 50 0.99999964 +34 127.9575 131.835 1000 50 0.9995059 +35 131.835 135.7125 1000 50 0.999967 +36 135.7125 139.59 1000 50 0.9999999 +37 139.59 143.4675 1000 50 0.9999664 +38 143.4675 147.345 1000 50 0.99999976 +39 147.345 151.2225 1000 50 0.9998472 +40 151.2225 155.1 1000 50 0.99971837 +41 155.1 158.9775 1000 50 1.0 +42 158.9775 162.855 1000 50 0.99998915 +43 162.855 166.7325 1000 50 0.99918133 +44 166.7325 170.60999999999999 1000 50 1.0 +45 170.61 174.4875 1000 50 0.9999999 +46 174.4875 178.365 1000 50 0.99999976 +47 178.365 182.2425 1000 50 1.0 +48 182.2425 186.12 1000 50 0.99974424 +49 186.12 189.9975 1000 50 0.99981695 +50 189.9975 193.875 1000 50 0.9999906 +51 193.875 197.7525 1000 50 0.9999999 +52 197.7525 201.63 1000 50 1.0 +53 201.63 205.5075 1000 50 0.999997 +54 205.5075 209.385 1000 50 0.99999297 +55 209.385 213.2625 1000 50 1.0 +56 213.2625 217.14 1000 50 0.99997926 +57 217.14 221.01749999999998 1000 50 0.9974865 +58 221.0175 224.895 1000 50 1.0 +59 224.895 228.7725 1000 50 0.99999654 +60 228.7725 232.65 1000 50 0.9874511 +61 232.65 236.5275 1000 50 1.0 +62 236.5275 240.405 1000 50 0.99868935 +63 240.405 244.2825 1000 50 0.9999862 +64 244.2825 248.16 1000 50 0.9999994 +65 248.16 252.0375 1000 50 0.9999993 +66 252.0375 255.915 1000 50 0.99881184 +67 255.915 259.7925 1000 50 0.9999939 +68 259.7925 263.67 1000 50 0.99999964 +69 263.67 267.5475 1000 50 0.9999989 +70 267.5475 271.425 1000 50 1.0 +71 271.425 275.3025 1000 50 0.9987226 +72 275.3025 279.18 1000 50 0.99998116 +73 279.18 283.0575 1000 50 0.99995196 +74 283.0575 286.935 1000 50 0.99999416 +75 286.935 290.8125 1000 50 0.9999862 +76 290.8125 294.69 1000 50 0.99976844 +77 294.69 298.5675 1000 50 0.9999958 +78 298.5675 302.445 1000 50 0.9999944 +79 302.445 306.3225 1000 50 0.9999769 +80 306.3225 310.2 1000 50 0.99979526 +81 310.2 314.0775 1000 50 1.0 +82 314.0775 317.955 1000 50 0.99967754 +83 321.8325 325.71 1000 50 0.977839 +84 325.71 329.5875 1000 50 0.9994112 +85 329.5875 333.465 1000 50 0.86336195 +86 333.465 337.3425 1000 50 0.56061435 +87 341.22 345.0975 1000 50 0.53254986 +88 345.0975 348.975 1000 50 0.99720436 +89 348.975 352.8525 1000 50 0.9852836 +90 352.8525 356.73 1000 50 0.8684407 +91 356.73 360.6075 1000 50 0.9841204 +92 360.6075 364.485 1000 50 0.9997938 +93 364.485 368.3625 1000 50 0.54388547 +94 368.3625 372.24 1000 50 0.9771633 +95 372.24 376.1175 1000 50 0.9999813 +96 376.1175 379.995 1000 50 0.99389887 +97 379.995 383.8725 1000 50 0.9965438 +98 383.8725 387.75 1000 50 0.987107 +99 387.75 391.6275 1000 50 0.9998154 +100 391.6275 395.505 1000 50 0.88413775 +101 395.505 399.3825 1000 50 0.9922741 +102 407.1375 411.015 1000 50 0.8807931 +103 411.015 414.8925 1000 50 0.94918215 +104 418.77 422.6475 1000 50 0.5032784 +105 422.6475 426.525 1000 50 0.90429544 +106 426.525 430.4025 1000 50 0.95488465 +107 430.4025 434.28 1000 50 0.94859856 +108 434.28 438.15749999999997 1000 50 0.9942133 +109 438.1575 442.035 1000 50 0.92441005 +110 442.035 445.9125 1000 50 0.8914001 +111 449.79 453.6675 1000 50 0.98957205 +112 469.1775 473.055 1000 50 0.9993092 +113 476.9325 480.81 1000 50 0.94613236 +114 488.565 492.4425 1000 50 0.7677878 +115 492.4425 496.32 1000 50 0.70843554 +116 496.32 500.1975 1000 50 0.987849 +117 504.075 507.9525 1000 50 0.995926 +118 515.7075 519.585 1000 50 0.99968195 +119 527.34 531.2175000000001 1000 50 0.6963198 +120 531.2175 535.095 1000 50 0.5119221 +121 535.095 538.9725000000001 1000 50 0.9916842 +122 538.9725 542.85 1000 50 0.99903524 +123 542.85 546.7275000000001 1000 50 0.99987733 +124 546.7275 550.605 1000 50 0.98485893 +125 550.605 554.4825000000001 1000 50 0.98877895 +126 554.4825 558.36 1000 50 0.8384097 +127 562.2375 566.115 1000 50 0.9907789 +128 566.115 569.9925000000001 1000 50 0.8388443 +129 569.9925 573.87 1000 50 0.9720301 +130 573.87 577.7475000000001 1000 50 0.99859375 +131 581.625 585.5025 1000 50 0.8939886 +132 585.5025 589.3800000000001 1000 50 0.9789378 +133 589.38 593.2575 1000 50 0.8446943 +134 593.2575 597.1350000000001 1000 50 0.98948914 +135 597.135 601.0125 1000 50 0.99984896 +136 601.0125 604.8900000000001 1000 50 0.999966 +137 608.7675 612.6450000000001 1000 50 0.99999976 +138 612.645 616.5225 1000 50 0.9998336 +139 616.5225 620.4000000000001 1000 50 0.9999945 +140 620.4 624.2775 1000 50 0.9999987 +141 624.2775 628.1550000000001 1000 50 0.9940764 +142 628.155 632.0325 1000 50 0.98619384 +143 632.0325 635.9100000000001 1000 50 0.99867094 +144 635.91 639.7875 1000 50 0.99997973 +145 639.7875 643.6650000000001 1000 50 0.9999814 +146 643.665 647.5425 1000 50 0.9986582 +147 647.5425 651.4200000000001 1000 50 0.9996531 +148 651.42 655.2975 1000 50 0.9999851 +149 655.2975 659.1750000000001 1000 50 0.7789926 +150 659.175 663.0525 1000 50 0.99742573 +151 663.0525 666.9300000000001 1000 50 0.9999281 +152 666.93 670.8075 1000 50 0.9995559 +153 670.8075 674.6850000000001 1000 50 0.99997556 +154 674.685 678.5625 1000 50 0.9996057 +155 678.5625 682.44 1000 50 0.99991834 +156 682.44 686.3175000000001 1000 50 0.99987507 +157 686.3175 690.195 1000 50 0.99244 +158 690.195 694.0725000000001 1000 50 0.9999993 +159 694.0725 697.95 1000 50 0.99999714 +160 697.95 701.8275000000001 1000 50 0.999995 +161 701.8275 705.705 1000 50 0.942882 +162 705.705 709.5825000000001 1000 50 0.9999808 +163 709.5825 713.46 1000 50 0.99995446 +164 713.46 717.3375000000001 1000 50 0.7307649 +165 717.3375 721.215 1000 50 0.99979633 +166 721.215 725.0925000000001 1000 50 0.999997 +167 725.0925 728.97 1000 50 0.9986979 +168 728.97 732.8475000000001 1000 50 0.99999976 +169 732.8475 736.725 1000 50 0.9522406 +170 736.725 740.6025000000001 1000 50 0.97906655 +171 740.6025 744.48 1000 50 1.0 +172 744.48 748.3575000000001 1000 50 0.998509 +173 748.3575 752.235 1000 50 0.92816925 +174 752.235 756.1125000000001 1000 50 0.9995511 +175 756.1125 759.99 1000 50 0.99935955 +176 759.99 763.8675000000001 1000 50 0.99704117 +177 763.8675 767.745 1000 50 0.99999857 +178 767.745 771.6225000000001 1000 50 0.99139106 +179 771.6225 775.5 1000 50 0.9999999 +180 775.5 779.3775 1000 50 0.9994635 +181 779.3775 783.2550000000001 1000 50 0.9999999 +182 783.255 787.1325 1000 50 0.99860686 +183 787.1325 791.0100000000001 1000 50 0.9999726 +184 791.01 794.8875 1000 50 0.999987 +185 794.8875 798.7650000000001 1000 50 1.0 +186 798.765 802.6425 1000 50 0.9999604 +187 802.6425 806.5200000000001 1000 50 0.97645926 +188 806.52 810.3975 1000 50 0.9842613 +189 810.3975 814.2750000000001 1000 50 0.99980384 +190 814.275 818.1525 1000 50 0.9646541 +191 818.1525 822.0300000000001 1000 50 0.9986778 +192 822.03 825.9075 1000 50 0.9999999 +193 825.9075 829.7850000000001 1000 50 0.9999974 +194 829.785 833.6625 1000 50 0.95074195 +195 833.6625 837.5400000000001 1000 50 0.9999995 +196 837.54 841.4175 1000 50 0.99999774 +197 841.4175 845.2950000000001 1000 50 0.99749845 +198 845.295 849.1725 1000 50 0.99985814 +199 849.1725 853.0500000000001 1000 50 0.99827075 +200 853.05 856.9275 1000 50 0.99989295 +201 856.9275 860.8050000000001 1000 50 0.9999416 +202 860.805 864.6825 1000 50 0.93928534 +203 864.6825 868.5600000000001 1000 50 0.9999776 +204 868.56 872.4375 1000 50 0.9999869 +205 872.4375 876.315 1000 50 0.9998043 +206 876.315 880.1925000000001 1000 50 0.99138993 +207 880.1925 884.07 1000 50 0.99502724 +208 884.07 887.9475000000001 1000 50 0.75787175 +209 887.9475 891.825 1000 50 0.9999726 +210 891.825 895.7025000000001 1000 50 0.9932126 +211 895.7025 899.58 1000 50 0.9907561 +212 899.58 903.4575000000001 1000 50 0.98848665 +213 903.4575 907.335 1000 50 0.99615484 +214 907.335 911.2125000000001 1000 50 0.98397267 +215 911.2125 915.09 1000 50 0.99485177 +216 915.09 918.9675000000001 1000 50 0.62424076 +217 918.9675 922.845 1000 50 0.9999902 +218 922.845 926.7225000000001 1000 50 0.95267445 +219 926.7225 930.6 1000 50 0.56914777 +220 930.6 934.4775000000001 1000 50 0.9964439 +221 934.4775 938.355 1000 50 0.9903656 +222 938.355 942.2325000000001 1000 50 0.5038472 +223 942.2325 946.11 1000 50 0.5938559 +224 946.11 949.9875000000001 1000 50 0.82917136 +225 949.9875 953.865 1000 50 0.5466416 +226 957.7425 961.62 1000 50 0.82207894 +227 965.4975 969.375 1000 50 0.74107563 +228 969.375 973.2525 1000 50 0.52088404 +229 973.2525 977.1300000000001 1000 50 0.9993406 +230 977.13 981.0075 1000 50 0.9999912 +231 981.0075 984.8850000000001 1000 50 0.99976164 +232 984.885 988.7625 1000 50 0.99905306 +233 992.64 996.5175 1000 50 0.8508217 +234 996.5175 1000.3950000000001 1000 50 0.5289709 +235 1000.395 1004.2725 1000 50 0.9911917 +236 1004.2725 1008.1500000000001 1000 50 0.57019705 +237 1008.15 1012.0275 1000 50 0.62483925 +238 1015.905 1019.7825 1000 50 0.98890114 +239 1023.66 1027.5375 1000 50 0.7705579 +240 1046.925 1050.8025 1000 50 0.7795336 +241 1054.68 1058.5575000000001 1000 50 0.9992513 +242 1058.5575 1062.435 1000 50 0.98043376 +243 1070.19 1074.0675 1000 50 0.9337779 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_11-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_11-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..4e24ee1ef189762ca2739d4edb30a2b391e48747 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_11-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,116 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9999882 +2 7.755 11.6325 1000 50 0.9999995 +3 11.6325 15.51 1000 50 0.9987539 +4 15.51 19.3875 1000 50 0.99978596 +5 19.3875 23.265 1000 50 0.9999745 +6 23.265 27.142500000000002 1000 50 0.903212 +7 27.1425 31.02 1000 50 0.9999999 +8 31.02 34.8975 1000 50 0.9884497 +9 34.8975 38.775 1000 50 0.9999999 +10 38.775 42.652499999999996 1000 50 1.0 +11 42.6525 46.53 1000 50 0.9999943 +12 46.53 50.4075 1000 50 0.9980001 +13 50.4075 54.285 1000 50 1.0 +14 54.285 58.162499999999994 1000 50 0.99982965 +15 58.1625 62.04 1000 50 1.0 +16 62.04 65.9175 1000 50 0.999079 +17 65.9175 69.795 1000 50 0.9999956 +18 69.795 73.6725 1000 50 1.0 +19 73.6725 77.55 1000 50 0.9999957 +20 77.55 81.4275 1000 50 0.8887098 +21 81.4275 85.30499999999999 1000 50 1.0 +22 85.305 89.1825 1000 50 0.9999933 +23 89.1825 93.06 1000 50 0.6951442 +24 93.06 96.9375 1000 50 1.0 +25 96.9375 100.815 1000 50 0.9999999 +26 104.6925 108.57 1000 50 1.0 +27 108.57 112.44749999999999 1000 50 1.0 +28 116.325 120.2025 1000 50 0.9998846 +29 120.2025 124.08 1000 50 0.99999976 +30 124.08 127.9575 1000 50 0.99896085 +31 127.9575 131.835 1000 50 0.9999893 +32 131.835 135.7125 1000 50 1.0 +33 135.7125 139.59 1000 50 0.99984884 +34 139.59 143.4675 1000 50 0.99782515 +35 143.4675 147.345 1000 50 0.9999999 +36 147.345 151.2225 1000 50 0.99087876 +37 151.2225 155.1 1000 50 1.0 +38 155.1 158.9775 1000 50 0.99999154 +39 158.9775 162.855 1000 50 0.9953679 +40 162.855 166.7325 1000 50 1.0 +41 166.7325 170.60999999999999 1000 50 0.9997718 +42 170.61 174.4875 1000 50 0.88679904 +43 174.4875 178.365 1000 50 0.99999964 +44 178.365 182.2425 1000 50 0.9998222 +45 182.2425 186.12 1000 50 1.0 +46 186.12 189.9975 1000 50 0.9999999 +47 189.9975 193.875 1000 50 0.9999486 +48 193.875 197.7525 1000 50 0.99631315 +49 197.7525 201.63 1000 50 0.99999475 +50 201.63 205.5075 1000 50 0.9998683 +51 205.5075 209.385 1000 50 0.99997604 +52 209.385 213.2625 1000 50 0.9996816 +53 213.2625 217.14 1000 50 0.9998534 +54 217.14 221.01749999999998 1000 50 0.99998105 +55 221.0175 224.895 1000 50 0.987115 +56 224.895 228.7725 1000 50 0.963469 +57 228.7725 232.65 1000 50 0.9999957 +58 232.65 236.5275 1000 50 0.9959551 +59 236.5275 240.405 1000 50 0.83648443 +60 240.405 244.2825 1000 50 0.9627731 +61 244.2825 248.16 1000 50 0.9866564 +62 248.16 252.0375 1000 50 0.9580765 +63 252.0375 255.915 1000 50 0.9927771 +64 255.915 259.7925 1000 50 0.96447086 +65 259.7925 263.67 1000 50 0.9997032 +66 263.67 267.5475 1000 50 0.99552023 +67 267.5475 271.425 1000 50 0.8760756 +68 271.425 275.3025 1000 50 0.8804221 +69 275.3025 279.18 1000 50 0.96559125 +70 279.18 283.0575 1000 50 0.9416859 +71 283.0575 286.935 1000 50 0.813713 +72 286.935 290.8125 1000 50 0.7899622 +73 298.5675 302.445 1000 50 0.98078406 +74 302.445 306.3225 1000 50 0.99988055 +75 310.2 314.0775 1000 50 0.921875 +76 314.0775 317.955 1000 50 0.99011374 +77 321.8325 325.71 1000 50 0.99535465 +78 325.71 329.5875 1000 50 0.98909515 +79 333.465 337.3425 1000 50 0.99986625 +80 337.3425 341.21999999999997 1000 50 0.9073507 +81 341.22 345.0975 1000 50 0.99686545 +82 348.975 352.8525 1000 50 0.63074017 +83 352.8525 356.73 1000 50 0.88011634 +84 356.73 360.6075 1000 50 0.9056268 +85 360.6075 364.485 1000 50 0.883959 +86 368.3625 372.24 1000 50 0.5702806 +87 376.1175 379.995 1000 50 0.99987483 +88 379.995 383.8725 1000 50 0.8607707 +89 383.8725 387.75 1000 50 0.9797463 +90 387.75 391.6275 1000 50 0.93293613 +91 411.015 414.8925 1000 50 0.99997306 +92 418.77 422.6475 1000 50 0.9921163 +93 426.525 430.4025 1000 50 0.8152985 +94 430.4025 434.28 1000 50 0.9999608 +95 434.28 438.15749999999997 1000 50 0.9999565 +96 438.1575 442.035 1000 50 0.9996847 +97 442.035 445.9125 1000 50 0.9617261 +98 445.9125 449.79 1000 50 0.9977604 +99 449.79 453.6675 1000 50 0.9702533 +100 453.6675 457.545 1000 50 0.9999893 +101 457.545 461.4225 1000 50 0.9971916 +102 461.4225 465.3 1000 50 0.9992847 +103 465.3 469.1775 1000 50 0.9999893 +104 469.1775 473.055 1000 50 0.9834379 +105 473.055 476.9325 1000 50 0.99782795 +106 476.9325 480.81 1000 50 0.9999714 +107 480.81 484.6875 1000 50 0.99002576 +108 484.6875 488.565 1000 50 0.9935388 +109 488.565 492.4425 1000 50 0.9780165 +110 492.4425 496.32 1000 50 0.987039 +111 496.32 500.1975 1000 50 0.9986527 +112 500.1975 504.075 1000 50 0.99973446 +113 507.9525 511.83 1000 50 0.99853563 +114 511.83 515.7075 1000 50 0.99998987 +115 519.585 523.4625000000001 1000 50 0.9999995 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_11-12-31_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_11-12-31_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..278699ce2e22cb7ec0ce0dbd341a76829cebb453 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_11-12-31_annot_2022-11-30_01.txt @@ -0,0 +1,163 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.8111058 +2 3.8775 7.755 1000 50 0.9947944 +3 19.3875 23.265 1000 50 0.95416117 +4 27.1425 31.02 1000 50 0.97833055 +5 31.02 34.8975 1000 50 0.672802 +6 34.8975 38.775 1000 50 0.7271096 +7 38.775 42.652499999999996 1000 50 0.53959143 +8 42.6525 46.53 1000 50 0.7906832 +9 50.4075 54.285 1000 50 0.73661834 +10 54.285 58.162499999999994 1000 50 0.9998789 +11 58.1625 62.04 1000 50 0.56251645 +12 62.04 65.9175 1000 50 0.9527743 +13 65.9175 69.795 1000 50 0.99955946 +14 73.6725 77.55 1000 50 0.616188 +15 77.55 81.4275 1000 50 0.99994385 +16 85.305 89.1825 1000 50 0.9556254 +17 89.1825 93.06 1000 50 0.9956786 +18 96.9375 100.815 1000 50 0.9705273 +19 100.815 104.6925 1000 50 0.9372137 +20 104.6925 108.57 1000 50 0.99995756 +21 108.57 112.44749999999999 1000 50 0.9961843 +22 116.325 120.2025 1000 50 0.9990608 +23 120.2025 124.08 1000 50 0.99858224 +24 124.08 127.9575 1000 50 0.6271531 +25 127.9575 131.835 1000 50 0.82529706 +26 135.7125 139.59 1000 50 0.99872524 +27 139.59 143.4675 1000 50 0.98513806 +28 143.4675 147.345 1000 50 0.99841225 +29 162.855 166.7325 1000 50 0.6112319 +30 166.7325 170.60999999999999 1000 50 0.97989804 +31 174.4875 178.365 1000 50 0.9113853 +32 178.365 182.2425 1000 50 0.9995214 +33 186.12 189.9975 1000 50 0.9834728 +34 189.9975 193.875 1000 50 0.9264482 +35 193.875 197.7525 1000 50 0.94640976 +36 197.7525 201.63 1000 50 0.8368124 +37 201.63 205.5075 1000 50 0.9913715 +38 205.5075 209.385 1000 50 0.9999149 +39 209.385 213.2625 1000 50 0.92727345 +40 213.2625 217.14 1000 50 0.9996333 +41 217.14 221.01749999999998 1000 50 0.99373287 +42 221.0175 224.895 1000 50 0.87001145 +43 224.895 228.7725 1000 50 0.9950976 +44 228.7725 232.65 1000 50 0.9997141 +45 236.5275 240.405 1000 50 0.9923252 +46 240.405 244.2825 1000 50 0.9999486 +47 244.2825 248.16 1000 50 0.92442125 +48 248.16 252.0375 1000 50 0.98879427 +49 252.0375 255.915 1000 50 0.999811 +50 255.915 259.7925 1000 50 0.99999785 +51 259.7925 263.67 1000 50 0.99954224 +52 263.67 267.5475 1000 50 0.9998203 +53 267.5475 271.425 1000 50 0.99918944 +54 271.425 275.3025 1000 50 0.9999347 +55 275.3025 279.18 1000 50 0.9992781 +56 279.18 283.0575 1000 50 0.9409069 +57 283.0575 286.935 1000 50 0.9999671 +58 286.935 290.8125 1000 50 1.0 +59 290.8125 294.69 1000 50 0.997809 +60 294.69 298.5675 1000 50 0.96671283 +61 298.5675 302.445 1000 50 1.0 +62 302.445 306.3225 1000 50 0.999979 +63 306.3225 310.2 1000 50 0.9999989 +64 310.2 314.0775 1000 50 0.9999938 +65 314.0775 317.955 1000 50 0.9997534 +66 317.955 321.8325 1000 50 1.0 +67 321.8325 325.71 1000 50 0.9999387 +68 325.71 329.5875 1000 50 0.9996612 +69 329.5875 333.465 1000 50 0.9999759 +70 333.465 337.3425 1000 50 0.9996333 +71 337.3425 341.21999999999997 1000 50 0.9999943 +72 341.22 345.0975 1000 50 0.9999908 +73 345.0975 348.975 1000 50 0.9999993 +74 348.975 352.8525 1000 50 0.99986684 +75 352.8525 356.73 1000 50 0.99999416 +76 356.73 360.6075 1000 50 0.99993193 +77 360.6075 364.485 1000 50 0.9998841 +78 364.485 368.3625 1000 50 1.0 +79 368.3625 372.24 1000 50 0.9999877 +80 372.24 376.1175 1000 50 0.9999995 +81 376.1175 379.995 1000 50 0.99509615 +82 379.995 383.8725 1000 50 0.99879056 +83 383.8725 387.75 1000 50 0.5019007 +84 387.75 391.6275 1000 50 0.9512606 +85 391.6275 395.505 1000 50 0.95550853 +86 395.505 399.3825 1000 50 0.99975425 +87 399.3825 403.26 1000 50 0.91814905 +88 403.26 407.1375 1000 50 0.99876106 +89 407.1375 411.015 1000 50 0.99998474 +90 411.015 414.8925 1000 50 0.99998 +91 414.8925 418.77 1000 50 0.99999404 +92 418.77 422.6475 1000 50 0.9999728 +93 422.6475 426.525 1000 50 0.99868816 +94 426.525 430.4025 1000 50 0.9999746 +95 430.4025 434.28 1000 50 0.9999149 +96 434.28 438.15749999999997 1000 50 0.65732574 +97 438.1575 442.035 1000 50 0.9670087 +98 445.9125 449.79 1000 50 0.99890363 +99 449.79 453.6675 1000 50 0.99983084 +100 453.6675 457.545 1000 50 0.9993129 +101 457.545 461.4225 1000 50 0.9999995 +102 461.4225 465.3 1000 50 0.99978 +103 465.3 469.1775 1000 50 0.96720994 +104 469.1775 473.055 1000 50 0.9999999 +105 473.055 476.9325 1000 50 0.99998987 +106 476.9325 480.81 1000 50 0.7438786 +107 480.81 484.6875 1000 50 0.9989825 +108 484.6875 488.565 1000 50 0.99026513 +109 488.565 492.4425 1000 50 0.9987656 +110 492.4425 496.32 1000 50 0.83350694 +111 496.32 500.1975 1000 50 0.9923618 +112 500.1975 504.075 1000 50 0.9994174 +113 504.075 507.9525 1000 50 0.9999293 +114 507.9525 511.83 1000 50 0.79149705 +115 511.83 515.7075 1000 50 0.9832608 +116 515.7075 519.585 1000 50 0.83311373 +117 519.585 523.4625000000001 1000 50 0.8321055 +118 523.4625 527.34 1000 50 0.96699256 +119 531.2175 535.095 1000 50 0.90127933 +120 542.85 546.7275000000001 1000 50 0.9988439 +121 550.605 554.4825000000001 1000 50 0.9994399 +122 554.4825 558.36 1000 50 0.7759149 +123 562.2375 566.115 1000 50 0.96947104 +124 569.9925 573.87 1000 50 0.99825567 +125 573.87 577.7475000000001 1000 50 0.72365975 +126 577.7475 581.625 1000 50 0.5325269 +127 581.625 585.5025 1000 50 0.70781565 +128 604.89 608.7675 1000 50 0.9961164 +129 608.7675 612.6450000000001 1000 50 0.84077907 +130 612.645 616.5225 1000 50 0.99669254 +131 616.5225 620.4000000000001 1000 50 0.7992145 +132 620.4 624.2775 1000 50 0.9925188 +133 624.2775 628.1550000000001 1000 50 0.98423725 +134 635.91 639.7875 1000 50 0.9996145 +135 639.7875 643.6650000000001 1000 50 0.98839766 +136 643.665 647.5425 1000 50 0.97549623 +137 647.5425 651.4200000000001 1000 50 0.9622222 +138 655.2975 659.1750000000001 1000 50 0.95187396 +139 659.175 663.0525 1000 50 0.99636745 +140 663.0525 666.9300000000001 1000 50 0.8974444 +141 666.93 670.8075 1000 50 0.9996146 +142 670.8075 674.6850000000001 1000 50 0.9910494 +143 674.685 678.5625 1000 50 0.93784016 +144 678.5625 682.44 1000 50 0.9969138 +145 682.44 686.3175000000001 1000 50 0.99517125 +146 686.3175 690.195 1000 50 0.99994564 +147 690.195 694.0725000000001 1000 50 0.9989348 +148 694.0725 697.95 1000 50 0.97032064 +149 697.95 701.8275000000001 1000 50 0.9999187 +150 701.8275 705.705 1000 50 0.9999852 +151 705.705 709.5825000000001 1000 50 0.9986572 +152 709.5825 713.46 1000 50 0.9998578 +153 713.46 717.3375000000001 1000 50 0.99999297 +154 717.3375 721.215 1000 50 0.99709153 +155 721.215 725.0925000000001 1000 50 0.99990606 +156 725.0925 728.97 1000 50 0.9999999 +157 728.97 732.8475000000001 1000 50 0.9840576 +158 732.8475 736.725 1000 50 0.99997926 +159 736.725 740.6025000000001 1000 50 1.0 +160 740.6025 744.48 1000 50 0.9414101 +161 744.48 748.3575000000001 1000 50 0.99991834 +162 748.3575 752.235 1000 50 0.99999046 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_12-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_12-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1400f46b9e32f59f517364eba05854f1155e8033 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_12-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,203 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9991934 +2 3.8775 7.755 1000 50 0.9989103 +3 7.755 11.6325 1000 50 0.9974732 +4 11.6325 15.51 1000 50 0.99972004 +5 15.51 19.3875 1000 50 0.9417382 +6 19.3875 23.265 1000 50 0.99999905 +7 23.265 27.142500000000002 1000 50 0.9998487 +8 31.02 34.8975 1000 50 0.9999995 +9 34.8975 38.775 1000 50 0.97545075 +10 42.6525 46.53 1000 50 0.9999968 +11 46.53 50.4075 1000 50 0.9989698 +12 50.4075 54.285 1000 50 0.9972965 +13 54.285 58.162499999999994 1000 50 0.9996369 +14 58.1625 62.04 1000 50 0.99524635 +15 62.04 65.9175 1000 50 0.99952567 +16 65.9175 69.795 1000 50 0.99971443 +17 69.795 73.6725 1000 50 0.9990447 +18 73.6725 77.55 1000 50 0.9326504 +19 77.55 81.4275 1000 50 0.95580727 +20 81.4275 85.30499999999999 1000 50 0.9999882 +21 89.1825 93.06 1000 50 0.9997515 +22 93.06 96.9375 1000 50 0.9993845 +23 96.9375 100.815 1000 50 0.9995363 +24 100.815 104.6925 1000 50 0.99980384 +25 104.6925 108.57 1000 50 0.99977547 +26 108.57 112.44749999999999 1000 50 0.8860055 +27 112.4475 116.325 1000 50 0.9998534 +28 116.325 120.2025 1000 50 0.99059534 +29 120.2025 124.08 1000 50 0.987958 +30 124.08 127.9575 1000 50 0.99956435 +31 127.9575 131.835 1000 50 0.995978 +32 131.835 135.7125 1000 50 0.9999894 +33 135.7125 139.59 1000 50 0.9991794 +34 139.59 143.4675 1000 50 0.9919567 +35 143.4675 147.345 1000 50 0.9999589 +36 147.345 151.2225 1000 50 0.99978405 +37 151.2225 155.1 1000 50 0.9771733 +38 155.1 158.9775 1000 50 0.98867756 +39 158.9775 162.855 1000 50 0.99994206 +40 162.855 166.7325 1000 50 0.99934906 +41 166.7325 170.60999999999999 1000 50 0.99996686 +42 170.61 174.4875 1000 50 0.9999994 +43 174.4875 178.365 1000 50 0.99971265 +44 178.365 182.2425 1000 50 0.9999269 +45 182.2425 186.12 1000 50 0.99978894 +46 186.12 189.9975 1000 50 0.93994313 +47 189.9975 193.875 1000 50 0.9999678 +48 193.875 197.7525 1000 50 0.9999851 +49 197.7525 201.63 1000 50 0.9998357 +50 201.63 205.5075 1000 50 0.9999999 +51 205.5075 209.385 1000 50 0.99944955 +52 209.385 213.2625 1000 50 0.9999902 +53 213.2625 217.14 1000 50 1.0 +54 217.14 221.01749999999998 1000 50 0.9949439 +55 221.0175 224.895 1000 50 0.9999728 +56 224.895 228.7725 1000 50 1.0 +57 228.7725 232.65 1000 50 0.99906975 +58 232.65 236.5275 1000 50 0.99984336 +59 236.5275 240.405 1000 50 0.99998784 +60 240.405 244.2825 1000 50 0.98191696 +61 244.2825 248.16 1000 50 0.9999924 +62 248.16 252.0375 1000 50 0.998432 +63 252.0375 255.915 1000 50 0.99985826 +64 255.915 259.7925 1000 50 1.0 +65 259.7925 263.67 1000 50 0.99998033 +66 263.67 267.5475 1000 50 0.99935406 +67 267.5475 271.425 1000 50 1.0 +68 271.425 275.3025 1000 50 0.99997437 +69 275.3025 279.18 1000 50 0.9999907 +70 279.18 283.0575 1000 50 0.99999976 +71 283.0575 286.935 1000 50 0.99998474 +72 286.935 290.8125 1000 50 0.999972 +73 290.8125 294.69 1000 50 0.9999957 +74 294.69 298.5675 1000 50 0.9999988 +75 298.5675 302.445 1000 50 0.99867463 +76 302.445 306.3225 1000 50 1.0 +77 306.3225 310.2 1000 50 0.9674897 +78 310.2 314.0775 1000 50 0.97032386 +79 314.0775 317.955 1000 50 1.0 +80 317.955 321.8325 1000 50 0.99988854 +81 321.8325 325.71 1000 50 0.604805 +82 325.71 329.5875 1000 50 0.9999316 +83 329.5875 333.465 1000 50 0.99998987 +84 333.465 337.3425 1000 50 0.9092725 +85 337.3425 341.21999999999997 1000 50 0.9999969 +86 341.22 345.0975 1000 50 0.9999994 +87 345.0975 348.975 1000 50 0.99928856 +88 348.975 352.8525 1000 50 0.9997309 +89 352.8525 356.73 1000 50 0.9999999 +90 356.73 360.6075 1000 50 0.9864957 +91 360.6075 364.485 1000 50 0.9999999 +92 364.485 368.3625 1000 50 0.999933 +93 368.3625 372.24 1000 50 0.9999752 +94 372.24 376.1175 1000 50 0.99992764 +95 376.1175 379.995 1000 50 0.99999833 +96 379.995 383.8725 1000 50 0.9999727 +97 383.8725 387.75 1000 50 0.9999845 +98 387.75 391.6275 1000 50 0.9999968 +99 391.6275 395.505 1000 50 1.0 +100 395.505 399.3825 1000 50 0.9999999 +101 399.3825 403.26 1000 50 1.0 +102 403.26 407.1375 1000 50 0.99994993 +103 407.1375 411.015 1000 50 1.0 +104 411.015 414.8925 1000 50 0.9999962 +105 414.8925 418.77 1000 50 0.9999045 +106 418.77 422.6475 1000 50 0.99999905 +107 422.6475 426.525 1000 50 0.99996376 +108 426.525 430.4025 1000 50 0.999368 +109 430.4025 434.28 1000 50 0.9999999 +110 434.28 438.15749999999997 1000 50 0.9999869 +111 438.1575 442.035 1000 50 0.99997354 +112 442.035 445.9125 1000 50 0.99999976 +113 445.9125 449.79 1000 50 0.9998574 +114 449.79 453.6675 1000 50 1.0 +115 453.6675 457.545 1000 50 0.9999943 +116 457.545 461.4225 1000 50 0.99999154 +117 461.4225 465.3 1000 50 1.0 +118 465.3 469.1775 1000 50 0.99999845 +119 469.1775 473.055 1000 50 0.9999982 +120 473.055 476.9325 1000 50 0.9999999 +121 476.9325 480.81 1000 50 0.9999981 +122 480.81 484.6875 1000 50 0.9999987 +123 484.6875 488.565 1000 50 0.96839476 +124 488.565 492.4425 1000 50 0.9999993 +125 492.4425 496.32 1000 50 0.9999988 +126 496.32 500.1975 1000 50 0.9999995 +127 500.1975 504.075 1000 50 0.9997594 +128 504.075 507.9525 1000 50 0.997863 +129 507.9525 511.83 1000 50 0.99999976 +130 511.83 515.7075 1000 50 0.99999404 +131 515.7075 519.585 1000 50 0.9999975 +132 519.585 523.4625000000001 1000 50 0.9987531 +133 523.4625 527.34 1000 50 0.99999595 +134 527.34 531.2175000000001 1000 50 0.9999987 +135 531.2175 535.095 1000 50 0.9999906 +136 535.095 538.9725000000001 1000 50 0.9999999 +137 538.9725 542.85 1000 50 0.9998252 +138 542.85 546.7275000000001 1000 50 0.9999914 +139 546.7275 550.605 1000 50 0.99999845 +140 550.605 554.4825000000001 1000 50 0.99999857 +141 554.4825 558.36 1000 50 0.9999993 +142 558.36 562.2375000000001 1000 50 0.99345076 +143 562.2375 566.115 1000 50 1.0 +144 566.115 569.9925000000001 1000 50 0.9999683 +145 569.9925 573.87 1000 50 0.99999774 +146 573.87 577.7475000000001 1000 50 0.96942073 +147 577.7475 581.625 1000 50 0.7699292 +148 581.625 585.5025 1000 50 0.99999857 +149 585.5025 589.3800000000001 1000 50 0.9999722 +150 593.2575 597.1350000000001 1000 50 0.8635961 +151 597.135 601.0125 1000 50 0.7206598 +152 601.0125 604.8900000000001 1000 50 0.8934552 +153 604.89 608.7675 1000 50 0.7634978 +154 612.645 616.5225 1000 50 0.5638236 +155 616.5225 620.4000000000001 1000 50 0.99749905 +156 620.4 624.2775 1000 50 0.9987431 +157 624.2775 628.1550000000001 1000 50 0.9710876 +158 628.155 632.0325 1000 50 0.999171 +159 632.0325 635.9100000000001 1000 50 0.7389101 +160 635.91 639.7875 1000 50 0.9993049 +161 639.7875 643.6650000000001 1000 50 0.9998561 +162 643.665 647.5425 1000 50 0.9169879 +163 647.5425 651.4200000000001 1000 50 0.87346816 +164 651.42 655.2975 1000 50 0.53298557 +165 655.2975 659.1750000000001 1000 50 0.76560014 +166 659.175 663.0525 1000 50 0.84287786 +167 663.0525 666.9300000000001 1000 50 0.9992162 +168 666.93 670.8075 1000 50 0.59010917 +169 670.8075 674.6850000000001 1000 50 0.92854476 +170 674.685 678.5625 1000 50 0.9875201 +171 678.5625 682.44 1000 50 0.9970284 +172 682.44 686.3175000000001 1000 50 0.91967434 +173 690.195 694.0725000000001 1000 50 0.8835366 +174 701.8275 705.705 1000 50 0.8352202 +175 705.705 709.5825000000001 1000 50 0.98019683 +176 713.46 717.3375000000001 1000 50 0.93103266 +177 717.3375 721.215 1000 50 0.9772398 +178 721.215 725.0925000000001 1000 50 0.55240476 +179 725.0925 728.97 1000 50 0.8655454 +180 728.97 732.8475000000001 1000 50 0.50198984 +181 732.8475 736.725 1000 50 0.72544247 +182 736.725 740.6025000000001 1000 50 0.9754515 +183 740.6025 744.48 1000 50 0.7368004 +184 748.3575 752.235 1000 50 0.9948749 +185 756.1125 759.99 1000 50 0.9994276 +186 759.99 763.8675000000001 1000 50 0.9976695 +187 763.8675 767.745 1000 50 0.6658319 +188 767.745 771.6225000000001 1000 50 0.9187478 +189 775.5 779.3775 1000 50 0.54680437 +190 779.3775 783.2550000000001 1000 50 0.83681405 +191 787.1325 791.0100000000001 1000 50 0.9990606 +192 794.8875 798.7650000000001 1000 50 0.5008915 +193 798.765 802.6425 1000 50 0.98848236 +194 806.52 810.3975 1000 50 0.9961959 +195 818.1525 822.0300000000001 1000 50 0.66026616 +196 822.03 825.9075 1000 50 0.99977726 +197 829.785 833.6625 1000 50 0.9983841 +198 833.6625 837.5400000000001 1000 50 0.9318062 +199 837.54 841.4175 1000 50 0.999951 +200 841.4175 845.2950000000001 1000 50 0.99349123 +201 845.295 849.1725 1000 50 0.64191455 +202 849.1725 853.0500000000001 1000 50 0.9997464 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_12-17-51_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_12-17-51_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..65a1183e8b19137e708c13e402788724896c322f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_12-17-51_annot_2022-11-30_01.txt @@ -0,0 +1,97 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9973916 +2 3.8775 7.755 1000 50 0.9999939 +3 7.755 11.6325 1000 50 0.9999938 +4 11.6325 15.51 1000 50 0.999997 +5 15.51 19.3875 1000 50 0.8794164 +6 19.3875 23.265 1000 50 0.9999969 +7 23.265 27.142500000000002 1000 50 1.0 +8 27.1425 31.02 1000 50 0.9973066 +9 31.02 34.8975 1000 50 0.9999976 +10 34.8975 38.775 1000 50 0.9998091 +11 38.775 42.652499999999996 1000 50 0.9994074 +12 42.6525 46.53 1000 50 0.9999994 +13 46.53 50.4075 1000 50 0.9999757 +14 50.4075 54.285 1000 50 0.9999145 +15 54.285 58.162499999999994 1000 50 0.9997774 +16 58.1625 62.04 1000 50 0.99999976 +17 62.04 65.9175 1000 50 0.9999989 +18 65.9175 69.795 1000 50 0.999961 +19 69.795 73.6725 1000 50 0.9998859 +20 73.6725 77.55 1000 50 0.99951255 +21 77.55 81.4275 1000 50 0.99999964 +22 81.4275 85.30499999999999 1000 50 0.9998745 +23 85.305 89.1825 1000 50 1.0 +24 89.1825 93.06 1000 50 0.99999964 +25 93.06 96.9375 1000 50 0.99855775 +26 96.9375 100.815 1000 50 0.9999995 +27 100.815 104.6925 1000 50 0.9998512 +28 104.6925 108.57 1000 50 0.999997 +29 108.57 112.44749999999999 1000 50 0.9999318 +30 112.4475 116.325 1000 50 0.999998 +31 116.325 120.2025 1000 50 0.9999962 +32 120.2025 124.08 1000 50 0.99997056 +33 124.08 127.9575 1000 50 0.99890137 +34 127.9575 131.835 1000 50 1.0 +35 131.835 135.7125 1000 50 1.0 +36 135.7125 139.59 1000 50 0.9882483 +37 139.59 143.4675 1000 50 0.99999225 +38 143.4675 147.345 1000 50 0.999106 +39 147.345 151.2225 1000 50 0.9468864 +40 151.2225 155.1 1000 50 0.99871886 +41 155.1 158.9775 1000 50 0.99999356 +42 158.9775 162.855 1000 50 0.9997706 +43 162.855 166.7325 1000 50 0.9999368 +44 166.7325 170.60999999999999 1000 50 0.99999833 +45 174.4875 178.365 1000 50 0.9845334 +46 178.365 182.2425 1000 50 0.9805608 +47 182.2425 186.12 1000 50 1.0 +48 186.12 189.9975 1000 50 0.8237596 +49 189.9975 193.875 1000 50 0.9982027 +50 193.875 197.7525 1000 50 0.9955081 +51 197.7525 201.63 1000 50 0.9996146 +52 201.63 205.5075 1000 50 0.99909794 +53 209.385 213.2625 1000 50 0.9427838 +54 213.2625 217.14 1000 50 0.9999964 +55 217.14 221.01749999999998 1000 50 0.99217415 +56 221.0175 224.895 1000 50 0.99891496 +57 224.895 228.7725 1000 50 0.84499776 +58 228.7725 232.65 1000 50 0.9989998 +59 232.65 236.5275 1000 50 0.9941366 +60 236.5275 240.405 1000 50 0.9645885 +61 240.405 244.2825 1000 50 0.86264443 +62 244.2825 248.16 1000 50 0.9972198 +63 252.0375 255.915 1000 50 0.9999645 +64 255.915 259.7925 1000 50 0.9695766 +65 259.7925 263.67 1000 50 0.9789859 +66 263.67 267.5475 1000 50 0.99999714 +67 267.5475 271.425 1000 50 0.9401889 +68 271.425 275.3025 1000 50 0.9995542 +69 279.18 283.0575 1000 50 0.99998105 +70 283.0575 286.935 1000 50 0.99866366 +71 286.935 290.8125 1000 50 0.9999845 +72 290.8125 294.69 1000 50 0.9998646 +73 294.69 298.5675 1000 50 0.99987745 +74 302.445 306.3225 1000 50 0.8322143 +75 310.2 314.0775 1000 50 0.97646505 +76 321.8325 325.71 1000 50 0.99922466 +77 329.5875 333.465 1000 50 0.816961 +78 337.3425 341.21999999999997 1000 50 0.7563838 +79 348.975 352.8525 1000 50 0.9953348 +80 352.8525 356.73 1000 50 0.57808745 +81 360.6075 364.485 1000 50 0.9987313 +82 364.485 368.3625 1000 50 0.9811983 +83 368.3625 372.24 1000 50 0.99998546 +84 372.24 376.1175 1000 50 0.9868929 +85 376.1175 379.995 1000 50 0.8459845 +86 379.995 383.8725 1000 50 0.74841666 +87 383.8725 387.75 1000 50 0.9221597 +88 387.75 391.6275 1000 50 0.99839514 +89 391.6275 395.505 1000 50 0.82272166 +90 395.505 399.3825 1000 50 0.6716182 +91 399.3825 403.26 1000 50 0.79541534 +92 403.26 407.1375 1000 50 0.99016786 +93 411.015 414.8925 1000 50 0.9906921 +94 414.8925 418.77 1000 50 0.99867624 +95 426.525 430.4025 1000 50 0.9981604 +96 430.4025 434.28 1000 50 0.98060614 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_13-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_13-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..789232245b63a0eed02ee9a2cff98909c4e8e777 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_13-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,235 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9947008 +2 3.8775 7.755 1000 50 0.99992085 +3 7.755 11.6325 1000 50 0.9781147 +4 11.6325 15.51 1000 50 0.9998723 +5 15.51 19.3875 1000 50 0.9999976 +6 19.3875 23.265 1000 50 0.9994357 +7 23.265 27.142500000000002 1000 50 0.99998724 +8 27.1425 31.02 1000 50 0.9999995 +9 31.02 34.8975 1000 50 0.9956359 +10 34.8975 38.775 1000 50 1.0 +11 38.775 42.652499999999996 1000 50 0.9998919 +12 42.6525 46.53 1000 50 0.9997017 +13 46.53 50.4075 1000 50 0.99999666 +14 50.4075 54.285 1000 50 0.99999976 +15 54.285 58.162499999999994 1000 50 0.9794023 +16 65.9175 69.795 1000 50 0.9886882 +17 69.795 73.6725 1000 50 0.997884 +18 73.6725 77.55 1000 50 0.99999523 +19 77.55 81.4275 1000 50 0.9980677 +20 81.4275 85.30499999999999 1000 50 0.999995 +21 85.305 89.1825 1000 50 0.9989813 +22 89.1825 93.06 1000 50 0.999936 +23 93.06 96.9375 1000 50 0.99719906 +24 96.9375 100.815 1000 50 0.9999956 +25 104.6925 108.57 1000 50 0.9014629 +26 112.4475 116.325 1000 50 0.99999917 +27 116.325 120.2025 1000 50 0.9982083 +28 124.08 127.9575 1000 50 0.99995005 +29 127.9575 131.835 1000 50 0.99988973 +30 131.835 135.7125 1000 50 0.9999536 +31 135.7125 139.59 1000 50 1.0 +32 139.59 143.4675 1000 50 0.99663746 +33 143.4675 147.345 1000 50 0.99999845 +34 147.345 151.2225 1000 50 0.99999714 +35 151.2225 155.1 1000 50 0.9996723 +36 155.1 158.9775 1000 50 0.9993824 +37 158.9775 162.855 1000 50 0.99999917 +38 162.855 166.7325 1000 50 0.99991167 +39 166.7325 170.60999999999999 1000 50 0.9867541 +40 170.61 174.4875 1000 50 0.99999213 +41 174.4875 178.365 1000 50 0.7741371 +42 178.365 182.2425 1000 50 0.9971397 +43 186.12 189.9975 1000 50 0.7517936 +44 193.875 197.7525 1000 50 0.83306855 +45 197.7525 201.63 1000 50 0.9859514 +46 201.63 205.5075 1000 50 0.91033334 +47 221.0175 224.895 1000 50 0.92123294 +48 240.405 244.2825 1000 50 0.8856768 +49 252.0375 255.915 1000 50 0.9923341 +50 255.915 259.7925 1000 50 0.5572254 +51 271.425 275.3025 1000 50 0.8848415 +52 283.0575 286.935 1000 50 0.9497958 +53 317.955 321.8325 1000 50 0.9815253 +54 321.8325 325.71 1000 50 0.68785024 +55 329.5875 333.465 1000 50 0.9107149 +56 333.465 337.3425 1000 50 0.92120934 +57 341.22 345.0975 1000 50 0.9865682 +58 345.0975 348.975 1000 50 0.8534378 +59 348.975 352.8525 1000 50 0.8722311 +60 352.8525 356.73 1000 50 0.98020464 +61 356.73 360.6075 1000 50 0.9998491 +62 364.485 368.3625 1000 50 0.98189056 +63 372.24 376.1175 1000 50 0.8572573 +64 376.1175 379.995 1000 50 0.9999987 +65 379.995 383.8725 1000 50 0.9992348 +66 383.8725 387.75 1000 50 0.96342343 +67 387.75 391.6275 1000 50 0.9918596 +68 399.3825 403.26 1000 50 0.99998045 +69 407.1375 411.015 1000 50 0.99965 +70 411.015 414.8925 1000 50 0.7606481 +71 414.8925 418.77 1000 50 0.9998035 +72 418.77 422.6475 1000 50 0.8728059 +73 426.525 430.4025 1000 50 0.90213084 +74 430.4025 434.28 1000 50 0.99970585 +75 438.1575 442.035 1000 50 0.9826068 +76 442.035 445.9125 1000 50 0.99591583 +77 449.79 453.6675 1000 50 0.91286516 +78 453.6675 457.545 1000 50 0.99327916 +79 461.4225 465.3 1000 50 0.53292716 +80 465.3 469.1775 1000 50 0.863672 +81 469.1775 473.055 1000 50 0.99955493 +82 473.055 476.9325 1000 50 0.9999999 +83 476.9325 480.81 1000 50 0.99958163 +84 480.81 484.6875 1000 50 0.99950206 +85 484.6875 488.565 1000 50 1.0 +86 488.565 492.4425 1000 50 0.9998486 +87 492.4425 496.32 1000 50 0.99988544 +88 496.32 500.1975 1000 50 0.9999994 +89 500.1975 504.075 1000 50 0.9843465 +90 504.075 507.9525 1000 50 0.9984676 +91 507.9525 511.83 1000 50 0.9999907 +92 511.83 515.7075 1000 50 0.999954 +93 515.7075 519.585 1000 50 0.99999833 +94 519.585 523.4625000000001 1000 50 0.99995434 +95 523.4625 527.34 1000 50 0.9998683 +96 527.34 531.2175000000001 1000 50 0.9999999 +97 531.2175 535.095 1000 50 0.99999213 +98 538.9725 542.85 1000 50 0.9999856 +99 542.85 546.7275000000001 1000 50 0.9999974 +100 546.7275 550.605 1000 50 0.9999541 +101 550.605 554.4825000000001 1000 50 0.9999994 +102 554.4825 558.36 1000 50 0.9999901 +103 558.36 562.2375000000001 1000 50 0.99677163 +104 562.2375 566.115 1000 50 0.99999726 +105 566.115 569.9925000000001 1000 50 0.9998031 +106 569.9925 573.87 1000 50 0.6309084 +107 573.87 577.7475000000001 1000 50 1.0 +108 577.7475 581.625 1000 50 0.9999999 +109 581.625 585.5025 1000 50 0.51299703 +110 585.5025 589.3800000000001 1000 50 0.9999982 +111 589.38 593.2575 1000 50 0.9997149 +112 593.2575 597.1350000000001 1000 50 0.99945956 +113 597.135 601.0125 1000 50 0.9999902 +114 601.0125 604.8900000000001 1000 50 0.9998258 +115 604.89 608.7675 1000 50 0.99846125 +116 608.7675 612.6450000000001 1000 50 1.0 +117 612.645 616.5225 1000 50 0.99999976 +118 616.5225 620.4000000000001 1000 50 0.9999777 +119 620.4 624.2775 1000 50 0.99999976 +120 624.2775 628.1550000000001 1000 50 0.97645867 +121 628.155 632.0325 1000 50 0.99999964 +122 632.0325 635.9100000000001 1000 50 1.0 +123 635.91 639.7875 1000 50 0.99952006 +124 639.7875 643.6650000000001 1000 50 0.99999833 +125 643.665 647.5425 1000 50 0.99959975 +126 647.5425 651.4200000000001 1000 50 0.9998592 +127 651.42 655.2975 1000 50 0.9999999 +128 655.2975 659.1750000000001 1000 50 0.99961483 +129 659.175 663.0525 1000 50 0.99887127 +130 663.0525 666.9300000000001 1000 50 0.9999999 +131 666.93 670.8075 1000 50 0.9978923 +132 670.8075 674.6850000000001 1000 50 0.9999999 +133 674.685 678.5625 1000 50 0.9999827 +134 678.5625 682.44 1000 50 0.99994826 +135 682.44 686.3175000000001 1000 50 0.9999995 +136 686.3175 690.195 1000 50 0.9997664 +137 690.195 694.0725000000001 1000 50 0.99999976 +138 694.0725 697.95 1000 50 0.9999989 +139 697.95 701.8275000000001 1000 50 0.99999833 +140 701.8275 705.705 1000 50 0.9999161 +141 705.705 709.5825000000001 1000 50 0.9985178 +142 709.5825 713.46 1000 50 0.9999927 +143 713.46 717.3375000000001 1000 50 0.9999925 +144 717.3375 721.215 1000 50 0.9999957 +145 721.215 725.0925000000001 1000 50 1.0 +146 725.0925 728.97 1000 50 0.9999995 +147 728.97 732.8475000000001 1000 50 0.9993048 +148 732.8475 736.725 1000 50 1.0 +149 736.725 740.6025000000001 1000 50 0.99999976 +150 740.6025 744.48 1000 50 0.9999459 +151 744.48 748.3575000000001 1000 50 0.9999987 +152 748.3575 752.235 1000 50 0.9999987 +153 752.235 756.1125000000001 1000 50 0.99999225 +154 756.1125 759.99 1000 50 0.9972957 +155 759.99 763.8675000000001 1000 50 1.0 +156 763.8675 767.745 1000 50 0.9999746 +157 767.745 771.6225000000001 1000 50 0.9988914 +158 771.6225 775.5 1000 50 0.99999857 +159 775.5 779.3775 1000 50 0.9999441 +160 779.3775 783.2550000000001 1000 50 0.9999471 +161 783.255 787.1325 1000 50 0.99999964 +162 787.1325 791.0100000000001 1000 50 0.99999774 +163 791.01 794.8875 1000 50 1.0 +164 794.8875 798.7650000000001 1000 50 0.99999344 +165 798.765 802.6425 1000 50 0.9999924 +166 802.6425 806.5200000000001 1000 50 0.99934536 +167 806.52 810.3975 1000 50 0.9999999 +168 810.3975 814.2750000000001 1000 50 0.9999976 +169 814.275 818.1525 1000 50 1.0 +170 818.1525 822.0300000000001 1000 50 0.987189 +171 822.03 825.9075 1000 50 0.99790466 +172 825.9075 829.7850000000001 1000 50 0.9998307 +173 829.785 833.6625 1000 50 0.96341527 +174 833.6625 837.5400000000001 1000 50 0.7485081 +175 837.54 841.4175 1000 50 0.8495402 +176 841.4175 845.2950000000001 1000 50 0.96800303 +177 849.1725 853.0500000000001 1000 50 0.5554543 +178 856.9275 860.8050000000001 1000 50 0.724719 +179 864.6825 868.5600000000001 1000 50 0.59300154 +180 868.56 872.4375 1000 50 0.54615945 +181 876.315 880.1925000000001 1000 50 0.85003436 +182 880.1925 884.07 1000 50 0.86618066 +183 884.07 887.9475000000001 1000 50 0.99952936 +184 887.9475 891.825 1000 50 0.9986979 +185 891.825 895.7025000000001 1000 50 0.99521494 +186 895.7025 899.58 1000 50 0.9999931 +187 899.58 903.4575000000001 1000 50 0.9991192 +188 903.4575 907.335 1000 50 0.99804074 +189 907.335 911.2125000000001 1000 50 0.9999933 +190 911.2125 915.09 1000 50 0.95748866 +191 915.09 918.9675000000001 1000 50 0.68319416 +192 918.9675 922.845 1000 50 0.97302395 +193 922.845 926.7225000000001 1000 50 0.50671667 +194 926.7225 930.6 1000 50 0.99998677 +195 934.4775 938.355 1000 50 0.99967146 +196 938.355 942.2325000000001 1000 50 0.99985886 +197 942.2325 946.11 1000 50 0.5461971 +198 946.11 949.9875000000001 1000 50 0.7835582 +199 949.9875 953.865 1000 50 0.9990151 +200 953.865 957.7425000000001 1000 50 0.8978578 +201 957.7425 961.62 1000 50 0.9998567 +202 961.62 965.4975000000001 1000 50 0.98899955 +203 965.4975 969.375 1000 50 0.9907864 +204 977.13 981.0075 1000 50 0.9999577 +205 981.0075 984.8850000000001 1000 50 0.6635063 +206 988.7625 992.6400000000001 1000 50 0.9421348 +207 992.64 996.5175 1000 50 0.7792093 +208 996.5175 1000.3950000000001 1000 50 0.6470414 +209 1004.2725 1008.1500000000001 1000 50 0.8685726 +210 1012.0275 1015.9050000000001 1000 50 0.9095001 +211 1023.66 1027.5375 1000 50 0.5547056 +212 1031.415 1035.2925 1000 50 0.9887554 +213 1039.17 1043.0475000000001 1000 50 0.9871568 +214 1043.0475 1046.925 1000 50 0.92567617 +215 1046.925 1050.8025 1000 50 0.5007094 +216 1054.68 1058.5575000000001 1000 50 0.9990314 +217 1070.19 1074.0675 1000 50 0.83504546 +218 1077.945 1081.8225 1000 50 0.9583814 +219 1081.8225 1085.7 1000 50 0.62161005 +220 1085.7 1089.5775 1000 50 0.9992866 +221 1093.455 1097.3325 1000 50 0.535989 +222 1108.965 1112.8425 1000 50 0.7000226 +223 1112.8425 1116.72 1000 50 0.94635 +224 1116.72 1120.5975 1000 50 0.92403704 +225 1124.475 1128.3525 1000 50 0.98999363 +226 1128.3525 1132.23 1000 50 0.99620616 +227 1132.23 1136.1075 1000 50 0.8819363 +228 1136.1075 1139.9850000000001 1000 50 0.9980494 +229 1139.985 1143.8625 1000 50 0.99965584 +230 1143.8625 1147.74 1000 50 0.96330255 +231 1147.74 1151.6175 1000 50 0.99973255 +232 1151.6175 1155.4950000000001 1000 50 0.9999999 +233 1159.3725 1163.25 1000 50 0.999928 +234 1163.25 1167.1275 1000 50 0.99978036 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_13-23-10_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_13-23-10_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a042fc1ce3f7a52c904165ca92b9b65782fa4224 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_13-23-10_annot_2022-11-30_01.txt @@ -0,0 +1,30 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99997663 +2 3.8775 7.755 1000 50 0.9999988 +3 11.6325 15.51 1000 50 1.0 +4 15.51 19.3875 1000 50 0.99670106 +5 19.3875 23.265 1000 50 0.99119097 +6 23.265 27.142500000000002 1000 50 1.0 +7 27.1425 31.02 1000 50 0.99957746 +8 31.02 34.8975 1000 50 0.999962 +9 34.8975 38.775 1000 50 0.96742845 +10 38.775 42.652499999999996 1000 50 0.9999958 +11 42.6525 46.53 1000 50 0.998376 +12 46.53 50.4075 1000 50 0.9999882 +13 50.4075 54.285 1000 50 0.5932598 +14 54.285 58.162499999999994 1000 50 0.9995028 +15 58.1625 62.04 1000 50 0.99927765 +16 62.04 65.9175 1000 50 0.9989255 +17 65.9175 69.795 1000 50 0.9994486 +18 69.795 73.6725 1000 50 0.99981767 +19 73.6725 77.55 1000 50 0.92864734 +20 77.55 81.4275 1000 50 1.0 +21 81.4275 85.30499999999999 1000 50 0.9999291 +22 85.305 89.1825 1000 50 0.99999046 +23 89.1825 93.06 1000 50 1.0 +24 93.06 96.9375 1000 50 0.9998592 +25 96.9375 100.815 1000 50 0.98152494 +26 100.815 104.6925 1000 50 0.999718 +27 104.6925 108.57 1000 50 0.95607764 +28 108.57 112.44749999999999 1000 50 0.93205947 +29 112.4475 116.325 1000 50 0.88190573 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_14-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_14-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f1bf5dc6bc03fc16af1b9fc49b3cd0372a5f5789 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_14-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,340 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9953093 +2 3.8775 7.755 1000 50 0.99939847 +3 7.755 11.6325 1000 50 0.999814 +4 11.6325 15.51 1000 50 0.9776299 +5 15.51 19.3875 1000 50 0.99883693 +6 19.3875 23.265 1000 50 0.9999999 +7 27.1425 31.02 1000 50 0.9993943 +8 31.02 34.8975 1000 50 0.99999285 +9 38.775 42.652499999999996 1000 50 0.99975854 +10 42.6525 46.53 1000 50 0.9999138 +11 50.4075 54.285 1000 50 0.9999634 +12 54.285 58.162499999999994 1000 50 0.99901104 +13 62.04 65.9175 1000 50 0.99972636 +14 65.9175 69.795 1000 50 0.9972994 +15 73.6725 77.55 1000 50 0.9999845 +16 77.55 81.4275 1000 50 0.9999976 +17 81.4275 85.30499999999999 1000 50 0.9573405 +18 85.305 89.1825 1000 50 0.9999969 +19 89.1825 93.06 1000 50 0.8996088 +20 93.06 96.9375 1000 50 0.60263705 +21 96.9375 100.815 1000 50 1.0 +22 100.815 104.6925 1000 50 0.81308466 +23 108.57 112.44749999999999 1000 50 0.9989575 +24 112.4475 116.325 1000 50 0.9961014 +25 116.325 120.2025 1000 50 0.999871 +26 120.2025 124.08 1000 50 0.99999654 +27 124.08 127.9575 1000 50 0.9584094 +28 127.9575 131.835 1000 50 0.99997413 +29 131.835 135.7125 1000 50 0.99999344 +30 135.7125 139.59 1000 50 0.9809306 +31 139.59 143.4675 1000 50 0.9956268 +32 143.4675 147.345 1000 50 0.98622143 +33 147.345 151.2225 1000 50 0.9997919 +34 151.2225 155.1 1000 50 0.999997 +35 155.1 158.9775 1000 50 0.9992243 +36 158.9775 162.855 1000 50 0.97496563 +37 162.855 166.7325 1000 50 0.99710053 +38 166.7325 170.60999999999999 1000 50 0.99999976 +39 170.61 174.4875 1000 50 0.9996706 +40 174.4875 178.365 1000 50 0.99995685 +41 178.365 182.2425 1000 50 0.99985206 +42 182.2425 186.12 1000 50 0.99968696 +43 186.12 189.9975 1000 50 0.9903938 +44 189.9975 193.875 1000 50 0.9963103 +45 193.875 197.7525 1000 50 0.9999993 +46 197.7525 201.63 1000 50 0.9992156 +47 201.63 205.5075 1000 50 0.99607396 +48 205.5075 209.385 1000 50 0.9976553 +49 209.385 213.2625 1000 50 0.99990964 +50 213.2625 217.14 1000 50 0.9999993 +51 217.14 221.01749999999998 1000 50 0.9999682 +52 221.0175 224.895 1000 50 0.9999995 +53 224.895 228.7725 1000 50 0.99999976 +54 228.7725 232.65 1000 50 0.9998311 +55 232.65 236.5275 1000 50 0.9999722 +56 236.5275 240.405 1000 50 0.9793037 +57 240.405 244.2825 1000 50 0.99937975 +58 244.2825 248.16 1000 50 0.9981501 +59 248.16 252.0375 1000 50 1.0 +60 252.0375 255.915 1000 50 0.99999166 +61 255.915 259.7925 1000 50 0.9999987 +62 259.7925 263.67 1000 50 0.99993753 +63 263.67 267.5475 1000 50 0.9999988 +64 267.5475 271.425 1000 50 0.9972037 +65 271.425 275.3025 1000 50 0.9998722 +66 275.3025 279.18 1000 50 1.0 +67 279.18 283.0575 1000 50 0.99992955 +68 283.0575 286.935 1000 50 0.99983144 +69 286.935 290.8125 1000 50 0.99998975 +70 290.8125 294.69 1000 50 1.0 +71 294.69 298.5675 1000 50 0.99999475 +72 298.5675 302.445 1000 50 0.99955624 +73 302.445 306.3225 1000 50 0.99994767 +74 306.3225 310.2 1000 50 0.9999292 +75 310.2 314.0775 1000 50 0.9999987 +76 314.0775 317.955 1000 50 0.9999815 +77 317.955 321.8325 1000 50 0.999949 +78 321.8325 325.71 1000 50 0.9996189 +79 325.71 329.5875 1000 50 0.99999917 +80 329.5875 333.465 1000 50 0.99999905 +81 333.465 337.3425 1000 50 0.9977512 +82 337.3425 341.21999999999997 1000 50 0.9999254 +83 341.22 345.0975 1000 50 0.9995788 +84 345.0975 348.975 1000 50 0.991467 +85 348.975 352.8525 1000 50 0.84922576 +86 352.8525 356.73 1000 50 0.8683133 +87 356.73 360.6075 1000 50 0.9997751 +88 368.3625 372.24 1000 50 0.9795193 +89 372.24 376.1175 1000 50 0.9975382 +90 376.1175 379.995 1000 50 0.9890183 +91 387.75 391.6275 1000 50 0.9992473 +92 391.6275 395.505 1000 50 0.98711616 +93 395.505 399.3825 1000 50 0.9999025 +94 399.3825 403.26 1000 50 0.999985 +95 403.26 407.1375 1000 50 0.8478106 +96 407.1375 411.015 1000 50 0.7309097 +97 411.015 414.8925 1000 50 0.99196506 +98 414.8925 418.77 1000 50 0.826964 +99 418.77 422.6475 1000 50 0.9999654 +100 422.6475 426.525 1000 50 0.97347397 +101 426.525 430.4025 1000 50 0.8390137 +102 430.4025 434.28 1000 50 0.9937237 +103 434.28 438.15749999999997 1000 50 0.9753667 +104 442.035 445.9125 1000 50 0.96223456 +105 445.9125 449.79 1000 50 0.71309173 +106 449.79 453.6675 1000 50 0.99725384 +107 453.6675 457.545 1000 50 0.7526802 +108 461.4225 465.3 1000 50 0.9950818 +109 469.1775 473.055 1000 50 0.9766789 +110 473.055 476.9325 1000 50 0.96407896 +111 476.9325 480.81 1000 50 0.9455393 +112 484.6875 488.565 1000 50 0.99402493 +113 492.4425 496.32 1000 50 0.9810043 +114 496.32 500.1975 1000 50 0.70519954 +115 500.1975 504.075 1000 50 0.9711638 +116 504.075 507.9525 1000 50 0.9132088 +117 507.9525 511.83 1000 50 0.99834955 +118 511.83 515.7075 1000 50 0.99739313 +119 515.7075 519.585 1000 50 0.8358569 +120 519.585 523.4625000000001 1000 50 0.99227494 +121 523.4625 527.34 1000 50 0.99921227 +122 527.34 531.2175000000001 1000 50 0.98284644 +123 531.2175 535.095 1000 50 0.5086981 +124 535.095 538.9725000000001 1000 50 0.67181504 +125 538.9725 542.85 1000 50 0.99097997 +126 546.7275 550.605 1000 50 0.52603126 +127 550.605 554.4825000000001 1000 50 0.6967137 +128 562.2375 566.115 1000 50 0.9921411 +129 566.115 569.9925000000001 1000 50 0.9074641 +130 569.9925 573.87 1000 50 0.7826774 +131 573.87 577.7475000000001 1000 50 0.9491097 +132 577.7475 581.625 1000 50 0.52831244 +133 581.625 585.5025 1000 50 0.83513874 +134 585.5025 589.3800000000001 1000 50 0.99959546 +135 589.38 593.2575 1000 50 0.6431441 +136 593.2575 597.1350000000001 1000 50 0.9858395 +137 597.135 601.0125 1000 50 0.9696843 +138 601.0125 604.8900000000001 1000 50 0.98982984 +139 604.89 608.7675 1000 50 0.99990976 +140 608.7675 612.6450000000001 1000 50 0.9873431 +141 612.645 616.5225 1000 50 0.99998796 +142 616.5225 620.4000000000001 1000 50 0.8762338 +143 624.2775 628.1550000000001 1000 50 0.99907506 +144 628.155 632.0325 1000 50 0.9998758 +145 632.0325 635.9100000000001 1000 50 0.9999949 +146 635.91 639.7875 1000 50 0.99983084 +147 643.665 647.5425 1000 50 0.99937683 +148 647.5425 651.4200000000001 1000 50 0.99523383 +149 655.2975 659.1750000000001 1000 50 0.9948984 +150 659.175 663.0525 1000 50 0.9977196 +151 666.93 670.8075 1000 50 0.9471277 +152 670.8075 674.6850000000001 1000 50 0.98649395 +153 674.685 678.5625 1000 50 0.997115 +154 678.5625 682.44 1000 50 0.98243433 +155 682.44 686.3175000000001 1000 50 0.9946179 +156 690.195 694.0725000000001 1000 50 0.98838216 +157 697.95 701.8275000000001 1000 50 0.998387 +158 701.8275 705.705 1000 50 0.9999578 +159 705.705 709.5825000000001 1000 50 0.9999491 +160 709.5825 713.46 1000 50 0.9999002 +161 713.46 717.3375000000001 1000 50 1.0 +162 717.3375 721.215 1000 50 0.9999994 +163 721.215 725.0925000000001 1000 50 0.9999969 +164 725.0925 728.97 1000 50 0.99982977 +165 728.97 732.8475000000001 1000 50 0.9999995 +166 732.8475 736.725 1000 50 0.9999994 +167 736.725 740.6025000000001 1000 50 1.0 +168 740.6025 744.48 1000 50 0.99999356 +169 744.48 748.3575000000001 1000 50 0.9797147 +170 748.3575 752.235 1000 50 0.9999993 +171 752.235 756.1125000000001 1000 50 0.9910624 +172 756.1125 759.99 1000 50 0.866189 +173 759.99 763.8675000000001 1000 50 0.9999999 +174 763.8675 767.745 1000 50 0.9997353 +175 767.745 771.6225000000001 1000 50 0.99996114 +176 771.6225 775.5 1000 50 1.0 +177 775.5 779.3775 1000 50 0.99999547 +178 779.3775 783.2550000000001 1000 50 0.9673848 +179 783.255 787.1325 1000 50 0.99990976 +180 787.1325 791.0100000000001 1000 50 0.9998841 +181 791.01 794.8875 1000 50 0.99999845 +182 794.8875 798.7650000000001 1000 50 0.9999747 +183 798.765 802.6425 1000 50 0.99997854 +184 802.6425 806.5200000000001 1000 50 0.9999999 +185 806.52 810.3975 1000 50 0.9999902 +186 810.3975 814.2750000000001 1000 50 0.9999758 +187 814.275 818.1525 1000 50 0.99999964 +188 818.1525 822.0300000000001 1000 50 0.9998956 +189 822.03 825.9075 1000 50 0.87504196 +190 825.9075 829.7850000000001 1000 50 0.99994147 +191 829.785 833.6625 1000 50 0.9999889 +192 833.6625 837.5400000000001 1000 50 0.9999596 +193 837.54 841.4175 1000 50 0.99994075 +194 841.4175 845.2950000000001 1000 50 0.9997322 +195 845.295 849.1725 1000 50 0.99995816 +196 849.1725 853.0500000000001 1000 50 0.99997044 +197 853.05 856.9275 1000 50 0.9999988 +198 856.9275 860.8050000000001 1000 50 0.999998 +199 860.805 864.6825 1000 50 0.9982169 +200 864.6825 868.5600000000001 1000 50 1.0 +201 868.56 872.4375 1000 50 0.8993492 +202 872.4375 876.315 1000 50 1.0 +203 876.315 880.1925000000001 1000 50 0.99936634 +204 880.1925 884.07 1000 50 0.99593496 +205 884.07 887.9475000000001 1000 50 0.9999622 +206 887.9475 891.825 1000 50 0.9989268 +207 891.825 895.7025000000001 1000 50 1.0 +208 895.7025 899.58 1000 50 1.0 +209 899.58 903.4575000000001 1000 50 0.99876994 +210 903.4575 907.335 1000 50 0.99999964 +211 907.335 911.2125000000001 1000 50 0.9999994 +212 911.2125 915.09 1000 50 0.99999905 +213 915.09 918.9675000000001 1000 50 0.99999654 +214 918.9675 922.845 1000 50 0.99999905 +215 922.845 926.7225000000001 1000 50 0.99999416 +216 926.7225 930.6 1000 50 0.99999774 +217 930.6 934.4775000000001 1000 50 0.9960878 +218 934.4775 938.355 1000 50 0.99983215 +219 938.355 942.2325000000001 1000 50 0.99997914 +220 942.2325 946.11 1000 50 0.99993384 +221 946.11 949.9875000000001 1000 50 0.9999337 +222 949.9875 953.865 1000 50 0.9999703 +223 953.865 957.7425000000001 1000 50 0.9899895 +224 957.7425 961.62 1000 50 0.999997 +225 961.62 965.4975000000001 1000 50 0.99995744 +226 965.4975 969.375 1000 50 0.9999999 +227 969.375 973.2525 1000 50 0.96914005 +228 973.2525 977.1300000000001 1000 50 0.99995196 +229 977.13 981.0075 1000 50 0.9972766 +230 981.0075 984.8850000000001 1000 50 0.99982125 +231 984.885 988.7625 1000 50 0.99964523 +232 988.7625 992.6400000000001 1000 50 0.8851876 +233 992.64 996.5175 1000 50 0.9973851 +234 996.5175 1000.3950000000001 1000 50 0.999859 +235 1000.395 1004.2725 1000 50 0.8052695 +236 1004.2725 1008.1500000000001 1000 50 0.9999994 +237 1008.15 1012.0275 1000 50 0.99032086 +238 1012.0275 1015.9050000000001 1000 50 0.9551682 +239 1015.905 1019.7825 1000 50 0.989288 +240 1019.7825 1023.6600000000001 1000 50 0.96527725 +241 1023.66 1027.5375 1000 50 0.94454443 +242 1027.5375 1031.415 1000 50 0.5460027 +243 1031.415 1035.2925 1000 50 0.6492338 +244 1035.2925 1039.17 1000 50 0.51668334 +245 1039.17 1043.0475000000001 1000 50 0.96824753 +246 1043.0475 1046.925 1000 50 0.9607864 +247 1046.925 1050.8025 1000 50 0.98969215 +248 1050.8025 1054.68 1000 50 0.9982742 +249 1054.68 1058.5575000000001 1000 50 0.9974878 +250 1058.5575 1062.435 1000 50 0.99609804 +251 1062.435 1066.3125 1000 50 0.9021056 +252 1066.3125 1070.19 1000 50 0.92765576 +253 1070.19 1074.0675 1000 50 0.9711184 +254 1074.0675 1077.9450000000002 1000 50 0.98845404 +255 1077.945 1081.8225 1000 50 0.8916326 +256 1081.8225 1085.7 1000 50 0.99595106 +257 1089.5775 1093.4550000000002 1000 50 0.9977957 +258 1093.455 1097.3325 1000 50 0.97847545 +259 1108.965 1112.8425 1000 50 0.7842408 +260 1112.8425 1116.72 1000 50 0.8362447 +261 1136.1075 1139.9850000000001 1000 50 0.5512279 +262 1143.8625 1147.74 1000 50 0.8524408 +263 1147.74 1151.6175 1000 50 0.67118895 +264 1151.6175 1155.4950000000001 1000 50 0.904272 +265 1163.25 1167.1275 1000 50 0.9179516 +266 1167.1275 1171.005 1000 50 0.9980325 +267 1174.8825 1178.76 1000 50 0.936819 +268 1178.76 1182.6375 1000 50 0.5327352 +269 1194.27 1198.1475 1000 50 0.9990089 +270 1198.1475 1202.025 1000 50 0.9148555 +271 1205.9025 1209.78 1000 50 0.94398046 +272 1209.78 1213.6575 1000 50 0.5586007 +273 1213.6575 1217.535 1000 50 0.55758166 +274 1217.535 1221.4125000000001 1000 50 0.8986186 +275 1225.29 1229.1675 1000 50 0.89637536 +276 1229.1675 1233.045 1000 50 0.88646513 +277 1236.9225 1240.8 1000 50 0.99868697 +278 1240.8 1244.6775 1000 50 0.7686799 +279 1248.555 1252.4325000000001 1000 50 0.9996426 +280 1256.31 1260.1875 1000 50 0.966378 +281 1260.1875 1264.065 1000 50 0.9920115 +282 1264.065 1267.9425 1000 50 0.99996006 +283 1267.9425 1271.8200000000002 1000 50 0.9645715 +284 1271.82 1275.6975 1000 50 0.99999547 +285 1275.6975 1279.575 1000 50 0.99999917 +286 1279.575 1283.4525 1000 50 0.9999907 +287 1283.4525 1287.3300000000002 1000 50 0.99899226 +288 1287.33 1291.2075 1000 50 0.85613024 +289 1291.2075 1295.085 1000 50 0.9849903 +290 1295.085 1298.9625 1000 50 0.9999682 +291 1298.9625 1302.8400000000001 1000 50 0.9863218 +292 1302.84 1306.7175 1000 50 0.999997 +293 1306.7175 1310.595 1000 50 0.9999951 +294 1310.595 1314.4725 1000 50 0.9998109 +295 1314.4725 1318.3500000000001 1000 50 0.99988925 +296 1318.35 1322.2275 1000 50 0.99988675 +297 1322.2275 1326.105 1000 50 0.9999888 +298 1326.105 1329.9825 1000 50 0.9999813 +299 1329.9825 1333.8600000000001 1000 50 0.9999237 +300 1333.86 1337.7375 1000 50 0.9997912 +301 1337.7375 1341.615 1000 50 0.99671435 +302 1341.615 1345.4925 1000 50 0.961684 +303 1345.4925 1349.3700000000001 1000 50 0.9998703 +304 1349.37 1353.2475 1000 50 0.9999726 +305 1353.2475 1357.125 1000 50 0.9999945 +306 1357.125 1361.0025 1000 50 0.99999356 +307 1361.0025 1364.88 1000 50 0.9977673 +308 1364.88 1368.7575000000002 1000 50 0.99771154 +309 1368.7575 1372.635 1000 50 0.9999963 +310 1372.635 1376.5125 1000 50 1.0 +311 1376.5125 1380.39 1000 50 0.99996674 +312 1380.39 1384.2675000000002 1000 50 0.99991083 +313 1384.2675 1388.145 1000 50 0.961978 +314 1388.145 1392.0225 1000 50 0.7127163 +315 1392.0225 1395.9 1000 50 0.92601615 +316 1395.9 1399.7775000000001 1000 50 0.95897675 +317 1399.7775 1403.655 1000 50 0.99377704 +318 1403.655 1407.5325 1000 50 0.9974457 +319 1407.5325 1411.41 1000 50 0.9999645 +320 1411.41 1415.2875000000001 1000 50 0.9989849 +321 1415.2875 1419.165 1000 50 0.9999999 +322 1419.165 1423.0425 1000 50 0.99999 +323 1423.0425 1426.92 1000 50 0.5579252 +324 1426.92 1430.7975000000001 1000 50 0.99350125 +325 1430.7975 1434.675 1000 50 0.9999993 +326 1434.675 1438.5525 1000 50 0.9999652 +327 1438.5525 1442.43 1000 50 0.9971807 +328 1442.43 1446.3075000000001 1000 50 0.9999993 +329 1446.3075 1450.185 1000 50 0.99993026 +330 1450.185 1454.0625 1000 50 0.5833388 +331 1454.0625 1457.94 1000 50 1.0 +332 1457.94 1461.8175 1000 50 0.9934562 +333 1461.8175 1465.6950000000002 1000 50 0.99992955 +334 1465.695 1469.5725 1000 50 0.81087345 +335 1469.5725 1473.45 1000 50 0.9102964 +336 1473.45 1477.3275 1000 50 0.9998184 +337 1477.3275 1481.2050000000002 1000 50 0.62329245 +338 1481.205 1485.0825 1000 50 0.9759621 +339 1485.0825 1488.96 1000 50 0.99999785 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_15-03-44_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_15-03-44_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..4442d4232ba0ef436398170b6d2f31779b530926 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_15-03-44_annot_2022-11-30_01.txt @@ -0,0 +1,172 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9980508 +2 3.8775 7.755 1000 50 0.9991328 +3 7.755 11.6325 1000 50 0.8695865 +4 11.6325 15.51 1000 50 0.99955887 +5 15.51 19.3875 1000 50 0.9829281 +6 19.3875 23.265 1000 50 0.87845135 +7 23.265 27.142500000000002 1000 50 0.85776746 +8 27.1425 31.02 1000 50 0.99969923 +9 31.02 34.8975 1000 50 0.9999993 +10 34.8975 38.775 1000 50 0.9992015 +11 38.775 42.652499999999996 1000 50 0.9979849 +12 42.6525 46.53 1000 50 0.99981505 +13 46.53 50.4075 1000 50 0.99963903 +14 50.4075 54.285 1000 50 0.7896662 +15 54.285 58.162499999999994 1000 50 0.99995697 +16 58.1625 62.04 1000 50 0.870964 +17 65.9175 69.795 1000 50 0.9983931 +18 69.795 73.6725 1000 50 0.9960938 +19 73.6725 77.55 1000 50 0.99989486 +20 77.55 81.4275 1000 50 0.9935905 +21 81.4275 85.30499999999999 1000 50 0.993064 +22 85.305 89.1825 1000 50 0.99893445 +23 89.1825 93.06 1000 50 0.99993145 +24 93.06 96.9375 1000 50 0.94299775 +25 96.9375 100.815 1000 50 0.9999999 +26 100.815 104.6925 1000 50 0.9999993 +27 104.6925 108.57 1000 50 0.64459723 +28 108.57 112.44749999999999 1000 50 0.99997485 +29 112.4475 116.325 1000 50 0.99457574 +30 116.325 120.2025 1000 50 0.9988028 +31 120.2025 124.08 1000 50 0.9996724 +32 124.08 127.9575 1000 50 0.99782157 +33 127.9575 131.835 1000 50 0.999997 +34 131.835 135.7125 1000 50 0.99991703 +35 135.7125 139.59 1000 50 0.9956084 +36 139.59 143.4675 1000 50 0.9999982 +37 143.4675 147.345 1000 50 0.9999633 +38 147.345 151.2225 1000 50 0.9904516 +39 151.2225 155.1 1000 50 0.9999981 +40 155.1 158.9775 1000 50 0.99533045 +41 158.9775 162.855 1000 50 0.9995183 +42 162.855 166.7325 1000 50 0.99654275 +43 166.7325 170.60999999999999 1000 50 0.99950373 +44 170.61 174.4875 1000 50 0.9968252 +45 178.365 182.2425 1000 50 0.94058305 +46 182.2425 186.12 1000 50 0.97388 +47 193.875 197.7525 1000 50 0.50243676 +48 197.7525 201.63 1000 50 0.9610968 +49 213.2625 217.14 1000 50 0.7627498 +50 217.14 221.01749999999998 1000 50 0.99770314 +51 221.0175 224.895 1000 50 0.7422446 +52 224.895 228.7725 1000 50 0.996405 +53 228.7725 232.65 1000 50 0.9999881 +54 232.65 236.5275 1000 50 0.9986981 +55 236.5275 240.405 1000 50 0.9981781 +56 240.405 244.2825 1000 50 0.99999523 +57 244.2825 248.16 1000 50 0.7367296 +58 248.16 252.0375 1000 50 0.99936074 +59 252.0375 255.915 1000 50 0.7665948 +60 255.915 259.7925 1000 50 0.98241764 +61 259.7925 263.67 1000 50 0.99978024 +62 263.67 267.5475 1000 50 0.9997681 +63 267.5475 271.425 1000 50 0.9443551 +64 298.5675 302.445 1000 50 0.93094534 +65 310.2 314.0775 1000 50 0.96454287 +66 321.8325 325.71 1000 50 0.96989733 +67 325.71 329.5875 1000 50 0.5671844 +68 345.0975 348.975 1000 50 0.808792 +69 368.3625 372.24 1000 50 0.8994642 +70 383.8725 387.75 1000 50 0.6854565 +71 399.3825 403.26 1000 50 0.518532 +72 422.6475 426.525 1000 50 0.58066416 +73 426.525 430.4025 1000 50 0.6594282 +74 434.28 438.15749999999997 1000 50 0.5945405 +75 438.1575 442.035 1000 50 0.98956853 +76 445.9125 449.79 1000 50 0.99317145 +77 461.4225 465.3 1000 50 0.64468044 +78 469.1775 473.055 1000 50 0.6305374 +79 492.4425 496.32 1000 50 0.6572524 +80 500.1975 504.075 1000 50 0.99992824 +81 504.075 507.9525 1000 50 0.9610865 +82 511.83 515.7075 1000 50 0.7273416 +83 519.585 523.4625000000001 1000 50 0.9961981 +84 527.34 531.2175000000001 1000 50 0.9994746 +85 531.2175 535.095 1000 50 0.8684195 +86 538.9725 542.85 1000 50 0.54158634 +87 542.85 546.7275000000001 1000 50 0.93259984 +88 550.605 554.4825000000001 1000 50 0.99972874 +89 581.625 585.5025 1000 50 0.9074208 +90 608.7675 612.6450000000001 1000 50 0.7164908 +91 616.5225 620.4000000000001 1000 50 0.98962677 +92 620.4 624.2775 1000 50 0.8990721 +93 624.2775 628.1550000000001 1000 50 0.999132 +94 628.155 632.0325 1000 50 0.712298 +95 635.91 639.7875 1000 50 0.93327653 +96 647.5425 651.4200000000001 1000 50 0.92800117 +97 651.42 655.2975 1000 50 0.5317102 +98 655.2975 659.1750000000001 1000 50 0.57921284 +99 666.93 670.8075 1000 50 0.9991155 +100 674.685 678.5625 1000 50 0.8208142 +101 678.5625 682.44 1000 50 0.82476145 +102 694.0725 697.95 1000 50 0.5487013 +103 701.8275 705.705 1000 50 0.6126473 +104 713.46 717.3375000000001 1000 50 0.5042522 +105 721.215 725.0925000000001 1000 50 0.9027086 +106 728.97 732.8475000000001 1000 50 0.8716452 +107 744.48 748.3575000000001 1000 50 0.9956052 +108 748.3575 752.235 1000 50 0.99999404 +109 752.235 756.1125000000001 1000 50 0.99975556 +110 756.1125 759.99 1000 50 0.98247576 +111 767.745 771.6225000000001 1000 50 0.7877666 +112 771.6225 775.5 1000 50 0.9775029 +113 775.5 779.3775 1000 50 0.5337093 +114 779.3775 783.2550000000001 1000 50 0.818902 +115 783.255 787.1325 1000 50 0.9996208 +116 787.1325 791.0100000000001 1000 50 0.9999335 +117 791.01 794.8875 1000 50 0.9877143 +118 798.765 802.6425 1000 50 0.9765316 +119 802.6425 806.5200000000001 1000 50 0.9940253 +120 810.3975 814.2750000000001 1000 50 0.5333336 +121 814.275 818.1525 1000 50 0.92927414 +122 818.1525 822.0300000000001 1000 50 0.9966755 +123 822.03 825.9075 1000 50 0.5198068 +124 825.9075 829.7850000000001 1000 50 0.8973067 +125 829.785 833.6625 1000 50 0.9943605 +126 837.54 841.4175 1000 50 0.9975809 +127 841.4175 845.2950000000001 1000 50 0.99048364 +128 853.05 856.9275 1000 50 0.99937373 +129 860.805 864.6825 1000 50 0.63024956 +130 872.4375 876.315 1000 50 0.8768762 +131 880.1925 884.07 1000 50 0.583083 +132 884.07 887.9475000000001 1000 50 0.956798 +133 891.825 895.7025000000001 1000 50 0.71371764 +134 895.7025 899.58 1000 50 0.9724993 +135 903.4575 907.335 1000 50 0.75370574 +136 911.2125 915.09 1000 50 0.99715316 +137 934.4775 938.355 1000 50 0.63571066 +138 938.355 942.2325000000001 1000 50 0.7224973 +139 946.11 949.9875000000001 1000 50 0.6657263 +140 949.9875 953.865 1000 50 0.750045 +141 957.7425 961.62 1000 50 0.99956065 +142 961.62 965.4975000000001 1000 50 0.63733846 +143 969.375 973.2525 1000 50 0.8560021 +144 981.0075 984.8850000000001 1000 50 0.98197937 +145 988.7625 992.6400000000001 1000 50 0.9176458 +146 996.5175 1000.3950000000001 1000 50 0.84017056 +147 1000.395 1004.2725 1000 50 0.9971975 +148 1015.905 1019.7825 1000 50 0.9205508 +149 1019.7825 1023.6600000000001 1000 50 0.8679 +150 1023.66 1027.5375 1000 50 0.915247 +151 1027.5375 1031.415 1000 50 0.5630052 +152 1031.415 1035.2925 1000 50 0.5029826 +153 1043.0475 1046.925 1000 50 0.75764555 +154 1054.68 1058.5575000000001 1000 50 0.5881791 +155 1074.0675 1077.9450000000002 1000 50 0.52883464 +156 1085.7 1089.5775 1000 50 0.6887961 +157 1101.21 1105.0875 1000 50 0.73011595 +158 1112.8425 1116.72 1000 50 0.54446673 +159 1116.72 1120.5975 1000 50 0.5996381 +160 1198.1475 1202.025 1000 50 0.8626948 +161 1217.535 1221.4125000000001 1000 50 0.7143797 +162 1229.1675 1233.045 1000 50 0.98680717 +163 1236.9225 1240.8 1000 50 0.9878007 +164 1240.8 1244.6775 1000 50 0.5911419 +165 1248.555 1252.4325000000001 1000 50 0.9966614 +166 1252.4325 1256.31 1000 50 0.90702283 +167 1256.31 1260.1875 1000 50 0.99989057 +168 1260.1875 1264.065 1000 50 0.9997428 +169 1267.9425 1271.8200000000002 1000 50 0.94699836 +170 1271.82 1275.6975 1000 50 0.9997776 +171 1279.575 1283.4525 1000 50 0.99130017 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_16-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_16-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1395b4171c27f3696b26812d70b5140d117ce407 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_16-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,19 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.76185566 +2 58.1625 62.04 1000 50 0.71821964 +3 112.4475 116.325 1000 50 0.8715023 +4 135.7125 139.59 1000 50 0.57859933 +5 143.4675 147.345 1000 50 0.51083857 +6 147.345 151.2225 1000 50 0.8825964 +7 155.1 158.9775 1000 50 0.76752925 +8 189.9975 193.875 1000 50 0.91745883 +9 193.875 197.7525 1000 50 0.8551538 +10 221.0175 224.895 1000 50 0.89735466 +11 228.7725 232.65 1000 50 0.92460394 +12 248.16 252.0375 1000 50 0.6753418 +13 252.0375 255.915 1000 50 0.99668926 +14 263.67 267.5475 1000 50 0.92956 +15 267.5475 271.425 1000 50 0.9726169 +16 275.3025 279.18 1000 50 0.9868444 +17 279.18 283.0575 1000 50 0.81473756 +18 290.8125 294.69 1000 50 0.96638095 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_16-08-52_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_16-08-52_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..89bcc9b0c404a3be70c78af56854af9b5ee86d12 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_16-08-52_annot_2022-11-30_01.txt @@ -0,0 +1,114 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.81096923 +2 131.835 135.7125 1000 50 0.77697664 +3 186.12 189.9975 1000 50 0.76121 +4 197.7525 201.63 1000 50 0.99978906 +5 205.5075 209.385 1000 50 0.7706643 +6 209.385 213.2625 1000 50 0.9993944 +7 213.2625 217.14 1000 50 0.65235865 +8 217.14 221.01749999999998 1000 50 0.9281812 +9 221.0175 224.895 1000 50 0.9998945 +10 224.895 228.7725 1000 50 0.9999871 +11 228.7725 232.65 1000 50 0.999933 +12 232.65 236.5275 1000 50 0.99865097 +13 236.5275 240.405 1000 50 0.9999765 +14 240.405 244.2825 1000 50 0.9555431 +15 244.2825 248.16 1000 50 0.9992574 +16 248.16 252.0375 1000 50 0.9994361 +17 252.0375 255.915 1000 50 0.97603875 +18 255.915 259.7925 1000 50 0.9999409 +19 259.7925 263.67 1000 50 0.9991443 +20 263.67 267.5475 1000 50 0.57366604 +21 267.5475 271.425 1000 50 0.9197461 +22 271.425 275.3025 1000 50 0.805899 +23 279.18 283.0575 1000 50 0.9874198 +24 283.0575 286.935 1000 50 0.784768 +25 290.8125 294.69 1000 50 0.99937785 +26 294.69 298.5675 1000 50 0.8300539 +27 302.445 306.3225 1000 50 0.6208121 +28 306.3225 310.2 1000 50 0.99998987 +29 310.2 314.0775 1000 50 0.99994826 +30 314.0775 317.955 1000 50 0.66521585 +31 337.3425 341.21999999999997 1000 50 0.9991842 +32 348.975 352.8525 1000 50 0.9829064 +33 356.73 360.6075 1000 50 0.6262417 +34 364.485 368.3625 1000 50 0.97870916 +35 376.1175 379.995 1000 50 0.87533194 +36 387.75 391.6275 1000 50 0.93864 +37 391.6275 395.505 1000 50 0.5472774 +38 399.3825 403.26 1000 50 0.93950206 +39 407.1375 411.015 1000 50 0.51960224 +40 411.015 414.8925 1000 50 0.61147606 +41 414.8925 418.77 1000 50 0.99863535 +42 418.77 422.6475 1000 50 0.99551517 +43 430.4025 434.28 1000 50 0.99883157 +44 484.6875 488.565 1000 50 0.9992409 +45 488.565 492.4425 1000 50 0.61084753 +46 492.4425 496.32 1000 50 0.86511004 +47 496.32 500.1975 1000 50 0.9986823 +48 500.1975 504.075 1000 50 0.678615 +49 504.075 507.9525 1000 50 0.9070336 +50 507.9525 511.83 1000 50 0.99916685 +51 511.83 515.7075 1000 50 0.6994384 +52 515.7075 519.585 1000 50 0.91943717 +53 527.34 531.2175000000001 1000 50 0.9621656 +54 531.2175 535.095 1000 50 0.6661416 +55 535.095 538.9725000000001 1000 50 0.9981589 +56 538.9725 542.85 1000 50 0.9557198 +57 546.7275 550.605 1000 50 0.99992454 +58 624.2775 628.1550000000001 1000 50 0.5224725 +59 647.5425 651.4200000000001 1000 50 0.7804149 +60 655.2975 659.1750000000001 1000 50 0.8667024 +61 659.175 663.0525 1000 50 0.9942726 +62 663.0525 666.9300000000001 1000 50 0.99470747 +63 666.93 670.8075 1000 50 0.9987685 +64 670.8075 674.6850000000001 1000 50 0.9600198 +65 674.685 678.5625 1000 50 0.9877824 +66 678.5625 682.44 1000 50 0.999845 +67 694.0725 697.95 1000 50 0.8564398 +68 697.95 701.8275000000001 1000 50 0.5751273 +69 701.8275 705.705 1000 50 0.54479766 +70 705.705 709.5825000000001 1000 50 0.9633147 +71 713.46 717.3375000000001 1000 50 0.9997389 +72 717.3375 721.215 1000 50 0.99641573 +73 721.215 725.0925000000001 1000 50 0.9558445 +74 725.0925 728.97 1000 50 0.50157493 +75 728.97 732.8475000000001 1000 50 0.66678554 +76 732.8475 736.725 1000 50 0.9936435 +77 736.725 740.6025000000001 1000 50 0.5495477 +78 740.6025 744.48 1000 50 0.9986928 +79 748.3575 752.235 1000 50 0.9981609 +80 752.235 756.1125000000001 1000 50 0.99936813 +81 759.99 763.8675000000001 1000 50 0.99655944 +82 763.8675 767.745 1000 50 0.99283373 +83 767.745 771.6225000000001 1000 50 0.55183476 +84 771.6225 775.5 1000 50 0.95081186 +85 775.5 779.3775 1000 50 0.9741086 +86 822.03 825.9075 1000 50 0.9042277 +87 825.9075 829.7850000000001 1000 50 0.6388068 +88 833.6625 837.5400000000001 1000 50 0.7924205 +89 841.4175 845.2950000000001 1000 50 0.8325665 +90 853.05 856.9275 1000 50 0.91476107 +91 860.805 864.6825 1000 50 0.9785411 +92 868.56 872.4375 1000 50 0.9987203 +93 872.4375 876.315 1000 50 0.7877104 +94 876.315 880.1925000000001 1000 50 0.9517954 +95 880.1925 884.07 1000 50 0.91099375 +96 884.07 887.9475000000001 1000 50 0.99100894 +97 887.9475 891.825 1000 50 0.9982834 +98 891.825 895.7025000000001 1000 50 0.9738057 +99 895.7025 899.58 1000 50 0.9935116 +100 899.58 903.4575000000001 1000 50 0.9999684 +101 903.4575 907.335 1000 50 0.70043325 +102 911.2125 915.09 1000 50 0.7005311 +103 915.09 918.9675000000001 1000 50 0.8576331 +104 918.9675 922.845 1000 50 0.5827897 +105 922.845 926.7225000000001 1000 50 0.86011493 +106 926.7225 930.6 1000 50 0.9832825 +107 934.4775 938.355 1000 50 0.9482119 +108 938.355 942.2325000000001 1000 50 0.7148014 +109 946.11 949.9875000000001 1000 50 0.99997234 +110 949.9875 953.865 1000 50 0.9885699 +111 957.7425 961.62 1000 50 0.9999994 +112 961.62 965.4975000000001 1000 50 0.9992569 +113 969.375 973.2525 1000 50 0.99853694 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_17-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_17-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a34c1b69c3783980f3a023465904b003d33fccf5 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_17-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,145 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.8913012 +2 7.755 11.6325 1000 50 0.99101907 +3 11.6325 15.51 1000 50 0.6168774 +4 15.51 19.3875 1000 50 0.6828942 +5 19.3875 23.265 1000 50 0.9555913 +6 23.265 27.142500000000002 1000 50 0.50075996 +7 27.1425 31.02 1000 50 0.7050479 +8 34.8975 38.775 1000 50 0.9879012 +9 38.775 42.652499999999996 1000 50 0.9070047 +10 42.6525 46.53 1000 50 0.85466397 +11 46.53 50.4075 1000 50 0.6942638 +12 50.4075 54.285 1000 50 0.99894184 +13 54.285 58.162499999999994 1000 50 0.9721081 +14 58.1625 62.04 1000 50 0.99633443 +15 62.04 65.9175 1000 50 0.95473576 +16 65.9175 69.795 1000 50 0.88904095 +17 69.795 73.6725 1000 50 0.9993444 +18 73.6725 77.55 1000 50 0.50776654 +19 81.4275 85.30499999999999 1000 50 0.85791826 +20 85.305 89.1825 1000 50 0.56409854 +21 89.1825 93.06 1000 50 0.9700669 +22 93.06 96.9375 1000 50 0.9995315 +23 100.815 104.6925 1000 50 0.99608743 +24 104.6925 108.57 1000 50 0.9139487 +25 112.4475 116.325 1000 50 0.9519435 +26 116.325 120.2025 1000 50 0.5739594 +27 120.2025 124.08 1000 50 0.99791414 +28 124.08 127.9575 1000 50 0.9130057 +29 131.835 135.7125 1000 50 0.9995012 +30 135.7125 139.59 1000 50 0.8085436 +31 139.59 143.4675 1000 50 0.9851141 +32 143.4675 147.345 1000 50 0.99775356 +33 147.345 151.2225 1000 50 0.9814943 +34 151.2225 155.1 1000 50 0.9996563 +35 155.1 158.9775 1000 50 0.99223924 +36 158.9775 162.855 1000 50 0.9993142 +37 162.855 166.7325 1000 50 0.7317637 +38 166.7325 170.60999999999999 1000 50 0.99999404 +39 170.61 174.4875 1000 50 0.9988537 +40 174.4875 178.365 1000 50 0.99495655 +41 178.365 182.2425 1000 50 0.95309526 +42 186.12 189.9975 1000 50 0.8241916 +43 189.9975 193.875 1000 50 0.98193836 +44 205.5075 209.385 1000 50 0.76515955 +45 209.385 213.2625 1000 50 0.9882013 +46 213.2625 217.14 1000 50 0.9702159 +47 217.14 221.01749999999998 1000 50 0.9998362 +48 221.0175 224.895 1000 50 0.9999988 +49 224.895 228.7725 1000 50 0.9999958 +50 228.7725 232.65 1000 50 1.0 +51 232.65 236.5275 1000 50 0.9588824 +52 236.5275 240.405 1000 50 0.998885 +53 240.405 244.2825 1000 50 0.9999981 +54 244.2825 248.16 1000 50 0.9817883 +55 248.16 252.0375 1000 50 1.0 +56 252.0375 255.915 1000 50 0.99997234 +57 255.915 259.7925 1000 50 0.99922585 +58 259.7925 263.67 1000 50 0.99999976 +59 263.67 267.5475 1000 50 0.99999475 +60 267.5475 271.425 1000 50 0.9984156 +61 271.425 275.3025 1000 50 0.9999933 +62 275.3025 279.18 1000 50 0.5669271 +63 279.18 283.0575 1000 50 0.99899584 +64 283.0575 286.935 1000 50 0.99999285 +65 286.935 290.8125 1000 50 0.98687404 +66 290.8125 294.69 1000 50 0.9999958 +67 294.69 298.5675 1000 50 0.9999999 +68 298.5675 302.445 1000 50 0.9999994 +69 302.445 306.3225 1000 50 0.9999577 +70 306.3225 310.2 1000 50 0.887184 +71 310.2 314.0775 1000 50 0.9999958 +72 314.0775 317.955 1000 50 0.99999845 +73 317.955 321.8325 1000 50 0.99964035 +74 321.8325 325.71 1000 50 0.99997914 +75 325.71 329.5875 1000 50 0.9998067 +76 329.5875 333.465 1000 50 0.9978235 +77 333.465 337.3425 1000 50 0.9998872 +78 337.3425 341.21999999999997 1000 50 0.96330464 +79 341.22 345.0975 1000 50 0.9995788 +80 345.0975 348.975 1000 50 0.99995434 +81 348.975 352.8525 1000 50 0.99998105 +82 352.8525 356.73 1000 50 0.9999876 +83 356.73 360.6075 1000 50 0.99993813 +84 360.6075 364.485 1000 50 0.99998736 +85 364.485 368.3625 1000 50 0.86563134 +86 368.3625 372.24 1000 50 0.9998048 +87 372.24 376.1175 1000 50 0.99912804 +88 376.1175 379.995 1000 50 0.9994679 +89 379.995 383.8725 1000 50 1.0 +90 383.8725 387.75 1000 50 0.99996734 +91 387.75 391.6275 1000 50 0.99999845 +92 391.6275 395.505 1000 50 0.9932929 +93 395.505 399.3825 1000 50 0.999752 +94 399.3825 403.26 1000 50 0.9999937 +95 403.26 407.1375 1000 50 0.9999999 +96 407.1375 411.015 1000 50 0.99828315 +97 411.015 414.8925 1000 50 0.9999702 +98 414.8925 418.77 1000 50 0.99999976 +99 418.77 422.6475 1000 50 0.52164435 +100 422.6475 426.525 1000 50 0.9999999 +101 426.525 430.4025 1000 50 0.99999833 +102 430.4025 434.28 1000 50 0.9982582 +103 434.28 438.15749999999997 1000 50 0.9983728 +104 438.1575 442.035 1000 50 0.9998543 +105 442.035 445.9125 1000 50 0.9998412 +106 449.79 453.6675 1000 50 0.9999273 +107 453.6675 457.545 1000 50 0.9434067 +108 457.545 461.4225 1000 50 0.9286937 +109 461.4225 465.3 1000 50 0.99779284 +110 465.3 469.1775 1000 50 0.9989737 +111 469.1775 473.055 1000 50 0.97765994 +112 473.055 476.9325 1000 50 0.7569966 +113 476.9325 480.81 1000 50 0.8868022 +114 480.81 484.6875 1000 50 0.9998247 +115 484.6875 488.565 1000 50 0.99964356 +116 488.565 492.4425 1000 50 0.98172337 +117 492.4425 496.32 1000 50 0.9998691 +118 496.32 500.1975 1000 50 0.9462348 +119 500.1975 504.075 1000 50 0.98809016 +120 504.075 507.9525 1000 50 0.9739777 +121 507.9525 511.83 1000 50 0.99556005 +122 515.7075 519.585 1000 50 0.8900565 +123 519.585 523.4625000000001 1000 50 0.98575926 +124 527.34 531.2175000000001 1000 50 0.9092303 +125 531.2175 535.095 1000 50 0.8597928 +126 535.095 538.9725000000001 1000 50 0.9910114 +127 538.9725 542.85 1000 50 0.9942053 +128 542.85 546.7275000000001 1000 50 0.9902559 +129 546.7275 550.605 1000 50 0.9999505 +130 550.605 554.4825000000001 1000 50 0.98374116 +131 554.4825 558.36 1000 50 0.99996495 +132 558.36 562.2375000000001 1000 50 0.95516187 +133 562.2375 566.115 1000 50 0.9999845 +134 566.115 569.9925000000001 1000 50 0.9501012 +135 569.9925 573.87 1000 50 0.9994797 +136 577.7475 581.625 1000 50 0.99927324 +137 581.625 585.5025 1000 50 0.9614627 +138 589.38 593.2575 1000 50 0.99993 +139 593.2575 597.1350000000001 1000 50 0.6681691 +140 597.135 601.0125 1000 50 0.9986374 +141 601.0125 604.8900000000001 1000 50 0.9980387 +142 604.89 608.7675 1000 50 0.9994893 +143 608.7675 612.6450000000001 1000 50 0.9632492 +144 612.645 616.5225 1000 50 0.9998567 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_17-13-56_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_17-13-56_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d1dbf7f804c897769d0d180402ac77378c08dbb4 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_17-13-56_annot_2022-11-30_01.txt @@ -0,0 +1,160 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99596256 +2 3.8775 7.755 1000 50 0.9999999 +3 7.755 11.6325 1000 50 0.7246105 +4 11.6325 15.51 1000 50 0.99602866 +5 15.51 19.3875 1000 50 0.99999857 +6 19.3875 23.265 1000 50 0.99993086 +7 23.265 27.142500000000002 1000 50 0.99933535 +8 27.1425 31.02 1000 50 0.86981976 +9 34.8975 38.775 1000 50 0.9994543 +10 38.775 42.652499999999996 1000 50 0.9998598 +11 42.6525 46.53 1000 50 0.629126 +12 46.53 50.4075 1000 50 0.9223931 +13 50.4075 54.285 1000 50 0.9666793 +14 54.285 58.162499999999994 1000 50 0.9999924 +15 58.1625 62.04 1000 50 0.9990558 +16 62.04 65.9175 1000 50 0.9990226 +17 65.9175 69.795 1000 50 0.99999964 +18 69.795 73.6725 1000 50 0.99833137 +19 73.6725 77.55 1000 50 0.9999987 +20 77.55 81.4275 1000 50 0.9999949 +21 81.4275 85.30499999999999 1000 50 0.9966106 +22 85.305 89.1825 1000 50 0.9999361 +23 89.1825 93.06 1000 50 0.9999895 +24 93.06 96.9375 1000 50 0.99983144 +25 96.9375 100.815 1000 50 0.9999988 +26 100.815 104.6925 1000 50 0.9999901 +27 104.6925 108.57 1000 50 0.9999424 +28 108.57 112.44749999999999 1000 50 0.9993962 +29 112.4475 116.325 1000 50 1.0 +30 116.325 120.2025 1000 50 0.9999639 +31 120.2025 124.08 1000 50 0.98771024 +32 124.08 127.9575 1000 50 0.9984106 +33 127.9575 131.835 1000 50 0.9999794 +34 131.835 135.7125 1000 50 0.637657 +35 135.7125 139.59 1000 50 0.999974 +36 139.59 143.4675 1000 50 1.0 +37 143.4675 147.345 1000 50 0.99020827 +38 147.345 151.2225 1000 50 0.8637378 +39 151.2225 155.1 1000 50 0.9999981 +40 155.1 158.9775 1000 50 0.99999964 +41 158.9775 162.855 1000 50 0.9995938 +42 162.855 166.7325 1000 50 0.9999014 +43 170.61 174.4875 1000 50 0.812577 +44 174.4875 178.365 1000 50 0.9967134 +45 178.365 182.2425 1000 50 0.9966641 +46 182.2425 186.12 1000 50 0.99134666 +47 186.12 189.9975 1000 50 0.998953 +48 189.9975 193.875 1000 50 0.999514 +49 193.875 197.7525 1000 50 0.99994934 +50 197.7525 201.63 1000 50 0.9999858 +51 201.63 205.5075 1000 50 0.9999995 +52 205.5075 209.385 1000 50 0.99995685 +53 209.385 213.2625 1000 50 0.99994695 +54 213.2625 217.14 1000 50 0.99883634 +55 217.14 221.01749999999998 1000 50 0.9998685 +56 221.0175 224.895 1000 50 0.9989825 +57 224.895 228.7725 1000 50 0.9999944 +58 228.7725 232.65 1000 50 0.9999428 +59 232.65 236.5275 1000 50 0.99999475 +60 236.5275 240.405 1000 50 0.9999989 +61 240.405 244.2825 1000 50 0.9999219 +62 244.2825 248.16 1000 50 0.9999684 +63 248.16 252.0375 1000 50 0.99926895 +64 252.0375 255.915 1000 50 0.99815685 +65 255.915 259.7925 1000 50 1.0 +66 259.7925 263.67 1000 50 0.9961738 +67 263.67 267.5475 1000 50 0.9999937 +68 267.5475 271.425 1000 50 1.0 +69 271.425 275.3025 1000 50 0.99954563 +70 275.3025 279.18 1000 50 0.9999845 +71 279.18 283.0575 1000 50 0.99960285 +72 283.0575 286.935 1000 50 0.99971515 +73 286.935 290.8125 1000 50 0.9999944 +74 290.8125 294.69 1000 50 0.9999999 +75 294.69 298.5675 1000 50 0.9981121 +76 298.5675 302.445 1000 50 0.9999968 +77 302.445 306.3225 1000 50 0.99999976 +78 306.3225 310.2 1000 50 0.99950874 +79 310.2 314.0775 1000 50 1.0 +80 314.0775 317.955 1000 50 0.99952614 +81 317.955 321.8325 1000 50 0.9985335 +82 321.8325 325.71 1000 50 0.9999999 +83 325.71 329.5875 1000 50 0.9999491 +84 329.5875 333.465 1000 50 0.999166 +85 333.465 337.3425 1000 50 0.9993637 +86 337.3425 341.21999999999997 1000 50 0.99996316 +87 341.22 345.0975 1000 50 0.98002267 +88 345.0975 348.975 1000 50 0.98587865 +89 348.975 352.8525 1000 50 0.9985331 +90 356.73 360.6075 1000 50 0.9804811 +91 360.6075 364.485 1000 50 0.9973736 +92 364.485 368.3625 1000 50 0.73601466 +93 368.3625 372.24 1000 50 0.99995387 +94 376.1175 379.995 1000 50 0.99713093 +95 379.995 383.8725 1000 50 0.99314076 +96 383.8725 387.75 1000 50 0.98886555 +97 387.75 391.6275 1000 50 0.6117288 +98 391.6275 395.505 1000 50 0.99931824 +99 395.505 399.3825 1000 50 0.8867229 +100 399.3825 403.26 1000 50 0.9581641 +101 403.26 407.1375 1000 50 0.9045395 +102 407.1375 411.015 1000 50 0.975604 +103 418.77 422.6475 1000 50 0.9905405 +104 422.6475 426.525 1000 50 0.51831025 +105 426.525 430.4025 1000 50 0.8093626 +106 430.4025 434.28 1000 50 0.84431034 +107 438.1575 442.035 1000 50 0.9813006 +108 442.035 445.9125 1000 50 0.9839522 +109 445.9125 449.79 1000 50 0.9775482 +110 449.79 453.6675 1000 50 0.9763199 +111 453.6675 457.545 1000 50 0.9059884 +112 469.1775 473.055 1000 50 0.99849284 +113 476.9325 480.81 1000 50 0.99971575 +114 480.81 484.6875 1000 50 0.9999851 +115 484.6875 488.565 1000 50 0.9938055 +116 488.565 492.4425 1000 50 1.0 +117 492.4425 496.32 1000 50 0.9961604 +118 496.32 500.1975 1000 50 0.9963081 +119 500.1975 504.075 1000 50 0.99632347 +120 504.075 507.9525 1000 50 0.99998224 +121 507.9525 511.83 1000 50 0.9981072 +122 511.83 515.7075 1000 50 0.9912889 +123 515.7075 519.585 1000 50 0.999941 +124 523.4625 527.34 1000 50 0.9868932 +125 527.34 531.2175000000001 1000 50 0.9972791 +126 531.2175 535.095 1000 50 0.99363786 +127 535.095 538.9725000000001 1000 50 0.9998357 +128 538.9725 542.85 1000 50 0.76295906 +129 542.85 546.7275000000001 1000 50 0.95125747 +130 550.605 554.4825000000001 1000 50 0.65147424 +131 554.4825 558.36 1000 50 0.9999707 +132 558.36 562.2375000000001 1000 50 0.8141488 +133 562.2375 566.115 1000 50 0.9998344 +134 566.115 569.9925000000001 1000 50 0.9990508 +135 569.9925 573.87 1000 50 0.98792017 +136 573.87 577.7475000000001 1000 50 0.99998665 +137 577.7475 581.625 1000 50 0.99924433 +138 581.625 585.5025 1000 50 0.9999999 +139 585.5025 589.3800000000001 1000 50 0.6232512 +140 589.38 593.2575 1000 50 0.99986076 +141 593.2575 597.1350000000001 1000 50 0.7742368 +142 597.135 601.0125 1000 50 0.9999373 +143 601.0125 604.8900000000001 1000 50 0.99960464 +144 604.89 608.7675 1000 50 0.9935887 +145 608.7675 612.6450000000001 1000 50 0.99873453 +146 612.645 616.5225 1000 50 0.99998534 +147 616.5225 620.4000000000001 1000 50 0.9870952 +148 620.4 624.2775 1000 50 0.99978405 +149 624.2775 628.1550000000001 1000 50 0.9805519 +150 628.155 632.0325 1000 50 0.983238 +151 632.0325 635.9100000000001 1000 50 0.99988365 +152 635.91 639.7875 1000 50 0.999879 +153 639.7875 643.6650000000001 1000 50 0.9990109 +154 647.5425 651.4200000000001 1000 50 0.99916387 +155 651.42 655.2975 1000 50 0.99995255 +156 655.2975 659.1750000000001 1000 50 0.67615783 +157 659.175 663.0525 1000 50 0.99992335 +158 663.0525 666.9300000000001 1000 50 0.9980128 +159 666.93 670.8075 1000 50 0.55666983 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_18-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_18-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..70aa23f346b6cb825c754121f0ae72524478652d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_18-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,198 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9966396 +2 7.755 11.6325 1000 50 0.9975063 +3 15.51 19.3875 1000 50 0.99992096 +4 19.3875 23.265 1000 50 0.9769737 +5 27.1425 31.02 1000 50 0.9989411 +6 31.02 34.8975 1000 50 0.6056422 +7 34.8975 38.775 1000 50 0.81221753 +8 38.775 42.652499999999996 1000 50 0.7498109 +9 46.53 50.4075 1000 50 0.6310134 +10 50.4075 54.285 1000 50 0.9975314 +11 54.285 58.162499999999994 1000 50 0.8138395 +12 58.1625 62.04 1000 50 0.958681 +13 62.04 65.9175 1000 50 0.9832118 +14 65.9175 69.795 1000 50 0.95157206 +15 69.795 73.6725 1000 50 0.97991174 +16 73.6725 77.55 1000 50 0.9930936 +17 81.4275 85.30499999999999 1000 50 0.8794399 +18 89.1825 93.06 1000 50 0.9999045 +19 93.06 96.9375 1000 50 0.9275377 +20 96.9375 100.815 1000 50 0.93077296 +21 112.4475 116.325 1000 50 0.98979414 +22 116.325 120.2025 1000 50 0.9810908 +23 120.2025 124.08 1000 50 0.9829693 +24 124.08 127.9575 1000 50 0.83477384 +25 127.9575 131.835 1000 50 0.99828476 +26 131.835 135.7125 1000 50 0.92547685 +27 135.7125 139.59 1000 50 0.9934063 +28 139.59 143.4675 1000 50 0.9957645 +29 143.4675 147.345 1000 50 0.99570686 +30 147.345 151.2225 1000 50 0.99982125 +31 151.2225 155.1 1000 50 0.9602311 +32 158.9775 162.855 1000 50 0.9999993 +33 162.855 166.7325 1000 50 0.9964324 +34 166.7325 170.60999999999999 1000 50 0.9665799 +35 170.61 174.4875 1000 50 0.9999716 +36 174.4875 178.365 1000 50 0.9999349 +37 178.365 182.2425 1000 50 0.98994327 +38 182.2425 186.12 1000 50 0.99908245 +39 186.12 189.9975 1000 50 0.9809545 +40 189.9975 193.875 1000 50 0.99483156 +41 193.875 197.7525 1000 50 0.63481367 +42 197.7525 201.63 1000 50 0.73468804 +43 205.5075 209.385 1000 50 0.9986947 +44 209.385 213.2625 1000 50 0.9399202 +45 213.2625 217.14 1000 50 0.9999726 +46 217.14 221.01749999999998 1000 50 0.9394849 +47 221.0175 224.895 1000 50 0.99365944 +48 224.895 228.7725 1000 50 0.9999236 +49 228.7725 232.65 1000 50 0.9998909 +50 232.65 236.5275 1000 50 0.99928576 +51 236.5275 240.405 1000 50 0.99997306 +52 240.405 244.2825 1000 50 0.9998393 +53 244.2825 248.16 1000 50 0.97997755 +54 248.16 252.0375 1000 50 0.99895763 +55 252.0375 255.915 1000 50 0.9895196 +56 255.915 259.7925 1000 50 0.9618804 +57 259.7925 263.67 1000 50 0.99994695 +58 263.67 267.5475 1000 50 0.9993505 +59 267.5475 271.425 1000 50 0.9998764 +60 271.425 275.3025 1000 50 0.9978713 +61 279.18 283.0575 1000 50 0.9999994 +62 283.0575 286.935 1000 50 0.9999974 +63 286.935 290.8125 1000 50 0.9516312 +64 290.8125 294.69 1000 50 0.99999714 +65 294.69 298.5675 1000 50 0.99897087 +66 302.445 306.3225 1000 50 0.99998045 +67 306.3225 310.2 1000 50 0.9992084 +68 310.2 314.0775 1000 50 0.8890486 +69 314.0775 317.955 1000 50 0.99988496 +70 317.955 321.8325 1000 50 0.99951375 +71 325.71 329.5875 1000 50 0.9997446 +72 329.5875 333.465 1000 50 0.94838655 +73 333.465 337.3425 1000 50 0.93368644 +74 337.3425 341.21999999999997 1000 50 0.999574 +75 341.22 345.0975 1000 50 0.9972167 +76 345.0975 348.975 1000 50 0.8280569 +77 348.975 352.8525 1000 50 0.9999919 +78 352.8525 356.73 1000 50 0.9997967 +79 356.73 360.6075 1000 50 0.99484116 +80 360.6075 364.485 1000 50 0.9999999 +81 364.485 368.3625 1000 50 0.87669766 +82 368.3625 372.24 1000 50 0.99999547 +83 372.24 376.1175 1000 50 1.0 +84 376.1175 379.995 1000 50 0.99289364 +85 379.995 383.8725 1000 50 0.99990165 +86 383.8725 387.75 1000 50 0.9953674 +87 387.75 391.6275 1000 50 0.9988248 +88 391.6275 395.505 1000 50 0.99990606 +89 395.505 399.3825 1000 50 0.9999999 +90 399.3825 403.26 1000 50 0.78149474 +91 403.26 407.1375 1000 50 0.9999355 +92 407.1375 411.015 1000 50 0.99999416 +93 411.015 414.8925 1000 50 0.9993962 +94 414.8925 418.77 1000 50 0.99999833 +95 418.77 422.6475 1000 50 0.9999356 +96 422.6475 426.525 1000 50 0.9999902 +97 426.525 430.4025 1000 50 0.99999404 +98 430.4025 434.28 1000 50 1.0 +99 434.28 438.15749999999997 1000 50 0.999962 +100 438.1575 442.035 1000 50 0.999265 +101 442.035 445.9125 1000 50 0.9999839 +102 445.9125 449.79 1000 50 0.88417417 +103 449.79 453.6675 1000 50 0.99995005 +104 453.6675 457.545 1000 50 0.9999263 +105 457.545 461.4225 1000 50 0.99999654 +106 461.4225 465.3 1000 50 0.9989661 +107 465.3 469.1775 1000 50 0.99731016 +108 469.1775 473.055 1000 50 0.99999285 +109 473.055 476.9325 1000 50 0.999997 +110 476.9325 480.81 1000 50 0.9834947 +111 496.32 500.1975 1000 50 0.9874358 +112 511.83 515.7075 1000 50 0.9103811 +113 519.585 523.4625000000001 1000 50 0.9999583 +114 523.4625 527.34 1000 50 0.98931956 +115 527.34 531.2175000000001 1000 50 0.9996964 +116 531.2175 535.095 1000 50 0.9999988 +117 535.095 538.9725000000001 1000 50 0.9999981 +118 538.9725 542.85 1000 50 0.99993825 +119 542.85 546.7275000000001 1000 50 0.99449134 +120 546.7275 550.605 1000 50 0.9999982 +121 550.605 554.4825000000001 1000 50 0.86412364 +122 554.4825 558.36 1000 50 0.9999999 +123 558.36 562.2375000000001 1000 50 0.9999995 +124 562.2375 566.115 1000 50 0.9993581 +125 566.115 569.9925000000001 1000 50 0.9999956 +126 569.9925 573.87 1000 50 0.9988807 +127 573.87 577.7475000000001 1000 50 0.96887 +128 577.7475 581.625 1000 50 0.8840951 +129 581.625 585.5025 1000 50 0.9992095 +130 585.5025 589.3800000000001 1000 50 0.99866235 +131 589.38 593.2575 1000 50 0.98681426 +132 597.135 601.0125 1000 50 0.98466474 +133 601.0125 604.8900000000001 1000 50 0.99988544 +134 604.89 608.7675 1000 50 0.9957033 +135 608.7675 612.6450000000001 1000 50 0.9965438 +136 612.645 616.5225 1000 50 0.7007485 +137 620.4 624.2775 1000 50 0.9998518 +138 628.155 632.0325 1000 50 0.9241311 +139 632.0325 635.9100000000001 1000 50 0.99964666 +140 635.91 639.7875 1000 50 0.98385197 +141 643.665 647.5425 1000 50 0.99845064 +142 647.5425 651.4200000000001 1000 50 0.9927377 +143 655.2975 659.1750000000001 1000 50 0.99941754 +144 659.175 663.0525 1000 50 0.99979204 +145 663.0525 666.9300000000001 1000 50 0.91845113 +146 666.93 670.8075 1000 50 0.99928766 +147 670.8075 674.6850000000001 1000 50 0.9695034 +148 678.5625 682.44 1000 50 0.94529176 +149 682.44 686.3175000000001 1000 50 0.9836258 +150 686.3175 690.195 1000 50 0.79738057 +151 705.705 709.5825000000001 1000 50 0.504377 +152 709.5825 713.46 1000 50 0.8147427 +153 713.46 717.3375000000001 1000 50 0.9997067 +154 717.3375 721.215 1000 50 0.99999034 +155 721.215 725.0925000000001 1000 50 0.99989474 +156 725.0925 728.97 1000 50 0.9840247 +157 728.97 732.8475000000001 1000 50 0.9998994 +158 732.8475 736.725 1000 50 0.99965036 +159 736.725 740.6025000000001 1000 50 0.99730337 +160 740.6025 744.48 1000 50 0.99999774 +161 744.48 748.3575000000001 1000 50 0.99980694 +162 748.3575 752.235 1000 50 0.8204918 +163 752.235 756.1125000000001 1000 50 0.9999999 +164 756.1125 759.99 1000 50 0.9999969 +165 759.99 763.8675000000001 1000 50 0.99959713 +166 763.8675 767.745 1000 50 1.0 +167 767.745 771.6225000000001 1000 50 0.99824274 +168 771.6225 775.5 1000 50 0.99963415 +169 775.5 779.3775 1000 50 0.99999964 +170 779.3775 783.2550000000001 1000 50 0.99937254 +171 783.255 787.1325 1000 50 0.99999833 +172 787.1325 791.0100000000001 1000 50 0.9995437 +173 791.01 794.8875 1000 50 1.0 +174 794.8875 798.7650000000001 1000 50 0.9999969 +175 798.765 802.6425 1000 50 0.99817276 +176 802.6425 806.5200000000001 1000 50 0.9998698 +177 806.52 810.3975 1000 50 0.9999994 +178 810.3975 814.2750000000001 1000 50 0.9848595 +179 818.1525 822.0300000000001 1000 50 0.9998516 +180 822.03 825.9075 1000 50 1.0 +181 825.9075 829.7850000000001 1000 50 0.997846 +182 829.785 833.6625 1000 50 0.9290866 +183 833.6625 837.5400000000001 1000 50 0.99995375 +184 837.54 841.4175 1000 50 0.9985904 +185 841.4175 845.2950000000001 1000 50 0.9939381 +186 845.295 849.1725 1000 50 0.99207336 +187 849.1725 853.0500000000001 1000 50 0.9984767 +188 853.05 856.9275 1000 50 0.9990293 +189 856.9275 860.8050000000001 1000 50 0.9892314 +190 860.805 864.6825 1000 50 0.9959786 +191 864.6825 868.5600000000001 1000 50 0.9999957 +192 868.56 872.4375 1000 50 0.7816068 +193 872.4375 876.315 1000 50 0.9964562 +194 876.315 880.1925000000001 1000 50 0.9999925 +195 880.1925 884.07 1000 50 0.99775463 +196 884.07 887.9475000000001 1000 50 0.9036091 +197 887.9475 891.825 1000 50 0.9997002 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_18-18-29_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_18-18-29_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d7f679e7d536382c0e3e8d8864ffc16ba319e025 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_18-18-29_annot_2022-11-30_01.txt @@ -0,0 +1,91 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999635 +2 3.8775 7.755 1000 50 0.99922657 +3 7.755 11.6325 1000 50 0.99998844 +4 11.6325 15.51 1000 50 0.9999944 +5 15.51 19.3875 1000 50 0.9999267 +6 19.3875 23.265 1000 50 0.9999435 +7 23.265 27.142500000000002 1000 50 0.99983406 +8 27.1425 31.02 1000 50 0.9998487 +9 31.02 34.8975 1000 50 0.9926369 +10 34.8975 38.775 1000 50 0.9870111 +11 38.775 42.652499999999996 1000 50 0.99079645 +12 46.53 50.4075 1000 50 0.99986494 +13 50.4075 54.285 1000 50 0.90571547 +14 54.285 58.162499999999994 1000 50 0.62828815 +15 58.1625 62.04 1000 50 0.9999988 +16 62.04 65.9175 1000 50 0.9947109 +17 65.9175 69.795 1000 50 0.80245674 +18 69.795 73.6725 1000 50 0.9950487 +19 73.6725 77.55 1000 50 0.96249944 +20 81.4275 85.30499999999999 1000 50 0.8650904 +21 85.305 89.1825 1000 50 0.56435037 +22 89.1825 93.06 1000 50 0.9947525 +23 100.815 104.6925 1000 50 0.9990096 +24 104.6925 108.57 1000 50 0.9394179 +25 112.4475 116.325 1000 50 0.98234653 +26 116.325 120.2025 1000 50 0.87829226 +27 124.08 127.9575 1000 50 0.99980015 +28 127.9575 131.835 1000 50 0.7757344 +29 131.835 135.7125 1000 50 0.9999993 +30 135.7125 139.59 1000 50 0.74301434 +31 139.59 143.4675 1000 50 0.9077037 +32 143.4675 147.345 1000 50 0.9981306 +33 147.345 151.2225 1000 50 0.64021343 +34 151.2225 155.1 1000 50 0.9999988 +35 155.1 158.9775 1000 50 0.8503666 +36 158.9775 162.855 1000 50 0.99972004 +37 162.855 166.7325 1000 50 0.9629558 +38 166.7325 170.60999999999999 1000 50 0.98024565 +39 174.4875 178.365 1000 50 0.98366576 +40 178.365 182.2425 1000 50 0.9995875 +41 186.12 189.9975 1000 50 0.99924445 +42 189.9975 193.875 1000 50 0.9918568 +43 197.7525 201.63 1000 50 0.9674588 +44 201.63 205.5075 1000 50 0.6654293 +45 205.5075 209.385 1000 50 0.7151529 +46 209.385 213.2625 1000 50 0.99979824 +47 213.2625 217.14 1000 50 0.9972819 +48 221.0175 224.895 1000 50 0.99997306 +49 224.895 228.7725 1000 50 0.98671186 +50 228.7725 232.65 1000 50 0.9998246 +51 232.65 236.5275 1000 50 0.9999913 +52 236.5275 240.405 1000 50 0.94820225 +53 244.2825 248.16 1000 50 0.99999726 +54 248.16 252.0375 1000 50 0.999982 +55 252.0375 255.915 1000 50 0.936826 +56 255.915 259.7925 1000 50 0.9999988 +57 259.7925 263.67 1000 50 0.9996352 +58 267.5475 271.425 1000 50 0.99997294 +59 271.425 275.3025 1000 50 0.9999281 +60 275.3025 279.18 1000 50 0.99702793 +61 279.18 283.0575 1000 50 0.9977004 +62 283.0575 286.935 1000 50 0.98743963 +63 286.935 290.8125 1000 50 0.99955124 +64 290.8125 294.69 1000 50 0.9925392 +65 294.69 298.5675 1000 50 0.9975847 +66 298.5675 302.445 1000 50 0.9939353 +67 302.445 306.3225 1000 50 0.9998981 +68 306.3225 310.2 1000 50 0.99870265 +69 310.2 314.0775 1000 50 0.99254405 +70 314.0775 317.955 1000 50 0.9999956 +71 317.955 321.8325 1000 50 0.9999708 +72 321.8325 325.71 1000 50 0.9999739 +73 325.71 329.5875 1000 50 0.99999356 +74 329.5875 333.465 1000 50 0.99936384 +75 333.465 337.3425 1000 50 0.9996741 +76 337.3425 341.21999999999997 1000 50 0.9988632 +77 341.22 345.0975 1000 50 0.9999976 +78 345.0975 348.975 1000 50 0.99999976 +79 348.975 352.8525 1000 50 0.9999993 +80 352.8525 356.73 1000 50 0.99864143 +81 356.73 360.6075 1000 50 0.99999905 +82 360.6075 364.485 1000 50 0.99914026 +83 364.485 368.3625 1000 50 0.99153566 +84 368.3625 372.24 1000 50 0.99999976 +85 372.24 376.1175 1000 50 0.9999975 +86 376.1175 379.995 1000 50 0.9999269 +87 379.995 383.8725 1000 50 0.9999962 +88 383.8725 387.75 1000 50 0.99708694 +89 387.75 391.6275 1000 50 0.9994654 +90 391.6275 395.505 1000 50 1.0 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_19-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_19-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a486fcc3857403581d096186535c7ffdf925647d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_19-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,281 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.998716 +2 3.8775 7.755 1000 50 0.9999889 +3 7.755 11.6325 1000 50 0.9999926 +4 11.6325 15.51 1000 50 0.99421257 +5 15.51 19.3875 1000 50 0.98869276 +6 19.3875 23.265 1000 50 0.9997385 +7 23.265 27.142500000000002 1000 50 0.99953187 +8 27.1425 31.02 1000 50 0.9999709 +9 31.02 34.8975 1000 50 0.9985526 +10 34.8975 38.775 1000 50 0.9507086 +11 38.775 42.652499999999996 1000 50 0.9999019 +12 42.6525 46.53 1000 50 0.9958007 +13 46.53 50.4075 1000 50 0.99720544 +14 50.4075 54.285 1000 50 0.9999975 +15 54.285 58.162499999999994 1000 50 0.94779646 +16 62.04 65.9175 1000 50 0.9962106 +17 65.9175 69.795 1000 50 0.9909903 +18 69.795 73.6725 1000 50 0.9895146 +19 73.6725 77.55 1000 50 0.99985623 +20 81.4275 85.30499999999999 1000 50 0.8370819 +21 85.305 89.1825 1000 50 0.999086 +22 93.06 96.9375 1000 50 0.9960687 +23 96.9375 100.815 1000 50 0.9979455 +24 100.815 104.6925 1000 50 0.9978283 +25 104.6925 108.57 1000 50 0.9960382 +26 108.57 112.44749999999999 1000 50 0.99508935 +27 112.4475 116.325 1000 50 0.9930808 +28 116.325 120.2025 1000 50 0.9995276 +29 120.2025 124.08 1000 50 0.9978956 +30 124.08 127.9575 1000 50 0.9998412 +31 127.9575 131.835 1000 50 0.99999976 +32 131.835 135.7125 1000 50 0.99989295 +33 135.7125 139.59 1000 50 0.9999995 +34 139.59 143.4675 1000 50 1.0 +35 143.4675 147.345 1000 50 0.93660134 +36 147.345 151.2225 1000 50 1.0 +37 151.2225 155.1 1000 50 0.97130585 +38 155.1 158.9775 1000 50 0.9950348 +39 158.9775 162.855 1000 50 0.9970366 +40 162.855 166.7325 1000 50 0.9415348 +41 166.7325 170.60999999999999 1000 50 0.96281475 +42 170.61 174.4875 1000 50 0.98781836 +43 174.4875 178.365 1000 50 0.9958941 +44 178.365 182.2425 1000 50 0.9181759 +45 182.2425 186.12 1000 50 0.99993205 +46 193.875 197.7525 1000 50 0.9999473 +47 197.7525 201.63 1000 50 0.9996413 +48 201.63 205.5075 1000 50 0.5147246 +49 205.5075 209.385 1000 50 0.55975115 +50 209.385 213.2625 1000 50 0.9996972 +51 213.2625 217.14 1000 50 0.86547697 +52 217.14 221.01749999999998 1000 50 0.5089654 +53 221.0175 224.895 1000 50 0.99623543 +54 224.895 228.7725 1000 50 0.93622375 +55 228.7725 232.65 1000 50 0.5347162 +56 232.65 236.5275 1000 50 0.94961816 +57 236.5275 240.405 1000 50 0.9998203 +58 240.405 244.2825 1000 50 0.93479925 +59 244.2825 248.16 1000 50 0.8188307 +60 248.16 252.0375 1000 50 0.9983399 +61 252.0375 255.915 1000 50 0.7497681 +62 255.915 259.7925 1000 50 0.90778303 +63 259.7925 263.67 1000 50 0.9999968 +64 263.67 267.5475 1000 50 0.8744068 +65 267.5475 271.425 1000 50 0.89730006 +66 271.425 275.3025 1000 50 0.9999976 +67 275.3025 279.18 1000 50 0.99942845 +68 279.18 283.0575 1000 50 0.99999964 +69 283.0575 286.935 1000 50 0.99913967 +70 286.935 290.8125 1000 50 0.98675853 +71 290.8125 294.69 1000 50 0.99998355 +72 294.69 298.5675 1000 50 0.99592435 +73 298.5675 302.445 1000 50 0.7367102 +74 302.445 306.3225 1000 50 0.99999917 +75 306.3225 310.2 1000 50 0.99977046 +76 310.2 314.0775 1000 50 0.9998951 +77 314.0775 317.955 1000 50 0.9999945 +78 317.955 321.8325 1000 50 0.5346481 +79 321.8325 325.71 1000 50 0.99999964 +80 325.71 329.5875 1000 50 0.9788986 +81 329.5875 333.465 1000 50 0.99998915 +82 333.465 337.3425 1000 50 0.9997547 +83 337.3425 341.21999999999997 1000 50 0.9783659 +84 341.22 345.0975 1000 50 0.9783869 +85 345.0975 348.975 1000 50 0.99939966 +86 348.975 352.8525 1000 50 0.99998987 +87 352.8525 356.73 1000 50 0.9999999 +88 356.73 360.6075 1000 50 0.9999914 +89 360.6075 364.485 1000 50 0.99998736 +90 364.485 368.3625 1000 50 0.99999976 +91 368.3625 372.24 1000 50 0.9993094 +92 372.24 376.1175 1000 50 0.9999927 +93 376.1175 379.995 1000 50 0.9999974 +94 379.995 383.8725 1000 50 0.99967873 +95 383.8725 387.75 1000 50 0.97559285 +96 387.75 391.6275 1000 50 1.0 +97 391.6275 395.505 1000 50 0.9999939 +98 395.505 399.3825 1000 50 0.99344915 +99 399.3825 403.26 1000 50 0.99970955 +100 403.26 407.1375 1000 50 0.99991524 +101 407.1375 411.015 1000 50 0.999995 +102 411.015 414.8925 1000 50 0.9999993 +103 414.8925 418.77 1000 50 0.99995387 +104 418.77 422.6475 1000 50 0.99998796 +105 422.6475 426.525 1000 50 1.0 +106 426.525 430.4025 1000 50 0.99983394 +107 430.4025 434.28 1000 50 0.9961408 +108 434.28 438.15749999999997 1000 50 1.0 +109 438.1575 442.035 1000 50 0.9999918 +110 442.035 445.9125 1000 50 0.9999037 +111 445.9125 449.79 1000 50 0.99999654 +112 449.79 453.6675 1000 50 0.9999999 +113 453.6675 457.545 1000 50 1.0 +114 457.545 461.4225 1000 50 0.9516722 +115 461.4225 465.3 1000 50 0.9999999 +116 465.3 469.1775 1000 50 0.99999523 +117 469.1775 473.055 1000 50 0.9991441 +118 473.055 476.9325 1000 50 0.999998 +119 476.9325 480.81 1000 50 0.9988908 +120 480.81 484.6875 1000 50 0.9951952 +121 484.6875 488.565 1000 50 0.9906725 +122 488.565 492.4425 1000 50 0.9999043 +123 492.4425 496.32 1000 50 0.9999995 +124 496.32 500.1975 1000 50 0.99968326 +125 500.1975 504.075 1000 50 0.99954623 +126 504.075 507.9525 1000 50 0.9999347 +127 507.9525 511.83 1000 50 0.99996877 +128 511.83 515.7075 1000 50 0.9997873 +129 515.7075 519.585 1000 50 1.0 +130 519.585 523.4625000000001 1000 50 0.99996495 +131 523.4625 527.34 1000 50 0.9995927 +132 527.34 531.2175000000001 1000 50 0.9999622 +133 531.2175 535.095 1000 50 1.0 +134 535.095 538.9725000000001 1000 50 0.9999081 +135 538.9725 542.85 1000 50 1.0 +136 542.85 546.7275000000001 1000 50 0.9959836 +137 546.7275 550.605 1000 50 0.99999917 +138 550.605 554.4825000000001 1000 50 1.0 +139 554.4825 558.36 1000 50 0.9752484 +140 558.36 562.2375000000001 1000 50 0.99999166 +141 562.2375 566.115 1000 50 0.9999207 +142 566.115 569.9925000000001 1000 50 0.9999924 +143 569.9925 573.87 1000 50 0.999316 +144 573.87 577.7475000000001 1000 50 0.99999607 +145 577.7475 581.625 1000 50 0.99998164 +146 581.625 585.5025 1000 50 1.0 +147 585.5025 589.3800000000001 1000 50 0.99872655 +148 589.38 593.2575 1000 50 0.9999999 +149 593.2575 597.1350000000001 1000 50 0.9997521 +150 597.135 601.0125 1000 50 0.99905103 +151 601.0125 604.8900000000001 1000 50 1.0 +152 604.89 608.7675 1000 50 1.0 +153 608.7675 612.6450000000001 1000 50 0.9962303 +154 612.645 616.5225 1000 50 0.9999293 +155 616.5225 620.4000000000001 1000 50 0.99967897 +156 620.4 624.2775 1000 50 0.9832239 +157 624.2775 628.1550000000001 1000 50 0.9280161 +158 628.155 632.0325 1000 50 0.9931778 +159 632.0325 635.9100000000001 1000 50 0.9825348 +160 635.91 639.7875 1000 50 0.9966864 +161 639.7875 643.6650000000001 1000 50 0.9979081 +162 643.665 647.5425 1000 50 0.962058 +163 647.5425 651.4200000000001 1000 50 0.97897506 +164 651.42 655.2975 1000 50 0.7270719 +165 655.2975 659.1750000000001 1000 50 0.97824097 +166 659.175 663.0525 1000 50 0.9602366 +167 666.93 670.8075 1000 50 0.963716 +168 670.8075 674.6850000000001 1000 50 0.9871105 +169 678.5625 682.44 1000 50 0.9979881 +170 682.44 686.3175000000001 1000 50 0.99896073 +171 686.3175 690.195 1000 50 0.9920426 +172 690.195 694.0725000000001 1000 50 0.99999464 +173 694.0725 697.95 1000 50 0.9756139 +174 701.8275 705.705 1000 50 0.99999285 +175 705.705 709.5825000000001 1000 50 0.99217814 +176 709.5825 713.46 1000 50 0.99948645 +177 717.3375 721.215 1000 50 0.89848363 +178 721.215 725.0925000000001 1000 50 0.9991197 +179 732.8475 736.725 1000 50 0.9999275 +180 736.725 740.6025000000001 1000 50 0.9978649 +181 740.6025 744.48 1000 50 0.56446254 +182 744.48 748.3575000000001 1000 50 0.9947143 +183 748.3575 752.235 1000 50 0.988076 +184 756.1125 759.99 1000 50 0.9982115 +185 763.8675 767.745 1000 50 0.9987816 +186 767.745 771.6225000000001 1000 50 0.8549013 +187 775.5 779.3775 1000 50 0.99805474 +188 779.3775 783.2550000000001 1000 50 0.85224867 +189 783.255 787.1325 1000 50 0.9910086 +190 787.1325 791.0100000000001 1000 50 0.9990489 +191 791.01 794.8875 1000 50 0.77347094 +192 794.8875 798.7650000000001 1000 50 0.88561136 +193 798.765 802.6425 1000 50 0.9999833 +194 802.6425 806.5200000000001 1000 50 0.96935475 +195 806.52 810.3975 1000 50 0.50294805 +196 810.3975 814.2750000000001 1000 50 0.99880266 +197 814.275 818.1525 1000 50 0.97492415 +198 818.1525 822.0300000000001 1000 50 0.9978242 +199 822.03 825.9075 1000 50 0.9166491 +200 825.9075 829.7850000000001 1000 50 0.9319176 +201 829.785 833.6625 1000 50 0.94323176 +202 833.6625 837.5400000000001 1000 50 0.860609 +203 837.54 841.4175 1000 50 0.9994112 +204 841.4175 845.2950000000001 1000 50 0.9998766 +205 845.295 849.1725 1000 50 0.99640745 +206 849.1725 853.0500000000001 1000 50 0.8384665 +207 853.05 856.9275 1000 50 0.95060027 +208 856.9275 860.8050000000001 1000 50 0.9999958 +209 860.805 864.6825 1000 50 0.999469 +210 864.6825 868.5600000000001 1000 50 0.9966029 +211 868.56 872.4375 1000 50 0.9996879 +212 876.315 880.1925000000001 1000 50 0.94927216 +213 880.1925 884.07 1000 50 0.82871646 +214 884.07 887.9475000000001 1000 50 0.9996288 +215 887.9475 891.825 1000 50 0.9987483 +216 891.825 895.7025000000001 1000 50 0.8757849 +217 895.7025 899.58 1000 50 0.99891114 +218 899.58 903.4575000000001 1000 50 0.9993255 +219 903.4575 907.335 1000 50 0.99995124 +220 907.335 911.2125000000001 1000 50 0.9999865 +221 911.2125 915.09 1000 50 0.996842 +222 915.09 918.9675000000001 1000 50 0.9666862 +223 918.9675 922.845 1000 50 0.99993443 +224 922.845 926.7225000000001 1000 50 0.9979703 +225 926.7225 930.6 1000 50 0.9004555 +226 930.6 934.4775000000001 1000 50 0.9986701 +227 934.4775 938.355 1000 50 0.9999318 +228 938.355 942.2325000000001 1000 50 0.7698879 +229 942.2325 946.11 1000 50 0.9999994 +230 946.11 949.9875000000001 1000 50 0.9999864 +231 949.9875 953.865 1000 50 0.76186186 +232 953.865 957.7425000000001 1000 50 0.9999809 +233 957.7425 961.62 1000 50 0.9999982 +234 961.62 965.4975000000001 1000 50 0.98706275 +235 965.4975 969.375 1000 50 0.999998 +236 969.375 973.2525 1000 50 0.9898464 +237 973.2525 977.1300000000001 1000 50 0.9999323 +238 977.13 981.0075 1000 50 0.99933004 +239 981.0075 984.8850000000001 1000 50 0.9995529 +240 984.885 988.7625 1000 50 0.9995371 +241 988.7625 992.6400000000001 1000 50 0.9974202 +242 992.64 996.5175 1000 50 0.9999999 +243 996.5175 1000.3950000000001 1000 50 0.9999026 +244 1000.395 1004.2725 1000 50 0.99979275 +245 1004.2725 1008.1500000000001 1000 50 0.99916637 +246 1008.15 1012.0275 1000 50 0.9949758 +247 1012.0275 1015.9050000000001 1000 50 0.9999999 +248 1015.905 1019.7825 1000 50 0.99982077 +249 1019.7825 1023.6600000000001 1000 50 0.62393457 +250 1023.66 1027.5375 1000 50 1.0 +251 1027.5375 1031.415 1000 50 0.99555594 +252 1031.415 1035.2925 1000 50 0.991983 +253 1035.2925 1039.17 1000 50 1.0 +254 1043.0475 1046.925 1000 50 0.9967294 +255 1046.925 1050.8025 1000 50 0.9999908 +256 1050.8025 1054.68 1000 50 0.9219811 +257 1054.68 1058.5575000000001 1000 50 0.9995297 +258 1058.5575 1062.435 1000 50 0.9999393 +259 1062.435 1066.3125 1000 50 0.9999976 +260 1066.3125 1070.19 1000 50 0.9996526 +261 1070.19 1074.0675 1000 50 0.9549678 +262 1074.0675 1077.9450000000002 1000 50 0.99999964 +263 1077.945 1081.8225 1000 50 0.9091894 +264 1085.7 1089.5775 1000 50 0.9579056 +265 1089.5775 1093.4550000000002 1000 50 0.7943831 +266 1097.3325 1101.21 1000 50 0.9999455 +267 1101.21 1105.0875 1000 50 0.9999901 +268 1108.965 1112.8425 1000 50 0.9943289 +269 1116.72 1120.5975 1000 50 0.9915677 +270 1120.5975 1124.4750000000001 1000 50 0.9785114 +271 1128.3525 1132.23 1000 50 0.94973665 +272 1132.23 1136.1075 1000 50 0.8194662 +273 1136.1075 1139.9850000000001 1000 50 0.9995765 +274 1139.985 1143.8625 1000 50 0.99736893 +275 1143.8625 1147.74 1000 50 0.5375922 +276 1159.3725 1163.25 1000 50 0.88010913 +277 1163.25 1167.1275 1000 50 0.952209 +278 1167.1275 1171.005 1000 50 0.88664055 +279 1171.005 1174.8825000000002 1000 50 0.9973878 +280 1174.8825 1178.76 1000 50 0.92960197 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_19-23-21_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_19-23-21_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..eb0a06ce45b5360d01fcf14f3fc0ed4433eed838 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_19-23-21_annot_2022-11-30_01.txt @@ -0,0 +1,25 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9999981 +2 7.755 11.6325 1000 50 0.9993363 +3 11.6325 15.51 1000 50 0.99800247 +4 15.51 19.3875 1000 50 0.92947453 +5 19.3875 23.265 1000 50 0.99586135 +6 23.265 27.142500000000002 1000 50 0.9963999 +7 27.1425 31.02 1000 50 0.786264 +8 31.02 34.8975 1000 50 0.99930024 +9 34.8975 38.775 1000 50 0.96392936 +10 38.775 42.652499999999996 1000 50 0.9237792 +11 42.6525 46.53 1000 50 0.9997192 +12 46.53 50.4075 1000 50 0.99709845 +13 54.285 58.162499999999994 1000 50 0.99996805 +14 58.1625 62.04 1000 50 0.97939175 +15 62.04 65.9175 1000 50 0.9999287 +16 65.9175 69.795 1000 50 0.99999917 +17 69.795 73.6725 1000 50 0.999741 +18 73.6725 77.55 1000 50 0.99649435 +19 77.55 81.4275 1000 50 0.9999764 +20 81.4275 85.30499999999999 1000 50 0.9882649 +21 85.305 89.1825 1000 50 1.0 +22 89.1825 93.06 1000 50 0.9996693 +23 93.06 96.9375 1000 50 0.99999964 +24 96.9375 100.815 1000 50 0.9981768 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_20-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_20-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..a41ccdbb37d19a6b9bea2026842342ee1b05e559 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_20-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,327 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.99976856 +2 7.755 11.6325 1000 50 0.5281697 +3 11.6325 15.51 1000 50 0.9817541 +4 15.51 19.3875 1000 50 0.9897483 +5 19.3875 23.265 1000 50 0.6272527 +6 23.265 27.142500000000002 1000 50 0.90173614 +7 27.1425 31.02 1000 50 0.7705313 +8 31.02 34.8975 1000 50 0.99972385 +9 34.8975 38.775 1000 50 0.9201302 +10 38.775 42.652499999999996 1000 50 0.999316 +11 42.6525 46.53 1000 50 0.93651 +12 46.53 50.4075 1000 50 0.9985134 +13 50.4075 54.285 1000 50 0.9999906 +14 54.285 58.162499999999994 1000 50 0.9625246 +15 58.1625 62.04 1000 50 0.9994199 +16 62.04 65.9175 1000 50 0.9811639 +17 65.9175 69.795 1000 50 0.99562365 +18 69.795 73.6725 1000 50 0.9312217 +19 73.6725 77.55 1000 50 0.9998186 +20 77.55 81.4275 1000 50 0.99955314 +21 81.4275 85.30499999999999 1000 50 0.92784834 +22 85.305 89.1825 1000 50 0.97387314 +23 89.1825 93.06 1000 50 0.9999802 +24 93.06 96.9375 1000 50 0.9976241 +25 96.9375 100.815 1000 50 0.9999981 +26 100.815 104.6925 1000 50 0.99928397 +27 104.6925 108.57 1000 50 0.985025 +28 108.57 112.44749999999999 1000 50 0.99932766 +29 112.4475 116.325 1000 50 0.9914643 +30 116.325 120.2025 1000 50 0.61424917 +31 120.2025 124.08 1000 50 0.9999827 +32 124.08 127.9575 1000 50 0.9955656 +33 127.9575 131.835 1000 50 0.81367993 +34 131.835 135.7125 1000 50 0.999483 +35 135.7125 139.59 1000 50 0.9997652 +36 139.59 143.4675 1000 50 0.9731861 +37 147.345 151.2225 1000 50 0.98930323 +38 151.2225 155.1 1000 50 0.96286565 +39 158.9775 162.855 1000 50 0.9979138 +40 162.855 166.7325 1000 50 0.64105064 +41 170.61 174.4875 1000 50 0.9861779 +42 174.4875 178.365 1000 50 0.9997831 +43 182.2425 186.12 1000 50 0.573731 +44 186.12 189.9975 1000 50 0.9682067 +45 189.9975 193.875 1000 50 0.76974994 +46 193.875 197.7525 1000 50 0.7337697 +47 197.7525 201.63 1000 50 0.9947726 +48 201.63 205.5075 1000 50 0.5902326 +49 209.385 213.2625 1000 50 0.9947253 +50 213.2625 217.14 1000 50 0.99853134 +51 221.0175 224.895 1000 50 0.99999905 +52 224.895 228.7725 1000 50 0.9963199 +53 228.7725 232.65 1000 50 0.9999019 +54 232.65 236.5275 1000 50 0.9999689 +55 236.5275 240.405 1000 50 0.89834785 +56 240.405 244.2825 1000 50 0.9999653 +57 244.2825 248.16 1000 50 0.9993369 +58 248.16 252.0375 1000 50 0.5554777 +59 252.0375 255.915 1000 50 0.9999976 +60 255.915 259.7925 1000 50 0.96782815 +61 259.7925 263.67 1000 50 0.9997552 +62 263.67 267.5475 1000 50 0.9948631 +63 267.5475 271.425 1000 50 0.9308489 +64 271.425 275.3025 1000 50 0.99763405 +65 275.3025 279.18 1000 50 0.99992025 +66 279.18 283.0575 1000 50 0.80809486 +67 283.0575 286.935 1000 50 0.83587223 +68 286.935 290.8125 1000 50 0.9374951 +69 290.8125 294.69 1000 50 0.9995296 +70 294.69 298.5675 1000 50 0.99818355 +71 298.5675 302.445 1000 50 0.9146374 +72 302.445 306.3225 1000 50 0.97432905 +73 306.3225 310.2 1000 50 0.9999999 +74 310.2 314.0775 1000 50 0.9999989 +75 314.0775 317.955 1000 50 0.9999573 +76 317.955 321.8325 1000 50 0.999992 +77 321.8325 325.71 1000 50 0.9999541 +78 325.71 329.5875 1000 50 0.6098246 +79 329.5875 333.465 1000 50 0.99999964 +80 333.465 337.3425 1000 50 0.9999026 +81 337.3425 341.21999999999997 1000 50 0.9999807 +82 341.22 345.0975 1000 50 0.9998659 +83 345.0975 348.975 1000 50 0.9850193 +84 348.975 352.8525 1000 50 0.99991786 +85 352.8525 356.73 1000 50 0.999992 +86 356.73 360.6075 1000 50 0.54873836 +87 360.6075 364.485 1000 50 0.98254424 +88 364.485 368.3625 1000 50 0.9999751 +89 368.3625 372.24 1000 50 0.94895774 +90 372.24 376.1175 1000 50 0.9996848 +91 376.1175 379.995 1000 50 0.999701 +92 379.995 383.8725 1000 50 0.9999621 +93 383.8725 387.75 1000 50 0.9820801 +94 387.75 391.6275 1000 50 0.98896164 +95 391.6275 395.505 1000 50 0.9999999 +96 395.505 399.3825 1000 50 0.9999093 +97 399.3825 403.26 1000 50 1.0 +98 403.26 407.1375 1000 50 0.99694735 +99 407.1375 411.015 1000 50 0.9957124 +100 411.015 414.8925 1000 50 0.9999993 +101 414.8925 418.77 1000 50 0.99999964 +102 418.77 422.6475 1000 50 0.99999976 +103 422.6475 426.525 1000 50 1.0 +104 426.525 430.4025 1000 50 0.9998739 +105 430.4025 434.28 1000 50 0.9999999 +106 434.28 438.15749999999997 1000 50 0.99520147 +107 438.1575 442.035 1000 50 0.99999964 +108 442.035 445.9125 1000 50 0.9860719 +109 445.9125 449.79 1000 50 0.9959369 +110 449.79 453.6675 1000 50 0.7334504 +111 453.6675 457.545 1000 50 0.996447 +112 457.545 461.4225 1000 50 0.9993767 +113 461.4225 465.3 1000 50 0.9058241 +114 465.3 469.1775 1000 50 0.9992993 +115 469.1775 473.055 1000 50 0.99952996 +116 473.055 476.9325 1000 50 0.9980108 +117 476.9325 480.81 1000 50 0.998792 +118 480.81 484.6875 1000 50 0.9997701 +119 488.565 492.4425 1000 50 0.9987192 +120 492.4425 496.32 1000 50 0.9924206 +121 496.32 500.1975 1000 50 0.98944366 +122 500.1975 504.075 1000 50 0.95268947 +123 504.075 507.9525 1000 50 0.95376223 +124 507.9525 511.83 1000 50 0.98560405 +125 515.7075 519.585 1000 50 0.90715504 +126 527.34 531.2175000000001 1000 50 0.9985316 +127 531.2175 535.095 1000 50 0.5862036 +128 535.095 538.9725000000001 1000 50 0.8754993 +129 538.9725 542.85 1000 50 0.8807754 +130 542.85 546.7275000000001 1000 50 0.9573748 +131 546.7275 550.605 1000 50 0.9772678 +132 550.605 554.4825000000001 1000 50 0.62223583 +133 554.4825 558.36 1000 50 0.7676709 +134 558.36 562.2375000000001 1000 50 0.95910406 +135 566.115 569.9925000000001 1000 50 0.9652987 +136 569.9925 573.87 1000 50 0.9992353 +137 573.87 577.7475000000001 1000 50 0.9385038 +138 581.625 585.5025 1000 50 0.9962955 +139 585.5025 589.3800000000001 1000 50 0.9712 +140 601.0125 604.8900000000001 1000 50 0.87670493 +141 604.89 608.7675 1000 50 0.9602697 +142 608.7675 612.6450000000001 1000 50 0.8325631 +143 612.645 616.5225 1000 50 0.9750269 +144 616.5225 620.4000000000001 1000 50 0.9982716 +145 620.4 624.2775 1000 50 0.9960978 +146 624.2775 628.1550000000001 1000 50 0.9987394 +147 628.155 632.0325 1000 50 0.9481629 +148 632.0325 635.9100000000001 1000 50 0.7534488 +149 635.91 639.7875 1000 50 0.9897138 +150 639.7875 643.6650000000001 1000 50 0.99698216 +151 643.665 647.5425 1000 50 0.9930588 +152 651.42 655.2975 1000 50 0.96099585 +153 659.175 663.0525 1000 50 0.99966824 +154 663.0525 666.9300000000001 1000 50 0.8604093 +155 666.93 670.8075 1000 50 0.98675704 +156 670.8075 674.6850000000001 1000 50 0.91923445 +157 674.685 678.5625 1000 50 0.9063013 +158 678.5625 682.44 1000 50 0.99562377 +159 686.3175 690.195 1000 50 0.66749805 +160 690.195 694.0725000000001 1000 50 0.9979505 +161 694.0725 697.95 1000 50 0.97218215 +162 697.95 701.8275000000001 1000 50 0.9992943 +163 701.8275 705.705 1000 50 0.9999323 +164 705.705 709.5825000000001 1000 50 0.99973804 +165 709.5825 713.46 1000 50 0.99999857 +166 713.46 717.3375000000001 1000 50 0.9958056 +167 717.3375 721.215 1000 50 0.98263645 +168 721.215 725.0925000000001 1000 50 0.9999999 +169 725.0925 728.97 1000 50 0.99995697 +170 728.97 732.8475000000001 1000 50 0.61724335 +171 732.8475 736.725 1000 50 0.9926542 +172 736.725 740.6025000000001 1000 50 0.9842726 +173 740.6025 744.48 1000 50 0.999283 +174 744.48 748.3575000000001 1000 50 0.9997907 +175 752.235 756.1125000000001 1000 50 0.5289432 +176 756.1125 759.99 1000 50 0.9999254 +177 763.8675 767.745 1000 50 0.9977119 +178 767.745 771.6225000000001 1000 50 0.99943465 +179 771.6225 775.5 1000 50 0.9819551 +180 775.5 779.3775 1000 50 0.9999918 +181 779.3775 783.2550000000001 1000 50 0.9918395 +182 783.255 787.1325 1000 50 0.9921406 +183 787.1325 791.0100000000001 1000 50 0.9998939 +184 794.8875 798.7650000000001 1000 50 0.99977034 +185 798.765 802.6425 1000 50 0.9981172 +186 806.52 810.3975 1000 50 0.99985886 +187 810.3975 814.2750000000001 1000 50 0.992195 +188 818.1525 822.0300000000001 1000 50 0.98310053 +189 822.03 825.9075 1000 50 0.9094252 +190 825.9075 829.7850000000001 1000 50 0.9984408 +191 829.785 833.6625 1000 50 0.99083495 +192 841.4175 845.2950000000001 1000 50 0.9876938 +193 845.295 849.1725 1000 50 0.9803417 +194 849.1725 853.0500000000001 1000 50 0.9993831 +195 853.05 856.9275 1000 50 0.9683239 +196 860.805 864.6825 1000 50 0.99900144 +197 864.6825 868.5600000000001 1000 50 0.99983895 +198 868.56 872.4375 1000 50 0.9999298 +199 872.4375 876.315 1000 50 0.9936998 +200 876.315 880.1925000000001 1000 50 0.9281035 +201 884.07 887.9475000000001 1000 50 0.9994948 +202 887.9475 891.825 1000 50 1.0 +203 891.825 895.7025000000001 1000 50 0.99990225 +204 895.7025 899.58 1000 50 0.9999063 +205 899.58 903.4575000000001 1000 50 0.9994597 +206 903.4575 907.335 1000 50 0.99882466 +207 907.335 911.2125000000001 1000 50 0.99976045 +208 911.2125 915.09 1000 50 0.9999974 +209 915.09 918.9675000000001 1000 50 0.82785857 +210 918.9675 922.845 1000 50 0.9999988 +211 922.845 926.7225000000001 1000 50 0.99999976 +212 926.7225 930.6 1000 50 0.8855854 +213 930.6 934.4775000000001 1000 50 0.9999448 +214 934.4775 938.355 1000 50 0.9998665 +215 938.355 942.2325000000001 1000 50 0.9999969 +216 942.2325 946.11 1000 50 0.9988281 +217 946.11 949.9875000000001 1000 50 0.999666 +218 949.9875 953.865 1000 50 0.99999166 +219 953.865 957.7425000000001 1000 50 0.9997439 +220 957.7425 961.62 1000 50 0.99958116 +221 961.62 965.4975000000001 1000 50 0.9643344 +222 965.4975 969.375 1000 50 0.9878456 +223 969.375 973.2525 1000 50 0.9998808 +224 973.2525 977.1300000000001 1000 50 0.9999963 +225 977.13 981.0075 1000 50 0.99999607 +226 981.0075 984.8850000000001 1000 50 0.9999633 +227 984.885 988.7625 1000 50 0.9999237 +228 988.7625 992.6400000000001 1000 50 0.9998215 +229 992.64 996.5175 1000 50 0.7859341 +230 996.5175 1000.3950000000001 1000 50 0.9970937 +231 1000.395 1004.2725 1000 50 0.9998134 +232 1004.2725 1008.1500000000001 1000 50 0.9993845 +233 1008.15 1012.0275 1000 50 0.9985825 +234 1012.0275 1015.9050000000001 1000 50 0.9999981 +235 1015.905 1019.7825 1000 50 0.9994079 +236 1019.7825 1023.6600000000001 1000 50 0.9997868 +237 1023.66 1027.5375 1000 50 0.99749666 +238 1027.5375 1031.415 1000 50 0.99962187 +239 1031.415 1035.2925 1000 50 0.931331 +240 1035.2925 1039.17 1000 50 1.0 +241 1039.17 1043.0475000000001 1000 50 0.98321414 +242 1043.0475 1046.925 1000 50 0.94492173 +243 1046.925 1050.8025 1000 50 0.9998323 +244 1050.8025 1054.68 1000 50 0.99997985 +245 1054.68 1058.5575000000001 1000 50 0.99999976 +246 1058.5575 1062.435 1000 50 0.9972898 +247 1062.435 1066.3125 1000 50 0.99587715 +248 1066.3125 1070.19 1000 50 0.86485934 +249 1070.19 1074.0675 1000 50 0.9999999 +250 1074.0675 1077.9450000000002 1000 50 0.999821 +251 1077.945 1081.8225 1000 50 0.9989631 +252 1081.8225 1085.7 1000 50 0.9997191 +253 1085.7 1089.5775 1000 50 0.9992273 +254 1089.5775 1093.4550000000002 1000 50 0.9775913 +255 1093.455 1097.3325 1000 50 0.9712223 +256 1101.21 1105.0875 1000 50 0.99647576 +257 1105.0875 1108.9650000000001 1000 50 0.999665 +258 1112.8425 1116.72 1000 50 0.9986173 +259 1116.72 1120.5975 1000 50 0.9064249 +260 1124.475 1128.3525 1000 50 0.9604001 +261 1128.3525 1132.23 1000 50 0.93946755 +262 1132.23 1136.1075 1000 50 0.8284323 +263 1139.985 1143.8625 1000 50 0.9804844 +264 1143.8625 1147.74 1000 50 0.5386379 +265 1147.74 1151.6175 1000 50 0.98680437 +266 1151.6175 1155.4950000000001 1000 50 0.9999956 +267 1159.3725 1163.25 1000 50 0.79224336 +268 1163.25 1167.1275 1000 50 0.99889624 +269 1167.1275 1171.005 1000 50 0.99603456 +270 1174.8825 1178.76 1000 50 0.8428851 +271 1178.76 1182.6375 1000 50 0.52205664 +272 1182.6375 1186.515 1000 50 0.69345 +273 1186.515 1190.3925000000002 1000 50 0.6350142 +274 1190.3925 1194.27 1000 50 0.98999095 +275 1194.27 1198.1475 1000 50 0.82693905 +276 1202.025 1205.9025000000001 1000 50 0.9221549 +277 1225.29 1229.1675 1000 50 0.8979331 +278 1229.1675 1233.045 1000 50 0.9252352 +279 1236.9225 1240.8 1000 50 0.91418636 +280 1244.6775 1248.555 1000 50 0.75736636 +281 1248.555 1252.4325000000001 1000 50 0.8694362 +282 1260.1875 1264.065 1000 50 0.9503348 +283 1271.82 1275.6975 1000 50 0.85046023 +284 1279.575 1283.4525 1000 50 0.80855554 +285 1291.2075 1295.085 1000 50 0.99619675 +286 1295.085 1298.9625 1000 50 0.9988939 +287 1306.7175 1310.595 1000 50 0.9998684 +288 1314.4725 1318.3500000000001 1000 50 0.6576331 +289 1318.35 1322.2275 1000 50 0.6385379 +290 1322.2275 1326.105 1000 50 0.8670297 +291 1326.105 1329.9825 1000 50 0.9713576 +292 1329.9825 1333.8600000000001 1000 50 0.93506205 +293 1333.86 1337.7375 1000 50 0.99999344 +294 1337.7375 1341.615 1000 50 0.9179359 +295 1341.615 1345.4925 1000 50 0.99985623 +296 1345.4925 1349.3700000000001 1000 50 0.960074 +297 1349.37 1353.2475 1000 50 1.0 +298 1357.125 1361.0025 1000 50 0.99999917 +299 1361.0025 1364.88 1000 50 0.99989367 +300 1364.88 1368.7575000000002 1000 50 0.9900367 +301 1368.7575 1372.635 1000 50 0.99991 +302 1372.635 1376.5125 1000 50 0.9998803 +303 1376.5125 1380.39 1000 50 0.9999999 +304 1380.39 1384.2675000000002 1000 50 0.9992489 +305 1384.2675 1388.145 1000 50 0.99999845 +306 1388.145 1392.0225 1000 50 0.99999213 +307 1392.0225 1395.9 1000 50 0.99998367 +308 1395.9 1399.7775000000001 1000 50 0.9999291 +309 1399.7775 1403.655 1000 50 0.9999385 +310 1403.655 1407.5325 1000 50 0.990137 +311 1407.5325 1411.41 1000 50 0.99975413 +312 1411.41 1415.2875000000001 1000 50 0.8692561 +313 1415.2875 1419.165 1000 50 0.9999924 +314 1419.165 1423.0425 1000 50 0.9999777 +315 1423.0425 1426.92 1000 50 0.9733574 +316 1426.92 1430.7975000000001 1000 50 0.99975544 +317 1430.7975 1434.675 1000 50 0.99986243 +318 1434.675 1438.5525 1000 50 0.9999734 +319 1438.5525 1442.43 1000 50 0.97530466 +320 1442.43 1446.3075000000001 1000 50 0.9972249 +321 1446.3075 1450.185 1000 50 0.99998045 +322 1450.185 1454.0625 1000 50 0.9568885 +323 1454.0625 1457.94 1000 50 0.99998295 +324 1457.94 1461.8175 1000 50 0.99374735 +325 1461.8175 1465.6950000000002 1000 50 0.99938846 +326 1465.695 1469.5725 1000 50 0.9977354 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_21-01-55_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_21-01-55_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..2d41a16548b8261c056e7982772e66def9222e27 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_21-01-55_annot_2022-11-30_01.txt @@ -0,0 +1,270 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.94513893 +2 3.8775 7.755 1000 50 0.9504164 +3 11.6325 15.51 1000 50 0.7208775 +4 19.3875 23.265 1000 50 0.9137089 +5 23.265 27.142500000000002 1000 50 0.9101788 +6 31.02 34.8975 1000 50 0.7802729 +7 34.8975 38.775 1000 50 0.99835086 +8 38.775 42.652499999999996 1000 50 0.9998641 +9 42.6525 46.53 1000 50 0.99958235 +10 46.53 50.4075 1000 50 0.8307956 +11 50.4075 54.285 1000 50 0.99757594 +12 54.285 58.162499999999994 1000 50 0.9973724 +13 58.1625 62.04 1000 50 0.9327215 +14 62.04 65.9175 1000 50 0.9634852 +15 65.9175 69.795 1000 50 0.9450925 +16 69.795 73.6725 1000 50 0.76344913 +17 73.6725 77.55 1000 50 0.9979119 +18 77.55 81.4275 1000 50 0.9999361 +19 85.305 89.1825 1000 50 0.99999344 +20 89.1825 93.06 1000 50 0.99916446 +21 93.06 96.9375 1000 50 0.999757 +22 96.9375 100.815 1000 50 0.9999672 +23 104.6925 108.57 1000 50 0.9491824 +24 108.57 112.44749999999999 1000 50 0.8702711 +25 116.325 120.2025 1000 50 0.8932249 +26 131.835 135.7125 1000 50 0.71863973 +27 143.4675 147.345 1000 50 0.99815065 +28 155.1 158.9775 1000 50 0.86767256 +29 166.7325 170.60999999999999 1000 50 0.99481577 +30 170.61 174.4875 1000 50 0.99962616 +31 182.2425 186.12 1000 50 0.98951846 +32 189.9975 193.875 1000 50 0.9796544 +33 201.63 205.5075 1000 50 0.9989973 +34 209.385 213.2625 1000 50 0.8059556 +35 213.2625 217.14 1000 50 0.90912735 +36 217.14 221.01749999999998 1000 50 0.7981416 +37 221.0175 224.895 1000 50 0.79090405 +38 224.895 228.7725 1000 50 0.8668036 +39 228.7725 232.65 1000 50 0.99940526 +40 236.5275 240.405 1000 50 0.9205045 +41 244.2825 248.16 1000 50 0.9484841 +42 248.16 252.0375 1000 50 0.9131198 +43 252.0375 255.915 1000 50 0.51049674 +44 255.915 259.7925 1000 50 0.9962353 +45 259.7925 263.67 1000 50 0.9498313 +46 263.67 267.5475 1000 50 0.964213 +47 267.5475 271.425 1000 50 0.9409606 +48 275.3025 279.18 1000 50 0.99966156 +49 279.18 283.0575 1000 50 0.90943545 +50 283.0575 286.935 1000 50 0.99926215 +51 286.935 290.8125 1000 50 0.98952734 +52 290.8125 294.69 1000 50 0.8716695 +53 294.69 298.5675 1000 50 0.68950075 +54 298.5675 302.445 1000 50 0.8136357 +55 302.445 306.3225 1000 50 0.9927651 +56 306.3225 310.2 1000 50 0.998703 +57 310.2 314.0775 1000 50 0.9968983 +58 314.0775 317.955 1000 50 0.9922593 +59 317.955 321.8325 1000 50 0.99999964 +60 321.8325 325.71 1000 50 0.95236367 +61 325.71 329.5875 1000 50 0.9833908 +62 329.5875 333.465 1000 50 0.9995177 +63 337.3425 341.21999999999997 1000 50 0.9989196 +64 341.22 345.0975 1000 50 0.9828515 +65 345.0975 348.975 1000 50 0.9998474 +66 348.975 352.8525 1000 50 0.9980945 +67 352.8525 356.73 1000 50 0.9998888 +68 356.73 360.6075 1000 50 0.9998828 +69 360.6075 364.485 1000 50 0.99996245 +70 364.485 368.3625 1000 50 0.9719016 +71 368.3625 372.24 1000 50 0.9999932 +72 372.24 376.1175 1000 50 0.9999999 +73 376.1175 379.995 1000 50 0.99939835 +74 379.995 383.8725 1000 50 0.9919641 +75 383.8725 387.75 1000 50 1.0 +76 391.6275 395.505 1000 50 0.99986887 +77 395.505 399.3825 1000 50 1.0 +78 399.3825 403.26 1000 50 0.99937254 +79 403.26 407.1375 1000 50 0.9999999 +80 407.1375 411.015 1000 50 0.9999999 +81 411.015 414.8925 1000 50 0.99999845 +82 414.8925 418.77 1000 50 0.99999976 +83 418.77 422.6475 1000 50 0.99990475 +84 422.6475 426.525 1000 50 0.99961495 +85 426.525 430.4025 1000 50 1.0 +86 434.28 438.15749999999997 1000 50 0.9998698 +87 438.1575 442.035 1000 50 0.99876404 +88 445.9125 449.79 1000 50 0.9999392 +89 449.79 453.6675 1000 50 0.99715817 +90 453.6675 457.545 1000 50 0.9997093 +91 457.545 461.4225 1000 50 0.9998362 +92 461.4225 465.3 1000 50 0.9951389 +93 465.3 469.1775 1000 50 0.9256186 +94 469.1775 473.055 1000 50 0.9999987 +95 473.055 476.9325 1000 50 0.9996369 +96 476.9325 480.81 1000 50 0.9999472 +97 480.81 484.6875 1000 50 0.9999989 +98 484.6875 488.565 1000 50 0.99132675 +99 488.565 492.4425 1000 50 0.67633176 +100 492.4425 496.32 1000 50 0.995978 +101 496.32 500.1975 1000 50 0.999998 +102 500.1975 504.075 1000 50 0.9998865 +103 504.075 507.9525 1000 50 0.99677545 +104 507.9525 511.83 1000 50 0.9933202 +105 511.83 515.7075 1000 50 0.9956891 +106 515.7075 519.585 1000 50 0.97381717 +107 527.34 531.2175000000001 1000 50 0.5808174 +108 531.2175 535.095 1000 50 0.99480283 +109 535.095 538.9725000000001 1000 50 0.9908441 +110 538.9725 542.85 1000 50 0.999166 +111 542.85 546.7275000000001 1000 50 0.99249744 +112 550.605 554.4825000000001 1000 50 0.9991454 +113 554.4825 558.36 1000 50 0.9990729 +114 562.2375 566.115 1000 50 0.9987826 +115 566.115 569.9925000000001 1000 50 0.9999615 +116 569.9925 573.87 1000 50 0.9967533 +117 573.87 577.7475000000001 1000 50 0.76225245 +118 577.7475 581.625 1000 50 0.9998498 +119 581.625 585.5025 1000 50 0.8878296 +120 585.5025 589.3800000000001 1000 50 0.53040457 +121 608.7675 612.6450000000001 1000 50 0.9989636 +122 632.0325 635.9100000000001 1000 50 0.97147477 +123 643.665 647.5425 1000 50 0.6063849 +124 647.5425 651.4200000000001 1000 50 0.65546936 +125 651.42 655.2975 1000 50 0.83487463 +126 655.2975 659.1750000000001 1000 50 0.67624354 +127 659.175 663.0525 1000 50 0.9146474 +128 663.0525 666.9300000000001 1000 50 0.7333076 +129 674.685 678.5625 1000 50 0.9686932 +130 678.5625 682.44 1000 50 0.9673249 +131 686.3175 690.195 1000 50 0.9920476 +132 690.195 694.0725000000001 1000 50 0.61676395 +133 697.95 701.8275000000001 1000 50 0.98413324 +134 709.5825 713.46 1000 50 0.77302253 +135 713.46 717.3375000000001 1000 50 0.81740946 +136 725.0925 728.97 1000 50 0.9625055 +137 728.97 732.8475000000001 1000 50 0.83124685 +138 736.725 740.6025000000001 1000 50 0.81847817 +139 740.6025 744.48 1000 50 0.9943117 +140 752.235 756.1125000000001 1000 50 0.83082813 +141 756.1125 759.99 1000 50 0.9933257 +142 759.99 763.8675000000001 1000 50 0.9924551 +143 763.8675 767.745 1000 50 0.9555109 +144 771.6225 775.5 1000 50 0.5113589 +145 775.5 779.3775 1000 50 0.75426584 +146 779.3775 783.2550000000001 1000 50 0.99999666 +147 783.255 787.1325 1000 50 0.99715984 +148 787.1325 791.0100000000001 1000 50 0.9999906 +149 791.01 794.8875 1000 50 0.9999684 +150 794.8875 798.7650000000001 1000 50 0.7617876 +151 798.765 802.6425 1000 50 0.8909503 +152 802.6425 806.5200000000001 1000 50 0.9641995 +153 806.52 810.3975 1000 50 0.99992156 +154 814.275 818.1525 1000 50 0.9970734 +155 818.1525 822.0300000000001 1000 50 0.99971646 +156 825.9075 829.7850000000001 1000 50 0.9999821 +157 829.785 833.6625 1000 50 0.9999112 +158 833.6625 837.5400000000001 1000 50 0.9979482 +159 837.54 841.4175 1000 50 0.99856323 +160 841.4175 845.2950000000001 1000 50 0.8378398 +161 845.295 849.1725 1000 50 0.84517086 +162 849.1725 853.0500000000001 1000 50 0.9905166 +163 853.05 856.9275 1000 50 0.9871209 +164 856.9275 860.8050000000001 1000 50 0.9998273 +165 860.805 864.6825 1000 50 0.9969488 +166 864.6825 868.5600000000001 1000 50 0.9525303 +167 868.56 872.4375 1000 50 0.9999995 +168 872.4375 876.315 1000 50 0.9488502 +169 876.315 880.1925000000001 1000 50 0.9999807 +170 880.1925 884.07 1000 50 0.99999976 +171 884.07 887.9475000000001 1000 50 0.9992568 +172 887.9475 891.825 1000 50 0.9999995 +173 891.825 895.7025000000001 1000 50 0.9996377 +174 899.58 903.4575000000001 1000 50 0.99993765 +175 903.4575 907.335 1000 50 0.9983845 +176 907.335 911.2125000000001 1000 50 0.9999685 +177 911.2125 915.09 1000 50 0.9995314 +178 915.09 918.9675000000001 1000 50 0.99829084 +179 918.9675 922.845 1000 50 0.999877 +180 922.845 926.7225000000001 1000 50 0.9929951 +181 926.7225 930.6 1000 50 0.9999994 +182 930.6 934.4775000000001 1000 50 0.99993515 +183 934.4775 938.355 1000 50 0.9961274 +184 938.355 942.2325000000001 1000 50 0.68441045 +185 942.2325 946.11 1000 50 0.9999739 +186 946.11 949.9875000000001 1000 50 0.99999225 +187 949.9875 953.865 1000 50 0.99999964 +188 953.865 957.7425000000001 1000 50 0.9999888 +189 957.7425 961.62 1000 50 0.9999846 +190 961.62 965.4975000000001 1000 50 0.99995196 +191 965.4975 969.375 1000 50 0.99973255 +192 969.375 973.2525 1000 50 0.99999964 +193 973.2525 977.1300000000001 1000 50 0.99998045 +194 977.13 981.0075 1000 50 0.99941397 +195 981.0075 984.8850000000001 1000 50 0.99999964 +196 984.885 988.7625 1000 50 0.9983664 +197 988.7625 992.6400000000001 1000 50 0.99931526 +198 992.64 996.5175 1000 50 0.9993807 +199 996.5175 1000.3950000000001 1000 50 0.9999354 +200 1000.395 1004.2725 1000 50 0.9999771 +201 1004.2725 1008.1500000000001 1000 50 0.99938035 +202 1008.15 1012.0275 1000 50 0.9999964 +203 1012.0275 1015.9050000000001 1000 50 0.9999881 +204 1019.7825 1023.6600000000001 1000 50 0.9946445 +205 1023.66 1027.5375 1000 50 0.9992054 +206 1027.5375 1031.415 1000 50 0.9635133 +207 1031.415 1035.2925 1000 50 0.99641764 +208 1035.2925 1039.17 1000 50 0.99995244 +209 1039.17 1043.0475000000001 1000 50 0.9294633 +210 1043.0475 1046.925 1000 50 0.9474328 +211 1046.925 1050.8025 1000 50 0.99977785 +212 1050.8025 1054.68 1000 50 0.9711529 +213 1054.68 1058.5575000000001 1000 50 0.9886115 +214 1066.3125 1070.19 1000 50 0.73370034 +215 1074.0675 1077.9450000000002 1000 50 0.9998981 +216 1081.8225 1085.7 1000 50 0.9988526 +217 1085.7 1089.5775 1000 50 0.9999118 +218 1089.5775 1093.4550000000002 1000 50 0.9979241 +219 1093.455 1097.3325 1000 50 0.8304017 +220 1097.3325 1101.21 1000 50 0.9979809 +221 1101.21 1105.0875 1000 50 0.99994814 +222 1105.0875 1108.9650000000001 1000 50 0.99781454 +223 1108.965 1112.8425 1000 50 0.99976045 +224 1112.8425 1116.72 1000 50 0.9997414 +225 1116.72 1120.5975 1000 50 0.97121745 +226 1120.5975 1124.4750000000001 1000 50 0.9999088 +227 1124.475 1128.3525 1000 50 0.99780685 +228 1128.3525 1132.23 1000 50 0.9917991 +229 1132.23 1136.1075 1000 50 0.96930695 +230 1136.1075 1139.9850000000001 1000 50 0.99934417 +231 1139.985 1143.8625 1000 50 0.9962625 +232 1143.8625 1147.74 1000 50 0.9824898 +233 1163.25 1167.1275 1000 50 0.50715244 +234 1167.1275 1171.005 1000 50 0.7584428 +235 1174.8825 1178.76 1000 50 0.86938673 +236 1182.6375 1186.515 1000 50 0.8877375 +237 1186.515 1190.3925000000002 1000 50 0.577757 +238 1205.9025 1209.78 1000 50 0.99204177 +239 1209.78 1213.6575 1000 50 0.5333865 +240 1217.535 1221.4125000000001 1000 50 0.7730432 +241 1221.4125 1225.29 1000 50 0.787309 +242 1225.29 1229.1675 1000 50 0.8604033 +243 1229.1675 1233.045 1000 50 0.99179584 +244 1233.045 1236.9225000000001 1000 50 0.6127519 +245 1236.9225 1240.8 1000 50 0.9985184 +246 1240.8 1244.6775 1000 50 0.9803924 +247 1248.555 1252.4325000000001 1000 50 0.5443686 +248 1252.4325 1256.31 1000 50 0.982834 +249 1256.31 1260.1875 1000 50 0.9072845 +250 1271.82 1275.6975 1000 50 0.8341628 +251 1275.6975 1279.575 1000 50 0.50436836 +252 1279.575 1283.4525 1000 50 0.94347763 +253 1302.84 1306.7175 1000 50 0.98625153 +254 1314.4725 1318.3500000000001 1000 50 0.9997814 +255 1318.35 1322.2275 1000 50 0.99294245 +256 1322.2275 1326.105 1000 50 0.9987436 +257 1326.105 1329.9825 1000 50 0.995284 +258 1333.86 1337.7375 1000 50 0.71713924 +259 1337.7375 1341.615 1000 50 0.6421488 +260 1345.4925 1349.3700000000001 1000 50 0.9789453 +261 1349.37 1353.2475 1000 50 0.8377649 +262 1357.125 1361.0025 1000 50 0.5725674 +263 1361.0025 1364.88 1000 50 0.9971673 +264 1364.88 1368.7575000000002 1000 50 0.8035347 +265 1368.7575 1372.635 1000 50 0.65020645 +266 1372.635 1376.5125 1000 50 0.9999052 +267 1376.5125 1380.39 1000 50 0.99585164 +268 1380.39 1384.2675000000002 1000 50 0.99225736 +269 1384.2675 1388.145 1000 50 0.99998355 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_22-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_22-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..bde5b9ef8995ee25046e8f908b5a720f9efcf571 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_22-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,30 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.88854843 +2 3.8775 7.755 1000 50 0.9179049 +3 31.02 34.8975 1000 50 0.82541466 +4 34.8975 38.775 1000 50 0.96151626 +5 38.775 42.652499999999996 1000 50 0.9248013 +6 42.6525 46.53 1000 50 0.9999683 +7 46.53 50.4075 1000 50 0.8288951 +8 54.285 58.162499999999994 1000 50 0.9982185 +9 62.04 65.9175 1000 50 0.9641573 +10 65.9175 69.795 1000 50 0.96089417 +11 73.6725 77.55 1000 50 0.9999999 +12 77.55 81.4275 1000 50 0.64220816 +13 89.1825 93.06 1000 50 0.86975414 +14 93.06 96.9375 1000 50 0.5197828 +15 96.9375 100.815 1000 50 0.98985964 +16 116.325 120.2025 1000 50 0.5359912 +17 124.08 127.9575 1000 50 0.6366198 +18 135.7125 139.59 1000 50 0.9496509 +19 147.345 151.2225 1000 50 0.7987641 +20 151.2225 155.1 1000 50 0.9585411 +21 158.9775 162.855 1000 50 0.5322769 +22 170.61 174.4875 1000 50 0.9994906 +23 174.4875 178.365 1000 50 0.80524766 +24 182.2425 186.12 1000 50 0.57891345 +25 189.9975 193.875 1000 50 0.98883736 +26 193.875 197.7525 1000 50 0.8270021 +27 197.7525 201.63 1000 50 0.9841313 +28 201.63 205.5075 1000 50 0.995057 +29 209.385 213.2625 1000 50 0.99996793 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_22-07-14_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_22-07-14_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..91db2e0dc8ca2c1b853cee67d2124047cfa7b433 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_22-07-14_annot_2022-11-30_01.txt @@ -0,0 +1,103 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 27.1425 31.02 1000 50 0.9803509 +2 31.02 34.8975 1000 50 0.97429097 +3 38.775 42.652499999999996 1000 50 0.99859375 +4 42.6525 46.53 1000 50 0.98691326 +5 46.53 50.4075 1000 50 0.99910885 +6 50.4075 54.285 1000 50 0.99904233 +7 54.285 58.162499999999994 1000 50 0.9590116 +8 58.1625 62.04 1000 50 0.93019783 +9 62.04 65.9175 1000 50 0.6458258 +10 69.795 73.6725 1000 50 0.9652475 +11 73.6725 77.55 1000 50 0.9997557 +12 81.4275 85.30499999999999 1000 50 0.9989243 +13 89.1825 93.06 1000 50 0.99976057 +14 93.06 96.9375 1000 50 0.9871033 +15 100.815 104.6925 1000 50 0.998522 +16 112.4475 116.325 1000 50 0.66864437 +17 116.325 120.2025 1000 50 0.98647124 +18 151.2225 155.1 1000 50 0.6112301 +19 178.365 182.2425 1000 50 0.75231546 +20 209.385 213.2625 1000 50 0.69176906 +21 252.0375 255.915 1000 50 0.99237543 +22 259.7925 263.67 1000 50 0.9129804 +23 275.3025 279.18 1000 50 0.9363172 +24 279.18 283.0575 1000 50 0.8766316 +25 286.935 290.8125 1000 50 0.99984086 +26 294.69 298.5675 1000 50 0.98358387 +27 298.5675 302.445 1000 50 0.9930442 +28 302.445 306.3225 1000 50 0.8190314 +29 306.3225 310.2 1000 50 0.54160464 +30 317.955 321.8325 1000 50 0.97153914 +31 321.8325 325.71 1000 50 0.53400916 +32 329.5875 333.465 1000 50 0.98955536 +33 333.465 337.3425 1000 50 0.98325884 +34 352.8525 356.73 1000 50 0.9090684 +35 360.6075 364.485 1000 50 0.97026414 +36 364.485 368.3625 1000 50 0.99741757 +37 376.1175 379.995 1000 50 0.52972823 +38 379.995 383.8725 1000 50 0.93072504 +39 387.75 391.6275 1000 50 0.98266774 +40 391.6275 395.505 1000 50 0.9996836 +41 403.26 407.1375 1000 50 0.9981401 +42 426.525 430.4025 1000 50 0.8883989 +43 430.4025 434.28 1000 50 0.78229845 +44 442.035 445.9125 1000 50 0.7254313 +45 449.79 453.6675 1000 50 0.8947794 +46 457.545 461.4225 1000 50 0.8047985 +47 465.3 469.1775 1000 50 0.9958545 +48 476.9325 480.81 1000 50 0.9888469 +49 484.6875 488.565 1000 50 0.90194464 +50 492.4425 496.32 1000 50 0.6049555 +51 496.32 500.1975 1000 50 0.96561664 +52 500.1975 504.075 1000 50 0.9960737 +53 504.075 507.9525 1000 50 0.99976736 +54 507.9525 511.83 1000 50 0.9998336 +55 511.83 515.7075 1000 50 0.95620644 +56 515.7075 519.585 1000 50 0.6335099 +57 519.585 523.4625000000001 1000 50 0.99911183 +58 523.4625 527.34 1000 50 0.75455797 +59 527.34 531.2175000000001 1000 50 0.9998591 +60 531.2175 535.095 1000 50 0.74138355 +61 535.095 538.9725000000001 1000 50 0.77227634 +62 538.9725 542.85 1000 50 0.988801 +63 542.85 546.7275000000001 1000 50 0.9964043 +64 546.7275 550.605 1000 50 0.7898569 +65 550.605 554.4825000000001 1000 50 0.7937343 +66 554.4825 558.36 1000 50 0.8826349 +67 558.36 562.2375000000001 1000 50 0.99997103 +68 562.2375 566.115 1000 50 0.971393 +69 566.115 569.9925000000001 1000 50 0.64544404 +70 569.9925 573.87 1000 50 0.9986179 +71 577.7475 581.625 1000 50 0.9958467 +72 581.625 585.5025 1000 50 0.9881838 +73 589.38 593.2575 1000 50 0.9826383 +74 593.2575 597.1350000000001 1000 50 0.9961981 +75 601.0125 604.8900000000001 1000 50 0.9802695 +76 612.645 616.5225 1000 50 0.9954277 +77 670.8075 674.6850000000001 1000 50 0.71286273 +78 682.44 686.3175000000001 1000 50 0.6534926 +79 701.8275 705.705 1000 50 0.986766 +80 705.705 709.5825000000001 1000 50 0.74507487 +81 713.46 717.3375000000001 1000 50 0.99747187 +82 721.215 725.0925000000001 1000 50 0.7689505 +83 752.235 756.1125000000001 1000 50 0.92405784 +84 779.3775 783.2550000000001 1000 50 0.78138787 +85 783.255 787.1325 1000 50 0.9993845 +86 787.1325 791.0100000000001 1000 50 0.5201826 +87 794.8875 798.7650000000001 1000 50 0.993057 +88 806.52 810.3975 1000 50 0.96351254 +89 814.275 818.1525 1000 50 0.70011127 +90 818.1525 822.0300000000001 1000 50 0.8586369 +91 853.05 856.9275 1000 50 0.9719624 +92 860.805 864.6825 1000 50 0.8814399 +93 864.6825 868.5600000000001 1000 50 0.9500503 +94 872.4375 876.315 1000 50 0.9714434 +95 876.315 880.1925000000001 1000 50 0.99932253 +96 884.07 887.9475000000001 1000 50 0.6905149 +97 895.7025 899.58 1000 50 0.97801733 +98 907.335 911.2125000000001 1000 50 0.67075187 +99 938.355 942.2325000000001 1000 50 0.91661733 +100 969.375 973.2525 1000 50 0.6308295 +101 977.13 981.0075 1000 50 0.98172504 +102 1027.5375 1031.415 1000 50 0.7287375 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_23-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_23-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..683a06af7492ffb3f7f3e6af42c508501dde3828 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_23-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,43 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 23.265 27.142500000000002 1000 50 0.7374355 +2 38.775 42.652499999999996 1000 50 0.985013 +3 46.53 50.4075 1000 50 0.6815901 +4 50.4075 54.285 1000 50 0.9980901 +5 54.285 58.162499999999994 1000 50 0.9709055 +6 58.1625 62.04 1000 50 0.7225387 +7 73.6725 77.55 1000 50 0.9628655 +8 170.61 174.4875 1000 50 0.5700627 +9 182.2425 186.12 1000 50 0.9459983 +10 193.875 197.7525 1000 50 0.5504494 +11 197.7525 201.63 1000 50 0.8426672 +12 201.63 205.5075 1000 50 0.91720897 +13 209.385 213.2625 1000 50 0.93805474 +14 217.14 221.01749999999998 1000 50 0.96390986 +15 221.0175 224.895 1000 50 0.97480565 +16 224.895 228.7725 1000 50 0.54706746 +17 236.5275 240.405 1000 50 0.8595653 +18 244.2825 248.16 1000 50 0.7187333 +19 263.67 267.5475 1000 50 0.96094215 +20 306.3225 310.2 1000 50 0.52060324 +21 348.975 352.8525 1000 50 0.73689497 +22 356.73 360.6075 1000 50 0.9989993 +23 372.24 376.1175 1000 50 0.99253815 +24 383.8725 387.75 1000 50 0.9990287 +25 395.505 399.3825 1000 50 0.9764163 +26 399.3825 403.26 1000 50 0.9994653 +27 403.26 407.1375 1000 50 0.64415646 +28 407.1375 411.015 1000 50 0.98261523 +29 411.015 414.8925 1000 50 0.99741226 +30 418.77 422.6475 1000 50 0.9652313 +31 422.6475 426.525 1000 50 0.92151904 +32 430.4025 434.28 1000 50 0.9978567 +33 442.035 445.9125 1000 50 0.6684988 +34 445.9125 449.79 1000 50 0.7940301 +35 457.545 461.4225 1000 50 0.9983382 +36 469.1775 473.055 1000 50 0.9992048 +37 492.4425 496.32 1000 50 0.9438042 +38 496.32 500.1975 1000 50 0.71681833 +39 500.1975 504.075 1000 50 0.99913496 +40 507.9525 511.83 1000 50 0.6072322 +41 511.83 515.7075 1000 50 0.5078447 +42 527.34 531.2175000000001 1000 50 0.97210747 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_23-12-32_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_23-12-32_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0377ecd1cffb5130de3f29f8f42bc8b7dcf65df2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-19_2kHz/channelA_2021-03-19_23-12-32_annot_2022-11-30_01.txt @@ -0,0 +1,36 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 182.2425 186.12 1000 50 0.9340464 +2 189.9975 193.875 1000 50 0.72842866 +3 201.63 205.5075 1000 50 0.9763882 +4 205.5075 209.385 1000 50 0.6843384 +5 209.385 213.2625 1000 50 0.99995005 +6 213.2625 217.14 1000 50 0.9928558 +7 232.65 236.5275 1000 50 0.9997377 +8 236.5275 240.405 1000 50 0.99994123 +9 244.2825 248.16 1000 50 0.97946715 +10 248.16 252.0375 1000 50 0.9993716 +11 252.0375 255.915 1000 50 0.5620414 +12 255.915 259.7925 1000 50 0.9849963 +13 259.7925 263.67 1000 50 0.6927433 +14 263.67 267.5475 1000 50 0.5533651 +15 267.5475 271.425 1000 50 0.861837 +16 279.18 283.0575 1000 50 0.99168175 +17 329.5875 333.465 1000 50 0.5613118 +18 348.975 352.8525 1000 50 0.978488 +19 360.6075 364.485 1000 50 0.95403236 +20 372.24 376.1175 1000 50 0.8808438 +21 395.505 399.3825 1000 50 0.8824531 +22 651.42 655.2975 1000 50 0.64902735 +23 666.93 670.8075 1000 50 0.88091683 +24 678.5625 682.44 1000 50 0.69314945 +25 697.95 701.8275000000001 1000 50 0.97915477 +26 701.8275 705.705 1000 50 0.946604 +27 705.705 709.5825000000001 1000 50 0.6726856 +28 713.46 717.3375000000001 1000 50 0.99926347 +29 717.3375 721.215 1000 50 0.9565217 +30 721.215 725.0925000000001 1000 50 0.9996568 +31 725.0925 728.97 1000 50 0.974743 +32 728.97 732.8475000000001 1000 50 0.991165 +33 732.8475 736.725 1000 50 0.9451255 +34 736.725 740.6025000000001 1000 50 0.96391565 +35 744.48 748.3575000000001 1000 50 0.9987675 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_00-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_00-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..090164ce89c9230fd7cd42ba24d8950591d13fe4 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_00-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,100 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.70128673 +2 11.6325 15.51 1000 50 0.67668873 +3 15.51 19.3875 1000 50 0.9806294 +4 54.285 58.162499999999994 1000 50 0.6514439 +5 85.305 89.1825 1000 50 0.6417503 +6 127.9575 131.835 1000 50 0.99034554 +7 155.1 158.9775 1000 50 0.5372685 +8 162.855 166.7325 1000 50 0.7112677 +9 174.4875 178.365 1000 50 0.96505183 +10 186.12 189.9975 1000 50 0.8354738 +11 193.875 197.7525 1000 50 0.6169785 +12 209.385 213.2625 1000 50 0.9856252 +13 255.915 259.7925 1000 50 0.9999951 +14 263.67 267.5475 1000 50 0.97857326 +15 267.5475 271.425 1000 50 0.8700601 +16 271.425 275.3025 1000 50 0.9805714 +17 275.3025 279.18 1000 50 0.9999882 +18 286.935 290.8125 1000 50 0.9803028 +19 290.8125 294.69 1000 50 0.57397443 +20 294.69 298.5675 1000 50 0.9999927 +21 298.5675 302.445 1000 50 0.8783615 +22 302.445 306.3225 1000 50 0.5803983 +23 306.3225 310.2 1000 50 0.9999999 +24 314.0775 317.955 1000 50 0.9999981 +25 317.955 321.8325 1000 50 0.9820096 +26 321.8325 325.71 1000 50 0.8556365 +27 325.71 329.5875 1000 50 0.9998901 +28 329.5875 333.465 1000 50 0.98966146 +29 337.3425 341.21999999999997 1000 50 0.86562246 +30 348.975 352.8525 1000 50 0.9367419 +31 352.8525 356.73 1000 50 0.9727011 +32 356.73 360.6075 1000 50 0.9571059 +33 364.485 368.3625 1000 50 0.9879215 +34 368.3625 372.24 1000 50 0.9962256 +35 372.24 376.1175 1000 50 0.9183307 +36 379.995 383.8725 1000 50 0.9663929 +37 383.8725 387.75 1000 50 0.9906617 +38 387.75 391.6275 1000 50 0.6646297 +39 391.6275 395.505 1000 50 0.9992526 +40 414.8925 418.77 1000 50 0.99205315 +41 442.035 445.9125 1000 50 0.9619246 +42 453.6675 457.545 1000 50 0.5832178 +43 465.3 469.1775 1000 50 0.96185523 +44 469.1775 473.055 1000 50 0.6345802 +45 476.9325 480.81 1000 50 0.80808234 +46 488.565 492.4425 1000 50 0.9050282 +47 507.9525 511.83 1000 50 0.8776581 +48 519.585 523.4625000000001 1000 50 0.99835074 +49 531.2175 535.095 1000 50 0.9999341 +50 538.9725 542.85 1000 50 0.9682871 +51 542.85 546.7275000000001 1000 50 0.97933275 +52 550.605 554.4825000000001 1000 50 0.99876046 +53 562.2375 566.115 1000 50 0.83402634 +54 573.87 577.7475000000001 1000 50 0.99774265 +55 585.5025 589.3800000000001 1000 50 0.99990654 +56 589.38 593.2575 1000 50 0.8476645 +57 593.2575 597.1350000000001 1000 50 0.98374695 +58 597.135 601.0125 1000 50 0.9873246 +59 601.0125 604.8900000000001 1000 50 0.7865988 +60 604.89 608.7675 1000 50 0.8525028 +61 616.5225 620.4000000000001 1000 50 0.774297 +62 628.155 632.0325 1000 50 0.9943395 +63 635.91 639.7875 1000 50 0.6384421 +64 639.7875 643.6650000000001 1000 50 0.999943 +65 659.175 663.0525 1000 50 0.99968123 +66 663.0525 666.9300000000001 1000 50 0.85694677 +67 674.685 678.5625 1000 50 0.9274744 +68 678.5625 682.44 1000 50 0.9518982 +69 682.44 686.3175000000001 1000 50 0.51960987 +70 690.195 694.0725000000001 1000 50 0.8174296 +71 697.95 701.8275000000001 1000 50 0.6089148 +72 701.8275 705.705 1000 50 0.5100663 +73 705.705 709.5825000000001 1000 50 0.6612777 +74 709.5825 713.46 1000 50 0.95425296 +75 717.3375 721.215 1000 50 0.9990206 +76 725.0925 728.97 1000 50 0.9965508 +77 728.97 732.8475000000001 1000 50 0.9983303 +78 732.8475 736.725 1000 50 0.97470766 +79 748.3575 752.235 1000 50 0.69636405 +80 756.1125 759.99 1000 50 0.88555694 +81 763.8675 767.745 1000 50 0.9514138 +82 775.5 779.3775 1000 50 0.99639904 +83 779.3775 783.2550000000001 1000 50 0.92375827 +84 783.255 787.1325 1000 50 0.8227988 +85 787.1325 791.0100000000001 1000 50 0.9737814 +86 791.01 794.8875 1000 50 0.99810517 +87 794.8875 798.7650000000001 1000 50 0.999997 +88 798.765 802.6425 1000 50 0.96976817 +89 802.6425 806.5200000000001 1000 50 0.99742645 +90 806.52 810.3975 1000 50 0.9910245 +91 810.3975 814.2750000000001 1000 50 0.982156 +92 814.275 818.1525 1000 50 1.0 +93 818.1525 822.0300000000001 1000 50 0.80511427 +94 822.03 825.9075 1000 50 0.9998766 +95 825.9075 829.7850000000001 1000 50 0.99999607 +96 833.6625 837.5400000000001 1000 50 1.0 +97 837.54 841.4175 1000 50 0.9986992 +98 841.4175 845.2950000000001 1000 50 0.9974522 +99 845.295 849.1725 1000 50 0.99876803 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_00-17-48_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_00-17-48_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5a2cc7ede66134cad12125741468967bb255110b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_00-17-48_annot_2022-11-30_01.txt @@ -0,0 +1,64 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.54322886 +2 3.8775 7.755 1000 50 0.98694336 +3 7.755 11.6325 1000 50 0.999111 +4 11.6325 15.51 1000 50 0.5621631 +5 15.51 19.3875 1000 50 0.7535101 +6 19.3875 23.265 1000 50 0.9529898 +7 23.265 27.142500000000002 1000 50 0.9887573 +8 27.1425 31.02 1000 50 0.99982125 +9 42.6525 46.53 1000 50 0.63324976 +10 50.4075 54.285 1000 50 0.99946016 +11 54.285 58.162499999999994 1000 50 0.993461 +12 62.04 65.9175 1000 50 0.52256453 +13 65.9175 69.795 1000 50 0.5135892 +14 89.1825 93.06 1000 50 0.5292735 +15 93.06 96.9375 1000 50 0.92901975 +16 100.815 104.6925 1000 50 0.50380003 +17 104.6925 108.57 1000 50 0.57096946 +18 116.325 120.2025 1000 50 0.9970202 +19 127.9575 131.835 1000 50 0.98929346 +20 158.9775 162.855 1000 50 0.9860568 +21 178.365 182.2425 1000 50 0.6284411 +22 193.875 197.7525 1000 50 0.9190147 +23 197.7525 201.63 1000 50 0.6564203 +24 209.385 213.2625 1000 50 0.89525324 +25 217.14 221.01749999999998 1000 50 0.8721034 +26 221.0175 224.895 1000 50 0.8928866 +27 224.895 228.7725 1000 50 0.9991596 +28 228.7725 232.65 1000 50 0.9983535 +29 232.65 236.5275 1000 50 0.9708438 +30 236.5275 240.405 1000 50 0.99779356 +31 240.405 244.2825 1000 50 0.8975407 +32 244.2825 248.16 1000 50 0.6612144 +33 248.16 252.0375 1000 50 0.9995339 +34 255.915 259.7925 1000 50 0.8543599 +35 259.7925 263.67 1000 50 0.9934968 +36 267.5475 271.425 1000 50 0.9999999 +37 271.425 275.3025 1000 50 0.9999994 +38 279.18 283.0575 1000 50 0.9996543 +39 283.0575 286.935 1000 50 0.9730118 +40 290.8125 294.69 1000 50 0.99910825 +41 294.69 298.5675 1000 50 0.543715 +42 298.5675 302.445 1000 50 0.84759134 +43 302.445 306.3225 1000 50 0.9999993 +44 306.3225 310.2 1000 50 0.6102606 +45 310.2 314.0775 1000 50 0.9996234 +46 314.0775 317.955 1000 50 0.9771236 +47 321.8325 325.71 1000 50 0.98468935 +48 325.71 329.5875 1000 50 0.8928445 +49 329.5875 333.465 1000 50 1.0 +50 333.465 337.3425 1000 50 0.9999757 +51 337.3425 341.21999999999997 1000 50 0.9999343 +52 348.975 352.8525 1000 50 0.6592295 +53 352.8525 356.73 1000 50 0.9994593 +54 360.6075 364.485 1000 50 0.9595427 +55 364.485 368.3625 1000 50 0.89402425 +56 372.24 376.1175 1000 50 0.97671664 +57 379.995 383.8725 1000 50 0.89521587 +58 387.75 391.6275 1000 50 0.8341742 +59 407.1375 411.015 1000 50 0.8193405 +60 422.6475 426.525 1000 50 0.7028098 +61 426.525 430.4025 1000 50 0.94171745 +62 430.4025 434.28 1000 50 0.9053894 +63 434.28 438.15749999999997 1000 50 0.99147356 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_01-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_01-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..5549dee70b773d09ec22bf9ddf6181faf73a5db0 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_01-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,213 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.78882754 +2 7.755 11.6325 1000 50 0.999966 +3 11.6325 15.51 1000 50 0.9660858 +4 15.51 19.3875 1000 50 0.97731835 +5 19.3875 23.265 1000 50 0.9993963 +6 23.265 27.142500000000002 1000 50 0.83712393 +7 31.02 34.8975 1000 50 0.99998224 +8 34.8975 38.775 1000 50 0.94794565 +9 38.775 42.652499999999996 1000 50 0.9989054 +10 42.6525 46.53 1000 50 0.9999615 +11 46.53 50.4075 1000 50 0.9409192 +12 50.4075 54.285 1000 50 0.8721159 +13 54.285 58.162499999999994 1000 50 0.52435637 +14 58.1625 62.04 1000 50 0.59769833 +15 65.9175 69.795 1000 50 0.72563857 +16 69.795 73.6725 1000 50 0.6916983 +17 73.6725 77.55 1000 50 0.80097485 +18 77.55 81.4275 1000 50 0.9729565 +19 81.4275 85.30499999999999 1000 50 0.7361559 +20 85.305 89.1825 1000 50 0.73582286 +21 89.1825 93.06 1000 50 0.9345519 +22 93.06 96.9375 1000 50 0.9974564 +23 96.9375 100.815 1000 50 0.7214446 +24 100.815 104.6925 1000 50 0.50947934 +25 108.57 112.44749999999999 1000 50 0.6139432 +26 116.325 120.2025 1000 50 0.93781877 +27 120.2025 124.08 1000 50 0.7062555 +28 124.08 127.9575 1000 50 0.90509707 +29 127.9575 131.835 1000 50 0.5723212 +30 131.835 135.7125 1000 50 0.91908073 +31 139.59 143.4675 1000 50 0.9209306 +32 155.1 158.9775 1000 50 0.95464927 +33 166.7325 170.60999999999999 1000 50 0.9735478 +34 170.61 174.4875 1000 50 0.98253655 +35 182.2425 186.12 1000 50 0.60781556 +36 186.12 189.9975 1000 50 0.5653936 +37 189.9975 193.875 1000 50 0.9836647 +38 193.875 197.7525 1000 50 0.6180898 +39 197.7525 201.63 1000 50 0.8801787 +40 205.5075 209.385 1000 50 0.99360996 +41 209.385 213.2625 1000 50 0.98249024 +42 217.14 221.01749999999998 1000 50 0.9998307 +43 221.0175 224.895 1000 50 0.9936103 +44 224.895 228.7725 1000 50 0.9998179 +45 228.7725 232.65 1000 50 0.8390997 +46 236.5275 240.405 1000 50 0.99998534 +47 248.16 252.0375 1000 50 0.8871247 +48 252.0375 255.915 1000 50 0.9998209 +49 255.915 259.7925 1000 50 0.9999994 +50 263.67 267.5475 1000 50 0.99982625 +51 267.5475 271.425 1000 50 0.99998915 +52 271.425 275.3025 1000 50 0.6067943 +53 275.3025 279.18 1000 50 0.99997497 +54 279.18 283.0575 1000 50 0.5153731 +55 283.0575 286.935 1000 50 0.58227056 +56 286.935 290.8125 1000 50 0.9999999 +57 290.8125 294.69 1000 50 0.8178481 +58 294.69 298.5675 1000 50 0.9999591 +59 298.5675 302.445 1000 50 0.99932444 +60 302.445 306.3225 1000 50 0.9602807 +61 306.3225 310.2 1000 50 0.996086 +62 310.2 314.0775 1000 50 0.9968823 +63 314.0775 317.955 1000 50 0.99462646 +64 317.955 321.8325 1000 50 0.99999857 +65 325.71 329.5875 1000 50 0.99998224 +66 329.5875 333.465 1000 50 0.9999821 +67 333.465 337.3425 1000 50 0.5660469 +68 337.3425 341.21999999999997 1000 50 0.9972269 +69 341.22 345.0975 1000 50 0.99950993 +70 345.0975 348.975 1000 50 0.9897182 +71 348.975 352.8525 1000 50 0.9972277 +72 352.8525 356.73 1000 50 0.9999808 +73 356.73 360.6075 1000 50 0.68589056 +74 360.6075 364.485 1000 50 0.9918058 +75 364.485 368.3625 1000 50 0.99994767 +76 368.3625 372.24 1000 50 0.99943453 +77 372.24 376.1175 1000 50 0.97381365 +78 376.1175 379.995 1000 50 0.99867 +79 379.995 383.8725 1000 50 0.8941489 +80 383.8725 387.75 1000 50 0.9977024 +81 387.75 391.6275 1000 50 0.9691572 +82 395.505 399.3825 1000 50 0.9549187 +83 399.3825 403.26 1000 50 0.841679 +84 407.1375 411.015 1000 50 0.99095577 +85 414.8925 418.77 1000 50 0.7122388 +86 422.6475 426.525 1000 50 0.9245221 +87 434.28 438.15749999999997 1000 50 0.98920023 +88 442.035 445.9125 1000 50 0.9551795 +89 449.79 453.6675 1000 50 0.6249775 +90 453.6675 457.545 1000 50 0.7062809 +91 469.1775 473.055 1000 50 0.9986939 +92 476.9325 480.81 1000 50 0.9763039 +93 480.81 484.6875 1000 50 0.8032666 +94 488.565 492.4425 1000 50 0.9645097 +95 496.32 500.1975 1000 50 0.86323005 +96 500.1975 504.075 1000 50 0.8627097 +97 504.075 507.9525 1000 50 0.9998204 +98 511.83 515.7075 1000 50 0.999323 +99 519.585 523.4625000000001 1000 50 0.9994931 +100 527.34 531.2175000000001 1000 50 0.98613733 +101 531.2175 535.095 1000 50 0.9984074 +102 538.9725 542.85 1000 50 0.51505184 +103 542.85 546.7275000000001 1000 50 0.9999943 +104 546.7275 550.605 1000 50 0.9984394 +105 550.605 554.4825000000001 1000 50 0.96251845 +106 554.4825 558.36 1000 50 0.99999905 +107 558.36 562.2375000000001 1000 50 0.96591425 +108 566.115 569.9925000000001 1000 50 0.91487545 +109 569.9925 573.87 1000 50 0.99964535 +110 573.87 577.7475000000001 1000 50 0.99963367 +111 581.625 585.5025 1000 50 0.65592545 +112 585.5025 589.3800000000001 1000 50 0.9999995 +113 589.38 593.2575 1000 50 0.9983693 +114 593.2575 597.1350000000001 1000 50 0.62668985 +115 597.135 601.0125 1000 50 0.9353394 +116 601.0125 604.8900000000001 1000 50 0.94446206 +117 616.5225 620.4000000000001 1000 50 0.7819195 +118 624.2775 628.1550000000001 1000 50 0.99780494 +119 635.91 639.7875 1000 50 0.9861979 +120 651.42 655.2975 1000 50 0.94094336 +121 659.175 663.0525 1000 50 0.67517304 +122 686.3175 690.195 1000 50 0.71634525 +123 690.195 694.0725000000001 1000 50 0.801397 +124 694.0725 697.95 1000 50 0.6421752 +125 697.95 701.8275000000001 1000 50 0.5362427 +126 705.705 709.5825000000001 1000 50 0.6605431 +127 721.215 725.0925000000001 1000 50 0.83452 +128 732.8475 736.725 1000 50 0.5547875 +129 736.725 740.6025000000001 1000 50 0.72861534 +130 752.235 756.1125000000001 1000 50 0.76756364 +131 756.1125 759.99 1000 50 0.6429627 +132 759.99 763.8675000000001 1000 50 0.6249572 +133 767.745 771.6225000000001 1000 50 0.99843246 +134 771.6225 775.5 1000 50 0.5561437 +135 775.5 779.3775 1000 50 0.5059606 +136 791.01 794.8875 1000 50 0.8251143 +137 794.8875 798.7650000000001 1000 50 0.9570988 +138 798.765 802.6425 1000 50 0.99718577 +139 802.6425 806.5200000000001 1000 50 0.99920976 +140 814.275 818.1525 1000 50 0.9996636 +141 818.1525 822.0300000000001 1000 50 0.9999641 +142 825.9075 829.7850000000001 1000 50 0.9730049 +143 829.785 833.6625 1000 50 0.97483975 +144 837.54 841.4175 1000 50 0.9999949 +145 841.4175 845.2950000000001 1000 50 0.6564597 +146 845.295 849.1725 1000 50 0.99963486 +147 856.9275 860.8050000000001 1000 50 0.8922122 +148 864.6825 868.5600000000001 1000 50 0.69868314 +149 872.4375 876.315 1000 50 0.99891925 +150 880.1925 884.07 1000 50 0.99999976 +151 884.07 887.9475000000001 1000 50 0.99633884 +152 887.9475 891.825 1000 50 0.6224494 +153 891.825 895.7025000000001 1000 50 0.7466799 +154 895.7025 899.58 1000 50 0.99923503 +155 903.4575 907.335 1000 50 0.991968 +156 907.335 911.2125000000001 1000 50 0.93940896 +157 911.2125 915.09 1000 50 0.97684985 +158 915.09 918.9675000000001 1000 50 0.9958027 +159 918.9675 922.845 1000 50 0.9649595 +160 922.845 926.7225000000001 1000 50 0.74598455 +161 926.7225 930.6 1000 50 0.99765044 +162 934.4775 938.355 1000 50 0.9911107 +163 942.2325 946.11 1000 50 0.5494509 +164 949.9875 953.865 1000 50 0.99904734 +165 953.865 957.7425000000001 1000 50 0.9818541 +166 965.4975 969.375 1000 50 0.534138 +167 969.375 973.2525 1000 50 0.9594685 +168 973.2525 977.1300000000001 1000 50 0.9843829 +169 977.13 981.0075 1000 50 0.99999917 +170 981.0075 984.8850000000001 1000 50 0.99935 +171 984.885 988.7625 1000 50 0.9998276 +172 988.7625 992.6400000000001 1000 50 0.9946315 +173 992.64 996.5175 1000 50 0.9986563 +174 996.5175 1000.3950000000001 1000 50 0.8958374 +175 1000.395 1004.2725 1000 50 0.99874854 +176 1004.2725 1008.1500000000001 1000 50 0.8869494 +177 1008.15 1012.0275 1000 50 0.97842133 +178 1019.7825 1023.6600000000001 1000 50 0.9987739 +179 1023.66 1027.5375 1000 50 0.9997646 +180 1035.2925 1039.17 1000 50 0.9858518 +181 1039.17 1043.0475000000001 1000 50 0.8981378 +182 1043.0475 1046.925 1000 50 0.99568766 +183 1046.925 1050.8025 1000 50 0.7372139 +184 1050.8025 1054.68 1000 50 0.61289287 +185 1054.68 1058.5575000000001 1000 50 0.9922959 +186 1058.5575 1062.435 1000 50 0.9895644 +187 1062.435 1066.3125 1000 50 0.6971423 +188 1066.3125 1070.19 1000 50 0.9995403 +189 1070.19 1074.0675 1000 50 0.99162126 +190 1074.0675 1077.9450000000002 1000 50 0.9999763 +191 1077.945 1081.8225 1000 50 0.9996 +192 1081.8225 1085.7 1000 50 0.9998411 +193 1085.7 1089.5775 1000 50 0.9803429 +194 1089.5775 1093.4550000000002 1000 50 0.9999491 +195 1093.455 1097.3325 1000 50 0.9999999 +196 1097.3325 1101.21 1000 50 0.98701537 +197 1101.21 1105.0875 1000 50 0.99998176 +198 1105.0875 1108.9650000000001 1000 50 0.96463823 +199 1108.965 1112.8425 1000 50 0.9869543 +200 1112.8425 1116.72 1000 50 0.9999981 +201 1116.72 1120.5975 1000 50 0.931541 +202 1120.5975 1124.4750000000001 1000 50 0.9999629 +203 1124.475 1128.3525 1000 50 0.99990356 +204 1128.3525 1132.23 1000 50 0.9969337 +205 1132.23 1136.1075 1000 50 0.99752206 +206 1136.1075 1139.9850000000001 1000 50 0.8234493 +207 1143.8625 1147.74 1000 50 0.9997646 +208 1147.74 1151.6175 1000 50 0.99998987 +209 1151.6175 1155.4950000000001 1000 50 0.9999989 +210 1155.495 1159.3725 1000 50 0.9992347 +211 1159.3725 1163.25 1000 50 0.951211 +212 1163.25 1167.1275 1000 50 0.9993862 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_01-24-57_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_01-24-57_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0c236972a12d3580ebc241b96b4788e45e4ec416 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_01-24-57_annot_2022-11-30_01.txt @@ -0,0 +1,4 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9971411 +2 3.8775 7.755 1000 50 0.9907664 +3 7.755 11.6325 1000 50 0.8202739 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_02-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_02-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..765cd18c6ce70f17033de9a8cfc5ef6ce53c4081 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_02-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,248 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.88843477 +2 3.8775 7.755 1000 50 0.96631026 +3 7.755 11.6325 1000 50 0.71969545 +4 11.6325 15.51 1000 50 0.7888312 +5 23.265 27.142500000000002 1000 50 0.6894862 +6 27.1425 31.02 1000 50 0.7146572 +7 46.53 50.4075 1000 50 0.9648909 +8 50.4075 54.285 1000 50 0.54812914 +9 54.285 58.162499999999994 1000 50 0.54301804 +10 58.1625 62.04 1000 50 0.65498745 +11 62.04 65.9175 1000 50 0.8922762 +12 81.4275 85.30499999999999 1000 50 0.62659484 +13 85.305 89.1825 1000 50 0.76068944 +14 89.1825 93.06 1000 50 0.7631381 +15 100.815 104.6925 1000 50 0.9682984 +16 104.6925 108.57 1000 50 0.63566405 +17 127.9575 131.835 1000 50 0.9841485 +18 131.835 135.7125 1000 50 0.875645 +19 135.7125 139.59 1000 50 0.61619335 +20 143.4675 147.345 1000 50 0.66286474 +21 151.2225 155.1 1000 50 0.9963697 +22 155.1 158.9775 1000 50 0.98681855 +23 158.9775 162.855 1000 50 0.97119594 +24 174.4875 178.365 1000 50 0.6799093 +25 182.2425 186.12 1000 50 0.85768986 +26 193.875 197.7525 1000 50 0.99617743 +27 201.63 205.5075 1000 50 0.9774045 +28 205.5075 209.385 1000 50 0.5470938 +29 209.385 213.2625 1000 50 0.6276949 +30 221.0175 224.895 1000 50 0.5855915 +31 236.5275 240.405 1000 50 0.6623415 +32 244.2825 248.16 1000 50 0.52540404 +33 252.0375 255.915 1000 50 0.6961113 +34 255.915 259.7925 1000 50 0.5203152 +35 275.3025 279.18 1000 50 0.6976813 +36 294.69 298.5675 1000 50 0.6784793 +37 302.445 306.3225 1000 50 0.7153259 +38 317.955 321.8325 1000 50 0.68160146 +39 321.8325 325.71 1000 50 0.515909 +40 329.5875 333.465 1000 50 0.9954657 +41 333.465 337.3425 1000 50 0.9989502 +42 337.3425 341.21999999999997 1000 50 0.75393784 +43 341.22 345.0975 1000 50 0.9964198 +44 345.0975 348.975 1000 50 0.760414 +45 348.975 352.8525 1000 50 0.9997787 +46 352.8525 356.73 1000 50 0.99693155 +47 356.73 360.6075 1000 50 0.9981452 +48 360.6075 364.485 1000 50 0.99999833 +49 364.485 368.3625 1000 50 0.74182373 +50 368.3625 372.24 1000 50 0.99999905 +51 372.24 376.1175 1000 50 0.9998789 +52 376.1175 379.995 1000 50 0.6914656 +53 379.995 383.8725 1000 50 0.9996704 +54 383.8725 387.75 1000 50 0.9954749 +55 387.75 391.6275 1000 50 0.9791021 +56 391.6275 395.505 1000 50 0.9973277 +57 399.3825 403.26 1000 50 0.5161484 +58 403.26 407.1375 1000 50 0.99767977 +59 414.8925 418.77 1000 50 0.996561 +60 422.6475 426.525 1000 50 0.76749617 +61 434.28 438.15749999999997 1000 50 0.9659249 +62 445.9125 449.79 1000 50 0.94141454 +63 449.79 453.6675 1000 50 0.5997268 +64 461.4225 465.3 1000 50 0.9984842 +65 469.1775 473.055 1000 50 0.8550428 +66 473.055 476.9325 1000 50 0.9997273 +67 476.9325 480.81 1000 50 0.97157806 +68 480.81 484.6875 1000 50 0.82775766 +69 484.6875 488.565 1000 50 0.999997 +70 488.565 492.4425 1000 50 0.94277817 +71 492.4425 496.32 1000 50 0.98162717 +72 496.32 500.1975 1000 50 0.99998665 +73 500.1975 504.075 1000 50 0.97192276 +74 504.075 507.9525 1000 50 0.99999475 +75 507.9525 511.83 1000 50 0.5791055 +76 515.7075 519.585 1000 50 0.9999933 +77 519.585 523.4625000000001 1000 50 0.9979128 +78 523.4625 527.34 1000 50 0.9997197 +79 527.34 531.2175000000001 1000 50 1.0 +80 531.2175 535.095 1000 50 0.5820719 +81 535.095 538.9725000000001 1000 50 0.99795926 +82 538.9725 542.85 1000 50 0.99991274 +83 542.85 546.7275000000001 1000 50 0.99624014 +84 546.7275 550.605 1000 50 0.999997 +85 554.4825 558.36 1000 50 0.9976338 +86 558.36 562.2375000000001 1000 50 0.99999976 +87 562.2375 566.115 1000 50 0.82287705 +88 566.115 569.9925000000001 1000 50 0.953863 +89 569.9925 573.87 1000 50 0.8487113 +90 573.87 577.7475000000001 1000 50 0.99579865 +91 581.625 585.5025 1000 50 0.98445314 +92 585.5025 589.3800000000001 1000 50 0.73045325 +93 589.38 593.2575 1000 50 0.98878956 +94 601.0125 604.8900000000001 1000 50 0.9901473 +95 604.89 608.7675 1000 50 0.8106489 +96 612.645 616.5225 1000 50 0.8024784 +97 616.5225 620.4000000000001 1000 50 0.97475964 +98 620.4 624.2775 1000 50 0.9938415 +99 624.2775 628.1550000000001 1000 50 0.6479852 +100 628.155 632.0325 1000 50 0.88208663 +101 632.0325 635.9100000000001 1000 50 0.71221733 +102 635.91 639.7875 1000 50 0.7501014 +103 639.7875 643.6650000000001 1000 50 0.6752003 +104 643.665 647.5425 1000 50 0.97867703 +105 655.2975 659.1750000000001 1000 50 0.99453187 +106 659.175 663.0525 1000 50 0.94493055 +107 663.0525 666.9300000000001 1000 50 0.99985504 +108 666.93 670.8075 1000 50 0.98301136 +109 670.8075 674.6850000000001 1000 50 0.9994911 +110 674.685 678.5625 1000 50 0.99999976 +111 678.5625 682.44 1000 50 0.968141 +112 686.3175 690.195 1000 50 0.9991371 +113 690.195 694.0725000000001 1000 50 0.9635703 +114 694.0725 697.95 1000 50 0.9979068 +115 697.95 701.8275000000001 1000 50 0.99199766 +116 701.8275 705.705 1000 50 0.99371064 +117 705.705 709.5825000000001 1000 50 0.99663013 +118 709.5825 713.46 1000 50 0.7865351 +119 713.46 717.3375000000001 1000 50 0.99656916 +120 717.3375 721.215 1000 50 0.9968485 +121 721.215 725.0925000000001 1000 50 0.9540139 +122 736.725 740.6025000000001 1000 50 0.77984303 +123 740.6025 744.48 1000 50 0.9973857 +124 748.3575 752.235 1000 50 0.54445755 +125 752.235 756.1125000000001 1000 50 0.7762947 +126 756.1125 759.99 1000 50 0.7188587 +127 763.8675 767.745 1000 50 0.94819605 +128 771.6225 775.5 1000 50 0.99192655 +129 779.3775 783.2550000000001 1000 50 0.75247157 +130 783.255 787.1325 1000 50 0.9865954 +131 791.01 794.8875 1000 50 0.86689883 +132 798.765 802.6425 1000 50 0.6791029 +133 802.6425 806.5200000000001 1000 50 0.7864736 +134 806.52 810.3975 1000 50 0.63954026 +135 810.3975 814.2750000000001 1000 50 0.5131171 +136 814.275 818.1525 1000 50 0.58397484 +137 833.6625 837.5400000000001 1000 50 0.9811638 +138 841.4175 845.2950000000001 1000 50 0.98363346 +139 845.295 849.1725 1000 50 0.6841819 +140 853.05 856.9275 1000 50 0.9955101 +141 864.6825 868.5600000000001 1000 50 0.9830049 +142 868.56 872.4375 1000 50 0.7939649 +143 876.315 880.1925000000001 1000 50 0.9999441 +144 880.1925 884.07 1000 50 0.96902686 +145 884.07 887.9475000000001 1000 50 0.9992551 +146 887.9475 891.825 1000 50 0.74613255 +147 891.825 895.7025000000001 1000 50 0.9986083 +148 895.7025 899.58 1000 50 0.5291401 +149 907.335 911.2125000000001 1000 50 0.6026089 +150 911.2125 915.09 1000 50 0.9980946 +151 915.09 918.9675000000001 1000 50 0.9827587 +152 922.845 926.7225000000001 1000 50 0.9836569 +153 930.6 934.4775000000001 1000 50 0.7631228 +154 934.4775 938.355 1000 50 0.77360964 +155 942.2325 946.11 1000 50 0.68565536 +156 953.865 957.7425000000001 1000 50 0.53404796 +157 965.4975 969.375 1000 50 0.8861354 +158 969.375 973.2525 1000 50 0.55659217 +159 973.2525 977.1300000000001 1000 50 0.978865 +160 981.0075 984.8850000000001 1000 50 0.9768786 +161 984.885 988.7625 1000 50 0.9812232 +162 996.5175 1000.3950000000001 1000 50 0.7008181 +163 1000.395 1004.2725 1000 50 0.85059345 +164 1004.2725 1008.1500000000001 1000 50 0.64275616 +165 1008.15 1012.0275 1000 50 0.98359585 +166 1015.905 1019.7825 1000 50 0.68429345 +167 1023.66 1027.5375 1000 50 0.9346807 +168 1027.5375 1031.415 1000 50 0.932599 +169 1031.415 1035.2925 1000 50 0.9899587 +170 1035.2925 1039.17 1000 50 0.86551994 +171 1039.17 1043.0475000000001 1000 50 0.9968436 +172 1046.925 1050.8025 1000 50 0.99056923 +173 1058.5575 1062.435 1000 50 0.72119385 +174 1062.435 1066.3125 1000 50 0.5810467 +175 1070.19 1074.0675 1000 50 0.99953187 +176 1074.0675 1077.9450000000002 1000 50 0.70739734 +177 1093.455 1097.3325 1000 50 0.8858094 +178 1097.3325 1101.21 1000 50 0.9931398 +179 1101.21 1105.0875 1000 50 0.52789056 +180 1108.965 1112.8425 1000 50 0.861887 +181 1112.8425 1116.72 1000 50 0.98961467 +182 1116.72 1120.5975 1000 50 0.9981092 +183 1120.5975 1124.4750000000001 1000 50 0.99201363 +184 1124.475 1128.3525 1000 50 0.7732417 +185 1128.3525 1132.23 1000 50 0.9631747 +186 1139.985 1143.8625 1000 50 0.9924515 +187 1143.8625 1147.74 1000 50 0.7014748 +188 1147.74 1151.6175 1000 50 0.71117586 +189 1151.6175 1155.4950000000001 1000 50 0.8311252 +190 1155.495 1159.3725 1000 50 0.99977416 +191 1159.3725 1163.25 1000 50 0.9958262 +192 1163.25 1167.1275 1000 50 0.9999844 +193 1167.1275 1171.005 1000 50 0.999783 +194 1171.005 1174.8825000000002 1000 50 0.9932094 +195 1174.8825 1178.76 1000 50 0.9999832 +196 1178.76 1182.6375 1000 50 0.7042391 +197 1182.6375 1186.515 1000 50 0.9991872 +198 1186.515 1190.3925000000002 1000 50 0.9999949 +199 1194.27 1198.1475 1000 50 0.9028985 +200 1198.1475 1202.025 1000 50 0.9766793 +201 1202.025 1205.9025000000001 1000 50 0.5930556 +202 1205.9025 1209.78 1000 50 0.99997556 +203 1217.535 1221.4125000000001 1000 50 0.999343 +204 1221.4125 1225.29 1000 50 0.89156383 +205 1229.1675 1233.045 1000 50 0.9999957 +206 1240.8 1244.6775 1000 50 0.9999367 +207 1244.6775 1248.555 1000 50 0.7647211 +208 1248.555 1252.4325000000001 1000 50 0.87135005 +209 1252.4325 1256.31 1000 50 0.9917052 +210 1256.31 1260.1875 1000 50 0.988283 +211 1260.1875 1264.065 1000 50 0.8415747 +212 1264.065 1267.9425 1000 50 0.99967265 +213 1267.9425 1271.8200000000002 1000 50 0.95415586 +214 1271.82 1275.6975 1000 50 0.7379985 +215 1283.4525 1287.3300000000002 1000 50 0.99969614 +216 1287.33 1291.2075 1000 50 0.5936053 +217 1295.085 1298.9625 1000 50 0.9894349 +218 1298.9625 1302.8400000000001 1000 50 0.8440373 +219 1302.84 1306.7175 1000 50 0.9860596 +220 1306.7175 1310.595 1000 50 0.99826187 +221 1310.595 1314.4725 1000 50 0.9932532 +222 1318.35 1322.2275 1000 50 0.76772857 +223 1322.2275 1326.105 1000 50 0.7255331 +224 1326.105 1329.9825 1000 50 0.5319818 +225 1337.7375 1341.615 1000 50 0.6877217 +226 1341.615 1345.4925 1000 50 0.9805398 +227 1345.4925 1349.3700000000001 1000 50 0.98843956 +228 1372.635 1376.5125 1000 50 0.8553106 +229 1376.5125 1380.39 1000 50 0.6932105 +230 1380.39 1384.2675000000002 1000 50 0.63027763 +231 1384.2675 1388.145 1000 50 0.88180304 +232 1388.145 1392.0225 1000 50 0.7602572 +233 1395.9 1399.7775000000001 1000 50 0.99788934 +234 1399.7775 1403.655 1000 50 0.9283302 +235 1403.655 1407.5325 1000 50 0.89129186 +236 1407.5325 1411.41 1000 50 0.5747242 +237 1415.2875 1419.165 1000 50 0.5544657 +238 1423.0425 1426.92 1000 50 0.6139657 +239 1434.675 1438.5525 1000 50 0.9576005 +240 1446.3075 1450.185 1000 50 0.77975565 +241 1454.0625 1457.94 1000 50 0.9649522 +242 1457.94 1461.8175 1000 50 0.9922643 +243 1465.695 1469.5725 1000 50 0.7582661 +244 1477.3275 1481.2050000000002 1000 50 0.6600469 +245 1481.205 1485.0825 1000 50 0.7239348 +246 1485.0825 1488.96 1000 50 0.6416734 +247 1492.8375 1496.7150000000001 1000 50 0.83094305 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_03-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_03-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d3afde22d55924158acb4393d62f341c000facd8 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_03-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,16 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.999972 +2 7.755 11.6325 1000 50 0.9675511 +3 15.51 19.3875 1000 50 0.9995952 +4 19.3875 23.265 1000 50 0.9977702 +5 23.265 27.142500000000002 1000 50 0.90334386 +6 31.02 34.8975 1000 50 0.99997735 +7 34.8975 38.775 1000 50 0.9972687 +8 42.6525 46.53 1000 50 0.9894084 +9 46.53 50.4075 1000 50 0.9520967 +10 50.4075 54.285 1000 50 0.99460214 +11 54.285 58.162499999999994 1000 50 0.93500286 +12 58.1625 62.04 1000 50 0.9199163 +13 73.6725 77.55 1000 50 0.9020764 +14 77.55 81.4275 1000 50 0.7717891 +15 81.4275 85.30499999999999 1000 50 0.6671498 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_03-05-09_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_03-05-09_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..f51db02416e679ead4de8b44b98f544975568d9d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_03-05-09_annot_2022-11-30_01.txt @@ -0,0 +1,201 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.72948873 +2 7.755 11.6325 1000 50 0.99084735 +3 11.6325 15.51 1000 50 0.92510366 +4 19.3875 23.265 1000 50 0.7899303 +5 23.265 27.142500000000002 1000 50 0.57699996 +6 31.02 34.8975 1000 50 0.8108028 +7 38.775 42.652499999999996 1000 50 0.5778651 +8 42.6525 46.53 1000 50 0.9804247 +9 46.53 50.4075 1000 50 0.8024653 +10 50.4075 54.285 1000 50 0.713893 +11 54.285 58.162499999999994 1000 50 0.8214339 +12 58.1625 62.04 1000 50 0.52562654 +13 65.9175 69.795 1000 50 0.7398029 +14 69.795 73.6725 1000 50 0.536342 +15 77.55 81.4275 1000 50 0.502916 +16 89.1825 93.06 1000 50 0.9518073 +17 96.9375 100.815 1000 50 0.56610405 +18 104.6925 108.57 1000 50 0.5505432 +19 116.325 120.2025 1000 50 0.914293 +20 120.2025 124.08 1000 50 0.6006548 +21 127.9575 131.835 1000 50 0.7457691 +22 131.835 135.7125 1000 50 0.58831507 +23 139.59 143.4675 1000 50 0.99234456 +24 143.4675 147.345 1000 50 0.95858926 +25 151.2225 155.1 1000 50 0.8860392 +26 158.9775 162.855 1000 50 0.9979759 +27 162.855 166.7325 1000 50 0.9893973 +28 166.7325 170.60999999999999 1000 50 0.99872893 +29 170.61 174.4875 1000 50 0.99993634 +30 174.4875 178.365 1000 50 0.5923725 +31 178.365 182.2425 1000 50 0.99999475 +32 182.2425 186.12 1000 50 0.9999989 +33 189.9975 193.875 1000 50 0.99999285 +34 193.875 197.7525 1000 50 0.9627199 +35 197.7525 201.63 1000 50 0.6753339 +36 201.63 205.5075 1000 50 0.9998697 +37 205.5075 209.385 1000 50 0.9787202 +38 209.385 213.2625 1000 50 0.6068971 +39 213.2625 217.14 1000 50 0.9994081 +40 217.14 221.01749999999998 1000 50 0.9957426 +41 224.895 228.7725 1000 50 0.99864596 +42 232.65 236.5275 1000 50 0.6937768 +43 236.5275 240.405 1000 50 0.8147644 +44 244.2825 248.16 1000 50 0.8798322 +45 252.0375 255.915 1000 50 0.5732771 +46 255.915 259.7925 1000 50 0.9819484 +47 267.5475 271.425 1000 50 0.9401417 +48 271.425 275.3025 1000 50 0.96566665 +49 275.3025 279.18 1000 50 0.98932064 +50 279.18 283.0575 1000 50 0.9743225 +51 283.0575 286.935 1000 50 0.8172546 +52 290.8125 294.69 1000 50 0.7030104 +53 294.69 298.5675 1000 50 0.99867696 +54 298.5675 302.445 1000 50 0.54511434 +55 306.3225 310.2 1000 50 0.99294466 +56 314.0775 317.955 1000 50 0.999286 +57 317.955 321.8325 1000 50 0.99916565 +58 321.8325 325.71 1000 50 0.9975553 +59 325.71 329.5875 1000 50 0.9998105 +60 333.465 337.3425 1000 50 0.9465007 +61 337.3425 341.21999999999997 1000 50 0.9994406 +62 341.22 345.0975 1000 50 0.9998287 +63 345.0975 348.975 1000 50 0.91298276 +64 348.975 352.8525 1000 50 1.0 +65 352.8525 356.73 1000 50 0.99219185 +66 356.73 360.6075 1000 50 0.9999026 +67 360.6075 364.485 1000 50 0.99198675 +68 364.485 368.3625 1000 50 0.99745995 +69 368.3625 372.24 1000 50 0.9989894 +70 372.24 376.1175 1000 50 0.9926082 +71 376.1175 379.995 1000 50 0.7516165 +72 379.995 383.8725 1000 50 0.9999963 +73 383.8725 387.75 1000 50 0.9999856 +74 391.6275 395.505 1000 50 0.9999999 +75 395.505 399.3825 1000 50 0.99997413 +76 399.3825 403.26 1000 50 0.9986738 +77 403.26 407.1375 1000 50 0.9999906 +78 407.1375 411.015 1000 50 0.99433136 +79 411.015 414.8925 1000 50 0.9999975 +80 414.8925 418.77 1000 50 0.98875743 +81 418.77 422.6475 1000 50 0.9762898 +82 422.6475 426.525 1000 50 1.0 +83 426.525 430.4025 1000 50 0.99982506 +84 430.4025 434.28 1000 50 0.9915445 +85 434.28 438.15749999999997 1000 50 0.99999464 +86 445.9125 449.79 1000 50 0.9959657 +87 449.79 453.6675 1000 50 0.83366567 +88 453.6675 457.545 1000 50 0.9999261 +89 457.545 461.4225 1000 50 0.9999498 +90 465.3 469.1775 1000 50 0.99999774 +91 469.1775 473.055 1000 50 0.9905906 +92 473.055 476.9325 1000 50 0.9305079 +93 476.9325 480.81 1000 50 0.9994753 +94 480.81 484.6875 1000 50 0.99607086 +95 492.4425 496.32 1000 50 0.9318853 +96 500.1975 504.075 1000 50 0.9703812 +97 519.585 523.4625000000001 1000 50 0.89285505 +98 523.4625 527.34 1000 50 0.501142 +99 527.34 531.2175000000001 1000 50 0.590666 +100 535.095 538.9725000000001 1000 50 0.7284701 +101 546.7275 550.605 1000 50 0.8837585 +102 566.115 569.9925000000001 1000 50 0.53452706 +103 573.87 577.7475000000001 1000 50 0.73858404 +104 577.7475 581.625 1000 50 0.52890754 +105 597.135 601.0125 1000 50 0.89653766 +106 604.89 608.7675 1000 50 0.80757666 +107 608.7675 612.6450000000001 1000 50 0.9082141 +108 612.645 616.5225 1000 50 0.68400234 +109 620.4 624.2775 1000 50 0.99993217 +110 635.91 639.7875 1000 50 0.9333667 +111 643.665 647.5425 1000 50 0.6503651 +112 647.5425 651.4200000000001 1000 50 0.6308739 +113 678.5625 682.44 1000 50 0.53811544 +114 694.0725 697.95 1000 50 0.6893463 +115 701.8275 705.705 1000 50 0.5826115 +116 705.705 709.5825000000001 1000 50 0.75091296 +117 709.5825 713.46 1000 50 0.8004787 +118 713.46 717.3375000000001 1000 50 0.70151126 +119 717.3375 721.215 1000 50 0.60062003 +120 721.215 725.0925000000001 1000 50 0.55783385 +121 732.8475 736.725 1000 50 0.9923773 +122 736.725 740.6025000000001 1000 50 0.524421 +123 744.48 748.3575000000001 1000 50 0.5662378 +124 767.745 771.6225000000001 1000 50 0.9044531 +125 775.5 779.3775 1000 50 0.550966 +126 779.3775 783.2550000000001 1000 50 0.7085148 +127 783.255 787.1325 1000 50 0.5398941 +128 791.01 794.8875 1000 50 0.9936935 +129 794.8875 798.7650000000001 1000 50 0.6873593 +130 806.52 810.3975 1000 50 0.630979 +131 818.1525 822.0300000000001 1000 50 0.8022535 +132 825.9075 829.7850000000001 1000 50 0.85731745 +133 833.6625 837.5400000000001 1000 50 0.8877021 +134 841.4175 845.2950000000001 1000 50 0.74635124 +135 849.1725 853.0500000000001 1000 50 0.987713 +136 860.805 864.6825 1000 50 0.9238831 +137 864.6825 868.5600000000001 1000 50 0.73712 +138 868.56 872.4375 1000 50 0.99496377 +139 872.4375 876.315 1000 50 0.99395704 +140 876.315 880.1925000000001 1000 50 0.99917775 +141 880.1925 884.07 1000 50 0.9972144 +142 884.07 887.9475000000001 1000 50 0.6543279 +143 887.9475 891.825 1000 50 0.9114295 +144 891.825 895.7025000000001 1000 50 0.9809848 +145 895.7025 899.58 1000 50 0.9980623 +146 899.58 903.4575000000001 1000 50 0.9999721 +147 903.4575 907.335 1000 50 0.5800996 +148 907.335 911.2125000000001 1000 50 0.7848984 +149 911.2125 915.09 1000 50 0.9999883 +150 918.9675 922.845 1000 50 0.6530164 +151 922.845 926.7225000000001 1000 50 0.5028445 +152 926.7225 930.6 1000 50 0.65709996 +153 938.355 942.2325000000001 1000 50 0.7209691 +154 946.11 949.9875000000001 1000 50 0.5361219 +155 949.9875 953.865 1000 50 0.8454127 +156 953.865 957.7425000000001 1000 50 0.9975368 +157 957.7425 961.62 1000 50 0.5704829 +158 961.62 965.4975000000001 1000 50 0.7128067 +159 969.375 973.2525 1000 50 0.9334992 +160 973.2525 977.1300000000001 1000 50 0.9892123 +161 977.13 981.0075 1000 50 0.86945087 +162 984.885 988.7625 1000 50 0.997827 +163 988.7625 992.6400000000001 1000 50 0.61921984 +164 992.64 996.5175 1000 50 0.85120517 +165 996.5175 1000.3950000000001 1000 50 0.9340439 +166 1000.395 1004.2725 1000 50 0.9958509 +167 1004.2725 1008.1500000000001 1000 50 0.79005283 +168 1019.7825 1023.6600000000001 1000 50 0.70064 +169 1027.5375 1031.415 1000 50 0.51348835 +170 1031.415 1035.2925 1000 50 0.5705727 +171 1043.0475 1046.925 1000 50 0.6553706 +172 1050.8025 1054.68 1000 50 0.6246338 +173 1058.5575 1062.435 1000 50 0.9726309 +174 1062.435 1066.3125 1000 50 0.91877997 +175 1066.3125 1070.19 1000 50 0.55114156 +176 1070.19 1074.0675 1000 50 0.8082646 +177 1074.0675 1077.9450000000002 1000 50 0.58746845 +178 1077.945 1081.8225 1000 50 0.9936905 +179 1081.8225 1085.7 1000 50 0.80280864 +180 1085.7 1089.5775 1000 50 0.8047772 +181 1089.5775 1093.4550000000002 1000 50 0.9959777 +182 1093.455 1097.3325 1000 50 0.99946684 +183 1097.3325 1101.21 1000 50 0.99082583 +184 1101.21 1105.0875 1000 50 0.99800426 +185 1105.0875 1108.9650000000001 1000 50 0.88233626 +186 1112.8425 1116.72 1000 50 0.98963165 +187 1120.5975 1124.4750000000001 1000 50 0.97537166 +188 1124.475 1128.3525 1000 50 0.9443586 +189 1128.3525 1132.23 1000 50 0.98335475 +190 1132.23 1136.1075 1000 50 0.9999988 +191 1136.1075 1139.9850000000001 1000 50 0.9989436 +192 1139.985 1143.8625 1000 50 0.8113816 +193 1143.8625 1147.74 1000 50 0.99949014 +194 1147.74 1151.6175 1000 50 0.9976399 +195 1151.6175 1155.4950000000001 1000 50 0.84108174 +196 1167.1275 1171.005 1000 50 0.8151307 +197 1171.005 1174.8825000000002 1000 50 0.6842156 +198 1182.6375 1186.515 1000 50 0.5605349 +199 1186.515 1190.3925000000002 1000 50 0.9256254 +200 1190.3925 1194.27 1000 50 0.7283671 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_04-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_04-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..49f3a241d55311eb3f05c472464405d151baf42a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_04-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,66 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.9984615 +2 7.755 11.6325 1000 50 0.8832679 +3 15.51 19.3875 1000 50 0.6491521 +4 19.3875 23.265 1000 50 0.99003136 +5 23.265 27.142500000000002 1000 50 0.66203046 +6 31.02 34.8975 1000 50 0.9999752 +7 34.8975 38.775 1000 50 0.7797055 +8 38.775 42.652499999999996 1000 50 0.9158591 +9 42.6525 46.53 1000 50 0.9983724 +10 46.53 50.4075 1000 50 0.94145894 +11 50.4075 54.285 1000 50 0.9801819 +12 62.04 65.9175 1000 50 0.99793893 +13 65.9175 69.795 1000 50 0.9904829 +14 69.795 73.6725 1000 50 0.80049974 +15 73.6725 77.55 1000 50 0.5731376 +16 77.55 81.4275 1000 50 0.92973596 +17 81.4275 85.30499999999999 1000 50 0.9245894 +18 85.305 89.1825 1000 50 0.8556849 +19 93.06 96.9375 1000 50 0.84229636 +20 96.9375 100.815 1000 50 0.80149704 +21 100.815 104.6925 1000 50 0.99928707 +22 112.4475 116.325 1000 50 0.8847277 +23 124.08 127.9575 1000 50 0.72999936 +24 127.9575 131.835 1000 50 0.68179566 +25 135.7125 139.59 1000 50 0.5667654 +26 143.4675 147.345 1000 50 0.70968926 +27 147.345 151.2225 1000 50 0.8993442 +28 158.9775 162.855 1000 50 0.7141732 +29 162.855 166.7325 1000 50 0.9924561 +30 170.61 174.4875 1000 50 0.50694317 +31 189.9975 193.875 1000 50 0.69022524 +32 197.7525 201.63 1000 50 0.7817374 +33 213.2625 217.14 1000 50 0.7537189 +34 217.14 221.01749999999998 1000 50 0.53966534 +35 224.895 228.7725 1000 50 0.61485016 +36 232.65 236.5275 1000 50 0.8023762 +37 240.405 244.2825 1000 50 0.70371795 +38 252.0375 255.915 1000 50 0.8255329 +39 255.915 259.7925 1000 50 0.9378824 +40 286.935 290.8125 1000 50 0.50924426 +41 290.8125 294.69 1000 50 0.58040386 +42 298.5675 302.445 1000 50 0.63736945 +43 302.445 306.3225 1000 50 0.9341706 +44 310.2 314.0775 1000 50 0.58270484 +45 321.8325 325.71 1000 50 0.77548575 +46 329.5875 333.465 1000 50 0.99926084 +47 333.465 337.3425 1000 50 0.9416206 +48 337.3425 341.21999999999997 1000 50 0.9936371 +49 341.22 345.0975 1000 50 0.74793017 +50 345.0975 348.975 1000 50 0.9999757 +51 352.8525 356.73 1000 50 0.9570252 +52 356.73 360.6075 1000 50 0.99792993 +53 360.6075 364.485 1000 50 0.7347669 +54 364.485 368.3625 1000 50 0.99750084 +55 368.3625 372.24 1000 50 0.998362 +56 372.24 376.1175 1000 50 0.86739355 +57 376.1175 379.995 1000 50 0.7307378 +58 379.995 383.8725 1000 50 0.9906465 +59 383.8725 387.75 1000 50 0.64894646 +60 387.75 391.6275 1000 50 0.99970335 +61 391.6275 395.505 1000 50 0.9997298 +62 395.505 399.3825 1000 50 0.7392398 +63 399.3825 403.26 1000 50 0.6363461 +64 403.26 407.1375 1000 50 0.9847845 +65 407.1375 411.015 1000 50 0.7735569 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_04-10-27_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_04-10-27_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..2ab020a5d970556e16f57550baa74dc6c4e05a58 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_04-10-27_annot_2022-11-30_01.txt @@ -0,0 +1,182 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.51267046 +2 7.755 11.6325 1000 50 0.9523533 +3 11.6325 15.51 1000 50 0.8405065 +4 15.51 19.3875 1000 50 0.94853765 +5 27.1425 31.02 1000 50 0.59592 +6 31.02 34.8975 1000 50 0.84880203 +7 34.8975 38.775 1000 50 0.54622525 +8 38.775 42.652499999999996 1000 50 0.5706483 +9 46.53 50.4075 1000 50 0.72677165 +10 50.4075 54.285 1000 50 0.76353675 +11 54.285 58.162499999999994 1000 50 0.61778015 +12 65.9175 69.795 1000 50 0.7981399 +13 73.6725 77.55 1000 50 0.95512915 +14 77.55 81.4275 1000 50 0.9759251 +15 85.305 89.1825 1000 50 0.98001707 +16 89.1825 93.06 1000 50 0.5283488 +17 96.9375 100.815 1000 50 0.97787035 +18 100.815 104.6925 1000 50 0.774225 +19 104.6925 108.57 1000 50 0.516624 +20 108.57 112.44749999999999 1000 50 0.68373615 +21 120.2025 124.08 1000 50 0.5101749 +22 127.9575 131.835 1000 50 0.91680276 +23 139.59 143.4675 1000 50 0.9982711 +24 147.345 151.2225 1000 50 0.74586153 +25 155.1 158.9775 1000 50 0.866338 +26 158.9775 162.855 1000 50 0.66180074 +27 166.7325 170.60999999999999 1000 50 0.72057027 +28 182.2425 186.12 1000 50 0.95472497 +29 186.12 189.9975 1000 50 0.72303295 +30 189.9975 193.875 1000 50 0.5038207 +31 193.875 197.7525 1000 50 0.5297171 +32 197.7525 201.63 1000 50 0.76999575 +33 201.63 205.5075 1000 50 0.5420679 +34 205.5075 209.385 1000 50 0.7883177 +35 209.385 213.2625 1000 50 0.8641534 +36 213.2625 217.14 1000 50 0.7937188 +37 217.14 221.01749999999998 1000 50 0.5470597 +38 228.7725 232.65 1000 50 0.58587044 +39 232.65 236.5275 1000 50 0.9868413 +40 236.5275 240.405 1000 50 0.59074986 +41 240.405 244.2825 1000 50 0.6845853 +42 244.2825 248.16 1000 50 0.64961046 +43 248.16 252.0375 1000 50 0.99967825 +44 252.0375 255.915 1000 50 0.956271 +45 255.915 259.7925 1000 50 0.99920374 +46 259.7925 263.67 1000 50 0.9584513 +47 263.67 267.5475 1000 50 0.70147216 +48 267.5475 271.425 1000 50 0.8634016 +49 271.425 275.3025 1000 50 0.88847625 +50 279.18 283.0575 1000 50 0.51820123 +51 283.0575 286.935 1000 50 0.9988728 +52 286.935 290.8125 1000 50 0.78859425 +53 294.69 298.5675 1000 50 0.999323 +54 302.445 306.3225 1000 50 0.5505562 +55 306.3225 310.2 1000 50 0.99701285 +56 314.0775 317.955 1000 50 0.88477474 +57 317.955 321.8325 1000 50 0.9854354 +58 325.71 329.5875 1000 50 0.957383 +59 329.5875 333.465 1000 50 0.9642396 +60 333.465 337.3425 1000 50 0.8920223 +61 337.3425 341.21999999999997 1000 50 0.99921775 +62 341.22 345.0975 1000 50 0.9791976 +63 345.0975 348.975 1000 50 0.9994789 +64 348.975 352.8525 1000 50 0.7884365 +65 352.8525 356.73 1000 50 0.9996972 +66 356.73 360.6075 1000 50 0.94123274 +67 360.6075 364.485 1000 50 0.9477032 +68 364.485 368.3625 1000 50 0.99852824 +69 372.24 376.1175 1000 50 0.587088 +70 376.1175 379.995 1000 50 0.6711714 +71 383.8725 387.75 1000 50 0.98931587 +72 387.75 391.6275 1000 50 0.8793604 +73 407.1375 411.015 1000 50 0.65905625 +74 411.015 414.8925 1000 50 0.6763915 +75 414.8925 418.77 1000 50 0.63528275 +76 422.6475 426.525 1000 50 0.71727735 +77 426.525 430.4025 1000 50 0.99958295 +78 434.28 438.15749999999997 1000 50 0.9681406 +79 438.1575 442.035 1000 50 0.6222765 +80 442.035 445.9125 1000 50 0.98167866 +81 445.9125 449.79 1000 50 0.8476414 +82 449.79 453.6675 1000 50 0.9992361 +83 453.6675 457.545 1000 50 0.9968605 +84 457.545 461.4225 1000 50 0.72888184 +85 461.4225 465.3 1000 50 0.99515873 +86 465.3 469.1775 1000 50 0.9984536 +87 469.1775 473.055 1000 50 0.98671246 +88 473.055 476.9325 1000 50 0.9999571 +89 476.9325 480.81 1000 50 0.9999895 +90 480.81 484.6875 1000 50 0.7377925 +91 484.6875 488.565 1000 50 0.99999917 +92 488.565 492.4425 1000 50 0.99972457 +93 492.4425 496.32 1000 50 0.9974407 +94 496.32 500.1975 1000 50 0.99999535 +95 500.1975 504.075 1000 50 0.9960223 +96 504.075 507.9525 1000 50 0.99999595 +97 507.9525 511.83 1000 50 0.9995498 +98 511.83 515.7075 1000 50 0.99941957 +99 515.7075 519.585 1000 50 0.99988306 +100 519.585 523.4625000000001 1000 50 0.9890911 +101 523.4625 527.34 1000 50 0.9998338 +102 527.34 531.2175000000001 1000 50 0.9993223 +103 531.2175 535.095 1000 50 0.9987702 +104 535.095 538.9725000000001 1000 50 0.99780375 +105 538.9725 542.85 1000 50 0.99950993 +106 542.85 546.7275000000001 1000 50 0.9992378 +107 546.7275 550.605 1000 50 0.9926501 +108 550.605 554.4825000000001 1000 50 0.996231 +109 554.4825 558.36 1000 50 0.999811 +110 558.36 562.2375000000001 1000 50 0.9997538 +111 562.2375 566.115 1000 50 0.98246473 +112 566.115 569.9925000000001 1000 50 0.9404772 +113 569.9925 573.87 1000 50 0.9999865 +114 573.87 577.7475000000001 1000 50 0.99582565 +115 577.7475 581.625 1000 50 0.9890891 +116 581.625 585.5025 1000 50 0.9999242 +117 585.5025 589.3800000000001 1000 50 0.99985206 +118 589.38 593.2575 1000 50 0.56436944 +119 593.2575 597.1350000000001 1000 50 0.99443865 +120 597.135 601.0125 1000 50 0.9574961 +121 601.0125 604.8900000000001 1000 50 0.79456997 +122 604.89 608.7675 1000 50 0.9975199 +123 608.7675 612.6450000000001 1000 50 0.5143337 +124 616.5225 620.4000000000001 1000 50 0.90689534 +125 620.4 624.2775 1000 50 0.9116543 +126 624.2775 628.1550000000001 1000 50 0.8945888 +127 635.91 639.7875 1000 50 0.8232916 +128 639.7875 643.6650000000001 1000 50 0.591588 +129 643.665 647.5425 1000 50 0.67709 +130 647.5425 651.4200000000001 1000 50 0.88498527 +131 651.42 655.2975 1000 50 0.66611177 +132 659.175 663.0525 1000 50 0.53203374 +133 670.8075 674.6850000000001 1000 50 0.8191008 +134 674.685 678.5625 1000 50 0.9963632 +135 682.44 686.3175000000001 1000 50 0.51465863 +136 686.3175 690.195 1000 50 0.8432341 +137 690.195 694.0725000000001 1000 50 0.8809865 +138 694.0725 697.95 1000 50 0.8830653 +139 697.95 701.8275000000001 1000 50 0.98359644 +140 705.705 709.5825000000001 1000 50 0.9889398 +141 713.46 717.3375000000001 1000 50 0.9326266 +142 717.3375 721.215 1000 50 0.9877858 +143 721.215 725.0925000000001 1000 50 0.640286 +144 725.0925 728.97 1000 50 0.8971379 +145 728.97 732.8475000000001 1000 50 0.63608515 +146 732.8475 736.725 1000 50 0.9999821 +147 736.725 740.6025000000001 1000 50 0.6813859 +148 740.6025 744.48 1000 50 0.9996712 +149 744.48 748.3575000000001 1000 50 0.6394925 +150 748.3575 752.235 1000 50 0.9765379 +151 752.235 756.1125000000001 1000 50 0.9998852 +152 759.99 763.8675000000001 1000 50 0.9933768 +153 763.8675 767.745 1000 50 0.80768627 +154 767.745 771.6225000000001 1000 50 0.95567113 +155 771.6225 775.5 1000 50 0.9980058 +156 775.5 779.3775 1000 50 0.99544275 +157 779.3775 783.2550000000001 1000 50 0.98384964 +158 783.255 787.1325 1000 50 0.9186431 +159 787.1325 791.0100000000001 1000 50 0.9082983 +160 791.01 794.8875 1000 50 0.71656746 +161 794.8875 798.7650000000001 1000 50 0.79734206 +162 798.765 802.6425 1000 50 0.9104598 +163 802.6425 806.5200000000001 1000 50 0.9983858 +164 806.52 810.3975 1000 50 0.9997558 +165 810.3975 814.2750000000001 1000 50 0.88652 +166 814.275 818.1525 1000 50 0.5647028 +167 818.1525 822.0300000000001 1000 50 0.99974114 +168 822.03 825.9075 1000 50 0.946604 +169 829.785 833.6625 1000 50 0.9129478 +170 833.6625 837.5400000000001 1000 50 0.5192153 +171 837.54 841.4175 1000 50 0.9999591 +172 841.4175 845.2950000000001 1000 50 0.96232224 +173 845.295 849.1725 1000 50 0.9288549 +174 849.1725 853.0500000000001 1000 50 0.99898356 +175 853.05 856.9275 1000 50 0.9574856 +176 856.9275 860.8050000000001 1000 50 0.96160233 +177 860.805 864.6825 1000 50 0.86969936 +178 864.6825 868.5600000000001 1000 50 0.99976534 +179 868.56 872.4375 1000 50 0.9923624 +180 872.4375 876.315 1000 50 0.5514985 +181 876.315 880.1925000000001 1000 50 0.6659323 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_05-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_05-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..afbb305baf19883240b91654a1f2be1c9b5c2618 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_05-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,145 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.7697356 +2 3.8775 7.755 1000 50 0.9959378 +3 7.755 11.6325 1000 50 0.97467935 +4 11.6325 15.51 1000 50 0.9980813 +5 15.51 19.3875 1000 50 0.998659 +6 19.3875 23.265 1000 50 0.87760156 +7 23.265 27.142500000000002 1000 50 0.97497296 +8 27.1425 31.02 1000 50 0.7655538 +9 31.02 34.8975 1000 50 0.98477966 +10 34.8975 38.775 1000 50 0.7935249 +11 38.775 42.652499999999996 1000 50 0.99900645 +12 42.6525 46.53 1000 50 0.9973793 +13 46.53 50.4075 1000 50 0.8239676 +14 50.4075 54.285 1000 50 0.96665424 +15 54.285 58.162499999999994 1000 50 0.9857712 +16 62.04 65.9175 1000 50 0.76697385 +17 81.4275 85.30499999999999 1000 50 0.7170874 +18 85.305 89.1825 1000 50 0.7096971 +19 96.9375 100.815 1000 50 0.62727404 +20 100.815 104.6925 1000 50 0.6563171 +21 108.57 112.44749999999999 1000 50 0.7871078 +22 112.4475 116.325 1000 50 0.7303362 +23 131.835 135.7125 1000 50 0.8993534 +24 135.7125 139.59 1000 50 0.59762716 +25 147.345 151.2225 1000 50 0.8800002 +26 151.2225 155.1 1000 50 0.81354773 +27 158.9775 162.855 1000 50 0.5575862 +28 162.855 166.7325 1000 50 0.51333 +29 166.7325 170.60999999999999 1000 50 0.5329776 +30 174.4875 178.365 1000 50 0.7201582 +31 178.365 182.2425 1000 50 0.75209236 +32 182.2425 186.12 1000 50 0.8561732 +33 193.875 197.7525 1000 50 0.56823486 +34 209.385 213.2625 1000 50 0.51343864 +35 213.2625 217.14 1000 50 0.60549676 +36 232.65 236.5275 1000 50 0.66861904 +37 236.5275 240.405 1000 50 0.9986664 +38 240.405 244.2825 1000 50 0.98539376 +39 244.2825 248.16 1000 50 0.99152136 +40 248.16 252.0375 1000 50 0.50424653 +41 252.0375 255.915 1000 50 0.53915334 +42 255.915 259.7925 1000 50 0.9200414 +43 267.5475 271.425 1000 50 0.99489295 +44 275.3025 279.18 1000 50 0.9959282 +45 279.18 283.0575 1000 50 0.9474038 +46 286.935 290.8125 1000 50 0.57926977 +47 298.5675 302.445 1000 50 0.88855433 +48 302.445 306.3225 1000 50 0.6741233 +49 314.0775 317.955 1000 50 0.6947487 +50 317.955 321.8325 1000 50 0.89966166 +51 329.5875 333.465 1000 50 0.6283459 +52 333.465 337.3425 1000 50 0.6354133 +53 337.3425 341.21999999999997 1000 50 0.89317685 +54 348.975 352.8525 1000 50 0.83906925 +55 352.8525 356.73 1000 50 0.9932312 +56 356.73 360.6075 1000 50 0.99319816 +57 360.6075 364.485 1000 50 0.72722626 +58 364.485 368.3625 1000 50 0.8836612 +59 368.3625 372.24 1000 50 0.6033 +60 372.24 376.1175 1000 50 0.8856002 +61 376.1175 379.995 1000 50 0.98970336 +62 379.995 383.8725 1000 50 0.5716336 +63 383.8725 387.75 1000 50 0.9370092 +64 387.75 391.6275 1000 50 0.99646395 +65 391.6275 395.505 1000 50 0.97834045 +66 395.505 399.3825 1000 50 0.65437466 +67 399.3825 403.26 1000 50 0.9934651 +68 403.26 407.1375 1000 50 0.8768189 +69 407.1375 411.015 1000 50 0.99974376 +70 411.015 414.8925 1000 50 0.99054587 +71 414.8925 418.77 1000 50 0.97325075 +72 418.77 422.6475 1000 50 0.81272376 +73 422.6475 426.525 1000 50 0.99994075 +74 426.525 430.4025 1000 50 0.96812373 +75 430.4025 434.28 1000 50 0.99945825 +76 434.28 438.15749999999997 1000 50 0.9956857 +77 438.1575 442.035 1000 50 0.9998134 +78 442.035 445.9125 1000 50 0.99556977 +79 445.9125 449.79 1000 50 0.9754999 +80 449.79 453.6675 1000 50 0.9999962 +81 453.6675 457.545 1000 50 0.9779067 +82 457.545 461.4225 1000 50 0.74562144 +83 461.4225 465.3 1000 50 0.9047305 +84 465.3 469.1775 1000 50 0.99997246 +85 469.1775 473.055 1000 50 0.8198703 +86 473.055 476.9325 1000 50 0.8146893 +87 476.9325 480.81 1000 50 0.95678854 +88 480.81 484.6875 1000 50 0.9183024 +89 484.6875 488.565 1000 50 0.87041086 +90 488.565 492.4425 1000 50 0.9999372 +91 492.4425 496.32 1000 50 0.9995009 +92 496.32 500.1975 1000 50 0.99237716 +93 500.1975 504.075 1000 50 0.99930704 +94 504.075 507.9525 1000 50 0.99649745 +95 507.9525 511.83 1000 50 0.9903404 +96 511.83 515.7075 1000 50 0.99957985 +97 515.7075 519.585 1000 50 0.9996495 +98 519.585 523.4625000000001 1000 50 0.99467176 +99 523.4625 527.34 1000 50 0.9312129 +100 531.2175 535.095 1000 50 0.9995889 +101 535.095 538.9725000000001 1000 50 0.9999981 +102 538.9725 542.85 1000 50 0.999972 +103 542.85 546.7275000000001 1000 50 0.97256744 +104 546.7275 550.605 1000 50 0.85243046 +105 550.605 554.4825000000001 1000 50 0.77013105 +106 554.4825 558.36 1000 50 0.89161676 +107 558.36 562.2375000000001 1000 50 0.90726674 +108 562.2375 566.115 1000 50 0.79079306 +109 566.115 569.9925000000001 1000 50 0.6159234 +110 569.9925 573.87 1000 50 0.6676517 +111 573.87 577.7475000000001 1000 50 0.9138225 +112 577.7475 581.625 1000 50 0.9571198 +113 585.5025 589.3800000000001 1000 50 0.74491674 +114 589.38 593.2575 1000 50 0.92642295 +115 593.2575 597.1350000000001 1000 50 0.6280569 +116 604.89 608.7675 1000 50 0.77079076 +117 608.7675 612.6450000000001 1000 50 0.57409173 +118 616.5225 620.4000000000001 1000 50 0.56476665 +119 620.4 624.2775 1000 50 0.60878354 +120 624.2775 628.1550000000001 1000 50 0.8461013 +121 628.155 632.0325 1000 50 0.9725725 +122 632.0325 635.9100000000001 1000 50 0.98682725 +123 639.7875 643.6650000000001 1000 50 0.9864804 +124 643.665 647.5425 1000 50 0.811985 +125 647.5425 651.4200000000001 1000 50 0.728537 +126 651.42 655.2975 1000 50 0.97266996 +127 655.2975 659.1750000000001 1000 50 0.985898 +128 659.175 663.0525 1000 50 0.9739198 +129 663.0525 666.9300000000001 1000 50 0.8223161 +130 666.93 670.8075 1000 50 0.9937557 +131 674.685 678.5625 1000 50 0.99737525 +132 678.5625 682.44 1000 50 0.99013054 +133 682.44 686.3175000000001 1000 50 0.9978886 +134 686.3175 690.195 1000 50 0.8727452 +135 690.195 694.0725000000001 1000 50 0.800548 +136 694.0725 697.95 1000 50 0.9946514 +137 697.95 701.8275000000001 1000 50 0.9953625 +138 701.8275 705.705 1000 50 0.8115654 +139 705.705 709.5825000000001 1000 50 0.9240714 +140 709.5825 713.46 1000 50 0.88765097 +141 713.46 717.3375000000001 1000 50 0.86081237 +142 717.3375 721.215 1000 50 0.94324607 +143 721.215 725.0925000000001 1000 50 0.9980254 +144 725.0925 728.97 1000 50 0.7829248 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_05-15-45_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_05-15-45_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..41f9f5eb6edac9f388ff32e7118a862374e02224 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_05-15-45_annot_2022-11-30_01.txt @@ -0,0 +1,104 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.785101 +2 11.6325 15.51 1000 50 0.77886665 +3 34.8975 38.775 1000 50 0.72526705 +4 50.4075 54.285 1000 50 0.9513539 +5 54.285 58.162499999999994 1000 50 0.8280279 +6 62.04 65.9175 1000 50 0.5140984 +7 81.4275 85.30499999999999 1000 50 0.5983396 +8 89.1825 93.06 1000 50 0.99333405 +9 100.815 104.6925 1000 50 0.693674 +10 108.57 112.44749999999999 1000 50 0.66162026 +11 116.325 120.2025 1000 50 0.6051637 +12 131.835 135.7125 1000 50 0.83615535 +13 135.7125 139.59 1000 50 0.9917996 +14 143.4675 147.345 1000 50 0.8356414 +15 155.1 158.9775 1000 50 0.94306695 +16 158.9775 162.855 1000 50 0.6210117 +17 162.855 166.7325 1000 50 0.9819661 +18 166.7325 170.60999999999999 1000 50 0.8228961 +19 170.61 174.4875 1000 50 0.65676206 +20 174.4875 178.365 1000 50 0.99754333 +21 178.365 182.2425 1000 50 0.99867576 +22 182.2425 186.12 1000 50 0.6720255 +23 186.12 189.9975 1000 50 0.940801 +24 189.9975 193.875 1000 50 0.99565446 +25 193.875 197.7525 1000 50 0.9997384 +26 197.7525 201.63 1000 50 0.98999536 +27 201.63 205.5075 1000 50 0.999843 +28 205.5075 209.385 1000 50 0.9999621 +29 209.385 213.2625 1000 50 0.99856925 +30 213.2625 217.14 1000 50 0.9996792 +31 217.14 221.01749999999998 1000 50 0.9974847 +32 221.0175 224.895 1000 50 0.99929535 +33 224.895 228.7725 1000 50 1.0 +34 228.7725 232.65 1000 50 0.99953854 +35 232.65 236.5275 1000 50 0.9428804 +36 236.5275 240.405 1000 50 0.9994634 +37 240.405 244.2825 1000 50 0.9999651 +38 244.2825 248.16 1000 50 0.9998604 +39 248.16 252.0375 1000 50 0.9976394 +40 252.0375 255.915 1000 50 0.6966295 +41 255.915 259.7925 1000 50 0.9999963 +42 259.7925 263.67 1000 50 0.9998337 +43 263.67 267.5475 1000 50 0.93627036 +44 267.5475 271.425 1000 50 1.0 +45 271.425 275.3025 1000 50 0.9971842 +46 275.3025 279.18 1000 50 0.95598173 +47 279.18 283.0575 1000 50 0.99035 +48 283.0575 286.935 1000 50 0.5258445 +49 286.935 290.8125 1000 50 0.5722171 +50 290.8125 294.69 1000 50 0.93998873 +51 294.69 298.5675 1000 50 0.97601163 +52 298.5675 302.445 1000 50 0.7782344 +53 302.445 306.3225 1000 50 0.75323296 +54 306.3225 310.2 1000 50 0.9864763 +55 310.2 314.0775 1000 50 0.8463861 +56 317.955 321.8325 1000 50 0.98019 +57 321.8325 325.71 1000 50 0.9815476 +58 325.71 329.5875 1000 50 0.9895593 +59 337.3425 341.21999999999997 1000 50 0.7803222 +60 348.975 352.8525 1000 50 0.8263427 +61 352.8525 356.73 1000 50 0.9247835 +62 356.73 360.6075 1000 50 0.9885556 +63 360.6075 364.485 1000 50 0.56877077 +64 368.3625 372.24 1000 50 0.9154554 +65 383.8725 387.75 1000 50 0.7900332 +66 387.75 391.6275 1000 50 0.94527256 +67 391.6275 395.505 1000 50 0.82489234 +68 407.1375 411.015 1000 50 0.9560438 +69 411.015 414.8925 1000 50 0.9320388 +70 414.8925 418.77 1000 50 0.95869774 +71 422.6475 426.525 1000 50 0.95871395 +72 426.525 430.4025 1000 50 0.8990457 +73 430.4025 434.28 1000 50 0.99841833 +74 434.28 438.15749999999997 1000 50 0.9997807 +75 438.1575 442.035 1000 50 0.99966145 +76 442.035 445.9125 1000 50 0.9991177 +77 445.9125 449.79 1000 50 0.9842684 +78 449.79 453.6675 1000 50 0.98052865 +79 453.6675 457.545 1000 50 0.9956831 +80 457.545 461.4225 1000 50 0.9996939 +81 461.4225 465.3 1000 50 0.9986137 +82 465.3 469.1775 1000 50 0.9999852 +83 469.1775 473.055 1000 50 0.9991327 +84 473.055 476.9325 1000 50 0.91748565 +85 476.9325 480.81 1000 50 0.9946694 +86 480.81 484.6875 1000 50 0.9998677 +87 484.6875 488.565 1000 50 0.9915069 +88 488.565 492.4425 1000 50 0.9620312 +89 492.4425 496.32 1000 50 0.9312523 +90 496.32 500.1975 1000 50 0.9954672 +91 500.1975 504.075 1000 50 0.5439259 +92 504.075 507.9525 1000 50 0.99996245 +93 507.9525 511.83 1000 50 0.89056724 +94 511.83 515.7075 1000 50 0.99951243 +95 515.7075 519.585 1000 50 0.99941957 +96 523.4625 527.34 1000 50 0.9669758 +97 527.34 531.2175000000001 1000 50 0.8711945 +98 531.2175 535.095 1000 50 0.9428598 +99 535.095 538.9725000000001 1000 50 0.99630094 +100 538.9725 542.85 1000 50 0.9884173 +101 542.85 546.7275000000001 1000 50 0.59073615 +102 546.7275 550.605 1000 50 0.9998367 +103 554.4825 558.36 1000 50 0.77364886 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_06-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_06-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..768c7aec09cb7ac169f4895dcb8936b1f016f66a --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_06-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,214 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.9360451 +2 19.3875 23.265 1000 50 0.69405556 +3 23.265 27.142500000000002 1000 50 0.96648604 +4 27.1425 31.02 1000 50 0.99942845 +5 34.8975 38.775 1000 50 0.7629688 +6 42.6525 46.53 1000 50 0.99993503 +7 50.4075 54.285 1000 50 0.94258386 +8 54.285 58.162499999999994 1000 50 0.99994624 +9 58.1625 62.04 1000 50 0.7980127 +10 62.04 65.9175 1000 50 0.9999999 +11 65.9175 69.795 1000 50 0.9853485 +12 69.795 73.6725 1000 50 0.9904364 +13 73.6725 77.55 1000 50 0.9999974 +14 77.55 81.4275 1000 50 0.8060439 +15 81.4275 85.30499999999999 1000 50 0.99997747 +16 85.305 89.1825 1000 50 0.99999917 +17 89.1825 93.06 1000 50 0.99622285 +18 93.06 96.9375 1000 50 0.9999454 +19 96.9375 100.815 1000 50 0.9999337 +20 100.815 104.6925 1000 50 0.97220415 +21 104.6925 108.57 1000 50 0.9999119 +22 108.57 112.44749999999999 1000 50 0.98753405 +23 112.4475 116.325 1000 50 0.75113857 +24 116.325 120.2025 1000 50 0.9998068 +25 120.2025 124.08 1000 50 0.98682773 +26 124.08 127.9575 1000 50 0.9994425 +27 127.9575 131.835 1000 50 0.9492928 +28 131.835 135.7125 1000 50 0.9999665 +29 135.7125 139.59 1000 50 0.99961936 +30 139.59 143.4675 1000 50 0.9990883 +31 143.4675 147.345 1000 50 0.8979154 +32 147.345 151.2225 1000 50 0.99998796 +33 151.2225 155.1 1000 50 0.9999727 +34 155.1 158.9775 1000 50 0.99997926 +35 158.9775 162.855 1000 50 0.9988576 +36 162.855 166.7325 1000 50 0.9999994 +37 166.7325 170.60999999999999 1000 50 0.90132165 +38 170.61 174.4875 1000 50 0.99999523 +39 174.4875 178.365 1000 50 0.99877006 +40 178.365 182.2425 1000 50 0.98178333 +41 182.2425 186.12 1000 50 0.99995995 +42 186.12 189.9975 1000 50 0.98586625 +43 189.9975 193.875 1000 50 0.99836665 +44 193.875 197.7525 1000 50 0.9997588 +45 197.7525 201.63 1000 50 0.9998215 +46 201.63 205.5075 1000 50 0.9916347 +47 205.5075 209.385 1000 50 0.99999285 +48 209.385 213.2625 1000 50 0.7888915 +49 213.2625 217.14 1000 50 0.99998534 +50 217.14 221.01749999999998 1000 50 0.99980265 +51 221.0175 224.895 1000 50 0.7040884 +52 224.895 228.7725 1000 50 0.99998534 +53 228.7725 232.65 1000 50 0.9999982 +54 232.65 236.5275 1000 50 0.67250717 +55 236.5275 240.405 1000 50 0.979978 +56 240.405 244.2825 1000 50 0.91986614 +57 244.2825 248.16 1000 50 0.93356 +58 252.0375 255.915 1000 50 0.9853491 +59 255.915 259.7925 1000 50 0.9482745 +60 271.425 275.3025 1000 50 0.9078059 +61 275.3025 279.18 1000 50 0.9353394 +62 279.18 283.0575 1000 50 0.9739819 +63 283.0575 286.935 1000 50 0.99438936 +64 286.935 290.8125 1000 50 0.9779417 +65 290.8125 294.69 1000 50 0.5758512 +66 294.69 298.5675 1000 50 0.5654678 +67 302.445 306.3225 1000 50 0.77311224 +68 306.3225 310.2 1000 50 0.8391265 +69 310.2 314.0775 1000 50 0.5727859 +70 325.71 329.5875 1000 50 0.591397 +71 329.5875 333.465 1000 50 0.94113326 +72 333.465 337.3425 1000 50 0.7777737 +73 341.22 345.0975 1000 50 0.990986 +74 345.0975 348.975 1000 50 0.9939452 +75 348.975 352.8525 1000 50 0.9992342 +76 352.8525 356.73 1000 50 0.99920183 +77 356.73 360.6075 1000 50 0.999408 +78 360.6075 364.485 1000 50 0.90631014 +79 364.485 368.3625 1000 50 0.53316945 +80 368.3625 372.24 1000 50 0.9999194 +81 372.24 376.1175 1000 50 0.73444575 +82 376.1175 379.995 1000 50 0.62994653 +83 379.995 383.8725 1000 50 0.8328046 +84 383.8725 387.75 1000 50 0.84137213 +85 391.6275 395.505 1000 50 0.9400277 +86 395.505 399.3825 1000 50 0.79338056 +87 399.3825 403.26 1000 50 0.5736041 +88 403.26 407.1375 1000 50 0.5740564 +89 414.8925 418.77 1000 50 0.80357885 +90 418.77 422.6475 1000 50 0.7696089 +91 422.6475 426.525 1000 50 0.58080435 +92 430.4025 434.28 1000 50 0.9839618 +93 434.28 438.15749999999997 1000 50 0.59407425 +94 438.1575 442.035 1000 50 0.82672524 +95 449.79 453.6675 1000 50 0.7092008 +96 461.4225 465.3 1000 50 0.7150209 +97 465.3 469.1775 1000 50 0.62947816 +98 473.055 476.9325 1000 50 0.6316284 +99 484.6875 488.565 1000 50 0.93419003 +100 488.565 492.4425 1000 50 0.8126947 +101 500.1975 504.075 1000 50 0.83484364 +102 504.075 507.9525 1000 50 0.55782735 +103 515.7075 519.585 1000 50 0.71406716 +104 519.585 523.4625000000001 1000 50 0.6379151 +105 531.2175 535.095 1000 50 0.9458983 +106 538.9725 542.85 1000 50 0.8137052 +107 542.85 546.7275000000001 1000 50 0.6858608 +108 546.7275 550.605 1000 50 0.60465664 +109 550.605 554.4825000000001 1000 50 0.9001837 +110 554.4825 558.36 1000 50 0.9921102 +111 558.36 562.2375000000001 1000 50 0.77739006 +112 562.2375 566.115 1000 50 0.99999964 +113 566.115 569.9925000000001 1000 50 0.83457226 +114 569.9925 573.87 1000 50 0.75715655 +115 581.625 585.5025 1000 50 0.83846134 +116 585.5025 589.3800000000001 1000 50 0.61461514 +117 593.2575 597.1350000000001 1000 50 0.50874114 +118 601.0125 604.8900000000001 1000 50 0.6413744 +119 604.89 608.7675 1000 50 0.99473333 +120 612.645 616.5225 1000 50 0.74726814 +121 616.5225 620.4000000000001 1000 50 0.7347236 +122 620.4 624.2775 1000 50 0.58907276 +123 624.2775 628.1550000000001 1000 50 0.73785275 +124 632.0325 635.9100000000001 1000 50 0.89916074 +125 635.91 639.7875 1000 50 0.9913885 +126 639.7875 643.6650000000001 1000 50 0.91306 +127 647.5425 651.4200000000001 1000 50 0.9993825 +128 651.42 655.2975 1000 50 0.9740786 +129 655.2975 659.1750000000001 1000 50 0.9648717 +130 659.175 663.0525 1000 50 0.998064 +131 666.93 670.8075 1000 50 0.99924326 +132 678.5625 682.44 1000 50 0.99628496 +133 686.3175 690.195 1000 50 0.9997389 +134 690.195 694.0725000000001 1000 50 0.99928826 +135 694.0725 697.95 1000 50 0.5702612 +136 697.95 701.8275000000001 1000 50 0.768701 +137 701.8275 705.705 1000 50 0.99999666 +138 705.705 709.5825000000001 1000 50 0.7050814 +139 709.5825 713.46 1000 50 0.9954704 +140 713.46 717.3375000000001 1000 50 0.9997241 +141 717.3375 721.215 1000 50 0.979219 +142 721.215 725.0925000000001 1000 50 0.7933344 +143 725.0925 728.97 1000 50 0.9981358 +144 728.97 732.8475000000001 1000 50 0.5991903 +145 740.6025 744.48 1000 50 0.85894334 +146 744.48 748.3575000000001 1000 50 0.99808097 +147 756.1125 759.99 1000 50 0.9139292 +148 763.8675 767.745 1000 50 0.63743496 +149 767.745 771.6225000000001 1000 50 0.86201453 +150 771.6225 775.5 1000 50 0.9988971 +151 775.5 779.3775 1000 50 0.99794334 +152 783.255 787.1325 1000 50 0.9844603 +153 787.1325 791.0100000000001 1000 50 0.7953797 +154 791.01 794.8875 1000 50 0.9994398 +155 794.8875 798.7650000000001 1000 50 0.756448 +156 798.765 802.6425 1000 50 0.99954456 +157 806.52 810.3975 1000 50 0.9854063 +158 810.3975 814.2750000000001 1000 50 0.8917513 +159 814.275 818.1525 1000 50 0.6189462 +160 818.1525 822.0300000000001 1000 50 0.99996626 +161 822.03 825.9075 1000 50 0.9999801 +162 825.9075 829.7850000000001 1000 50 0.9575876 +163 829.785 833.6625 1000 50 0.9347108 +164 833.6625 837.5400000000001 1000 50 0.9998623 +165 837.54 841.4175 1000 50 0.99908304 +166 841.4175 845.2950000000001 1000 50 0.9452208 +167 845.295 849.1725 1000 50 0.8984672 +168 849.1725 853.0500000000001 1000 50 0.8375967 +169 853.05 856.9275 1000 50 0.9589715 +170 856.9275 860.8050000000001 1000 50 0.6041264 +171 860.805 864.6825 1000 50 0.5138905 +172 864.6825 868.5600000000001 1000 50 0.99904937 +173 868.56 872.4375 1000 50 0.91563857 +174 872.4375 876.315 1000 50 0.9969578 +175 880.1925 884.07 1000 50 0.92628396 +176 884.07 887.9475000000001 1000 50 0.9484022 +177 887.9475 891.825 1000 50 0.9999825 +178 891.825 895.7025000000001 1000 50 0.9999783 +179 895.7025 899.58 1000 50 0.9776962 +180 899.58 903.4575000000001 1000 50 0.999997 +181 903.4575 907.335 1000 50 0.9343173 +182 911.2125 915.09 1000 50 0.99998474 +183 915.09 918.9675000000001 1000 50 0.9997415 +184 918.9675 922.845 1000 50 0.9999995 +185 922.845 926.7225000000001 1000 50 1.0 +186 926.7225 930.6 1000 50 0.99976176 +187 930.6 934.4775000000001 1000 50 1.0 +188 938.355 942.2325000000001 1000 50 1.0 +189 942.2325 946.11 1000 50 0.9992855 +190 946.11 949.9875000000001 1000 50 0.9999138 +191 949.9875 953.865 1000 50 0.9999988 +192 953.865 957.7425000000001 1000 50 0.99999464 +193 957.7425 961.62 1000 50 0.9996896 +194 961.62 965.4975000000001 1000 50 0.9779106 +195 965.4975 969.375 1000 50 0.9996356 +196 969.375 973.2525 1000 50 0.9997173 +197 973.2525 977.1300000000001 1000 50 1.0 +198 977.13 981.0075 1000 50 0.9663911 +199 981.0075 984.8850000000001 1000 50 0.9833809 +200 984.885 988.7625 1000 50 0.9999964 +201 988.7625 992.6400000000001 1000 50 0.87426347 +202 992.64 996.5175 1000 50 0.96513313 +203 996.5175 1000.3950000000001 1000 50 0.9426152 +204 1000.395 1004.2725 1000 50 0.999977 +205 1004.2725 1008.1500000000001 1000 50 0.8989397 +206 1008.15 1012.0275 1000 50 0.6551807 +207 1012.0275 1015.9050000000001 1000 50 0.96553504 +208 1015.905 1019.7825 1000 50 0.8566646 +209 1019.7825 1023.6600000000001 1000 50 0.9969138 +210 1023.66 1027.5375 1000 50 0.9982096 +211 1027.5375 1031.415 1000 50 0.96044904 +212 1035.2925 1039.17 1000 50 0.7075944 +213 1039.17 1043.0475000000001 1000 50 0.879308 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_06-21-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_06-21-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d59e104a217d4862ddde8596933339995babbce2 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_06-21-05_annot_2022-11-30_01.txt @@ -0,0 +1,42 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.85067505 +2 3.8775 7.755 1000 50 0.935534 +3 7.755 11.6325 1000 50 0.9807709 +4 11.6325 15.51 1000 50 0.6917447 +5 15.51 19.3875 1000 50 0.66695935 +6 27.1425 31.02 1000 50 0.6241992 +7 38.775 42.652499999999996 1000 50 0.99181414 +8 42.6525 46.53 1000 50 0.59569883 +9 46.53 50.4075 1000 50 0.6529699 +10 50.4075 54.285 1000 50 0.6448009 +11 65.9175 69.795 1000 50 0.9081237 +12 85.305 89.1825 1000 50 0.8805167 +13 93.06 96.9375 1000 50 0.9988985 +14 104.6925 108.57 1000 50 0.5879595 +15 112.4475 116.325 1000 50 0.8792231 +16 120.2025 124.08 1000 50 0.88765925 +17 124.08 127.9575 1000 50 0.8266856 +18 127.9575 131.835 1000 50 0.84964925 +19 131.835 135.7125 1000 50 0.6922023 +20 135.7125 139.59 1000 50 0.8502176 +21 143.4675 147.345 1000 50 0.9471394 +22 147.345 151.2225 1000 50 0.67652214 +23 151.2225 155.1 1000 50 0.61128724 +24 155.1 158.9775 1000 50 0.79408157 +25 158.9775 162.855 1000 50 0.8715213 +26 162.855 166.7325 1000 50 0.6369703 +27 166.7325 170.60999999999999 1000 50 0.9915537 +28 174.4875 178.365 1000 50 0.9329603 +29 178.365 182.2425 1000 50 0.996842 +30 186.12 189.9975 1000 50 0.933953 +31 189.9975 193.875 1000 50 0.9996643 +32 193.875 197.7525 1000 50 0.69186234 +33 197.7525 201.63 1000 50 0.99999917 +34 205.5075 209.385 1000 50 0.58028585 +35 209.385 213.2625 1000 50 0.99999917 +36 213.2625 217.14 1000 50 0.8592599 +37 217.14 221.01749999999998 1000 50 0.9996165 +38 224.895 228.7725 1000 50 0.99094135 +39 228.7725 232.65 1000 50 0.9962962 +40 232.65 236.5275 1000 50 0.8189237 +41 236.5275 240.405 1000 50 0.99963176 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_07-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_07-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..419664991759c6a66ea69d1f6a6bdec2b1778710 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_07-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,207 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.99875927 +2 7.755 11.6325 1000 50 0.9995677 +3 15.51 19.3875 1000 50 0.9999546 +4 27.1425 31.02 1000 50 0.996566 +5 31.02 34.8975 1000 50 0.9360543 +6 34.8975 38.775 1000 50 0.99999964 +7 38.775 42.652499999999996 1000 50 0.6152993 +8 46.53 50.4075 1000 50 0.9999981 +9 54.285 58.162499999999994 1000 50 0.9998745 +10 58.1625 62.04 1000 50 0.9998808 +11 65.9175 69.795 1000 50 1.0 +12 69.795 73.6725 1000 50 0.841203 +13 77.55 81.4275 1000 50 0.99999225 +14 85.305 89.1825 1000 50 0.9999982 +15 93.06 96.9375 1000 50 0.8811614 +16 96.9375 100.815 1000 50 0.9297086 +17 100.815 104.6925 1000 50 0.99845207 +18 104.6925 108.57 1000 50 0.9997141 +19 108.57 112.44749999999999 1000 50 0.90648925 +20 116.325 120.2025 1000 50 0.9998648 +21 124.08 127.9575 1000 50 0.9999951 +22 127.9575 131.835 1000 50 0.7301864 +23 135.7125 139.59 1000 50 0.99974304 +24 139.59 143.4675 1000 50 0.99960667 +25 143.4675 147.345 1000 50 0.590628 +26 147.345 151.2225 1000 50 0.99928516 +27 151.2225 155.1 1000 50 0.8566324 +28 155.1 158.9775 1000 50 0.9995172 +29 158.9775 162.855 1000 50 0.6269883 +30 162.855 166.7325 1000 50 0.5258091 +31 166.7325 170.60999999999999 1000 50 0.99999714 +32 170.61 174.4875 1000 50 0.5014363 +33 174.4875 178.365 1000 50 0.6765032 +34 178.365 182.2425 1000 50 1.0 +35 186.12 189.9975 1000 50 0.99999976 +36 189.9975 193.875 1000 50 0.9619517 +37 197.7525 201.63 1000 50 0.57725114 +38 201.63 205.5075 1000 50 0.913845 +39 209.385 213.2625 1000 50 0.98911 +40 217.14 221.01749999999998 1000 50 0.7545417 +41 221.0175 224.895 1000 50 0.8810571 +42 224.895 228.7725 1000 50 0.77927417 +43 232.65 236.5275 1000 50 0.9589804 +44 244.2825 248.16 1000 50 0.740505 +45 252.0375 255.915 1000 50 0.5110026 +46 259.7925 263.67 1000 50 0.5731214 +47 263.67 267.5475 1000 50 0.7003464 +48 271.425 275.3025 1000 50 0.7180747 +49 279.18 283.0575 1000 50 0.8562231 +50 283.0575 286.935 1000 50 0.8547575 +51 286.935 290.8125 1000 50 0.75228393 +52 290.8125 294.69 1000 50 0.7325747 +53 298.5675 302.445 1000 50 0.56522787 +54 306.3225 310.2 1000 50 0.807231 +55 310.2 314.0775 1000 50 0.60825026 +56 317.955 321.8325 1000 50 0.9517983 +57 321.8325 325.71 1000 50 0.61335444 +58 325.71 329.5875 1000 50 0.68885213 +59 333.465 337.3425 1000 50 0.7941637 +60 337.3425 341.21999999999997 1000 50 0.5081437 +61 368.3625 372.24 1000 50 0.7144983 +62 376.1175 379.995 1000 50 0.6955542 +63 379.995 383.8725 1000 50 0.8317853 +64 387.75 391.6275 1000 50 0.87237245 +65 411.015 414.8925 1000 50 0.7535605 +66 418.77 422.6475 1000 50 0.6163262 +67 426.525 430.4025 1000 50 0.5513075 +68 438.1575 442.035 1000 50 0.9622133 +69 442.035 445.9125 1000 50 0.65697575 +70 449.79 453.6675 1000 50 0.62437165 +71 465.3 469.1775 1000 50 0.91157633 +72 476.9325 480.81 1000 50 0.76822656 +73 492.4425 496.32 1000 50 0.53584176 +74 507.9525 511.83 1000 50 0.99999917 +75 511.83 515.7075 1000 50 0.53763396 +76 519.585 523.4625000000001 1000 50 0.9998242 +77 527.34 531.2175000000001 1000 50 0.6334369 +78 531.2175 535.095 1000 50 0.9869801 +79 542.85 546.7275000000001 1000 50 0.59127504 +80 550.605 554.4825000000001 1000 50 0.85345244 +81 562.2375 566.115 1000 50 0.8355664 +82 566.115 569.9925000000001 1000 50 0.9271646 +83 569.9925 573.87 1000 50 0.6306783 +84 585.5025 589.3800000000001 1000 50 0.8970499 +85 597.135 601.0125 1000 50 0.633802 +86 612.645 616.5225 1000 50 0.78530854 +87 616.5225 620.4000000000001 1000 50 0.97972393 +88 620.4 624.2775 1000 50 0.6582344 +89 624.2775 628.1550000000001 1000 50 0.9998888 +90 632.0325 635.9100000000001 1000 50 0.98812485 +91 635.91 639.7875 1000 50 0.9843486 +92 639.7875 643.6650000000001 1000 50 0.91318095 +93 643.665 647.5425 1000 50 0.99965477 +94 647.5425 651.4200000000001 1000 50 0.5965912 +95 651.42 655.2975 1000 50 0.9993092 +96 655.2975 659.1750000000001 1000 50 0.964585 +97 663.0525 666.9300000000001 1000 50 0.5245824 +98 666.93 670.8075 1000 50 0.9938871 +99 670.8075 674.6850000000001 1000 50 0.99958044 +100 674.685 678.5625 1000 50 0.82145154 +101 678.5625 682.44 1000 50 0.9966143 +102 682.44 686.3175000000001 1000 50 0.8106073 +103 686.3175 690.195 1000 50 0.8303918 +104 690.195 694.0725000000001 1000 50 0.74582136 +105 694.0725 697.95 1000 50 0.97148263 +106 697.95 701.8275000000001 1000 50 0.9025015 +107 705.705 709.5825000000001 1000 50 0.9502901 +108 709.5825 713.46 1000 50 0.9541605 +109 717.3375 721.215 1000 50 0.9992793 +110 725.0925 728.97 1000 50 0.97038627 +111 728.97 732.8475000000001 1000 50 0.50173444 +112 732.8475 736.725 1000 50 0.6454425 +113 736.725 740.6025000000001 1000 50 0.87207574 +114 740.6025 744.48 1000 50 0.62224483 +115 744.48 748.3575000000001 1000 50 0.9843024 +116 752.235 756.1125000000001 1000 50 0.99964046 +117 756.1125 759.99 1000 50 0.86373234 +118 763.8675 767.745 1000 50 0.9993486 +119 771.6225 775.5 1000 50 0.816931 +120 775.5 779.3775 1000 50 0.93560296 +121 779.3775 783.2550000000001 1000 50 0.99949706 +122 783.255 787.1325 1000 50 0.99137044 +123 787.1325 791.0100000000001 1000 50 0.65019816 +124 794.8875 798.7650000000001 1000 50 0.9998543 +125 806.52 810.3975 1000 50 0.9969997 +126 810.3975 814.2750000000001 1000 50 0.78494316 +127 814.275 818.1525 1000 50 0.8047183 +128 818.1525 822.0300000000001 1000 50 0.984663 +129 833.6625 837.5400000000001 1000 50 0.9645036 +130 837.54 841.4175 1000 50 0.9960907 +131 841.4175 845.2950000000001 1000 50 0.7314683 +132 845.295 849.1725 1000 50 0.71353894 +133 849.1725 853.0500000000001 1000 50 0.91548187 +134 853.05 856.9275 1000 50 0.97771555 +135 860.805 864.6825 1000 50 0.9976876 +136 864.6825 868.5600000000001 1000 50 0.98154324 +137 868.56 872.4375 1000 50 0.8290338 +138 872.4375 876.315 1000 50 0.98796904 +139 876.315 880.1925000000001 1000 50 0.9867214 +140 880.1925 884.07 1000 50 0.99600285 +141 884.07 887.9475000000001 1000 50 0.99885833 +142 891.825 895.7025000000001 1000 50 0.87424564 +143 895.7025 899.58 1000 50 0.88723826 +144 903.4575 907.335 1000 50 0.8090371 +145 907.335 911.2125000000001 1000 50 0.94869804 +146 911.2125 915.09 1000 50 0.8974412 +147 915.09 918.9675000000001 1000 50 0.9222514 +148 918.9675 922.845 1000 50 0.9606722 +149 926.7225 930.6 1000 50 0.71132684 +150 942.2325 946.11 1000 50 0.7087899 +151 946.11 949.9875000000001 1000 50 0.99059045 +152 949.9875 953.865 1000 50 0.5367395 +153 969.375 973.2525 1000 50 0.9433522 +154 973.2525 977.1300000000001 1000 50 0.6162337 +155 988.7625 992.6400000000001 1000 50 0.60899335 +156 992.64 996.5175 1000 50 0.68097156 +157 996.5175 1000.3950000000001 1000 50 0.9998634 +158 1004.2725 1008.1500000000001 1000 50 0.8148271 +159 1008.15 1012.0275 1000 50 0.691866 +160 1012.0275 1015.9050000000001 1000 50 0.6815303 +161 1019.7825 1023.6600000000001 1000 50 0.8737084 +162 1023.66 1027.5375 1000 50 0.9508036 +163 1027.5375 1031.415 1000 50 0.84770423 +164 1031.415 1035.2925 1000 50 0.988765 +165 1035.2925 1039.17 1000 50 0.82462674 +166 1039.17 1043.0475000000001 1000 50 0.53761405 +167 1043.0475 1046.925 1000 50 0.8792823 +168 1050.8025 1054.68 1000 50 0.5337288 +169 1070.19 1074.0675 1000 50 0.68294513 +170 1074.0675 1077.9450000000002 1000 50 0.8213233 +171 1081.8225 1085.7 1000 50 0.9868885 +172 1085.7 1089.5775 1000 50 0.60479766 +173 1089.5775 1093.4550000000002 1000 50 0.68447804 +174 1093.455 1097.3325 1000 50 0.89116126 +175 1116.72 1120.5975 1000 50 0.69271946 +176 1124.475 1128.3525 1000 50 0.6249609 +177 1151.6175 1155.4950000000001 1000 50 0.60306495 +178 1163.25 1167.1275 1000 50 0.8774306 +179 1178.76 1182.6375 1000 50 0.6173159 +180 1182.6375 1186.515 1000 50 0.5845614 +181 1194.27 1198.1475 1000 50 0.9170208 +182 1202.025 1205.9025000000001 1000 50 0.69324934 +183 1209.78 1213.6575 1000 50 0.66985154 +184 1225.29 1229.1675 1000 50 0.6692649 +185 1229.1675 1233.045 1000 50 0.9855583 +186 1240.8 1244.6775 1000 50 0.99788123 +187 1244.6775 1248.555 1000 50 0.6553639 +188 1252.4325 1256.31 1000 50 0.999752 +189 1256.31 1260.1875 1000 50 0.9915564 +190 1260.1875 1264.065 1000 50 0.9999393 +191 1264.065 1267.9425 1000 50 0.97704405 +192 1271.82 1275.6975 1000 50 0.9922037 +193 1279.575 1283.4525 1000 50 0.99987316 +194 1291.2075 1295.085 1000 50 0.99978465 +195 1298.9625 1302.8400000000001 1000 50 0.9804418 +196 1302.84 1306.7175 1000 50 0.9999925 +197 1306.7175 1310.595 1000 50 0.7981164 +198 1310.595 1314.4725 1000 50 0.999928 +199 1322.2275 1326.105 1000 50 0.99999833 +200 1326.105 1329.9825 1000 50 0.9686419 +201 1329.9825 1333.8600000000001 1000 50 0.9998386 +202 1333.86 1337.7375 1000 50 0.99999976 +203 1341.615 1345.4925 1000 50 0.9933529 +204 1345.4925 1349.3700000000001 1000 50 0.9995783 +205 1353.2475 1357.125 1000 50 0.9999914 +206 1361.0025 1364.88 1000 50 0.71380544 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_08-00-06_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_08-00-06_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1b49f140fac19e424466dc5f01c0f30ea072c01e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_08-00-06_annot_2022-11-30_01.txt @@ -0,0 +1,230 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9999198 +2 7.755 11.6325 1000 50 0.99084306 +3 15.51 19.3875 1000 50 0.9999999 +4 19.3875 23.265 1000 50 0.7766788 +5 23.265 27.142500000000002 1000 50 0.99467367 +6 27.1425 31.02 1000 50 0.9999999 +7 31.02 34.8975 1000 50 0.99173355 +8 34.8975 38.775 1000 50 0.9999974 +9 42.6525 46.53 1000 50 0.7257185 +10 54.285 58.162499999999994 1000 50 0.99995863 +11 58.1625 62.04 1000 50 0.95481104 +12 65.9175 69.795 1000 50 0.9999999 +13 73.6725 77.55 1000 50 0.9975051 +14 77.55 81.4275 1000 50 0.9957455 +15 85.305 89.1825 1000 50 0.99806935 +16 89.1825 93.06 1000 50 0.94928646 +17 96.9375 100.815 1000 50 0.9999833 +18 100.815 104.6925 1000 50 0.74835503 +19 108.57 112.44749999999999 1000 50 1.0 +20 116.325 120.2025 1000 50 0.99856997 +21 120.2025 124.08 1000 50 0.83962405 +22 124.08 127.9575 1000 50 0.9082927 +23 127.9575 131.835 1000 50 0.99995327 +24 131.835 135.7125 1000 50 0.9820126 +25 135.7125 139.59 1000 50 0.9159757 +26 139.59 143.4675 1000 50 0.9999988 +27 143.4675 147.345 1000 50 0.9975777 +28 147.345 151.2225 1000 50 0.9999211 +29 151.2225 155.1 1000 50 0.9088798 +30 155.1 158.9775 1000 50 0.9574622 +31 158.9775 162.855 1000 50 0.99999785 +32 170.61 174.4875 1000 50 0.9999443 +33 178.365 182.2425 1000 50 0.99834406 +34 189.9975 193.875 1000 50 0.9999728 +35 193.875 197.7525 1000 50 0.9999962 +36 197.7525 201.63 1000 50 0.9999083 +37 201.63 205.5075 1000 50 0.9999938 +38 205.5075 209.385 1000 50 0.99918205 +39 209.385 213.2625 1000 50 0.9999857 +40 213.2625 217.14 1000 50 0.6701451 +41 217.14 221.01749999999998 1000 50 0.9184504 +42 221.0175 224.895 1000 50 0.9999974 +43 224.895 228.7725 1000 50 0.64043164 +44 228.7725 232.65 1000 50 0.9913879 +45 232.65 236.5275 1000 50 0.9987178 +46 236.5275 240.405 1000 50 0.70701706 +47 252.0375 255.915 1000 50 0.8968416 +48 259.7925 263.67 1000 50 0.9898735 +49 263.67 267.5475 1000 50 0.5713399 +50 267.5475 271.425 1000 50 0.9993892 +51 271.425 275.3025 1000 50 0.9994111 +52 279.18 283.0575 1000 50 0.99995744 +53 283.0575 286.935 1000 50 0.9844066 +54 290.8125 294.69 1000 50 0.8509676 +55 294.69 298.5675 1000 50 0.8242373 +56 302.445 306.3225 1000 50 0.67402375 +57 306.3225 310.2 1000 50 0.99994063 +58 314.0775 317.955 1000 50 0.70500606 +59 317.955 321.8325 1000 50 0.9740426 +60 321.8325 325.71 1000 50 0.9702308 +61 325.71 329.5875 1000 50 0.9961617 +62 329.5875 333.465 1000 50 0.96666116 +63 337.3425 341.21999999999997 1000 50 0.8604674 +64 348.975 352.8525 1000 50 0.7886728 +65 352.8525 356.73 1000 50 0.9015514 +66 360.6075 364.485 1000 50 0.9404153 +67 364.485 368.3625 1000 50 0.6786375 +68 376.1175 379.995 1000 50 0.74298406 +69 383.8725 387.75 1000 50 0.7172424 +70 395.505 399.3825 1000 50 0.6636576 +71 407.1375 411.015 1000 50 0.78092676 +72 411.015 414.8925 1000 50 0.98347753 +73 422.6475 426.525 1000 50 0.9500873 +74 442.035 445.9125 1000 50 0.9042247 +75 445.9125 449.79 1000 50 0.5267873 +76 453.6675 457.545 1000 50 0.9674951 +77 465.3 469.1775 1000 50 0.83991945 +78 476.9325 480.81 1000 50 0.5514037 +79 484.6875 488.565 1000 50 0.6426757 +80 511.83 515.7075 1000 50 0.9688126 +81 535.095 538.9725000000001 1000 50 0.63115585 +82 542.85 546.7275000000001 1000 50 0.8013575 +83 550.605 554.4825000000001 1000 50 0.64206517 +84 558.36 562.2375000000001 1000 50 0.8404128 +85 566.115 569.9925000000001 1000 50 0.99954295 +86 573.87 577.7475000000001 1000 50 0.99999034 +87 577.7475 581.625 1000 50 0.92315114 +88 585.5025 589.3800000000001 1000 50 0.9997633 +89 589.38 593.2575 1000 50 0.9728837 +90 597.135 601.0125 1000 50 0.9999156 +91 601.0125 604.8900000000001 1000 50 0.5395006 +92 604.89 608.7675 1000 50 0.7501417 +93 608.7675 612.6450000000001 1000 50 0.9997255 +94 612.645 616.5225 1000 50 0.71408415 +95 620.4 624.2775 1000 50 0.5905682 +96 628.155 632.0325 1000 50 0.99996233 +97 632.0325 635.9100000000001 1000 50 0.9900075 +98 639.7875 643.6650000000001 1000 50 0.99319434 +99 643.665 647.5425 1000 50 0.9921295 +100 651.42 655.2975 1000 50 0.9101133 +101 655.2975 659.1750000000001 1000 50 0.9960395 +102 659.175 663.0525 1000 50 0.99135476 +103 663.0525 666.9300000000001 1000 50 0.9937453 +104 666.93 670.8075 1000 50 0.6918865 +105 670.8075 674.6850000000001 1000 50 0.99991107 +106 674.685 678.5625 1000 50 0.99935824 +107 686.3175 690.195 1000 50 0.99991846 +108 690.195 694.0725000000001 1000 50 0.9872936 +109 694.0725 697.95 1000 50 0.9917813 +110 697.95 701.8275000000001 1000 50 0.99954337 +111 701.8275 705.705 1000 50 0.7899321 +112 709.5825 713.46 1000 50 0.9999317 +113 721.215 725.0925000000001 1000 50 0.99967 +114 725.0925 728.97 1000 50 0.834938 +115 728.97 732.8475000000001 1000 50 0.55277395 +116 732.8475 736.725 1000 50 0.98198366 +117 740.6025 744.48 1000 50 0.95825976 +118 744.48 748.3575000000001 1000 50 0.9990152 +119 752.235 756.1125000000001 1000 50 0.9998548 +120 756.1125 759.99 1000 50 0.9973041 +121 763.8675 767.745 1000 50 0.9945861 +122 771.6225 775.5 1000 50 0.99540234 +123 775.5 779.3775 1000 50 0.99936754 +124 779.3775 783.2550000000001 1000 50 0.91154414 +125 783.255 787.1325 1000 50 0.9845734 +126 787.1325 791.0100000000001 1000 50 0.9973328 +127 791.01 794.8875 1000 50 0.7955828 +128 794.8875 798.7650000000001 1000 50 0.9996151 +129 798.765 802.6425 1000 50 0.9981066 +130 802.6425 806.5200000000001 1000 50 0.9951822 +131 806.52 810.3975 1000 50 0.9036595 +132 810.3975 814.2750000000001 1000 50 0.63029605 +133 814.275 818.1525 1000 50 0.9701719 +134 818.1525 822.0300000000001 1000 50 0.988665 +135 822.03 825.9075 1000 50 0.8600546 +136 829.785 833.6625 1000 50 0.99809295 +137 833.6625 837.5400000000001 1000 50 0.5213455 +138 837.54 841.4175 1000 50 0.7302299 +139 841.4175 845.2950000000001 1000 50 0.99986804 +140 845.295 849.1725 1000 50 0.98269457 +141 853.05 856.9275 1000 50 0.9986557 +142 860.805 864.6825 1000 50 0.99906677 +143 864.6825 868.5600000000001 1000 50 0.999813 +144 868.56 872.4375 1000 50 0.94142735 +145 872.4375 876.315 1000 50 0.99961853 +146 876.315 880.1925000000001 1000 50 0.9950098 +147 880.1925 884.07 1000 50 0.9842201 +148 884.07 887.9475000000001 1000 50 0.61706203 +149 887.9475 891.825 1000 50 0.8148237 +150 891.825 895.7025000000001 1000 50 0.9639274 +151 895.7025 899.58 1000 50 0.77413976 +152 899.58 903.4575000000001 1000 50 0.8485219 +153 903.4575 907.335 1000 50 0.60971165 +154 907.335 911.2125000000001 1000 50 0.99088025 +155 911.2125 915.09 1000 50 0.92981255 +156 915.09 918.9675000000001 1000 50 0.50672185 +157 918.9675 922.845 1000 50 0.9214609 +158 922.845 926.7225000000001 1000 50 0.73138267 +159 930.6 934.4775000000001 1000 50 0.999198 +160 934.4775 938.355 1000 50 0.8493931 +161 938.355 942.2325000000001 1000 50 0.9999894 +162 949.9875 953.865 1000 50 0.99976844 +163 969.375 973.2525 1000 50 0.9442945 +164 977.13 981.0075 1000 50 0.5784877 +165 981.0075 984.8850000000001 1000 50 0.9114058 +166 988.7625 992.6400000000001 1000 50 0.9643006 +167 992.64 996.5175 1000 50 0.9617378 +168 1000.395 1004.2725 1000 50 0.9759267 +169 1004.2725 1008.1500000000001 1000 50 0.91506004 +170 1015.905 1019.7825 1000 50 0.725523 +171 1023.66 1027.5375 1000 50 0.99816555 +172 1027.5375 1031.415 1000 50 0.99894696 +173 1039.17 1043.0475000000001 1000 50 0.9898788 +174 1046.925 1050.8025 1000 50 0.74137765 +175 1050.8025 1054.68 1000 50 0.9991648 +176 1070.19 1074.0675 1000 50 0.5422949 +177 1074.0675 1077.9450000000002 1000 50 0.8462938 +178 1097.3325 1101.21 1000 50 0.82769585 +179 1101.21 1105.0875 1000 50 0.5209879 +180 1112.8425 1116.72 1000 50 0.6091462 +181 1116.72 1120.5975 1000 50 0.61393684 +182 1124.475 1128.3525 1000 50 0.5469564 +183 1132.23 1136.1075 1000 50 0.8253869 +184 1155.495 1159.3725 1000 50 0.68535495 +185 1167.1275 1171.005 1000 50 0.5795098 +186 1178.76 1182.6375 1000 50 0.7797479 +187 1186.515 1190.3925000000002 1000 50 0.76042277 +188 1190.3925 1194.27 1000 50 0.99927 +189 1202.025 1205.9025000000001 1000 50 0.977634 +190 1205.9025 1209.78 1000 50 0.7026922 +191 1213.6575 1217.535 1000 50 0.99099755 +192 1221.4125 1225.29 1000 50 0.98682934 +193 1225.29 1229.1675 1000 50 0.9240969 +194 1236.9225 1240.8 1000 50 0.5365832 +195 1248.555 1252.4325000000001 1000 50 0.6157808 +196 1260.1875 1264.065 1000 50 0.8125119 +197 1267.9425 1271.8200000000002 1000 50 0.93036807 +198 1271.82 1275.6975 1000 50 0.77939105 +199 1275.6975 1279.575 1000 50 0.9976579 +200 1283.4525 1287.3300000000002 1000 50 0.8455198 +201 1287.33 1291.2075 1000 50 0.6811569 +202 1291.2075 1295.085 1000 50 0.5617587 +203 1302.84 1306.7175 1000 50 0.66999936 +204 1314.4725 1318.3500000000001 1000 50 0.9538875 +205 1326.105 1329.9825 1000 50 0.792543 +206 1333.86 1337.7375 1000 50 0.75880915 +207 1337.7375 1341.615 1000 50 0.9286106 +208 1345.4925 1349.3700000000001 1000 50 0.82862014 +209 1349.37 1353.2475 1000 50 0.9715214 +210 1357.125 1361.0025 1000 50 0.6617707 +211 1361.0025 1364.88 1000 50 0.95743525 +212 1364.88 1368.7575000000002 1000 50 0.647561 +213 1380.39 1384.2675000000002 1000 50 0.9862493 +214 1388.145 1392.0225 1000 50 0.6732218 +215 1395.9 1399.7775000000001 1000 50 0.5784855 +216 1403.655 1407.5325 1000 50 0.698912 +217 1411.41 1415.2875000000001 1000 50 0.9953917 +218 1415.2875 1419.165 1000 50 0.79255635 +219 1419.165 1423.0425 1000 50 0.5750814 +220 1423.0425 1426.92 1000 50 0.5142691 +221 1430.7975 1434.675 1000 50 0.9180058 +222 1438.5525 1442.43 1000 50 0.98453957 +223 1450.185 1454.0625 1000 50 0.65937257 +224 1454.0625 1457.94 1000 50 0.5337668 +225 1465.695 1469.5725 1000 50 0.6543289 +226 1477.3275 1481.2050000000002 1000 50 0.99667907 +227 1481.205 1485.0825 1000 50 0.74319535 +228 1488.96 1492.8375 1000 50 0.9999045 +229 1492.8375 1496.7150000000001 1000 50 0.80390286 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_09-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_09-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..52af0ee1da6ea527d0116ecf41abfb55b7dda6e6 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_09-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,10 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.67036563 +2 7.755 11.6325 1000 50 0.99530184 +3 19.3875 23.265 1000 50 0.6233616 +4 27.1425 31.02 1000 50 0.8344528 +5 34.8975 38.775 1000 50 0.75049454 +6 38.775 42.652499999999996 1000 50 0.96574545 +7 50.4075 54.285 1000 50 0.6874958 +8 58.1625 62.04 1000 50 0.58737797 +9 62.04 65.9175 1000 50 0.9992582 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_09-04-50_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_09-04-50_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..9a3b2d7721d4f2a2d4ad4c60d6dcd819f30c70b9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_09-04-50_annot_2022-11-30_01.txt @@ -0,0 +1,182 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.5335533 +2 3.8775 7.755 1000 50 0.6308589 +3 7.755 11.6325 1000 50 0.9969267 +4 15.51 19.3875 1000 50 0.77815974 +5 19.3875 23.265 1000 50 0.58212024 +6 23.265 27.142500000000002 1000 50 0.82016957 +7 27.1425 31.02 1000 50 0.666374 +8 46.53 50.4075 1000 50 0.67035735 +9 50.4075 54.285 1000 50 0.9665905 +10 54.285 58.162499999999994 1000 50 0.59713614 +11 58.1625 62.04 1000 50 0.9921644 +12 69.795 73.6725 1000 50 0.9472766 +13 81.4275 85.30499999999999 1000 50 0.96684784 +14 96.9375 100.815 1000 50 0.97502 +15 100.815 104.6925 1000 50 0.5691664 +16 108.57 112.44749999999999 1000 50 0.9486666 +17 127.9575 131.835 1000 50 0.9998623 +18 131.835 135.7125 1000 50 0.52828705 +19 135.7125 139.59 1000 50 0.8965766 +20 139.59 143.4675 1000 50 0.9986565 +21 147.345 151.2225 1000 50 0.66619766 +22 155.1 158.9775 1000 50 0.6260626 +23 158.9775 162.855 1000 50 0.69821316 +24 178.365 182.2425 1000 50 0.95450795 +25 182.2425 186.12 1000 50 0.9922086 +26 189.9975 193.875 1000 50 0.6862446 +27 193.875 197.7525 1000 50 0.5728362 +28 201.63 205.5075 1000 50 0.7107247 +29 205.5075 209.385 1000 50 0.9997018 +30 217.14 221.01749999999998 1000 50 0.99999917 +31 224.895 228.7725 1000 50 0.9999721 +32 228.7725 232.65 1000 50 0.9999995 +33 232.65 236.5275 1000 50 0.91961646 +34 236.5275 240.405 1000 50 0.9999598 +35 244.2825 248.16 1000 50 0.539677 +36 248.16 252.0375 1000 50 0.9947101 +37 255.915 259.7925 1000 50 0.99958736 +38 259.7925 263.67 1000 50 0.6144926 +39 267.5475 271.425 1000 50 0.9999981 +40 271.425 275.3025 1000 50 0.8471727 +41 275.3025 279.18 1000 50 0.9995908 +42 279.18 283.0575 1000 50 0.6483872 +43 283.0575 286.935 1000 50 0.50736487 +44 286.935 290.8125 1000 50 0.99993575 +45 294.69 298.5675 1000 50 0.99715877 +46 302.445 306.3225 1000 50 0.73633087 +47 306.3225 310.2 1000 50 0.9999796 +48 310.2 314.0775 1000 50 0.99984 +49 314.0775 317.955 1000 50 0.9991297 +50 317.955 321.8325 1000 50 0.9933622 +51 321.8325 325.71 1000 50 0.7912475 +52 325.71 329.5875 1000 50 0.99932814 +53 337.3425 341.21999999999997 1000 50 0.99999106 +54 348.975 352.8525 1000 50 0.95876914 +55 352.8525 356.73 1000 50 0.7702793 +56 356.73 360.6075 1000 50 0.9999064 +57 364.485 368.3625 1000 50 0.70300907 +58 368.3625 372.24 1000 50 0.99911386 +59 376.1175 379.995 1000 50 0.9994073 +60 379.995 383.8725 1000 50 0.9994324 +61 387.75 391.6275 1000 50 0.9569044 +62 391.6275 395.505 1000 50 0.7510869 +63 399.3825 403.26 1000 50 0.9997609 +64 407.1375 411.015 1000 50 0.9999651 +65 418.77 422.6475 1000 50 0.9999975 +66 422.6475 426.525 1000 50 0.99235475 +67 430.4025 434.28 1000 50 1.0 +68 438.1575 442.035 1000 50 0.737865 +69 457.545 461.4225 1000 50 0.68454957 +70 465.3 469.1775 1000 50 0.75918305 +71 469.1775 473.055 1000 50 0.87296295 +72 480.81 484.6875 1000 50 0.9885069 +73 488.565 492.4425 1000 50 0.95999676 +74 492.4425 496.32 1000 50 0.9187699 +75 496.32 500.1975 1000 50 0.781325 +76 507.9525 511.83 1000 50 0.9001765 +77 511.83 515.7075 1000 50 0.66760343 +78 523.4625 527.34 1000 50 0.5193423 +79 535.095 538.9725000000001 1000 50 0.5743348 +80 546.7275 550.605 1000 50 0.74294335 +81 554.4825 558.36 1000 50 0.68350893 +82 566.115 569.9925000000001 1000 50 0.5354244 +83 589.38 593.2575 1000 50 0.5369392 +84 601.0125 604.8900000000001 1000 50 0.55138224 +85 616.5225 620.4000000000001 1000 50 0.62335527 +86 632.0325 635.9100000000001 1000 50 0.8826701 +87 635.91 639.7875 1000 50 0.5320539 +88 639.7875 643.6650000000001 1000 50 0.7879281 +89 670.8075 674.6850000000001 1000 50 0.99998605 +90 678.5625 682.44 1000 50 0.99037457 +91 682.44 686.3175000000001 1000 50 0.9992212 +92 690.195 694.0725000000001 1000 50 0.9999956 +93 694.0725 697.95 1000 50 0.9422797 +94 701.8275 705.705 1000 50 0.9999877 +95 705.705 709.5825000000001 1000 50 0.9841956 +96 709.5825 713.46 1000 50 0.9996662 +97 713.46 717.3375000000001 1000 50 0.7274686 +98 721.215 725.0925000000001 1000 50 0.99725646 +99 725.0925 728.97 1000 50 0.9647737 +100 728.97 732.8475000000001 1000 50 0.8838751 +101 740.6025 744.48 1000 50 0.99999404 +102 744.48 748.3575000000001 1000 50 0.9651266 +103 752.235 756.1125000000001 1000 50 0.99977916 +104 756.1125 759.99 1000 50 0.8908324 +105 759.99 763.8675000000001 1000 50 0.99995494 +106 763.8675 767.745 1000 50 0.9997414 +107 767.745 771.6225000000001 1000 50 0.74012125 +108 771.6225 775.5 1000 50 0.9999958 +109 775.5 779.3775 1000 50 0.78145903 +110 779.3775 783.2550000000001 1000 50 0.5024279 +111 783.255 787.1325 1000 50 0.85645235 +112 791.01 794.8875 1000 50 0.7537919 +113 794.8875 798.7650000000001 1000 50 0.99995506 +114 806.52 810.3975 1000 50 0.8607962 +115 810.3975 814.2750000000001 1000 50 0.79961735 +116 814.275 818.1525 1000 50 0.9815793 +117 818.1525 822.0300000000001 1000 50 0.94398636 +118 829.785 833.6625 1000 50 0.81441814 +119 837.54 841.4175 1000 50 0.9435135 +120 841.4175 845.2950000000001 1000 50 0.9287157 +121 853.05 856.9275 1000 50 0.89024997 +122 856.9275 860.8050000000001 1000 50 0.9763342 +123 860.805 864.6825 1000 50 0.9993351 +124 872.4375 876.315 1000 50 0.99951935 +125 884.07 887.9475000000001 1000 50 0.83976877 +126 891.825 895.7025000000001 1000 50 0.92247564 +127 895.7025 899.58 1000 50 0.98652935 +128 903.4575 907.335 1000 50 0.87557864 +129 907.335 911.2125000000001 1000 50 0.9327267 +130 915.09 918.9675000000001 1000 50 0.9999703 +131 918.9675 922.845 1000 50 0.9990403 +132 926.7225 930.6 1000 50 0.93818474 +133 930.6 934.4775000000001 1000 50 0.57371885 +134 938.355 942.2325000000001 1000 50 0.9854321 +135 942.2325 946.11 1000 50 0.9963399 +136 946.11 949.9875000000001 1000 50 0.9891677 +137 949.9875 953.865 1000 50 0.9462474 +138 953.865 957.7425000000001 1000 50 0.9985165 +139 961.62 965.4975000000001 1000 50 0.98670876 +140 965.4975 969.375 1000 50 0.9648264 +141 969.375 973.2525 1000 50 0.8751057 +142 973.2525 977.1300000000001 1000 50 0.9686646 +143 977.13 981.0075 1000 50 0.9701589 +144 981.0075 984.8850000000001 1000 50 0.91645896 +145 984.885 988.7625 1000 50 0.73505914 +146 988.7625 992.6400000000001 1000 50 0.9980671 +147 996.5175 1000.3950000000001 1000 50 0.7929391 +148 1000.395 1004.2725 1000 50 0.70587367 +149 1012.0275 1015.9050000000001 1000 50 0.9980965 +150 1015.905 1019.7825 1000 50 0.86693275 +151 1019.7825 1023.6600000000001 1000 50 0.80850446 +152 1023.66 1027.5375 1000 50 0.54807514 +153 1027.5375 1031.415 1000 50 0.9865623 +154 1035.2925 1039.17 1000 50 0.923988 +155 1039.17 1043.0475000000001 1000 50 0.95795745 +156 1043.0475 1046.925 1000 50 0.92035997 +157 1046.925 1050.8025 1000 50 0.6692899 +158 1050.8025 1054.68 1000 50 0.9171274 +159 1054.68 1058.5575000000001 1000 50 0.97547567 +160 1058.5575 1062.435 1000 50 0.9429542 +161 1066.3125 1070.19 1000 50 0.5794662 +162 1070.19 1074.0675 1000 50 0.9540657 +163 1074.0675 1077.9450000000002 1000 50 0.929685 +164 1077.945 1081.8225 1000 50 0.983933 +165 1081.8225 1085.7 1000 50 0.99588287 +166 1085.7 1089.5775 1000 50 0.9115789 +167 1093.455 1097.3325 1000 50 0.97704154 +168 1101.21 1105.0875 1000 50 0.975897 +169 1105.0875 1108.9650000000001 1000 50 0.9423557 +170 1124.475 1128.3525 1000 50 0.7459799 +171 1132.23 1136.1075 1000 50 0.9599729 +172 1139.985 1143.8625 1000 50 0.87420857 +173 1143.8625 1147.74 1000 50 0.7964047 +174 1151.6175 1155.4950000000001 1000 50 0.7766848 +175 1167.1275 1171.005 1000 50 0.61866766 +176 1178.76 1182.6375 1000 50 0.564028 +177 1182.6375 1186.515 1000 50 0.57189035 +178 1194.27 1198.1475 1000 50 0.6057771 +179 1198.1475 1202.025 1000 50 0.62912226 +180 1205.9025 1209.78 1000 50 0.70971924 +181 1213.6575 1217.535 1000 50 0.74230605 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_10-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_10-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1a5f264043fc1a93cd5b854262bd73958f1e80f9 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_10-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,52 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 1.0 +2 3.8775 7.755 1000 50 0.93286556 +3 7.755 11.6325 1000 50 0.9989434 +4 11.6325 15.51 1000 50 0.97803324 +5 19.3875 23.265 1000 50 0.99967945 +6 23.265 27.142500000000002 1000 50 0.83416194 +7 31.02 34.8975 1000 50 0.9922489 +8 34.8975 38.775 1000 50 0.8168061 +9 46.53 50.4075 1000 50 0.7511959 +10 50.4075 54.285 1000 50 0.9999957 +11 54.285 58.162499999999994 1000 50 0.5211832 +12 58.1625 62.04 1000 50 0.9999902 +13 62.04 65.9175 1000 50 0.99819523 +14 65.9175 69.795 1000 50 0.9522024 +15 69.795 73.6725 1000 50 0.9943921 +16 77.55 81.4275 1000 50 0.955997 +17 81.4275 85.30499999999999 1000 50 0.99523467 +18 89.1825 93.06 1000 50 0.9999312 +19 93.06 96.9375 1000 50 0.97767067 +20 96.9375 100.815 1000 50 0.99936813 +21 100.815 104.6925 1000 50 0.84273034 +22 104.6925 108.57 1000 50 0.5130886 +23 108.57 112.44749999999999 1000 50 0.9998826 +24 112.4475 116.325 1000 50 0.9980221 +25 116.325 120.2025 1000 50 0.75115824 +26 120.2025 124.08 1000 50 0.9999981 +27 124.08 127.9575 1000 50 0.99983203 +28 127.9575 131.835 1000 50 0.99801755 +29 131.835 135.7125 1000 50 0.99999976 +30 135.7125 139.59 1000 50 0.76992863 +31 139.59 143.4675 1000 50 0.9998299 +32 147.345 151.2225 1000 50 0.5865157 +33 151.2225 155.1 1000 50 0.9411583 +34 155.1 158.9775 1000 50 0.8397758 +35 158.9775 162.855 1000 50 0.99999785 +36 189.9975 193.875 1000 50 0.78494036 +37 201.63 205.5075 1000 50 0.74330014 +38 205.5075 209.385 1000 50 0.84408957 +39 213.2625 217.14 1000 50 0.7388305 +40 224.895 228.7725 1000 50 0.7171218 +41 236.5275 240.405 1000 50 0.82796085 +42 240.405 244.2825 1000 50 0.7357239 +43 244.2825 248.16 1000 50 0.8663893 +44 263.67 267.5475 1000 50 0.7748209 +45 271.425 275.3025 1000 50 0.6902691 +46 294.69 298.5675 1000 50 0.823171 +47 314.0775 317.955 1000 50 0.9948283 +48 317.955 321.8325 1000 50 0.72113353 +49 325.71 329.5875 1000 50 0.65258193 +50 348.975 352.8525 1000 50 0.6036475 +51 356.73 360.6075 1000 50 0.5574094 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_10-09-41_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_10-09-41_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..6986fb8d4ff8e8d51d392aeb41995d1a5ccb6759 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_10-09-41_annot_2022-11-30_01.txt @@ -0,0 +1,141 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.933826 +2 3.8775 7.755 1000 50 0.6470369 +3 7.755 11.6325 1000 50 0.80165374 +4 11.6325 15.51 1000 50 0.6862621 +5 19.3875 23.265 1000 50 0.9122562 +6 23.265 27.142500000000002 1000 50 0.5820494 +7 27.1425 31.02 1000 50 0.5913223 +8 31.02 34.8975 1000 50 0.9716172 +9 34.8975 38.775 1000 50 0.9991985 +10 38.775 42.652499999999996 1000 50 0.7896586 +11 42.6525 46.53 1000 50 0.9999558 +12 50.4075 54.285 1000 50 0.900116 +13 54.285 58.162499999999994 1000 50 0.98119694 +14 58.1625 62.04 1000 50 0.84528226 +15 62.04 65.9175 1000 50 0.99956304 +16 65.9175 69.795 1000 50 0.97723025 +17 69.795 73.6725 1000 50 0.6725389 +18 73.6725 77.55 1000 50 0.8377419 +19 81.4275 85.30499999999999 1000 50 0.9788847 +20 93.06 96.9375 1000 50 0.8104413 +21 96.9375 100.815 1000 50 0.9998419 +22 108.57 112.44749999999999 1000 50 0.8318554 +23 112.4475 116.325 1000 50 0.8778641 +24 116.325 120.2025 1000 50 0.99881965 +25 120.2025 124.08 1000 50 0.5265032 +26 127.9575 131.835 1000 50 0.9989899 +27 139.59 143.4675 1000 50 0.99935514 +28 147.345 151.2225 1000 50 0.9733559 +29 151.2225 155.1 1000 50 0.95339805 +30 158.9775 162.855 1000 50 0.9972332 +31 162.855 166.7325 1000 50 0.99964917 +32 174.4875 178.365 1000 50 0.7589328 +33 182.2425 186.12 1000 50 0.99835473 +34 205.5075 209.385 1000 50 0.5939955 +35 217.14 221.01749999999998 1000 50 0.7792022 +36 221.0175 224.895 1000 50 0.79623014 +37 228.7725 232.65 1000 50 0.9586527 +38 232.65 236.5275 1000 50 0.760868 +39 236.5275 240.405 1000 50 0.97409374 +40 240.405 244.2825 1000 50 0.97031116 +41 248.16 252.0375 1000 50 0.93102825 +42 259.7925 263.67 1000 50 0.9998679 +43 263.67 267.5475 1000 50 0.741722 +44 271.425 275.3025 1000 50 0.90491027 +45 286.935 290.8125 1000 50 0.6238632 +46 314.0775 317.955 1000 50 0.75984514 +47 317.955 321.8325 1000 50 0.9305406 +48 325.71 329.5875 1000 50 0.9981446 +49 329.5875 333.465 1000 50 0.9474513 +50 337.3425 341.21999999999997 1000 50 0.77001977 +51 348.975 352.8525 1000 50 0.8446012 +52 352.8525 356.73 1000 50 0.7297727 +53 356.73 360.6075 1000 50 0.99837625 +54 364.485 368.3625 1000 50 0.80528367 +55 368.3625 372.24 1000 50 0.9228299 +56 379.995 383.8725 1000 50 0.67767066 +57 383.8725 387.75 1000 50 0.55987394 +58 391.6275 395.505 1000 50 0.79662794 +59 395.505 399.3825 1000 50 0.7687476 +60 399.3825 403.26 1000 50 0.9970482 +61 403.26 407.1375 1000 50 0.6317418 +62 407.1375 411.015 1000 50 0.68748313 +63 418.77 422.6475 1000 50 0.78101164 +64 430.4025 434.28 1000 50 0.5414773 +65 434.28 438.15749999999997 1000 50 0.99483055 +66 445.9125 449.79 1000 50 0.818132 +67 449.79 453.6675 1000 50 0.6049925 +68 453.6675 457.545 1000 50 0.78492516 +69 457.545 461.4225 1000 50 0.64670604 +70 469.1775 473.055 1000 50 0.5675615 +71 473.055 476.9325 1000 50 0.727125 +72 480.81 484.6875 1000 50 0.5253924 +73 488.565 492.4425 1000 50 0.8718138 +74 511.83 515.7075 1000 50 0.6787129 +75 531.2175 535.095 1000 50 0.88407767 +76 538.9725 542.85 1000 50 0.6926993 +77 562.2375 566.115 1000 50 0.9242961 +78 573.87 577.7475000000001 1000 50 0.65466034 +79 593.2575 597.1350000000001 1000 50 0.8790223 +80 601.0125 604.8900000000001 1000 50 0.83285904 +81 608.7675 612.6450000000001 1000 50 0.99601114 +82 612.645 616.5225 1000 50 0.9166943 +83 620.4 624.2775 1000 50 0.9851928 +84 624.2775 628.1550000000001 1000 50 0.7183388 +85 628.155 632.0325 1000 50 0.86888206 +86 632.0325 635.9100000000001 1000 50 0.99951863 +87 635.91 639.7875 1000 50 0.99315566 +88 643.665 647.5425 1000 50 0.99990237 +89 647.5425 651.4200000000001 1000 50 0.757933 +90 651.42 655.2975 1000 50 0.9999465 +91 655.2975 659.1750000000001 1000 50 0.6601738 +92 659.175 663.0525 1000 50 0.9571182 +93 663.0525 666.9300000000001 1000 50 0.9999268 +94 670.8075 674.6850000000001 1000 50 0.9308619 +95 674.685 678.5625 1000 50 0.99987006 +96 678.5625 682.44 1000 50 0.5332365 +97 682.44 686.3175000000001 1000 50 0.99944204 +98 686.3175 690.195 1000 50 0.9992091 +99 694.0725 697.95 1000 50 0.9999753 +100 697.95 701.8275000000001 1000 50 0.7903469 +101 701.8275 705.705 1000 50 0.9970607 +102 713.46 717.3375000000001 1000 50 0.99999964 +103 717.3375 721.215 1000 50 0.66552377 +104 732.8475 736.725 1000 50 0.9991191 +105 736.725 740.6025000000001 1000 50 0.89910257 +106 744.48 748.3575000000001 1000 50 0.99965715 +107 748.3575 752.235 1000 50 0.53443927 +108 752.235 756.1125000000001 1000 50 0.9999962 +109 756.1125 759.99 1000 50 0.99998105 +110 759.99 763.8675000000001 1000 50 0.69780916 +111 763.8675 767.745 1000 50 0.9998567 +112 767.745 771.6225000000001 1000 50 0.98290944 +113 771.6225 775.5 1000 50 0.89415854 +114 775.5 779.3775 1000 50 0.9981838 +115 783.255 787.1325 1000 50 0.99992514 +116 791.01 794.8875 1000 50 0.87834036 +117 794.8875 798.7650000000001 1000 50 0.9981431 +118 798.765 802.6425 1000 50 0.9013123 +119 802.6425 806.5200000000001 1000 50 0.5996041 +120 806.52 810.3975 1000 50 0.9999995 +121 814.275 818.1525 1000 50 0.98793775 +122 825.9075 829.7850000000001 1000 50 0.9998609 +123 829.785 833.6625 1000 50 0.99131495 +124 833.6625 837.5400000000001 1000 50 0.77500296 +125 837.54 841.4175 1000 50 0.9999944 +126 841.4175 845.2950000000001 1000 50 0.55793756 +127 845.295 849.1725 1000 50 0.8815582 +128 849.1725 853.0500000000001 1000 50 0.99989283 +129 853.05 856.9275 1000 50 0.6778212 +130 856.9275 860.8050000000001 1000 50 0.9996902 +131 864.6825 868.5600000000001 1000 50 0.96711737 +132 868.56 872.4375 1000 50 0.999995 +133 872.4375 876.315 1000 50 0.9998859 +134 876.315 880.1925000000001 1000 50 0.9870771 +135 880.1925 884.07 1000 50 0.85455835 +136 884.07 887.9475000000001 1000 50 0.9254918 +137 895.7025 899.58 1000 50 0.6685316 +138 903.4575 907.335 1000 50 0.56105846 +139 915.09 918.9675000000001 1000 50 0.9861152 +140 918.9675 922.845 1000 50 0.63474435 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_11-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_11-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..2f04452a74d1d0a3f4b85e2b220b58b078bc23cb --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_11-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,64 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.7163923 +2 3.8775 7.755 1000 50 0.51315504 +3 7.755 11.6325 1000 50 0.8002331 +4 11.6325 15.51 1000 50 0.70892674 +5 23.265 27.142500000000002 1000 50 0.91360205 +6 31.02 34.8975 1000 50 0.6536625 +7 65.9175 69.795 1000 50 0.6135353 +8 77.55 81.4275 1000 50 0.8464828 +9 81.4275 85.30499999999999 1000 50 0.5775835 +10 85.305 89.1825 1000 50 0.63161814 +11 89.1825 93.06 1000 50 0.5219019 +12 104.6925 108.57 1000 50 0.9927745 +13 124.08 127.9575 1000 50 0.63800263 +14 135.7125 139.59 1000 50 0.983529 +15 139.59 143.4675 1000 50 0.7536136 +16 147.345 151.2225 1000 50 0.8442032 +17 158.9775 162.855 1000 50 0.71627355 +18 170.61 174.4875 1000 50 0.921982 +19 174.4875 178.365 1000 50 0.5100294 +20 189.9975 193.875 1000 50 0.6196516 +21 201.63 205.5075 1000 50 0.7931975 +22 205.5075 209.385 1000 50 0.78212017 +23 221.0175 224.895 1000 50 0.65113264 +24 244.2825 248.16 1000 50 0.5223328 +25 255.915 259.7925 1000 50 0.7513908 +26 267.5475 271.425 1000 50 0.5749403 +27 286.935 290.8125 1000 50 0.66960573 +28 290.8125 294.69 1000 50 0.56298876 +29 302.445 306.3225 1000 50 0.5455312 +30 310.2 314.0775 1000 50 0.58414567 +31 317.955 321.8325 1000 50 0.7312912 +32 321.8325 325.71 1000 50 0.72309995 +33 341.22 345.0975 1000 50 0.50683606 +34 345.0975 348.975 1000 50 0.5053909 +35 348.975 352.8525 1000 50 0.80890703 +36 360.6075 364.485 1000 50 0.75394726 +37 368.3625 372.24 1000 50 0.6824655 +38 391.6275 395.505 1000 50 0.6127513 +39 403.26 407.1375 1000 50 0.92412645 +40 411.015 414.8925 1000 50 0.91430455 +41 414.8925 418.77 1000 50 0.63788116 +42 442.035 445.9125 1000 50 0.57059777 +43 453.6675 457.545 1000 50 0.6504561 +44 488.565 492.4425 1000 50 0.8145683 +45 496.32 500.1975 1000 50 0.7036123 +46 511.83 515.7075 1000 50 0.7474462 +47 535.095 538.9725000000001 1000 50 0.96323043 +48 558.36 562.2375000000001 1000 50 0.5822963 +49 566.115 569.9925000000001 1000 50 0.60302466 +50 569.9925 573.87 1000 50 0.5193931 +51 577.7475 581.625 1000 50 0.746807 +52 581.625 585.5025 1000 50 0.70390266 +53 585.5025 589.3800000000001 1000 50 0.80362606 +54 589.38 593.2575 1000 50 0.84318805 +55 593.2575 597.1350000000001 1000 50 0.9991273 +56 597.135 601.0125 1000 50 0.97142977 +57 601.0125 604.8900000000001 1000 50 0.99644643 +58 608.7675 612.6450000000001 1000 50 0.5491414 +59 612.645 616.5225 1000 50 0.9999697 +60 624.2775 628.1550000000001 1000 50 0.9996898 +61 628.155 632.0325 1000 50 0.9646279 +62 643.665 647.5425 1000 50 0.9180666 +63 655.2975 659.1750000000001 1000 50 0.60851556 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_11-16-29_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_11-16-29_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..3a72695e857fc405af06a5e1db2681455ca52e26 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_11-16-29_annot_2022-11-30_01.txt @@ -0,0 +1,68 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.747637 +2 7.755 11.6325 1000 50 0.6631139 +3 11.6325 15.51 1000 50 0.6630528 +4 23.265 27.142500000000002 1000 50 0.7573335 +5 34.8975 38.775 1000 50 0.84614605 +6 38.775 42.652499999999996 1000 50 0.9379359 +7 42.6525 46.53 1000 50 0.6035205 +8 46.53 50.4075 1000 50 0.9369664 +9 69.795 73.6725 1000 50 0.64021707 +10 81.4275 85.30499999999999 1000 50 0.675137 +11 89.1825 93.06 1000 50 0.5090293 +12 93.06 96.9375 1000 50 0.8296927 +13 96.9375 100.815 1000 50 0.68507546 +14 116.325 120.2025 1000 50 0.69052863 +15 120.2025 124.08 1000 50 0.84751487 +16 131.835 135.7125 1000 50 0.5646156 +17 143.4675 147.345 1000 50 0.83636266 +18 155.1 158.9775 1000 50 0.84742445 +19 162.855 166.7325 1000 50 0.76775354 +20 166.7325 170.60999999999999 1000 50 0.7692395 +21 174.4875 178.365 1000 50 0.6990195 +22 178.365 182.2425 1000 50 0.517887 +23 186.12 189.9975 1000 50 0.64644 +24 193.875 197.7525 1000 50 0.95216644 +25 197.7525 201.63 1000 50 0.52572143 +26 201.63 205.5075 1000 50 0.84909487 +27 213.2625 217.14 1000 50 0.8015589 +28 224.895 228.7725 1000 50 0.6371698 +29 232.65 236.5275 1000 50 0.82976836 +30 244.2825 248.16 1000 50 0.81788856 +31 248.16 252.0375 1000 50 0.74172014 +32 255.915 259.7925 1000 50 0.60192597 +33 259.7925 263.67 1000 50 0.6128346 +34 275.3025 279.18 1000 50 0.8098074 +35 286.935 290.8125 1000 50 0.950618 +36 302.445 306.3225 1000 50 0.5081628 +37 306.3225 310.2 1000 50 0.99984014 +38 310.2 314.0775 1000 50 0.6511944 +39 317.955 321.8325 1000 50 0.73178446 +40 321.8325 325.71 1000 50 0.5542964 +41 329.5875 333.465 1000 50 0.99991655 +42 333.465 337.3425 1000 50 0.76015794 +43 341.22 345.0975 1000 50 0.9869812 +44 352.8525 356.73 1000 50 0.8109412 +45 356.73 360.6075 1000 50 0.6937944 +46 360.6075 364.485 1000 50 0.7261592 +47 364.485 368.3625 1000 50 0.8670239 +48 368.3625 372.24 1000 50 0.69047374 +49 372.24 376.1175 1000 50 0.90816003 +50 376.1175 379.995 1000 50 0.77045643 +51 383.8725 387.75 1000 50 0.997757 +52 387.75 391.6275 1000 50 0.91705656 +53 395.505 399.3825 1000 50 0.85165834 +54 411.015 414.8925 1000 50 0.85503334 +55 414.8925 418.77 1000 50 0.93425435 +56 422.6475 426.525 1000 50 0.5040575 +57 426.525 430.4025 1000 50 0.998912 +58 430.4025 434.28 1000 50 0.64644814 +59 434.28 438.15749999999997 1000 50 0.59170943 +60 445.9125 449.79 1000 50 0.60331607 +61 457.545 461.4225 1000 50 0.7949076 +62 469.1775 473.055 1000 50 0.8117412 +63 476.9325 480.81 1000 50 0.7183949 +64 480.81 484.6875 1000 50 0.64171535 +65 488.565 492.4425 1000 50 0.76807374 +66 492.4425 496.32 1000 50 0.5064257 +67 500.1975 504.075 1000 50 0.5117452 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_12-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_12-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..7c92e9a876e45f25bc3e046402da48e29a766050 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_12-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,118 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.77969265 +2 11.6325 15.51 1000 50 0.7579394 +3 15.51 19.3875 1000 50 0.7462663 +4 19.3875 23.265 1000 50 0.859995 +5 31.02 34.8975 1000 50 0.9577631 +6 38.775 42.652499999999996 1000 50 0.6695774 +7 46.53 50.4075 1000 50 0.7497626 +8 50.4075 54.285 1000 50 0.89170265 +9 54.285 58.162499999999994 1000 50 0.9348093 +10 58.1625 62.04 1000 50 0.81134516 +11 65.9175 69.795 1000 50 0.57238847 +12 69.795 73.6725 1000 50 0.64582574 +13 73.6725 77.55 1000 50 0.948071 +14 77.55 81.4275 1000 50 0.56626105 +15 85.305 89.1825 1000 50 0.7035018 +16 93.06 96.9375 1000 50 0.5080898 +17 96.9375 100.815 1000 50 0.8981162 +18 104.6925 108.57 1000 50 0.84722203 +19 108.57 112.44749999999999 1000 50 0.9383306 +20 139.59 143.4675 1000 50 0.74312204 +21 155.1 158.9775 1000 50 0.6478686 +22 158.9775 162.855 1000 50 0.95351744 +23 182.2425 186.12 1000 50 0.7776472 +24 186.12 189.9975 1000 50 0.99794763 +25 193.875 197.7525 1000 50 0.6233843 +26 197.7525 201.63 1000 50 0.9701081 +27 205.5075 209.385 1000 50 0.58890045 +28 217.14 221.01749999999998 1000 50 0.8363284 +29 228.7725 232.65 1000 50 0.98817223 +30 236.5275 240.405 1000 50 0.52846485 +31 240.405 244.2825 1000 50 0.9856514 +32 244.2825 248.16 1000 50 0.74758196 +33 252.0375 255.915 1000 50 0.9985682 +34 259.7925 263.67 1000 50 0.59885836 +35 275.3025 279.18 1000 50 0.8286761 +36 290.8125 294.69 1000 50 0.5032114 +37 298.5675 302.445 1000 50 0.7951426 +38 306.3225 310.2 1000 50 0.82225865 +39 310.2 314.0775 1000 50 0.54495555 +40 325.71 329.5875 1000 50 0.85829353 +41 337.3425 341.21999999999997 1000 50 0.62496203 +42 356.73 360.6075 1000 50 0.60469157 +43 364.485 368.3625 1000 50 0.51362836 +44 368.3625 372.24 1000 50 0.7493068 +45 376.1175 379.995 1000 50 0.815336 +46 379.995 383.8725 1000 50 0.673312 +47 387.75 391.6275 1000 50 0.72420853 +48 391.6275 395.505 1000 50 0.7260523 +49 403.26 407.1375 1000 50 0.6721344 +50 407.1375 411.015 1000 50 0.518068 +51 414.8925 418.77 1000 50 0.6515287 +52 422.6475 426.525 1000 50 0.73087037 +53 449.79 453.6675 1000 50 0.9963952 +54 473.055 476.9325 1000 50 0.79186386 +55 488.565 492.4425 1000 50 0.93527615 +56 492.4425 496.32 1000 50 0.5588691 +57 500.1975 504.075 1000 50 0.7064797 +58 504.075 507.9525 1000 50 0.5961143 +59 515.7075 519.585 1000 50 0.6700795 +60 519.585 523.4625000000001 1000 50 0.92693377 +61 523.4625 527.34 1000 50 0.9321827 +62 531.2175 535.095 1000 50 0.763913 +63 538.9725 542.85 1000 50 0.8948985 +64 542.85 546.7275000000001 1000 50 0.59663343 +65 554.4825 558.36 1000 50 0.5831183 +66 562.2375 566.115 1000 50 0.8515591 +67 569.9925 573.87 1000 50 0.59087527 +68 585.5025 589.3800000000001 1000 50 0.5698289 +69 593.2575 597.1350000000001 1000 50 0.69915193 +70 601.0125 604.8900000000001 1000 50 0.8020601 +71 604.89 608.7675 1000 50 0.8728106 +72 616.5225 620.4000000000001 1000 50 0.8036971 +73 620.4 624.2775 1000 50 0.52955484 +74 628.155 632.0325 1000 50 0.6838158 +75 655.2975 659.1750000000001 1000 50 0.78976136 +76 666.93 670.8075 1000 50 0.77248204 +77 674.685 678.5625 1000 50 0.94684154 +78 678.5625 682.44 1000 50 0.78826034 +79 697.95 701.8275000000001 1000 50 0.54594177 +80 721.215 725.0925000000001 1000 50 0.5760699 +81 732.8475 736.725 1000 50 0.50998867 +82 736.725 740.6025000000001 1000 50 0.6858386 +83 740.6025 744.48 1000 50 0.979621 +84 744.48 748.3575000000001 1000 50 0.9368807 +85 752.235 756.1125000000001 1000 50 0.6024689 +86 756.1125 759.99 1000 50 0.9866518 +87 767.745 771.6225000000001 1000 50 0.571362 +88 771.6225 775.5 1000 50 0.7092292 +89 779.3775 783.2550000000001 1000 50 0.7256248 +90 794.8875 798.7650000000001 1000 50 0.5678917 +91 810.3975 814.2750000000001 1000 50 0.5074721 +92 829.785 833.6625 1000 50 0.86257446 +93 833.6625 837.5400000000001 1000 50 0.72229826 +94 845.295 849.1725 1000 50 0.5005636 +95 856.9275 860.8050000000001 1000 50 0.82573384 +96 860.805 864.6825 1000 50 0.6832682 +97 864.6825 868.5600000000001 1000 50 0.81679094 +98 876.315 880.1925000000001 1000 50 0.72507566 +99 887.9475 891.825 1000 50 0.7473005 +100 899.58 903.4575000000001 1000 50 0.56460327 +101 911.2125 915.09 1000 50 0.6911459 +102 930.6 934.4775000000001 1000 50 0.55845034 +103 934.4775 938.355 1000 50 0.5901581 +104 942.2325 946.11 1000 50 0.85366446 +105 949.9875 953.865 1000 50 0.5936789 +106 957.7425 961.62 1000 50 0.5074598 +107 961.62 965.4975000000001 1000 50 0.52537644 +108 965.4975 969.375 1000 50 0.5967182 +109 973.2525 977.1300000000001 1000 50 0.54219997 +110 977.13 981.0075 1000 50 0.57470596 +111 984.885 988.7625 1000 50 0.77376324 +112 996.5175 1000.3950000000001 1000 50 0.7885131 +113 1008.15 1012.0275 1000 50 0.9919246 +114 1023.66 1027.5375 1000 50 0.6545931 +115 1027.5375 1031.415 1000 50 0.5222801 +116 1039.17 1043.0475000000001 1000 50 0.831637 +117 1043.0475 1046.925 1000 50 0.509833 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_12-21-19_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_12-21-19_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..890c96c101e5cfeef8a00d214a6564da1b2e7f2d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_12-21-19_annot_2022-11-30_01.txt @@ -0,0 +1,23 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9848644 +2 7.755 11.6325 1000 50 0.66675407 +3 11.6325 15.51 1000 50 0.6773599 +4 46.53 50.4075 1000 50 0.8508876 +5 50.4075 54.285 1000 50 0.60147613 +6 54.285 58.162499999999994 1000 50 0.8412447 +7 58.1625 62.04 1000 50 0.6649604 +8 65.9175 69.795 1000 50 0.63109994 +9 77.55 81.4275 1000 50 0.9522373 +10 81.4275 85.30499999999999 1000 50 0.6024291 +11 116.325 120.2025 1000 50 0.59514713 +12 131.835 135.7125 1000 50 0.56581694 +13 135.7125 139.59 1000 50 0.51024634 +14 143.4675 147.345 1000 50 0.6491806 +15 155.1 158.9775 1000 50 0.5384317 +16 158.9775 162.855 1000 50 0.6836244 +17 178.365 182.2425 1000 50 0.85557514 +18 186.12 189.9975 1000 50 0.7249718 +19 193.875 197.7525 1000 50 0.89437443 +20 197.7525 201.63 1000 50 0.6873108 +21 213.2625 217.14 1000 50 0.7698639 +22 221.0175 224.895 1000 50 0.5764238 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_13-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_13-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..e1106f0f46efb56a10b0e985e6ab5686c1d71ae1 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_13-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,191 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.5223562 +2 11.6325 15.51 1000 50 0.90479404 +3 15.51 19.3875 1000 50 0.62534493 +4 19.3875 23.265 1000 50 0.5713976 +5 23.265 27.142500000000002 1000 50 0.7062749 +6 31.02 34.8975 1000 50 0.7864274 +7 58.1625 62.04 1000 50 0.9559234 +8 73.6725 77.55 1000 50 0.55876946 +9 77.55 81.4275 1000 50 0.61260587 +10 85.305 89.1825 1000 50 0.71401817 +11 89.1825 93.06 1000 50 0.79804015 +12 93.06 96.9375 1000 50 0.6017391 +13 96.9375 100.815 1000 50 0.7226799 +14 100.815 104.6925 1000 50 0.9414316 +15 112.4475 116.325 1000 50 0.8762982 +16 116.325 120.2025 1000 50 0.5496458 +17 120.2025 124.08 1000 50 0.8730926 +18 127.9575 131.835 1000 50 0.6843965 +19 135.7125 139.59 1000 50 0.52432126 +20 139.59 143.4675 1000 50 0.5284541 +21 143.4675 147.345 1000 50 0.6810891 +22 147.345 151.2225 1000 50 0.77926743 +23 158.9775 162.855 1000 50 0.6202283 +24 170.61 174.4875 1000 50 0.99578387 +25 174.4875 178.365 1000 50 0.5613706 +26 178.365 182.2425 1000 50 0.98206216 +27 182.2425 186.12 1000 50 0.86233413 +28 189.9975 193.875 1000 50 0.98539126 +29 193.875 197.7525 1000 50 0.9095886 +30 197.7525 201.63 1000 50 0.89982194 +31 201.63 205.5075 1000 50 0.77200836 +32 213.2625 217.14 1000 50 0.9964324 +33 217.14 221.01749999999998 1000 50 0.636518 +34 221.0175 224.895 1000 50 0.7328406 +35 224.895 228.7725 1000 50 0.5548367 +36 228.7725 232.65 1000 50 0.99882 +37 240.405 244.2825 1000 50 0.9996896 +38 248.16 252.0375 1000 50 0.8631 +39 252.0375 255.915 1000 50 0.795271 +40 255.915 259.7925 1000 50 0.7871637 +41 259.7925 263.67 1000 50 0.9880739 +42 263.67 267.5475 1000 50 0.6575143 +43 271.425 275.3025 1000 50 0.5526451 +44 275.3025 279.18 1000 50 0.8811684 +45 286.935 290.8125 1000 50 0.8921793 +46 290.8125 294.69 1000 50 0.50620717 +47 298.5675 302.445 1000 50 0.5469241 +48 306.3225 310.2 1000 50 0.8636997 +49 310.2 314.0775 1000 50 0.6034632 +50 314.0775 317.955 1000 50 0.85869557 +51 317.955 321.8325 1000 50 0.834593 +52 321.8325 325.71 1000 50 0.7253822 +53 325.71 329.5875 1000 50 0.59319973 +54 337.3425 341.21999999999997 1000 50 0.83197504 +55 341.22 345.0975 1000 50 0.8565928 +56 345.0975 348.975 1000 50 0.5145042 +57 352.8525 356.73 1000 50 0.78545856 +58 364.485 368.3625 1000 50 0.6661972 +59 372.24 376.1175 1000 50 0.8634263 +60 379.995 383.8725 1000 50 0.6327197 +61 383.8725 387.75 1000 50 0.51759046 +62 391.6275 395.505 1000 50 0.693437 +63 395.505 399.3825 1000 50 0.5851586 +64 403.26 407.1375 1000 50 0.5215536 +65 407.1375 411.015 1000 50 0.89917034 +66 414.8925 418.77 1000 50 0.72528774 +67 418.77 422.6475 1000 50 0.7300968 +68 426.525 430.4025 1000 50 0.8488053 +69 430.4025 434.28 1000 50 0.7960768 +70 434.28 438.15749999999997 1000 50 0.8709481 +71 442.035 445.9125 1000 50 0.7351167 +72 445.9125 449.79 1000 50 0.9160251 +73 449.79 453.6675 1000 50 0.74885035 +74 453.6675 457.545 1000 50 0.62747324 +75 461.4225 465.3 1000 50 0.6849674 +76 465.3 469.1775 1000 50 0.52103263 +77 469.1775 473.055 1000 50 0.5345496 +78 484.6875 488.565 1000 50 0.80462736 +79 488.565 492.4425 1000 50 0.8499122 +80 492.4425 496.32 1000 50 0.6581253 +81 500.1975 504.075 1000 50 0.7974443 +82 511.83 515.7075 1000 50 0.5792703 +83 515.7075 519.585 1000 50 0.75802547 +84 523.4625 527.34 1000 50 0.6424695 +85 527.34 531.2175000000001 1000 50 0.6066456 +86 531.2175 535.095 1000 50 0.727955 +87 538.9725 542.85 1000 50 0.5434029 +88 550.605 554.4825000000001 1000 50 0.54915655 +89 569.9925 573.87 1000 50 0.6065005 +90 573.87 577.7475000000001 1000 50 0.64110523 +91 577.7475 581.625 1000 50 0.78950953 +92 585.5025 589.3800000000001 1000 50 0.75102395 +93 620.4 624.2775 1000 50 0.7013805 +94 635.91 639.7875 1000 50 0.541767 +95 651.42 655.2975 1000 50 0.64020395 +96 655.2975 659.1750000000001 1000 50 0.97079223 +97 659.175 663.0525 1000 50 0.7827902 +98 674.685 678.5625 1000 50 0.5170405 +99 682.44 686.3175000000001 1000 50 0.7713453 +100 686.3175 690.195 1000 50 0.8750379 +101 690.195 694.0725000000001 1000 50 0.57281613 +102 694.0725 697.95 1000 50 0.6869926 +103 701.8275 705.705 1000 50 0.65875006 +104 705.705 709.5825000000001 1000 50 0.6857007 +105 717.3375 721.215 1000 50 0.6424541 +106 736.725 740.6025000000001 1000 50 0.70447093 +107 756.1125 759.99 1000 50 0.78691596 +108 763.8675 767.745 1000 50 0.5726755 +109 771.6225 775.5 1000 50 0.58006585 +110 787.1325 791.0100000000001 1000 50 0.75003976 +111 791.01 794.8875 1000 50 0.68611926 +112 806.52 810.3975 1000 50 0.8075946 +113 818.1525 822.0300000000001 1000 50 0.6800003 +114 822.03 825.9075 1000 50 0.59401953 +115 825.9075 829.7850000000001 1000 50 0.5218325 +116 829.785 833.6625 1000 50 0.5137341 +117 845.295 849.1725 1000 50 0.76907295 +118 849.1725 853.0500000000001 1000 50 0.8779029 +119 853.05 856.9275 1000 50 0.8445288 +120 856.9275 860.8050000000001 1000 50 0.7631016 +121 860.805 864.6825 1000 50 0.53583205 +122 864.6825 868.5600000000001 1000 50 0.67561615 +123 868.56 872.4375 1000 50 0.5661383 +124 872.4375 876.315 1000 50 0.7161872 +125 876.315 880.1925000000001 1000 50 0.571061 +126 899.58 903.4575000000001 1000 50 0.7238375 +127 903.4575 907.335 1000 50 0.8216709 +128 911.2125 915.09 1000 50 0.596865 +129 918.9675 922.845 1000 50 0.69860923 +130 922.845 926.7225000000001 1000 50 0.76185375 +131 930.6 934.4775000000001 1000 50 0.75238883 +132 934.4775 938.355 1000 50 0.67750025 +133 938.355 942.2325000000001 1000 50 0.98840684 +134 942.2325 946.11 1000 50 0.5697923 +135 961.62 965.4975000000001 1000 50 0.70447534 +136 965.4975 969.375 1000 50 0.7135779 +137 973.2525 977.1300000000001 1000 50 0.7211516 +138 981.0075 984.8850000000001 1000 50 0.5393569 +139 992.64 996.5175 1000 50 0.7187644 +140 996.5175 1000.3950000000001 1000 50 0.78065383 +141 1008.15 1012.0275 1000 50 0.9173221 +142 1012.0275 1015.9050000000001 1000 50 0.88138443 +143 1015.905 1019.7825 1000 50 0.69177735 +144 1031.415 1035.2925 1000 50 0.90490395 +145 1035.2925 1039.17 1000 50 0.81405944 +146 1039.17 1043.0475000000001 1000 50 0.6293834 +147 1043.0475 1046.925 1000 50 0.9995789 +148 1046.925 1050.8025 1000 50 0.84283555 +149 1050.8025 1054.68 1000 50 0.847952 +150 1054.68 1058.5575000000001 1000 50 0.82250714 +151 1062.435 1066.3125 1000 50 0.9437631 +152 1066.3125 1070.19 1000 50 0.9321972 +153 1074.0675 1077.9450000000002 1000 50 0.9843487 +154 1077.945 1081.8225 1000 50 0.6572394 +155 1089.5775 1093.4550000000002 1000 50 0.5610488 +156 1112.8425 1116.72 1000 50 0.51320034 +157 1116.72 1120.5975 1000 50 0.6665052 +158 1120.5975 1124.4750000000001 1000 50 0.6158004 +159 1124.475 1128.3525 1000 50 0.6136581 +160 1132.23 1136.1075 1000 50 0.865127 +161 1136.1075 1139.9850000000001 1000 50 0.8164488 +162 1151.6175 1155.4950000000001 1000 50 0.54956514 +163 1155.495 1159.3725 1000 50 0.88011533 +164 1159.3725 1163.25 1000 50 0.68720216 +165 1163.25 1167.1275 1000 50 0.8783175 +166 1167.1275 1171.005 1000 50 0.69981974 +167 1182.6375 1186.515 1000 50 0.92544997 +168 1186.515 1190.3925000000002 1000 50 0.56651837 +169 1190.3925 1194.27 1000 50 0.6753055 +170 1194.27 1198.1475 1000 50 0.5571451 +171 1205.9025 1209.78 1000 50 0.9051925 +172 1209.78 1213.6575 1000 50 0.52779335 +173 1217.535 1221.4125000000001 1000 50 0.5753699 +174 1221.4125 1225.29 1000 50 0.8770092 +175 1225.29 1229.1675 1000 50 0.58024645 +176 1229.1675 1233.045 1000 50 0.6832777 +177 1233.045 1236.9225000000001 1000 50 0.6478934 +178 1244.6775 1248.555 1000 50 0.58984137 +179 1256.31 1260.1875 1000 50 0.5563595 +180 1260.1875 1264.065 1000 50 0.59857273 +181 1264.065 1267.9425 1000 50 0.5460886 +182 1267.9425 1271.8200000000002 1000 50 0.59280837 +183 1271.82 1275.6975 1000 50 0.73228866 +184 1275.6975 1279.575 1000 50 0.5360825 +185 1283.4525 1287.3300000000002 1000 50 0.5426052 +186 1287.33 1291.2075 1000 50 0.71540064 +187 1291.2075 1295.085 1000 50 0.6885591 +188 1295.085 1298.9625 1000 50 0.5639777 +189 1329.9825 1333.8600000000001 1000 50 0.8304278 +190 1333.86 1337.7375 1000 50 0.57361966 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_14-00-06_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_14-00-06_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..3d38afed04805b7873ed3b85841b34533a2a3bf5 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_14-00-06_annot_2022-11-30_01.txt @@ -0,0 +1,236 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.9080453 +2 15.51 19.3875 1000 50 0.52705246 +3 19.3875 23.265 1000 50 0.7070828 +4 31.02 34.8975 1000 50 0.59125847 +5 62.04 65.9175 1000 50 0.686706 +6 65.9175 69.795 1000 50 0.5715695 +7 69.795 73.6725 1000 50 0.5782705 +8 73.6725 77.55 1000 50 0.65502214 +9 77.55 81.4275 1000 50 0.64950705 +10 89.1825 93.06 1000 50 0.8102866 +11 93.06 96.9375 1000 50 0.60789067 +12 96.9375 100.815 1000 50 0.81767327 +13 100.815 104.6925 1000 50 0.5198478 +14 104.6925 108.57 1000 50 0.6004463 +15 108.57 112.44749999999999 1000 50 0.5370291 +16 112.4475 116.325 1000 50 0.7359777 +17 116.325 120.2025 1000 50 0.66091293 +18 127.9575 131.835 1000 50 0.71601886 +19 131.835 135.7125 1000 50 0.50468713 +20 166.7325 170.60999999999999 1000 50 0.6383822 +21 170.61 174.4875 1000 50 0.56114066 +22 174.4875 178.365 1000 50 0.6789747 +23 189.9975 193.875 1000 50 0.54757625 +24 193.875 197.7525 1000 50 0.6159085 +25 197.7525 201.63 1000 50 0.7756838 +26 201.63 205.5075 1000 50 0.62942463 +27 205.5075 209.385 1000 50 0.51623183 +28 209.385 213.2625 1000 50 0.6333637 +29 213.2625 217.14 1000 50 0.6046112 +30 224.895 228.7725 1000 50 0.6601697 +31 232.65 236.5275 1000 50 0.7872448 +32 248.16 252.0375 1000 50 0.8292013 +33 252.0375 255.915 1000 50 0.7090395 +34 255.915 259.7925 1000 50 0.50096136 +35 267.5475 271.425 1000 50 0.5263883 +36 283.0575 286.935 1000 50 0.61163336 +37 286.935 290.8125 1000 50 0.77024704 +38 290.8125 294.69 1000 50 0.78355366 +39 294.69 298.5675 1000 50 0.9630911 +40 302.445 306.3225 1000 50 0.7840097 +41 306.3225 310.2 1000 50 0.9838845 +42 310.2 314.0775 1000 50 0.5682929 +43 314.0775 317.955 1000 50 0.9406062 +44 317.955 321.8325 1000 50 0.5863266 +45 321.8325 325.71 1000 50 0.88048446 +46 325.71 329.5875 1000 50 0.73837274 +47 329.5875 333.465 1000 50 0.9896265 +48 341.22 345.0975 1000 50 0.8097116 +49 345.0975 348.975 1000 50 0.8176294 +50 348.975 352.8525 1000 50 0.5682864 +51 352.8525 356.73 1000 50 0.63620305 +52 360.6075 364.485 1000 50 0.97844076 +53 364.485 368.3625 1000 50 0.6514065 +54 372.24 376.1175 1000 50 0.9936052 +55 376.1175 379.995 1000 50 0.9375906 +56 379.995 383.8725 1000 50 0.84970033 +57 391.6275 395.505 1000 50 0.8216654 +58 399.3825 403.26 1000 50 0.6614689 +59 403.26 407.1375 1000 50 0.9192748 +60 411.015 414.8925 1000 50 0.6025071 +61 414.8925 418.77 1000 50 0.51035196 +62 418.77 422.6475 1000 50 0.60515124 +63 422.6475 426.525 1000 50 0.6570204 +64 430.4025 434.28 1000 50 0.9873673 +65 434.28 438.15749999999997 1000 50 0.64513975 +66 442.035 445.9125 1000 50 0.75097936 +67 445.9125 449.79 1000 50 0.63201284 +68 453.6675 457.545 1000 50 0.5807608 +69 461.4225 465.3 1000 50 0.85216343 +70 465.3 469.1775 1000 50 0.9585751 +71 480.81 484.6875 1000 50 0.76928884 +72 484.6875 488.565 1000 50 0.9326926 +73 488.565 492.4425 1000 50 0.84677714 +74 496.32 500.1975 1000 50 0.56143934 +75 500.1975 504.075 1000 50 0.64100146 +76 507.9525 511.83 1000 50 0.63662857 +77 511.83 515.7075 1000 50 0.81115466 +78 515.7075 519.585 1000 50 0.6275364 +79 523.4625 527.34 1000 50 0.9769672 +80 527.34 531.2175000000001 1000 50 0.75961185 +81 531.2175 535.095 1000 50 0.77153426 +82 535.095 538.9725000000001 1000 50 0.5540452 +83 542.85 546.7275000000001 1000 50 0.63534665 +84 546.7275 550.605 1000 50 0.67522204 +85 550.605 554.4825000000001 1000 50 0.56197643 +86 554.4825 558.36 1000 50 0.6511925 +87 558.36 562.2375000000001 1000 50 0.92626154 +88 562.2375 566.115 1000 50 0.95757633 +89 566.115 569.9925000000001 1000 50 0.76728845 +90 569.9925 573.87 1000 50 0.99837875 +91 573.87 577.7475000000001 1000 50 0.8024229 +92 577.7475 581.625 1000 50 0.99959093 +93 581.625 585.5025 1000 50 0.94300157 +94 585.5025 589.3800000000001 1000 50 0.6783285 +95 589.38 593.2575 1000 50 0.9868037 +96 593.2575 597.1350000000001 1000 50 0.8174277 +97 601.0125 604.8900000000001 1000 50 0.9400436 +98 608.7675 612.6450000000001 1000 50 0.55569786 +99 612.645 616.5225 1000 50 0.9926374 +100 620.4 624.2775 1000 50 0.58087075 +101 624.2775 628.1550000000001 1000 50 0.9895392 +102 628.155 632.0325 1000 50 0.5533235 +103 632.0325 635.9100000000001 1000 50 0.7822034 +104 635.91 639.7875 1000 50 0.8538828 +105 639.7875 643.6650000000001 1000 50 0.62738997 +106 647.5425 651.4200000000001 1000 50 0.7635581 +107 655.2975 659.1750000000001 1000 50 0.997015 +108 659.175 663.0525 1000 50 0.6791357 +109 663.0525 666.9300000000001 1000 50 0.95395935 +110 666.93 670.8075 1000 50 0.99992824 +111 670.8075 674.6850000000001 1000 50 0.9852938 +112 674.685 678.5625 1000 50 0.5003882 +113 678.5625 682.44 1000 50 0.78037655 +114 701.8275 705.705 1000 50 0.7878122 +115 705.705 709.5825000000001 1000 50 0.84430623 +116 709.5825 713.46 1000 50 0.66184443 +117 717.3375 721.215 1000 50 0.86316687 +118 732.8475 736.725 1000 50 0.8783187 +119 736.725 740.6025000000001 1000 50 0.53211087 +120 744.48 748.3575000000001 1000 50 0.77219063 +121 748.3575 752.235 1000 50 0.5218218 +122 752.235 756.1125000000001 1000 50 0.72565615 +123 756.1125 759.99 1000 50 0.6755955 +124 763.8675 767.745 1000 50 0.65588903 +125 767.745 771.6225000000001 1000 50 0.8152549 +126 779.3775 783.2550000000001 1000 50 0.68477356 +127 783.255 787.1325 1000 50 0.62834066 +128 787.1325 791.0100000000001 1000 50 0.6108126 +129 791.01 794.8875 1000 50 0.7936337 +130 798.765 802.6425 1000 50 0.58392346 +131 806.52 810.3975 1000 50 0.6175962 +132 829.785 833.6625 1000 50 0.63289833 +133 837.54 841.4175 1000 50 0.68833685 +134 841.4175 845.2950000000001 1000 50 0.518882 +135 856.9275 860.8050000000001 1000 50 0.8571167 +136 860.805 864.6825 1000 50 0.7738408 +137 872.4375 876.315 1000 50 0.6666066 +138 876.315 880.1925000000001 1000 50 0.9699431 +139 880.1925 884.07 1000 50 0.71126467 +140 884.07 887.9475000000001 1000 50 0.8095244 +141 887.9475 891.825 1000 50 0.69875246 +142 891.825 895.7025000000001 1000 50 0.7839592 +143 895.7025 899.58 1000 50 0.99625117 +144 899.58 903.4575000000001 1000 50 0.67306435 +145 903.4575 907.335 1000 50 0.5319459 +146 911.2125 915.09 1000 50 0.5601799 +147 915.09 918.9675000000001 1000 50 0.8316474 +148 918.9675 922.845 1000 50 0.6062609 +149 926.7225 930.6 1000 50 0.8403248 +150 934.4775 938.355 1000 50 0.63682634 +151 938.355 942.2325000000001 1000 50 0.89742947 +152 942.2325 946.11 1000 50 0.5099562 +153 946.11 949.9875000000001 1000 50 0.9271851 +154 949.9875 953.865 1000 50 0.94968194 +155 953.865 957.7425000000001 1000 50 0.6603903 +156 957.7425 961.62 1000 50 0.8041129 +157 965.4975 969.375 1000 50 0.5725518 +158 969.375 973.2525 1000 50 0.90389085 +159 973.2525 977.1300000000001 1000 50 0.5887393 +160 977.13 981.0075 1000 50 0.5201833 +161 981.0075 984.8850000000001 1000 50 0.9957734 +162 984.885 988.7625 1000 50 0.73126644 +163 992.64 996.5175 1000 50 0.85765934 +164 996.5175 1000.3950000000001 1000 50 0.6493665 +165 1004.2725 1008.1500000000001 1000 50 0.6628874 +166 1019.7825 1023.6600000000001 1000 50 0.83967286 +167 1031.415 1035.2925 1000 50 0.6506432 +168 1039.17 1043.0475000000001 1000 50 0.5278633 +169 1050.8025 1054.68 1000 50 0.64776874 +170 1054.68 1058.5575000000001 1000 50 0.6015076 +171 1062.435 1066.3125 1000 50 0.80080557 +172 1066.3125 1070.19 1000 50 0.6319982 +173 1070.19 1074.0675 1000 50 0.688515 +174 1074.0675 1077.9450000000002 1000 50 0.66149515 +175 1077.945 1081.8225 1000 50 0.77543306 +176 1085.7 1089.5775 1000 50 0.9031993 +177 1093.455 1097.3325 1000 50 0.98415333 +178 1097.3325 1101.21 1000 50 0.6440225 +179 1101.21 1105.0875 1000 50 0.9451232 +180 1105.0875 1108.9650000000001 1000 50 0.5063357 +181 1112.8425 1116.72 1000 50 0.9717667 +182 1116.72 1120.5975 1000 50 0.75980204 +183 1120.5975 1124.4750000000001 1000 50 0.52622575 +184 1124.475 1128.3525 1000 50 0.8030319 +185 1132.23 1136.1075 1000 50 0.62241876 +186 1143.8625 1147.74 1000 50 0.73911446 +187 1147.74 1151.6175 1000 50 0.558411 +188 1151.6175 1155.4950000000001 1000 50 0.7321471 +189 1155.495 1159.3725 1000 50 0.97276974 +190 1159.3725 1163.25 1000 50 0.7331975 +191 1167.1275 1171.005 1000 50 0.78714 +192 1171.005 1174.8825000000002 1000 50 0.66231763 +193 1174.8825 1178.76 1000 50 0.9932929 +194 1182.6375 1186.515 1000 50 0.67130977 +195 1186.515 1190.3925000000002 1000 50 0.63917804 +196 1194.27 1198.1475 1000 50 0.98778707 +197 1205.9025 1209.78 1000 50 0.6615147 +198 1213.6575 1217.535 1000 50 0.893178 +199 1217.535 1221.4125000000001 1000 50 0.64944166 +200 1229.1675 1233.045 1000 50 0.70129234 +201 1236.9225 1240.8 1000 50 0.5551143 +202 1244.6775 1248.555 1000 50 0.6171992 +203 1248.555 1252.4325000000001 1000 50 0.77218235 +204 1252.4325 1256.31 1000 50 0.620042 +205 1260.1875 1264.065 1000 50 0.69793963 +206 1275.6975 1279.575 1000 50 0.7240222 +207 1298.9625 1302.8400000000001 1000 50 0.7656082 +208 1306.7175 1310.595 1000 50 0.96719646 +209 1314.4725 1318.3500000000001 1000 50 0.93615186 +210 1326.105 1329.9825 1000 50 0.9956189 +211 1341.615 1345.4925 1000 50 0.5015779 +212 1353.2475 1357.125 1000 50 0.8551335 +213 1357.125 1361.0025 1000 50 0.97974706 +214 1368.7575 1372.635 1000 50 0.7075001 +215 1376.5125 1380.39 1000 50 0.5566288 +216 1384.2675 1388.145 1000 50 0.8111424 +217 1392.0225 1395.9 1000 50 0.56601363 +218 1395.9 1399.7775000000001 1000 50 0.70775425 +219 1399.7775 1403.655 1000 50 0.6165081 +220 1407.5325 1411.41 1000 50 0.6468637 +221 1411.41 1415.2875000000001 1000 50 0.55722886 +222 1423.0425 1426.92 1000 50 0.5271601 +223 1426.92 1430.7975000000001 1000 50 0.8606406 +224 1442.43 1446.3075000000001 1000 50 0.72584707 +225 1446.3075 1450.185 1000 50 0.6527767 +226 1457.94 1461.8175 1000 50 0.9591798 +227 1461.8175 1465.6950000000002 1000 50 0.74435014 +228 1465.695 1469.5725 1000 50 0.50568175 +229 1469.5725 1473.45 1000 50 0.78104097 +230 1473.45 1477.3275 1000 50 0.6879719 +231 1477.3275 1481.2050000000002 1000 50 0.5121808 +232 1481.205 1485.0825 1000 50 0.75081295 +233 1485.0825 1488.96 1000 50 0.8588818 +234 1488.96 1492.8375 1000 50 0.97816616 +235 1492.8375 1496.7150000000001 1000 50 0.50860626 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_15-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_15-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..60ecf6315fbb782b764a87bbe3ef496264197def --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_15-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,18 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.81727636 +2 7.755 11.6325 1000 50 0.9480127 +3 11.6325 15.51 1000 50 0.7411916 +4 15.51 19.3875 1000 50 0.7925339 +5 19.3875 23.265 1000 50 0.5679746 +6 23.265 27.142500000000002 1000 50 0.52476215 +7 27.1425 31.02 1000 50 0.7313136 +8 31.02 34.8975 1000 50 0.64344984 +9 46.53 50.4075 1000 50 0.8112275 +10 62.04 65.9175 1000 50 0.5244266 +11 65.9175 69.795 1000 50 0.6057642 +12 73.6725 77.55 1000 50 0.5401801 +13 77.55 81.4275 1000 50 0.6583321 +14 81.4275 85.30499999999999 1000 50 0.5133069 +15 85.305 89.1825 1000 50 0.96942556 +16 89.1825 93.06 1000 50 0.8791633 +17 100.815 104.6925 1000 50 0.73312336 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_15-05-23_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_15-05-23_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..0eac71fabb766b58cb1644c28a57bbea168cad32 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_15-05-23_annot_2022-11-30_01.txt @@ -0,0 +1,131 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.9151476 +2 15.51 19.3875 1000 50 0.7730405 +3 27.1425 31.02 1000 50 0.9691863 +4 38.775 42.652499999999996 1000 50 0.5763965 +5 50.4075 54.285 1000 50 0.80013597 +6 54.285 58.162499999999994 1000 50 0.70776147 +7 58.1625 62.04 1000 50 0.8864227 +8 69.795 73.6725 1000 50 0.66393787 +9 77.55 81.4275 1000 50 0.53583395 +10 89.1825 93.06 1000 50 0.8273243 +11 108.57 112.44749999999999 1000 50 0.5230934 +12 116.325 120.2025 1000 50 0.7449116 +13 120.2025 124.08 1000 50 0.8860366 +14 127.9575 131.835 1000 50 0.5813182 +15 131.835 135.7125 1000 50 0.9854116 +16 139.59 143.4675 1000 50 0.9011473 +17 143.4675 147.345 1000 50 0.8270919 +18 151.2225 155.1 1000 50 0.5335808 +19 174.4875 178.365 1000 50 0.71751106 +20 178.365 182.2425 1000 50 0.82312965 +21 189.9975 193.875 1000 50 0.6150812 +22 217.14 221.01749999999998 1000 50 0.6014809 +23 221.0175 224.895 1000 50 0.6960087 +24 255.915 259.7925 1000 50 0.8152862 +25 267.5475 271.425 1000 50 0.92169124 +26 275.3025 279.18 1000 50 0.5444062 +27 283.0575 286.935 1000 50 0.8234409 +28 286.935 290.8125 1000 50 0.8790058 +29 310.2 314.0775 1000 50 0.57623154 +30 317.955 321.8325 1000 50 0.99891615 +31 325.71 329.5875 1000 50 0.9776529 +32 337.3425 341.21999999999997 1000 50 0.61372274 +33 341.22 345.0975 1000 50 0.8323057 +34 352.8525 356.73 1000 50 0.8386719 +35 356.73 360.6075 1000 50 0.865381 +36 360.6075 364.485 1000 50 0.77074337 +37 368.3625 372.24 1000 50 0.8080228 +38 379.995 383.8725 1000 50 0.9805683 +39 383.8725 387.75 1000 50 0.67137873 +40 395.505 399.3825 1000 50 0.91875553 +41 403.26 407.1375 1000 50 0.74962217 +42 411.015 414.8925 1000 50 0.914184 +43 418.77 422.6475 1000 50 0.55883145 +44 422.6475 426.525 1000 50 0.8538395 +45 426.525 430.4025 1000 50 0.76462007 +46 438.1575 442.035 1000 50 0.9345615 +47 449.79 453.6675 1000 50 0.9081455 +48 469.1775 473.055 1000 50 0.9749893 +49 473.055 476.9325 1000 50 0.7784777 +50 476.9325 480.81 1000 50 0.7075754 +51 496.32 500.1975 1000 50 0.7864785 +52 507.9525 511.83 1000 50 0.51111764 +53 515.7075 519.585 1000 50 0.72824675 +54 527.34 531.2175000000001 1000 50 0.55474854 +55 538.9725 542.85 1000 50 0.5044507 +56 573.87 577.7475000000001 1000 50 0.78970975 +57 585.5025 589.3800000000001 1000 50 0.73453635 +58 597.135 601.0125 1000 50 0.61170125 +59 604.89 608.7675 1000 50 0.7748757 +60 608.7675 612.6450000000001 1000 50 0.5242143 +61 612.645 616.5225 1000 50 0.5213653 +62 620.4 624.2775 1000 50 0.7061577 +63 624.2775 628.1550000000001 1000 50 0.5782163 +64 628.155 632.0325 1000 50 0.6274306 +65 632.0325 635.9100000000001 1000 50 0.56602 +66 659.175 663.0525 1000 50 0.8036595 +67 663.0525 666.9300000000001 1000 50 0.66079646 +68 678.5625 682.44 1000 50 0.7423513 +69 694.0725 697.95 1000 50 0.72294766 +70 713.46 717.3375000000001 1000 50 0.634149 +71 721.215 725.0925000000001 1000 50 0.74454015 +72 725.0925 728.97 1000 50 0.98068446 +73 728.97 732.8475000000001 1000 50 0.70379674 +74 732.8475 736.725 1000 50 0.99991953 +75 744.48 748.3575000000001 1000 50 0.999665 +76 756.1125 759.99 1000 50 0.68582886 +77 767.745 771.6225000000001 1000 50 0.9738579 +78 775.5 779.3775 1000 50 0.8294246 +79 798.765 802.6425 1000 50 0.93956274 +80 806.52 810.3975 1000 50 0.88208294 +81 818.1525 822.0300000000001 1000 50 0.5550613 +82 825.9075 829.7850000000001 1000 50 0.9847987 +83 829.785 833.6625 1000 50 0.6432801 +84 833.6625 837.5400000000001 1000 50 0.686307 +85 837.54 841.4175 1000 50 0.8200117 +86 845.295 849.1725 1000 50 0.6275127 +87 849.1725 853.0500000000001 1000 50 0.92078495 +88 868.56 872.4375 1000 50 0.99972326 +89 876.315 880.1925000000001 1000 50 0.5794536 +90 880.1925 884.07 1000 50 0.9993979 +91 884.07 887.9475000000001 1000 50 0.5326098 +92 891.825 895.7025000000001 1000 50 0.507063 +93 899.58 903.4575000000001 1000 50 0.69902426 +94 907.335 911.2125000000001 1000 50 0.82740396 +95 911.2125 915.09 1000 50 0.89936227 +96 915.09 918.9675000000001 1000 50 0.97501594 +97 918.9675 922.845 1000 50 0.77159923 +98 922.845 926.7225000000001 1000 50 0.8854838 +99 934.4775 938.355 1000 50 0.73175 +100 946.11 949.9875000000001 1000 50 0.731857 +101 957.7425 961.62 1000 50 0.8484682 +102 961.62 965.4975000000001 1000 50 0.56796503 +103 977.13 981.0075 1000 50 0.6418725 +104 988.7625 992.6400000000001 1000 50 0.5532005 +105 996.5175 1000.3950000000001 1000 50 0.5718574 +106 1004.2725 1008.1500000000001 1000 50 0.9947286 +107 1015.905 1019.7825 1000 50 0.75059474 +108 1019.7825 1023.6600000000001 1000 50 0.6262521 +109 1023.66 1027.5375 1000 50 0.8002021 +110 1027.5375 1031.415 1000 50 0.99986696 +111 1035.2925 1039.17 1000 50 0.57318836 +112 1039.17 1043.0475000000001 1000 50 0.9244879 +113 1050.8025 1054.68 1000 50 0.9463613 +114 1058.5575 1062.435 1000 50 0.9934588 +115 1062.435 1066.3125 1000 50 0.8325976 +116 1066.3125 1070.19 1000 50 0.72556466 +117 1074.0675 1077.9450000000002 1000 50 0.8786068 +118 1085.7 1089.5775 1000 50 0.5372429 +119 1105.0875 1108.9650000000001 1000 50 0.7222433 +120 1108.965 1112.8425 1000 50 0.74453187 +121 1112.8425 1116.72 1000 50 0.9597619 +122 1124.475 1128.3525 1000 50 0.99101233 +123 1128.3525 1132.23 1000 50 0.75939965 +124 1132.23 1136.1075 1000 50 0.99807954 +125 1136.1075 1139.9850000000001 1000 50 0.8702982 +126 1143.8625 1147.74 1000 50 0.8547452 +127 1147.74 1151.6175 1000 50 0.7451544 +128 1155.495 1159.3725 1000 50 0.632779 +129 1167.1275 1171.005 1000 50 0.87727565 +130 1174.8825 1178.76 1000 50 0.72458565 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_16-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_16-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..13ffb5a25e5d20b4055dc67d0a7558f6ced65c0d --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_16-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,71 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.95498407 +2 15.51 19.3875 1000 50 0.9205889 +3 19.3875 23.265 1000 50 0.57876676 +4 50.4075 54.285 1000 50 0.809027 +5 62.04 65.9175 1000 50 0.5444932 +6 77.55 81.4275 1000 50 0.7536821 +7 81.4275 85.30499999999999 1000 50 0.6705526 +8 89.1825 93.06 1000 50 0.59623426 +9 93.06 96.9375 1000 50 0.79587036 +10 104.6925 108.57 1000 50 0.97293484 +11 108.57 112.44749999999999 1000 50 0.9356769 +12 112.4475 116.325 1000 50 0.99769044 +13 116.325 120.2025 1000 50 0.66048783 +14 120.2025 124.08 1000 50 0.84067184 +15 127.9575 131.835 1000 50 0.7789368 +16 147.345 151.2225 1000 50 0.99133974 +17 151.2225 155.1 1000 50 0.76096016 +18 158.9775 162.855 1000 50 0.9826842 +19 162.855 166.7325 1000 50 0.99765646 +20 166.7325 170.60999999999999 1000 50 0.85065824 +21 170.61 174.4875 1000 50 0.98631626 +22 174.4875 178.365 1000 50 0.99632156 +23 178.365 182.2425 1000 50 0.7762328 +24 182.2425 186.12 1000 50 0.9878136 +25 186.12 189.9975 1000 50 0.87492603 +26 189.9975 193.875 1000 50 0.99754924 +27 193.875 197.7525 1000 50 0.999418 +28 197.7525 201.63 1000 50 0.9066874 +29 201.63 205.5075 1000 50 0.659781 +30 205.5075 209.385 1000 50 0.69734263 +31 209.385 213.2625 1000 50 0.7839365 +32 217.14 221.01749999999998 1000 50 0.9996952 +33 224.895 228.7725 1000 50 0.99979407 +34 228.7725 232.65 1000 50 0.76003224 +35 236.5275 240.405 1000 50 0.9956937 +36 240.405 244.2825 1000 50 0.9502662 +37 244.2825 248.16 1000 50 0.66406655 +38 248.16 252.0375 1000 50 0.78017664 +39 252.0375 255.915 1000 50 0.9778545 +40 255.915 259.7925 1000 50 0.8741772 +41 259.7925 263.67 1000 50 0.9933862 +42 267.5475 271.425 1000 50 0.7261663 +43 271.425 275.3025 1000 50 0.9814249 +44 279.18 283.0575 1000 50 0.9999826 +45 283.0575 286.935 1000 50 0.88531095 +46 290.8125 294.69 1000 50 0.9994825 +47 294.69 298.5675 1000 50 0.8774277 +48 302.445 306.3225 1000 50 0.92028445 +49 306.3225 310.2 1000 50 0.5450044 +50 310.2 314.0775 1000 50 0.65613323 +51 314.0775 317.955 1000 50 0.7751593 +52 321.8325 325.71 1000 50 0.67011636 +53 325.71 329.5875 1000 50 0.6012368 +54 329.5875 333.465 1000 50 0.7362852 +55 333.465 337.3425 1000 50 0.5894694 +56 337.3425 341.21999999999997 1000 50 0.68559295 +57 345.0975 348.975 1000 50 0.7427756 +58 348.975 352.8525 1000 50 0.7043868 +59 352.8525 356.73 1000 50 0.7679494 +60 360.6075 364.485 1000 50 0.6342454 +61 364.485 368.3625 1000 50 0.625064 +62 368.3625 372.24 1000 50 0.73546296 +63 372.24 376.1175 1000 50 0.74663895 +64 376.1175 379.995 1000 50 0.57717496 +65 379.995 383.8725 1000 50 0.52883494 +66 383.8725 387.75 1000 50 0.9119545 +67 387.75 391.6275 1000 50 0.88314366 +68 403.26 407.1375 1000 50 0.9304887 +69 407.1375 411.015 1000 50 0.9923839 +70 411.015 414.8925 1000 50 0.84229493 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_16-10-42_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_16-10-42_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..d4d67421390da922d462366c47ff4010483ea92f --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_16-10-42_annot_2022-11-30_01.txt @@ -0,0 +1,98 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.63045555 +2 7.755 11.6325 1000 50 0.96743214 +3 11.6325 15.51 1000 50 0.7866495 +4 15.51 19.3875 1000 50 0.72591 +5 31.02 34.8975 1000 50 0.8684757 +6 38.775 42.652499999999996 1000 50 0.5810246 +7 42.6525 46.53 1000 50 0.9237902 +8 46.53 50.4075 1000 50 0.7237812 +9 50.4075 54.285 1000 50 0.7809103 +10 54.285 58.162499999999994 1000 50 0.71561843 +11 62.04 65.9175 1000 50 0.71994644 +12 65.9175 69.795 1000 50 0.6050382 +13 73.6725 77.55 1000 50 0.9875327 +14 77.55 81.4275 1000 50 0.51822054 +15 96.9375 100.815 1000 50 0.7730272 +16 100.815 104.6925 1000 50 0.9034489 +17 104.6925 108.57 1000 50 0.7471407 +18 112.4475 116.325 1000 50 0.76002514 +19 120.2025 124.08 1000 50 0.68361515 +20 127.9575 131.835 1000 50 0.8458354 +21 131.835 135.7125 1000 50 0.9991346 +22 139.59 143.4675 1000 50 0.9325046 +23 143.4675 147.345 1000 50 0.6425984 +24 158.9775 162.855 1000 50 0.76492125 +25 193.875 197.7525 1000 50 0.8876883 +26 205.5075 209.385 1000 50 0.7104205 +27 213.2625 217.14 1000 50 0.9350633 +28 240.405 244.2825 1000 50 0.51819456 +29 279.18 283.0575 1000 50 0.7390718 +30 283.0575 286.935 1000 50 0.6074276 +31 290.8125 294.69 1000 50 0.5963102 +32 294.69 298.5675 1000 50 0.65277565 +33 306.3225 310.2 1000 50 0.9631627 +34 314.0775 317.955 1000 50 0.90916324 +35 317.955 321.8325 1000 50 0.86869574 +36 321.8325 325.71 1000 50 0.93217546 +37 325.71 329.5875 1000 50 0.68111455 +38 329.5875 333.465 1000 50 0.99928254 +39 337.3425 341.21999999999997 1000 50 0.70997566 +40 348.975 352.8525 1000 50 0.69266003 +41 372.24 376.1175 1000 50 0.89225173 +42 379.995 383.8725 1000 50 0.53840184 +43 383.8725 387.75 1000 50 0.51861435 +44 399.3825 403.26 1000 50 0.5600794 +45 403.26 407.1375 1000 50 0.6633336 +46 411.015 414.8925 1000 50 0.83122575 +47 414.8925 418.77 1000 50 0.90371966 +48 422.6475 426.525 1000 50 0.50339115 +49 438.1575 442.035 1000 50 0.76322526 +50 445.9125 449.79 1000 50 0.6122471 +51 469.1775 473.055 1000 50 0.6137683 +52 476.9325 480.81 1000 50 0.8091633 +53 484.6875 488.565 1000 50 0.8506332 +54 492.4425 496.32 1000 50 0.80778706 +55 515.7075 519.585 1000 50 0.7346917 +56 527.34 531.2175000000001 1000 50 0.9925565 +57 535.095 538.9725000000001 1000 50 0.8085601 +58 546.7275 550.605 1000 50 0.9528938 +59 558.36 562.2375000000001 1000 50 0.8617748 +60 569.9925 573.87 1000 50 0.6418482 +61 581.625 585.5025 1000 50 0.56252164 +62 585.5025 589.3800000000001 1000 50 0.5435355 +63 593.2575 597.1350000000001 1000 50 0.8809726 +64 597.135 601.0125 1000 50 0.82987803 +65 608.7675 612.6450000000001 1000 50 0.50984854 +66 616.5225 620.4000000000001 1000 50 0.5799598 +67 620.4 624.2775 1000 50 0.6868958 +68 628.155 632.0325 1000 50 0.76097506 +69 632.0325 635.9100000000001 1000 50 0.9588575 +70 639.7875 643.6650000000001 1000 50 0.9845269 +71 647.5425 651.4200000000001 1000 50 0.6442087 +72 651.42 655.2975 1000 50 0.97449523 +73 655.2975 659.1750000000001 1000 50 0.79267293 +74 659.175 663.0525 1000 50 0.8715319 +75 663.0525 666.9300000000001 1000 50 0.9410332 +76 674.685 678.5625 1000 50 0.6593792 +77 686.3175 690.195 1000 50 0.536328 +78 690.195 694.0725000000001 1000 50 0.5854521 +79 694.0725 697.95 1000 50 0.5128146 +80 701.8275 705.705 1000 50 0.91188097 +81 709.5825 713.46 1000 50 0.64526993 +82 717.3375 721.215 1000 50 0.74426764 +83 721.215 725.0925000000001 1000 50 0.61390895 +84 728.97 732.8475000000001 1000 50 0.6250225 +85 732.8475 736.725 1000 50 0.8545541 +86 736.725 740.6025000000001 1000 50 0.8361602 +87 748.3575 752.235 1000 50 0.8686705 +88 767.745 771.6225000000001 1000 50 0.6064587 +89 771.6225 775.5 1000 50 0.9920678 +90 775.5 779.3775 1000 50 0.63828665 +91 783.255 787.1325 1000 50 0.63723415 +92 794.8875 798.7650000000001 1000 50 0.6701482 +93 802.6425 806.5200000000001 1000 50 0.63894916 +94 814.275 818.1525 1000 50 0.7355466 +95 833.6625 837.5400000000001 1000 50 0.63338214 +96 841.4175 845.2950000000001 1000 50 0.6759833 +97 856.9275 860.8050000000001 1000 50 0.762683 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_17-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_17-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..1777b72db93ce7252c45d6e37b4b3bc5d113f73b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_17-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,85 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.61608404 +2 23.265 27.142500000000002 1000 50 0.573238 +3 31.02 34.8975 1000 50 0.75174934 +4 38.775 42.652499999999996 1000 50 0.63146496 +5 42.6525 46.53 1000 50 0.6947126 +6 62.04 65.9175 1000 50 0.7602054 +7 69.795 73.6725 1000 50 0.75536686 +8 73.6725 77.55 1000 50 0.6152887 +9 85.305 89.1825 1000 50 0.7472363 +10 93.06 96.9375 1000 50 0.79772115 +11 96.9375 100.815 1000 50 0.66800123 +12 108.57 112.44749999999999 1000 50 0.6316777 +13 120.2025 124.08 1000 50 0.8331921 +14 127.9575 131.835 1000 50 0.51923025 +15 131.835 135.7125 1000 50 0.9129793 +16 139.59 143.4675 1000 50 0.809836 +17 143.4675 147.345 1000 50 0.6668533 +18 158.9775 162.855 1000 50 0.59783494 +19 170.61 174.4875 1000 50 0.7878781 +20 174.4875 178.365 1000 50 0.6441742 +21 186.12 189.9975 1000 50 0.8731127 +22 189.9975 193.875 1000 50 0.73085165 +23 193.875 197.7525 1000 50 0.8202067 +24 201.63 205.5075 1000 50 0.7143984 +25 205.5075 209.385 1000 50 0.63830644 +26 213.2625 217.14 1000 50 0.6114903 +27 224.895 228.7725 1000 50 0.8694659 +28 228.7725 232.65 1000 50 0.79082114 +29 232.65 236.5275 1000 50 0.7034012 +30 236.5275 240.405 1000 50 0.6959262 +31 259.7925 263.67 1000 50 0.7183582 +32 267.5475 271.425 1000 50 0.66114753 +33 271.425 275.3025 1000 50 0.6506114 +34 279.18 283.0575 1000 50 0.68900883 +35 283.0575 286.935 1000 50 0.6390001 +36 290.8125 294.69 1000 50 0.7773936 +37 298.5675 302.445 1000 50 0.5716313 +38 302.445 306.3225 1000 50 0.6772058 +39 310.2 314.0775 1000 50 0.52844024 +40 321.8325 325.71 1000 50 0.77053005 +41 325.71 329.5875 1000 50 0.79618907 +42 333.465 337.3425 1000 50 0.6695086 +43 337.3425 341.21999999999997 1000 50 0.5627469 +44 341.22 345.0975 1000 50 0.65729266 +45 345.0975 348.975 1000 50 0.5668272 +46 360.6075 364.485 1000 50 0.9243358 +47 364.485 368.3625 1000 50 0.8698252 +48 368.3625 372.24 1000 50 0.8493312 +49 376.1175 379.995 1000 50 0.8762376 +50 379.995 383.8725 1000 50 0.67360234 +51 391.6275 395.505 1000 50 0.97157174 +52 399.3825 403.26 1000 50 0.7009953 +53 403.26 407.1375 1000 50 0.82909924 +54 411.015 414.8925 1000 50 0.6113812 +55 422.6475 426.525 1000 50 0.5187535 +56 426.525 430.4025 1000 50 0.753243 +57 434.28 438.15749999999997 1000 50 0.6816901 +58 442.035 445.9125 1000 50 0.544023 +59 445.9125 449.79 1000 50 0.6198189 +60 449.79 453.6675 1000 50 0.9490951 +61 457.545 461.4225 1000 50 0.9467763 +62 461.4225 465.3 1000 50 0.9981377 +63 465.3 469.1775 1000 50 0.5903838 +64 473.055 476.9325 1000 50 0.7603419 +65 476.9325 480.81 1000 50 0.6184179 +66 480.81 484.6875 1000 50 0.766121 +67 488.565 492.4425 1000 50 0.66812867 +68 500.1975 504.075 1000 50 0.63716197 +69 515.7075 519.585 1000 50 0.52600145 +70 566.115 569.9925000000001 1000 50 0.6291008 +71 585.5025 589.3800000000001 1000 50 0.52543145 +72 597.135 601.0125 1000 50 0.635593 +73 601.0125 604.8900000000001 1000 50 0.7525511 +74 620.4 624.2775 1000 50 0.8289802 +75 639.7875 643.6650000000001 1000 50 0.74706864 +76 643.665 647.5425 1000 50 0.6666102 +77 647.5425 651.4200000000001 1000 50 0.6829926 +78 651.42 655.2975 1000 50 0.7045696 +79 674.685 678.5625 1000 50 0.9422317 +80 682.44 686.3175000000001 1000 50 0.96368575 +81 697.95 701.8275000000001 1000 50 0.9968888 +82 709.5825 713.46 1000 50 0.957996 +83 728.97 732.8475000000001 1000 50 0.6856114 +84 736.725 740.6025000000001 1000 50 0.58991516 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_17-16-00_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_17-16-00_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..9ab19a66d480a76be46c2f5adb1171ccc993ad5b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_17-16-00_annot_2022-11-30_01.txt @@ -0,0 +1,59 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.6281014 +2 11.6325 15.51 1000 50 0.6767776 +3 15.51 19.3875 1000 50 0.6987156 +4 23.265 27.142500000000002 1000 50 0.7766444 +5 27.1425 31.02 1000 50 0.78579617 +6 31.02 34.8975 1000 50 0.87296236 +7 34.8975 38.775 1000 50 0.5535743 +8 38.775 42.652499999999996 1000 50 0.523413 +9 42.6525 46.53 1000 50 0.8887444 +10 46.53 50.4075 1000 50 0.6339363 +11 54.285 58.162499999999994 1000 50 0.79085046 +12 65.9175 69.795 1000 50 0.75008905 +13 69.795 73.6725 1000 50 0.57853425 +14 81.4275 85.30499999999999 1000 50 0.6567956 +15 85.305 89.1825 1000 50 0.7343877 +16 93.06 96.9375 1000 50 0.62911934 +17 100.815 104.6925 1000 50 0.66214365 +18 108.57 112.44749999999999 1000 50 0.63441104 +19 131.835 135.7125 1000 50 0.71871436 +20 135.7125 139.59 1000 50 0.56738967 +21 139.59 143.4675 1000 50 0.8804369 +22 151.2225 155.1 1000 50 0.5895138 +23 155.1 158.9775 1000 50 0.70581937 +24 158.9775 162.855 1000 50 0.5423633 +25 162.855 166.7325 1000 50 0.8347062 +26 174.4875 178.365 1000 50 0.5810208 +27 201.63 205.5075 1000 50 0.6419608 +28 205.5075 209.385 1000 50 0.90233374 +29 224.895 228.7725 1000 50 0.65973085 +30 236.5275 240.405 1000 50 0.7148292 +31 248.16 252.0375 1000 50 0.541928 +32 252.0375 255.915 1000 50 0.678403 +33 255.915 259.7925 1000 50 0.60730344 +34 267.5475 271.425 1000 50 0.98417306 +35 271.425 275.3025 1000 50 0.5108733 +36 294.69 298.5675 1000 50 0.66824144 +37 306.3225 310.2 1000 50 0.5447178 +38 310.2 314.0775 1000 50 0.8790261 +39 329.5875 333.465 1000 50 0.7718692 +40 337.3425 341.21999999999997 1000 50 0.77646804 +41 348.975 352.8525 1000 50 0.67893285 +42 391.6275 395.505 1000 50 0.87131554 +43 399.3825 403.26 1000 50 0.5820394 +44 411.015 414.8925 1000 50 0.8106284 +45 426.525 430.4025 1000 50 0.6201376 +46 442.035 445.9125 1000 50 0.7310768 +47 449.79 453.6675 1000 50 0.6144647 +48 453.6675 457.545 1000 50 0.5914786 +49 461.4225 465.3 1000 50 0.51990545 +50 465.3 469.1775 1000 50 0.6270693 +51 473.055 476.9325 1000 50 0.6806892 +52 480.81 484.6875 1000 50 0.53093046 +53 484.6875 488.565 1000 50 0.509208 +54 492.4425 496.32 1000 50 0.90227914 +55 504.075 507.9525 1000 50 0.545659 +56 507.9525 511.83 1000 50 0.9299697 +57 531.2175 535.095 1000 50 0.85333914 +58 538.9725 542.85 1000 50 0.5887655 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_18-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_18-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..11cd8a5d1e726f4ff24e6a826ef299fe2d98b321 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_18-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,117 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.97343814 +2 15.51 19.3875 1000 50 0.7128007 +3 31.02 34.8975 1000 50 0.64404523 +4 50.4075 54.285 1000 50 0.85289806 +5 58.1625 62.04 1000 50 0.58714414 +6 96.9375 100.815 1000 50 0.6542633 +7 116.325 120.2025 1000 50 0.649908 +8 124.08 127.9575 1000 50 0.9388698 +9 127.9575 131.835 1000 50 0.66277605 +10 135.7125 139.59 1000 50 0.57056147 +11 139.59 143.4675 1000 50 0.5961276 +12 143.4675 147.345 1000 50 0.99739504 +13 155.1 158.9775 1000 50 0.74026346 +14 162.855 166.7325 1000 50 0.543943 +15 166.7325 170.60999999999999 1000 50 0.92443603 +16 174.4875 178.365 1000 50 0.9999291 +17 186.12 189.9975 1000 50 0.9864249 +18 189.9975 193.875 1000 50 0.5116976 +19 201.63 205.5075 1000 50 0.5733007 +20 209.385 213.2625 1000 50 0.62562084 +21 221.0175 224.895 1000 50 0.87999815 +22 228.7725 232.65 1000 50 0.80110884 +23 244.2825 248.16 1000 50 0.5063354 +24 252.0375 255.915 1000 50 0.6040866 +25 259.7925 263.67 1000 50 0.69101787 +26 263.67 267.5475 1000 50 0.7961966 +27 271.425 275.3025 1000 50 0.72101307 +28 275.3025 279.18 1000 50 0.96970403 +29 306.3225 310.2 1000 50 0.7806367 +30 317.955 321.8325 1000 50 0.9195701 +31 337.3425 341.21999999999997 1000 50 0.79322845 +32 356.73 360.6075 1000 50 0.54800427 +33 360.6075 364.485 1000 50 0.63644075 +34 364.485 368.3625 1000 50 0.8559864 +35 372.24 376.1175 1000 50 0.91672206 +36 376.1175 379.995 1000 50 0.98906446 +37 383.8725 387.75 1000 50 0.9359319 +38 391.6275 395.505 1000 50 0.7723545 +39 407.1375 411.015 1000 50 0.7568783 +40 411.015 414.8925 1000 50 0.7982692 +41 422.6475 426.525 1000 50 0.7410187 +42 430.4025 434.28 1000 50 0.5143002 +43 438.1575 442.035 1000 50 0.5850419 +44 442.035 445.9125 1000 50 0.5655507 +45 449.79 453.6675 1000 50 0.5153804 +46 457.545 461.4225 1000 50 0.7434092 +47 465.3 469.1775 1000 50 0.6883616 +48 469.1775 473.055 1000 50 0.5062485 +49 473.055 476.9325 1000 50 0.93746954 +50 476.9325 480.81 1000 50 0.90327525 +51 484.6875 488.565 1000 50 0.8141133 +52 488.565 492.4425 1000 50 0.7296892 +53 492.4425 496.32 1000 50 0.699487 +54 496.32 500.1975 1000 50 0.5861431 +55 504.075 507.9525 1000 50 0.6319998 +56 507.9525 511.83 1000 50 0.73386467 +57 515.7075 519.585 1000 50 0.8155079 +58 527.34 531.2175000000001 1000 50 0.57121116 +59 538.9725 542.85 1000 50 0.508203 +60 546.7275 550.605 1000 50 0.7677133 +61 550.605 554.4825000000001 1000 50 0.50398713 +62 566.115 569.9925000000001 1000 50 0.6379229 +63 577.7475 581.625 1000 50 0.7036671 +64 585.5025 589.3800000000001 1000 50 0.64390105 +65 589.38 593.2575 1000 50 0.5666726 +66 593.2575 597.1350000000001 1000 50 0.5598096 +67 597.135 601.0125 1000 50 0.69255555 +68 601.0125 604.8900000000001 1000 50 0.5919875 +69 604.89 608.7675 1000 50 0.52586114 +70 608.7675 612.6450000000001 1000 50 0.50823784 +71 612.645 616.5225 1000 50 0.622498 +72 632.0325 635.9100000000001 1000 50 0.66212785 +73 643.665 647.5425 1000 50 0.7084688 +74 651.42 655.2975 1000 50 0.5357041 +75 666.93 670.8075 1000 50 0.7457962 +76 682.44 686.3175000000001 1000 50 0.54156685 +77 690.195 694.0725000000001 1000 50 0.6215568 +78 709.5825 713.46 1000 50 0.86436546 +79 717.3375 721.215 1000 50 0.97870344 +80 721.215 725.0925000000001 1000 50 0.7597586 +81 725.0925 728.97 1000 50 0.94574565 +82 736.725 740.6025000000001 1000 50 0.8641641 +83 744.48 748.3575000000001 1000 50 0.975272 +84 752.235 756.1125000000001 1000 50 0.56135017 +85 756.1125 759.99 1000 50 0.7020192 +86 759.99 763.8675000000001 1000 50 0.6852481 +87 767.745 771.6225000000001 1000 50 0.57376134 +88 771.6225 775.5 1000 50 0.99993145 +89 787.1325 791.0100000000001 1000 50 0.51396656 +90 794.8875 798.7650000000001 1000 50 0.6082591 +91 798.765 802.6425 1000 50 0.6296386 +92 818.1525 822.0300000000001 1000 50 0.8853526 +93 825.9075 829.7850000000001 1000 50 0.60269344 +94 829.785 833.6625 1000 50 0.9440248 +95 833.6625 837.5400000000001 1000 50 0.91643643 +96 841.4175 845.2950000000001 1000 50 0.87978506 +97 849.1725 853.0500000000001 1000 50 0.5015472 +98 860.805 864.6825 1000 50 0.6571945 +99 880.1925 884.07 1000 50 0.990315 +100 899.58 903.4575000000001 1000 50 0.8425713 +101 911.2125 915.09 1000 50 0.64709884 +102 915.09 918.9675000000001 1000 50 0.8701231 +103 926.7225 930.6 1000 50 0.9249518 +104 934.4775 938.355 1000 50 0.67901784 +105 942.2325 946.11 1000 50 0.6259538 +106 953.865 957.7425000000001 1000 50 0.5639406 +107 965.4975 969.375 1000 50 0.56932044 +108 977.13 981.0075 1000 50 0.82478523 +109 984.885 988.7625 1000 50 0.96279573 +110 992.64 996.5175 1000 50 0.6576038 +111 996.5175 1000.3950000000001 1000 50 0.5482809 +112 1008.15 1012.0275 1000 50 0.7848111 +113 1012.0275 1015.9050000000001 1000 50 0.5446516 +114 1035.2925 1039.17 1000 50 0.66417193 +115 1046.925 1050.8025 1000 50 0.74134487 +116 1050.8025 1054.68 1000 50 0.5117694 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_18-21-19_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_18-21-19_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..4b71bb4ccf148449e9af2f82e221a5056898d3e6 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_18-21-19_annot_2022-11-30_01.txt @@ -0,0 +1,30 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9624579 +2 7.755 11.6325 1000 50 0.8344535 +3 11.6325 15.51 1000 50 0.76445585 +4 19.3875 23.265 1000 50 0.8433288 +5 23.265 27.142500000000002 1000 50 0.73418266 +6 27.1425 31.02 1000 50 0.971401 +7 50.4075 54.285 1000 50 0.5877747 +8 77.55 81.4275 1000 50 0.8137595 +9 81.4275 85.30499999999999 1000 50 0.5786029 +10 85.305 89.1825 1000 50 0.9523132 +11 89.1825 93.06 1000 50 0.7126259 +12 96.9375 100.815 1000 50 0.79536456 +13 104.6925 108.57 1000 50 0.78202325 +14 112.4475 116.325 1000 50 0.79996324 +15 116.325 120.2025 1000 50 0.55131406 +16 124.08 127.9575 1000 50 0.55492485 +17 131.835 135.7125 1000 50 0.65199023 +18 135.7125 139.59 1000 50 0.58902615 +19 139.59 143.4675 1000 50 0.94768244 +20 143.4675 147.345 1000 50 0.51161 +21 147.345 151.2225 1000 50 0.75545174 +22 155.1 158.9775 1000 50 0.52796185 +23 158.9775 162.855 1000 50 0.73181355 +24 166.7325 170.60999999999999 1000 50 0.5045601 +25 178.365 182.2425 1000 50 0.50443804 +26 186.12 189.9975 1000 50 0.7238579 +27 193.875 197.7525 1000 50 0.66324633 +28 205.5075 209.385 1000 50 0.5687078 +29 213.2625 217.14 1000 50 0.5880493 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_19-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_19-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..22606b273d60df6b037bff2d9e676936a59377a0 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_19-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,255 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.7286618 +2 7.755 11.6325 1000 50 0.966284 +3 11.6325 15.51 1000 50 0.68130857 +4 15.51 19.3875 1000 50 0.6036401 +5 19.3875 23.265 1000 50 0.6593658 +6 23.265 27.142500000000002 1000 50 0.73789424 +7 27.1425 31.02 1000 50 0.61124486 +8 31.02 34.8975 1000 50 0.8417296 +9 38.775 42.652499999999996 1000 50 0.5914433 +10 42.6525 46.53 1000 50 0.73642826 +11 58.1625 62.04 1000 50 0.77038807 +12 62.04 65.9175 1000 50 0.72967714 +13 65.9175 69.795 1000 50 0.5377541 +14 69.795 73.6725 1000 50 0.6763441 +15 73.6725 77.55 1000 50 0.9914957 +16 81.4275 85.30499999999999 1000 50 0.7268373 +17 89.1825 93.06 1000 50 0.8085815 +18 93.06 96.9375 1000 50 0.72351 +19 96.9375 100.815 1000 50 0.7777286 +20 100.815 104.6925 1000 50 0.5765807 +21 112.4475 116.325 1000 50 0.81560767 +22 124.08 127.9575 1000 50 0.85723186 +23 127.9575 131.835 1000 50 0.9948966 +24 135.7125 139.59 1000 50 0.7659605 +25 147.345 151.2225 1000 50 0.5295004 +26 155.1 158.9775 1000 50 0.9883044 +27 158.9775 162.855 1000 50 0.68193054 +28 162.855 166.7325 1000 50 0.70007986 +29 166.7325 170.60999999999999 1000 50 0.989805 +30 170.61 174.4875 1000 50 0.8404991 +31 174.4875 178.365 1000 50 0.73783064 +32 178.365 182.2425 1000 50 0.9893935 +33 182.2425 186.12 1000 50 0.54549897 +34 189.9975 193.875 1000 50 0.6259716 +35 193.875 197.7525 1000 50 0.5700879 +36 197.7525 201.63 1000 50 0.92304873 +37 201.63 205.5075 1000 50 0.9471215 +38 209.385 213.2625 1000 50 0.75007474 +39 213.2625 217.14 1000 50 0.7207628 +40 217.14 221.01749999999998 1000 50 0.68028253 +41 221.0175 224.895 1000 50 0.8457143 +42 224.895 228.7725 1000 50 0.7237053 +43 228.7725 232.65 1000 50 0.563503 +44 232.65 236.5275 1000 50 0.6704539 +45 236.5275 240.405 1000 50 0.57060045 +46 240.405 244.2825 1000 50 0.9824399 +47 244.2825 248.16 1000 50 0.9025999 +48 252.0375 255.915 1000 50 0.7628916 +49 275.3025 279.18 1000 50 0.9930184 +50 279.18 283.0575 1000 50 0.88147545 +51 283.0575 286.935 1000 50 0.9976799 +52 290.8125 294.69 1000 50 0.6181724 +53 294.69 298.5675 1000 50 0.7837523 +54 306.3225 310.2 1000 50 0.5643714 +55 317.955 321.8325 1000 50 0.6360996 +56 321.8325 325.71 1000 50 0.8835648 +57 325.71 329.5875 1000 50 0.5403911 +58 337.3425 341.21999999999997 1000 50 0.7013769 +59 341.22 345.0975 1000 50 0.93538296 +60 345.0975 348.975 1000 50 0.6954389 +61 348.975 352.8525 1000 50 0.79756767 +62 352.8525 356.73 1000 50 0.745213 +63 356.73 360.6075 1000 50 0.7226566 +64 360.6075 364.485 1000 50 0.56630254 +65 364.485 368.3625 1000 50 0.5560697 +66 368.3625 372.24 1000 50 0.6572214 +67 379.995 383.8725 1000 50 0.6650809 +68 383.8725 387.75 1000 50 0.7261858 +69 387.75 391.6275 1000 50 0.6888005 +70 395.505 399.3825 1000 50 0.9274389 +71 403.26 407.1375 1000 50 0.68451554 +72 407.1375 411.015 1000 50 0.7312032 +73 411.015 414.8925 1000 50 0.54654706 +74 414.8925 418.77 1000 50 0.7529132 +75 426.525 430.4025 1000 50 0.8789357 +76 434.28 438.15749999999997 1000 50 0.79800284 +77 438.1575 442.035 1000 50 0.79896283 +78 442.035 445.9125 1000 50 0.9563315 +79 445.9125 449.79 1000 50 0.61090946 +80 449.79 453.6675 1000 50 0.8155118 +81 453.6675 457.545 1000 50 0.54007286 +82 457.545 461.4225 1000 50 0.53132313 +83 461.4225 465.3 1000 50 0.52758604 +84 465.3 469.1775 1000 50 0.6176078 +85 469.1775 473.055 1000 50 0.63095576 +86 473.055 476.9325 1000 50 0.53737265 +87 480.81 484.6875 1000 50 0.9876559 +88 484.6875 488.565 1000 50 0.78412586 +89 488.565 492.4425 1000 50 0.99495655 +90 492.4425 496.32 1000 50 0.689742 +91 496.32 500.1975 1000 50 0.99924856 +92 504.075 507.9525 1000 50 0.57760155 +93 511.83 515.7075 1000 50 0.98094153 +94 515.7075 519.585 1000 50 0.7028353 +95 531.2175 535.095 1000 50 0.70607734 +96 538.9725 542.85 1000 50 0.80451584 +97 546.7275 550.605 1000 50 0.95447624 +98 550.605 554.4825000000001 1000 50 0.7189676 +99 554.4825 558.36 1000 50 0.7328439 +100 558.36 562.2375000000001 1000 50 0.7202562 +101 562.2375 566.115 1000 50 0.76570165 +102 566.115 569.9925000000001 1000 50 0.8893273 +103 569.9925 573.87 1000 50 0.9670281 +104 573.87 577.7475000000001 1000 50 0.63062465 +105 577.7475 581.625 1000 50 0.7641265 +106 581.625 585.5025 1000 50 0.6654805 +107 585.5025 589.3800000000001 1000 50 0.5688973 +108 589.38 593.2575 1000 50 0.8869962 +109 593.2575 597.1350000000001 1000 50 0.7662997 +110 597.135 601.0125 1000 50 0.7070315 +111 601.0125 604.8900000000001 1000 50 0.7682599 +112 604.89 608.7675 1000 50 0.9731818 +113 608.7675 612.6450000000001 1000 50 0.7049308 +114 612.645 616.5225 1000 50 0.9812517 +115 616.5225 620.4000000000001 1000 50 0.73098993 +116 620.4 624.2775 1000 50 0.7451342 +117 632.0325 635.9100000000001 1000 50 0.7898836 +118 635.91 639.7875 1000 50 0.8140055 +119 643.665 647.5425 1000 50 0.60055625 +120 651.42 655.2975 1000 50 0.6282727 +121 655.2975 659.1750000000001 1000 50 0.7510358 +122 670.8075 674.6850000000001 1000 50 0.5770183 +123 678.5625 682.44 1000 50 0.6410092 +124 682.44 686.3175000000001 1000 50 0.5775343 +125 686.3175 690.195 1000 50 0.73431635 +126 690.195 694.0725000000001 1000 50 0.74786234 +127 697.95 701.8275000000001 1000 50 0.7050679 +128 701.8275 705.705 1000 50 0.61397743 +129 705.705 709.5825000000001 1000 50 0.7004502 +130 709.5825 713.46 1000 50 0.5987801 +131 713.46 717.3375000000001 1000 50 0.6899126 +132 717.3375 721.215 1000 50 0.99298555 +133 721.215 725.0925000000001 1000 50 0.59815526 +134 725.0925 728.97 1000 50 0.80227613 +135 728.97 732.8475000000001 1000 50 0.88946843 +136 732.8475 736.725 1000 50 0.63990146 +137 736.725 740.6025000000001 1000 50 0.94555 +138 740.6025 744.48 1000 50 0.6578404 +139 744.48 748.3575000000001 1000 50 0.9456833 +140 756.1125 759.99 1000 50 0.65136224 +141 759.99 763.8675000000001 1000 50 0.79394156 +142 763.8675 767.745 1000 50 0.917283 +143 771.6225 775.5 1000 50 0.6242505 +144 775.5 779.3775 1000 50 0.9995407 +145 779.3775 783.2550000000001 1000 50 0.9267041 +146 783.255 787.1325 1000 50 0.9941093 +147 787.1325 791.0100000000001 1000 50 0.78446954 +148 791.01 794.8875 1000 50 0.9997023 +149 794.8875 798.7650000000001 1000 50 0.7165434 +150 798.765 802.6425 1000 50 0.99877435 +151 806.52 810.3975 1000 50 0.6310671 +152 810.3975 814.2750000000001 1000 50 0.90127 +153 814.275 818.1525 1000 50 0.78952754 +154 818.1525 822.0300000000001 1000 50 0.7081857 +155 822.03 825.9075 1000 50 0.802851 +156 825.9075 829.7850000000001 1000 50 0.9604598 +157 833.6625 837.5400000000001 1000 50 0.5099029 +158 837.54 841.4175 1000 50 0.91963327 +159 841.4175 845.2950000000001 1000 50 0.5594436 +160 849.1725 853.0500000000001 1000 50 0.60251725 +161 853.05 856.9275 1000 50 0.7166161 +162 860.805 864.6825 1000 50 0.64175487 +163 864.6825 868.5600000000001 1000 50 0.607872 +164 868.56 872.4375 1000 50 0.98393655 +165 872.4375 876.315 1000 50 0.9465035 +166 876.315 880.1925000000001 1000 50 0.99550444 +167 880.1925 884.07 1000 50 0.99901223 +168 884.07 887.9475000000001 1000 50 0.6023357 +169 887.9475 891.825 1000 50 0.7902406 +170 891.825 895.7025000000001 1000 50 0.9909899 +171 915.09 918.9675000000001 1000 50 0.7672344 +172 918.9675 922.845 1000 50 0.8266072 +173 922.845 926.7225000000001 1000 50 0.96316165 +174 934.4775 938.355 1000 50 0.62064797 +175 938.355 942.2325000000001 1000 50 0.71496826 +176 942.2325 946.11 1000 50 0.5245262 +177 946.11 949.9875000000001 1000 50 0.7388902 +178 949.9875 953.865 1000 50 0.86127955 +179 953.865 957.7425000000001 1000 50 0.97203743 +180 965.4975 969.375 1000 50 0.5104044 +181 969.375 973.2525 1000 50 0.8841665 +182 977.13 981.0075 1000 50 0.78159004 +183 981.0075 984.8850000000001 1000 50 0.98706716 +184 984.885 988.7625 1000 50 0.56880367 +185 988.7625 992.6400000000001 1000 50 0.62825584 +186 996.5175 1000.3950000000001 1000 50 0.739263 +187 1000.395 1004.2725 1000 50 0.9998876 +188 1004.2725 1008.1500000000001 1000 50 0.86085016 +189 1008.15 1012.0275 1000 50 0.7528918 +190 1012.0275 1015.9050000000001 1000 50 0.99875736 +191 1019.7825 1023.6600000000001 1000 50 0.999746 +192 1023.66 1027.5375 1000 50 0.7373762 +193 1031.415 1035.2925 1000 50 0.9999335 +194 1035.2925 1039.17 1000 50 0.5685768 +195 1039.17 1043.0475000000001 1000 50 0.9467127 +196 1046.925 1050.8025 1000 50 0.66316956 +197 1050.8025 1054.68 1000 50 0.99998176 +198 1054.68 1058.5575000000001 1000 50 0.83222663 +199 1062.435 1066.3125 1000 50 0.99884915 +200 1066.3125 1070.19 1000 50 0.6475815 +201 1070.19 1074.0675 1000 50 0.9950571 +202 1074.0675 1077.9450000000002 1000 50 0.691742 +203 1081.8225 1085.7 1000 50 0.9985257 +204 1085.7 1089.5775 1000 50 0.56042105 +205 1093.455 1097.3325 1000 50 0.943059 +206 1097.3325 1101.21 1000 50 0.82466316 +207 1101.21 1105.0875 1000 50 0.9999298 +208 1108.965 1112.8425 1000 50 0.7638291 +209 1112.8425 1116.72 1000 50 0.99716175 +210 1116.72 1120.5975 1000 50 0.64892536 +211 1120.5975 1124.4750000000001 1000 50 0.9919956 +212 1124.475 1128.3525 1000 50 0.975664 +213 1132.23 1136.1075 1000 50 0.70730615 +214 1136.1075 1139.9850000000001 1000 50 0.83780944 +215 1139.985 1143.8625 1000 50 0.7134142 +216 1147.74 1151.6175 1000 50 0.7852382 +217 1163.25 1167.1275 1000 50 0.5575842 +218 1167.1275 1171.005 1000 50 0.99414426 +219 1174.8825 1178.76 1000 50 0.8999056 +220 1194.27 1198.1475 1000 50 0.9259428 +221 1205.9025 1209.78 1000 50 0.9771878 +222 1209.78 1213.6575 1000 50 0.76088065 +223 1217.535 1221.4125000000001 1000 50 0.6791279 +224 1225.29 1229.1675 1000 50 0.53923666 +225 1233.045 1236.9225000000001 1000 50 0.99167514 +226 1236.9225 1240.8 1000 50 0.8780081 +227 1244.6775 1248.555 1000 50 0.5476252 +228 1248.555 1252.4325000000001 1000 50 0.54497916 +229 1252.4325 1256.31 1000 50 0.78323174 +230 1256.31 1260.1875 1000 50 0.97856563 +231 1260.1875 1264.065 1000 50 0.6204137 +232 1264.065 1267.9425 1000 50 0.75930965 +233 1275.6975 1279.575 1000 50 0.7804851 +234 1279.575 1283.4525 1000 50 0.938197 +235 1283.4525 1287.3300000000002 1000 50 0.99950945 +236 1291.2075 1295.085 1000 50 0.87784684 +237 1295.085 1298.9625 1000 50 0.99143666 +238 1298.9625 1302.8400000000001 1000 50 0.6199328 +239 1306.7175 1310.595 1000 50 0.61967874 +240 1310.595 1314.4725 1000 50 0.9656908 +241 1314.4725 1318.3500000000001 1000 50 0.9908874 +242 1322.2275 1326.105 1000 50 0.8557548 +243 1326.105 1329.9825 1000 50 0.8239055 +244 1329.9825 1333.8600000000001 1000 50 0.53152436 +245 1333.86 1337.7375 1000 50 0.6754586 +246 1341.615 1345.4925 1000 50 0.6035959 +247 1345.4925 1349.3700000000001 1000 50 0.778987 +248 1349.37 1353.2475 1000 50 0.678089 +249 1357.125 1361.0025 1000 50 0.86741936 +250 1361.0025 1364.88 1000 50 0.8681186 +251 1364.88 1368.7575000000002 1000 50 0.5203874 +252 1368.7575 1372.635 1000 50 0.5848793 +253 1372.635 1376.5125 1000 50 0.6494574 +254 1376.5125 1380.39 1000 50 0.6772173 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_20-00-06_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_20-00-06_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..6a2fe771db65edd3c2d5c83ec4c4014a0cc5589e --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_20-00-06_annot_2022-11-30_01.txt @@ -0,0 +1,250 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.71464556 +2 7.755 11.6325 1000 50 0.66206187 +3 11.6325 15.51 1000 50 0.670937 +4 15.51 19.3875 1000 50 0.6494109 +5 19.3875 23.265 1000 50 0.5181754 +6 23.265 27.142500000000002 1000 50 0.5897235 +7 27.1425 31.02 1000 50 0.53688306 +8 31.02 34.8975 1000 50 0.80632544 +9 34.8975 38.775 1000 50 0.726767 +10 38.775 42.652499999999996 1000 50 0.7079929 +11 46.53 50.4075 1000 50 0.57539886 +12 50.4075 54.285 1000 50 0.8087255 +13 54.285 58.162499999999994 1000 50 0.9047989 +14 58.1625 62.04 1000 50 0.5767911 +15 62.04 65.9175 1000 50 0.61818475 +16 77.55 81.4275 1000 50 0.72817814 +17 81.4275 85.30499999999999 1000 50 0.9058649 +18 85.305 89.1825 1000 50 0.9328347 +19 89.1825 93.06 1000 50 0.5498665 +20 93.06 96.9375 1000 50 0.53034806 +21 108.57 112.44749999999999 1000 50 0.5969293 +22 120.2025 124.08 1000 50 0.7601511 +23 127.9575 131.835 1000 50 0.6865591 +24 131.835 135.7125 1000 50 0.708476 +25 135.7125 139.59 1000 50 0.9961331 +26 139.59 143.4675 1000 50 0.60447526 +27 143.4675 147.345 1000 50 0.7857417 +28 155.1 158.9775 1000 50 0.76552576 +29 158.9775 162.855 1000 50 0.9709798 +30 162.855 166.7325 1000 50 0.5036731 +31 166.7325 170.60999999999999 1000 50 0.90171677 +32 174.4875 178.365 1000 50 0.7013851 +33 178.365 182.2425 1000 50 0.75739753 +34 197.7525 201.63 1000 50 0.5561275 +35 205.5075 209.385 1000 50 0.77318805 +36 209.385 213.2625 1000 50 0.63345534 +37 213.2625 217.14 1000 50 0.8194322 +38 217.14 221.01749999999998 1000 50 0.8532277 +39 228.7725 232.65 1000 50 0.8421703 +40 232.65 236.5275 1000 50 0.9423043 +41 236.5275 240.405 1000 50 0.75431675 +42 240.405 244.2825 1000 50 0.67379797 +43 244.2825 248.16 1000 50 0.9993344 +44 252.0375 255.915 1000 50 0.879767 +45 255.915 259.7925 1000 50 0.99803287 +46 259.7925 263.67 1000 50 0.9653435 +47 267.5475 271.425 1000 50 0.9999869 +48 271.425 275.3025 1000 50 0.6666083 +49 275.3025 279.18 1000 50 0.94188684 +50 279.18 283.0575 1000 50 0.9935998 +51 283.0575 286.935 1000 50 0.73719203 +52 286.935 290.8125 1000 50 0.7317786 +53 290.8125 294.69 1000 50 0.9739008 +54 298.5675 302.445 1000 50 0.81970865 +55 302.445 306.3225 1000 50 0.8975088 +56 306.3225 310.2 1000 50 0.94629776 +57 310.2 314.0775 1000 50 0.75272524 +58 317.955 321.8325 1000 50 0.9242747 +59 321.8325 325.71 1000 50 0.7010999 +60 325.71 329.5875 1000 50 0.7857799 +61 329.5875 333.465 1000 50 0.99988985 +62 333.465 337.3425 1000 50 0.6638052 +63 345.0975 348.975 1000 50 0.6610819 +64 348.975 352.8525 1000 50 0.9930005 +65 352.8525 356.73 1000 50 0.8648119 +66 356.73 360.6075 1000 50 0.69637096 +67 376.1175 379.995 1000 50 0.7541184 +68 383.8725 387.75 1000 50 0.80020976 +69 387.75 391.6275 1000 50 0.9829769 +70 391.6275 395.505 1000 50 0.91361517 +71 395.505 399.3825 1000 50 0.74367493 +72 414.8925 418.77 1000 50 0.9563148 +73 422.6475 426.525 1000 50 0.99617684 +74 434.28 438.15749999999997 1000 50 0.99608 +75 438.1575 442.035 1000 50 0.87854105 +76 445.9125 449.79 1000 50 0.93813646 +77 453.6675 457.545 1000 50 0.7673469 +78 457.545 461.4225 1000 50 0.75815326 +79 461.4225 465.3 1000 50 0.8437471 +80 465.3 469.1775 1000 50 0.93789816 +81 476.9325 480.81 1000 50 0.9999186 +82 484.6875 488.565 1000 50 0.8809917 +83 492.4425 496.32 1000 50 0.73377496 +84 496.32 500.1975 1000 50 0.9557418 +85 504.075 507.9525 1000 50 0.80139303 +86 507.9525 511.83 1000 50 0.6314583 +87 515.7075 519.585 1000 50 0.5942696 +88 519.585 523.4625000000001 1000 50 0.6999931 +89 523.4625 527.34 1000 50 0.54769164 +90 527.34 531.2175000000001 1000 50 0.7317048 +91 535.095 538.9725000000001 1000 50 0.81563145 +92 538.9725 542.85 1000 50 0.976705 +93 546.7275 550.605 1000 50 0.9691269 +94 550.605 554.4825000000001 1000 50 0.98662555 +95 562.2375 566.115 1000 50 0.8762553 +96 566.115 569.9925000000001 1000 50 0.538237 +97 569.9925 573.87 1000 50 0.7157968 +98 597.135 601.0125 1000 50 0.5512264 +99 604.89 608.7675 1000 50 0.8159901 +100 612.645 616.5225 1000 50 0.90041614 +101 616.5225 620.4000000000001 1000 50 0.6862575 +102 624.2775 628.1550000000001 1000 50 0.777194 +103 628.155 632.0325 1000 50 0.6007264 +104 635.91 639.7875 1000 50 0.5450521 +105 639.7875 643.6650000000001 1000 50 0.516869 +106 647.5425 651.4200000000001 1000 50 0.73064446 +107 651.42 655.2975 1000 50 0.9375798 +108 659.175 663.0525 1000 50 0.5588601 +109 666.93 670.8075 1000 50 0.5454977 +110 682.44 686.3175000000001 1000 50 0.52603406 +111 686.3175 690.195 1000 50 0.63404185 +112 690.195 694.0725000000001 1000 50 0.7986798 +113 701.8275 705.705 1000 50 0.7934871 +114 705.705 709.5825000000001 1000 50 0.5735376 +115 709.5825 713.46 1000 50 0.6712292 +116 713.46 717.3375000000001 1000 50 0.9840385 +117 721.215 725.0925000000001 1000 50 0.95652026 +118 732.8475 736.725 1000 50 0.94013464 +119 736.725 740.6025000000001 1000 50 0.7801696 +120 740.6025 744.48 1000 50 0.588612 +121 744.48 748.3575000000001 1000 50 0.899445 +122 752.235 756.1125000000001 1000 50 0.5982505 +123 756.1125 759.99 1000 50 0.79628843 +124 759.99 763.8675000000001 1000 50 0.87336737 +125 763.8675 767.745 1000 50 0.8330001 +126 771.6225 775.5 1000 50 0.53467834 +127 775.5 779.3775 1000 50 0.91732615 +128 779.3775 783.2550000000001 1000 50 0.6029058 +129 791.01 794.8875 1000 50 0.91257596 +130 794.8875 798.7650000000001 1000 50 0.99864656 +131 806.52 810.3975 1000 50 0.6843591 +132 810.3975 814.2750000000001 1000 50 0.9476187 +133 814.275 818.1525 1000 50 0.9658514 +134 818.1525 822.0300000000001 1000 50 0.8588598 +135 822.03 825.9075 1000 50 0.60806835 +136 825.9075 829.7850000000001 1000 50 0.89778847 +137 829.785 833.6625 1000 50 0.56450725 +138 833.6625 837.5400000000001 1000 50 0.84616214 +139 837.54 841.4175 1000 50 0.6346069 +140 841.4175 845.2950000000001 1000 50 0.679436 +141 849.1725 853.0500000000001 1000 50 0.93434256 +142 853.05 856.9275 1000 50 0.8729295 +143 856.9275 860.8050000000001 1000 50 0.66642165 +144 860.805 864.6825 1000 50 0.68710387 +145 864.6825 868.5600000000001 1000 50 0.88774765 +146 868.56 872.4375 1000 50 0.8818268 +147 872.4375 876.315 1000 50 0.8008024 +148 876.315 880.1925000000001 1000 50 0.8240974 +149 880.1925 884.07 1000 50 0.5691305 +150 887.9475 891.825 1000 50 0.6877325 +151 899.58 903.4575000000001 1000 50 0.8655131 +152 903.4575 907.335 1000 50 0.9431896 +153 915.09 918.9675000000001 1000 50 0.70230484 +154 918.9675 922.845 1000 50 0.99522626 +155 926.7225 930.6 1000 50 0.5548583 +156 930.6 934.4775000000001 1000 50 0.74756265 +157 938.355 942.2325000000001 1000 50 0.7081476 +158 946.11 949.9875000000001 1000 50 0.8004355 +159 949.9875 953.865 1000 50 0.6198605 +160 957.7425 961.62 1000 50 0.9999225 +161 961.62 965.4975000000001 1000 50 0.5391522 +162 965.4975 969.375 1000 50 0.64822936 +163 969.375 973.2525 1000 50 0.57819957 +164 973.2525 977.1300000000001 1000 50 0.9982564 +165 977.13 981.0075 1000 50 0.59585327 +166 981.0075 984.8850000000001 1000 50 0.75780016 +167 984.885 988.7625 1000 50 0.5404726 +168 988.7625 992.6400000000001 1000 50 0.8821121 +169 992.64 996.5175 1000 50 0.61139685 +170 1000.395 1004.2725 1000 50 0.9424498 +171 1004.2725 1008.1500000000001 1000 50 0.76548886 +172 1008.15 1012.0275 1000 50 0.9394062 +173 1012.0275 1015.9050000000001 1000 50 0.82668626 +174 1015.905 1019.7825 1000 50 0.99948055 +175 1019.7825 1023.6600000000001 1000 50 0.9946069 +176 1023.66 1027.5375 1000 50 0.9293622 +177 1027.5375 1031.415 1000 50 0.99085695 +178 1031.415 1035.2925 1000 50 0.9812682 +179 1035.2925 1039.17 1000 50 0.8938904 +180 1043.0475 1046.925 1000 50 0.98286784 +181 1050.8025 1054.68 1000 50 0.8211747 +182 1054.68 1058.5575000000001 1000 50 0.61616486 +183 1058.5575 1062.435 1000 50 0.78353417 +184 1062.435 1066.3125 1000 50 0.9755883 +185 1066.3125 1070.19 1000 50 0.767476 +186 1074.0675 1077.9450000000002 1000 50 0.6142945 +187 1077.945 1081.8225 1000 50 0.5696405 +188 1085.7 1089.5775 1000 50 0.98973817 +189 1089.5775 1093.4550000000002 1000 50 0.75412774 +190 1093.455 1097.3325 1000 50 0.63766783 +191 1097.3325 1101.21 1000 50 0.9010727 +192 1101.21 1105.0875 1000 50 0.8657456 +193 1105.0875 1108.9650000000001 1000 50 0.84998095 +194 1108.965 1112.8425 1000 50 0.9524205 +195 1112.8425 1116.72 1000 50 0.6494825 +196 1124.475 1128.3525 1000 50 0.7057299 +197 1136.1075 1139.9850000000001 1000 50 0.7321645 +198 1139.985 1143.8625 1000 50 0.52813953 +199 1143.8625 1147.74 1000 50 0.8213726 +200 1147.74 1151.6175 1000 50 0.68617797 +201 1151.6175 1155.4950000000001 1000 50 0.75731796 +202 1159.3725 1163.25 1000 50 0.8137603 +203 1163.25 1167.1275 1000 50 0.6281608 +204 1167.1275 1171.005 1000 50 0.7912561 +205 1174.8825 1178.76 1000 50 0.57806706 +206 1178.76 1182.6375 1000 50 0.6863867 +207 1186.515 1190.3925000000002 1000 50 0.7034547 +208 1198.1475 1202.025 1000 50 0.74559796 +209 1205.9025 1209.78 1000 50 0.53395504 +210 1217.535 1221.4125000000001 1000 50 0.6870154 +211 1221.4125 1225.29 1000 50 0.6706268 +212 1229.1675 1233.045 1000 50 0.61573124 +213 1233.045 1236.9225000000001 1000 50 0.8735983 +214 1240.8 1244.6775 1000 50 0.7430175 +215 1244.6775 1248.555 1000 50 0.7623759 +216 1248.555 1252.4325000000001 1000 50 0.6100997 +217 1264.065 1267.9425 1000 50 0.6430251 +218 1267.9425 1271.8200000000002 1000 50 0.9999641 +219 1271.82 1275.6975 1000 50 0.9999294 +220 1275.6975 1279.575 1000 50 0.75218207 +221 1279.575 1283.4525 1000 50 0.8146951 +222 1283.4525 1287.3300000000002 1000 50 0.9985037 +223 1295.085 1298.9625 1000 50 0.98036 +224 1298.9625 1302.8400000000001 1000 50 0.83456844 +225 1302.84 1306.7175 1000 50 0.8505511 +226 1310.595 1314.4725 1000 50 0.55500424 +227 1314.4725 1318.3500000000001 1000 50 0.8453135 +228 1318.35 1322.2275 1000 50 0.9943037 +229 1322.2275 1326.105 1000 50 0.8410858 +230 1326.105 1329.9825 1000 50 0.56263095 +231 1333.86 1337.7375 1000 50 0.99988747 +232 1353.2475 1357.125 1000 50 0.5572933 +233 1357.125 1361.0025 1000 50 0.8840037 +234 1361.0025 1364.88 1000 50 0.83864135 +235 1372.635 1376.5125 1000 50 0.94840467 +236 1380.39 1384.2675000000002 1000 50 0.64118904 +237 1384.2675 1388.145 1000 50 0.855394 +238 1388.145 1392.0225 1000 50 0.9778022 +239 1392.0225 1395.9 1000 50 0.83055013 +240 1399.7775 1403.655 1000 50 0.9752274 +241 1403.655 1407.5325 1000 50 0.58660346 +242 1407.5325 1411.41 1000 50 0.6984614 +243 1430.7975 1434.675 1000 50 0.61604273 +244 1446.3075 1450.185 1000 50 0.8657546 +245 1450.185 1454.0625 1000 50 0.8473108 +246 1457.94 1461.8175 1000 50 0.8639845 +247 1477.3275 1481.2050000000002 1000 50 0.6019663 +248 1481.205 1485.0825 1000 50 0.5591089 +249 1485.0825 1488.96 1000 50 0.72247237 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_21-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_21-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..3a4c52e5f6d6c2efacd0c0a99bf85370b09623eb --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_21-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,14 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 0.0 3.8775 1000 50 0.6666953 +2 11.6325 15.51 1000 50 0.96916246 +3 15.51 19.3875 1000 50 0.5280285 +4 19.3875 23.265 1000 50 0.57094127 +5 23.265 27.142500000000002 1000 50 0.9366413 +6 27.1425 31.02 1000 50 0.7017431 +7 31.02 34.8975 1000 50 0.7114251 +8 34.8975 38.775 1000 50 0.6289167 +9 46.53 50.4075 1000 50 0.6733758 +10 50.4075 54.285 1000 50 0.94845563 +11 54.285 58.162499999999994 1000 50 0.92090625 +12 58.1625 62.04 1000 50 0.8411376 +13 62.04 65.9175 1000 50 0.58067393 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_21-06-41_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_21-06-41_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..931c7d49fd17ab62917cfeb7cb0afb1e42cdae09 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_21-06-41_annot_2022-11-30_01.txt @@ -0,0 +1,186 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.66249007 +2 11.6325 15.51 1000 50 0.5232271 +3 15.51 19.3875 1000 50 0.80177546 +4 19.3875 23.265 1000 50 0.6997538 +5 31.02 34.8975 1000 50 0.69765264 +6 34.8975 38.775 1000 50 0.69486 +7 42.6525 46.53 1000 50 0.92620087 +8 50.4075 54.285 1000 50 0.78730166 +9 58.1625 62.04 1000 50 0.7102095 +10 62.04 65.9175 1000 50 0.5848795 +11 65.9175 69.795 1000 50 0.8014662 +12 69.795 73.6725 1000 50 0.84818226 +13 77.55 81.4275 1000 50 0.63862437 +14 81.4275 85.30499999999999 1000 50 0.6191618 +15 89.1825 93.06 1000 50 0.57795453 +16 96.9375 100.815 1000 50 0.59461963 +17 100.815 104.6925 1000 50 0.68288904 +18 104.6925 108.57 1000 50 0.9463396 +19 108.57 112.44749999999999 1000 50 0.8759693 +20 127.9575 131.835 1000 50 0.66570586 +21 135.7125 139.59 1000 50 0.6611674 +22 162.855 166.7325 1000 50 0.91955423 +23 166.7325 170.60999999999999 1000 50 0.9212823 +24 170.61 174.4875 1000 50 0.57260954 +25 174.4875 178.365 1000 50 0.99274653 +26 178.365 182.2425 1000 50 0.66563004 +27 186.12 189.9975 1000 50 0.9871743 +28 193.875 197.7525 1000 50 0.59357667 +29 201.63 205.5075 1000 50 0.6031875 +30 205.5075 209.385 1000 50 0.96659255 +31 209.385 213.2625 1000 50 0.6600237 +32 213.2625 217.14 1000 50 0.9899232 +33 217.14 221.01749999999998 1000 50 0.9065762 +34 224.895 228.7725 1000 50 0.8537203 +35 228.7725 232.65 1000 50 0.5652338 +36 232.65 236.5275 1000 50 0.7188887 +37 236.5275 240.405 1000 50 0.99880123 +38 240.405 244.2825 1000 50 0.73727274 +39 244.2825 248.16 1000 50 0.970183 +40 248.16 252.0375 1000 50 0.5483494 +41 255.915 259.7925 1000 50 0.7000216 +42 259.7925 263.67 1000 50 0.58762586 +43 263.67 267.5475 1000 50 0.60045636 +44 267.5475 271.425 1000 50 0.9379382 +45 279.18 283.0575 1000 50 0.8191723 +46 286.935 290.8125 1000 50 0.7674661 +47 290.8125 294.69 1000 50 0.6795676 +48 294.69 298.5675 1000 50 0.74672556 +49 298.5675 302.445 1000 50 0.97745603 +50 302.445 306.3225 1000 50 0.9261437 +51 310.2 314.0775 1000 50 0.7541448 +52 314.0775 317.955 1000 50 0.91921175 +53 321.8325 325.71 1000 50 0.9980235 +54 333.465 337.3425 1000 50 0.50454086 +55 337.3425 341.21999999999997 1000 50 0.5786635 +56 345.0975 348.975 1000 50 0.774299 +57 348.975 352.8525 1000 50 0.95871264 +58 352.8525 356.73 1000 50 0.979862 +59 356.73 360.6075 1000 50 0.6333334 +60 364.485 368.3625 1000 50 0.96570677 +61 368.3625 372.24 1000 50 0.64569247 +62 376.1175 379.995 1000 50 0.91124344 +63 379.995 383.8725 1000 50 0.714539 +64 391.6275 395.505 1000 50 0.9953726 +65 395.505 399.3825 1000 50 0.929477 +66 399.3825 403.26 1000 50 0.9987488 +67 403.26 407.1375 1000 50 0.87039036 +68 407.1375 411.015 1000 50 0.9941195 +69 414.8925 418.77 1000 50 0.9857443 +70 418.77 422.6475 1000 50 0.86072636 +71 430.4025 434.28 1000 50 0.5371485 +72 434.28 438.15749999999997 1000 50 0.70864177 +73 438.1575 442.035 1000 50 0.5090556 +74 445.9125 449.79 1000 50 0.8738429 +75 453.6675 457.545 1000 50 0.6763426 +76 457.545 461.4225 1000 50 0.7112778 +77 461.4225 465.3 1000 50 0.5245013 +78 465.3 469.1775 1000 50 0.8055873 +79 469.1775 473.055 1000 50 0.76098377 +80 480.81 484.6875 1000 50 0.9692433 +81 484.6875 488.565 1000 50 0.7780525 +82 488.565 492.4425 1000 50 0.96679413 +83 492.4425 496.32 1000 50 0.7288043 +84 504.075 507.9525 1000 50 0.74442106 +85 507.9525 511.83 1000 50 0.5529934 +86 511.83 515.7075 1000 50 0.7321679 +87 519.585 523.4625000000001 1000 50 0.99710137 +88 523.4625 527.34 1000 50 0.6786129 +89 531.2175 535.095 1000 50 0.97020066 +90 535.095 538.9725000000001 1000 50 0.7572756 +91 542.85 546.7275000000001 1000 50 0.99490476 +92 546.7275 550.605 1000 50 0.5669241 +93 554.4825 558.36 1000 50 0.99481875 +94 558.36 562.2375000000001 1000 50 0.9012467 +95 562.2375 566.115 1000 50 0.61012685 +96 566.115 569.9925000000001 1000 50 0.5245092 +97 569.9925 573.87 1000 50 0.7037554 +98 573.87 577.7475000000001 1000 50 0.8352334 +99 577.7475 581.625 1000 50 0.9964174 +100 581.625 585.5025 1000 50 0.96513414 +101 589.38 593.2575 1000 50 0.96065915 +102 597.135 601.0125 1000 50 0.5416845 +103 601.0125 604.8900000000001 1000 50 0.9958805 +104 604.89 608.7675 1000 50 0.9171719 +105 612.645 616.5225 1000 50 0.6317072 +106 616.5225 620.4000000000001 1000 50 0.6460564 +107 628.155 632.0325 1000 50 0.9831172 +108 632.0325 635.9100000000001 1000 50 0.5615651 +109 643.665 647.5425 1000 50 0.9038078 +110 651.42 655.2975 1000 50 0.89901495 +111 663.0525 666.9300000000001 1000 50 0.9853395 +112 682.44 686.3175000000001 1000 50 0.96607345 +113 686.3175 690.195 1000 50 0.9886397 +114 694.0725 697.95 1000 50 0.5350668 +115 697.95 701.8275000000001 1000 50 0.9976418 +116 701.8275 705.705 1000 50 0.9941193 +117 705.705 709.5825000000001 1000 50 0.99940217 +118 709.5825 713.46 1000 50 0.94548047 +119 713.46 717.3375000000001 1000 50 0.7294813 +120 717.3375 721.215 1000 50 0.99999833 +121 721.215 725.0925000000001 1000 50 0.8236147 +122 728.97 732.8475000000001 1000 50 0.9965125 +123 732.8475 736.725 1000 50 0.8373032 +124 740.6025 744.48 1000 50 0.984646 +125 744.48 748.3575000000001 1000 50 0.6258953 +126 748.3575 752.235 1000 50 0.9536261 +127 752.235 756.1125000000001 1000 50 0.99452657 +128 759.99 763.8675000000001 1000 50 0.99845445 +129 763.8675 767.745 1000 50 0.9997991 +130 771.6225 775.5 1000 50 0.99999976 +131 775.5 779.3775 1000 50 0.80663395 +132 779.3775 783.2550000000001 1000 50 0.6282478 +133 783.255 787.1325 1000 50 0.99999094 +134 787.1325 791.0100000000001 1000 50 0.9840121 +135 791.01 794.8875 1000 50 0.87029094 +136 794.8875 798.7650000000001 1000 50 0.9999335 +137 798.765 802.6425 1000 50 0.9995441 +138 802.6425 806.5200000000001 1000 50 0.9012199 +139 806.52 810.3975 1000 50 0.6235662 +140 810.3975 814.2750000000001 1000 50 0.9601867 +141 814.275 818.1525 1000 50 0.9917549 +142 818.1525 822.0300000000001 1000 50 0.99009645 +143 825.9075 829.7850000000001 1000 50 0.788749 +144 829.785 833.6625 1000 50 0.9591153 +145 837.54 841.4175 1000 50 0.77309686 +146 841.4175 845.2950000000001 1000 50 0.97678864 +147 849.1725 853.0500000000001 1000 50 0.9836891 +148 853.05 856.9275 1000 50 0.9484084 +149 860.805 864.6825 1000 50 0.86139673 +150 868.56 872.4375 1000 50 0.99727136 +151 880.1925 884.07 1000 50 0.76154953 +152 884.07 887.9475000000001 1000 50 0.7421392 +153 887.9475 891.825 1000 50 0.986299 +154 895.7025 899.58 1000 50 0.8477709 +155 899.58 903.4575000000001 1000 50 0.9091573 +156 907.335 911.2125000000001 1000 50 0.96204287 +157 911.2125 915.09 1000 50 0.99851626 +158 918.9675 922.845 1000 50 0.9815205 +159 922.845 926.7225000000001 1000 50 0.9623326 +160 926.7225 930.6 1000 50 0.7289153 +161 938.355 942.2325000000001 1000 50 0.8098197 +162 949.9875 953.865 1000 50 0.52427197 +163 953.865 957.7425000000001 1000 50 0.69039136 +164 957.7425 961.62 1000 50 0.97265947 +165 961.62 965.4975000000001 1000 50 0.9987104 +166 965.4975 969.375 1000 50 0.5503221 +167 969.375 973.2525 1000 50 0.57527447 +168 973.2525 977.1300000000001 1000 50 0.9484985 +169 981.0075 984.8850000000001 1000 50 0.96700335 +170 984.885 988.7625 1000 50 0.9917944 +171 988.7625 992.6400000000001 1000 50 0.69360274 +172 996.5175 1000.3950000000001 1000 50 0.88048744 +173 1004.2725 1008.1500000000001 1000 50 0.60653424 +174 1012.0275 1015.9050000000001 1000 50 0.6233383 +175 1015.905 1019.7825 1000 50 0.82124364 +176 1023.66 1027.5375 1000 50 0.88392025 +177 1027.5375 1031.415 1000 50 0.71740633 +178 1031.415 1035.2925 1000 50 0.7417687 +179 1043.0475 1046.925 1000 50 0.5401766 +180 1046.925 1050.8025 1000 50 0.8397959 +181 1050.8025 1054.68 1000 50 0.5227852 +182 1070.19 1074.0675 1000 50 0.8634291 +183 1074.0675 1077.9450000000002 1000 50 0.9842977 +184 1089.5775 1093.4550000000002 1000 50 0.7571033 +185 1093.455 1097.3325 1000 50 0.99348783 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_22-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_22-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..37b5d6d0183887987bab232891a096f11df69bcc --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_22-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,54 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.98481804 +2 7.755 11.6325 1000 50 0.77281016 +3 19.3875 23.265 1000 50 0.73215264 +4 31.02 34.8975 1000 50 0.87322265 +5 34.8975 38.775 1000 50 0.84854686 +6 46.53 50.4075 1000 50 0.7707603 +7 58.1625 62.04 1000 50 0.8874618 +8 62.04 65.9175 1000 50 0.5311728 +9 65.9175 69.795 1000 50 0.98795354 +10 73.6725 77.55 1000 50 0.8878011 +11 85.305 89.1825 1000 50 0.7929308 +12 89.1825 93.06 1000 50 0.6450355 +13 96.9375 100.815 1000 50 0.89379466 +14 112.4475 116.325 1000 50 0.90487516 +15 124.08 127.9575 1000 50 0.7852858 +16 127.9575 131.835 1000 50 0.91462576 +17 143.4675 147.345 1000 50 0.87079614 +18 155.1 158.9775 1000 50 0.63606316 +19 166.7325 170.60999999999999 1000 50 0.57797825 +20 170.61 174.4875 1000 50 0.7015993 +21 182.2425 186.12 1000 50 0.6933889 +22 189.9975 193.875 1000 50 0.62503916 +23 201.63 205.5075 1000 50 0.9427666 +24 209.385 213.2625 1000 50 0.75779474 +25 217.14 221.01749999999998 1000 50 0.6016405 +26 221.0175 224.895 1000 50 0.599163 +27 228.7725 232.65 1000 50 0.7938486 +28 232.65 236.5275 1000 50 0.64153004 +29 236.5275 240.405 1000 50 0.67980236 +30 244.2825 248.16 1000 50 0.62246734 +31 252.0375 255.915 1000 50 0.6753135 +32 255.915 259.7925 1000 50 0.88478523 +33 267.5475 271.425 1000 50 0.590661 +34 279.18 283.0575 1000 50 0.69985145 +35 283.0575 286.935 1000 50 0.748465 +36 302.445 306.3225 1000 50 0.82476854 +37 329.5875 333.465 1000 50 0.68933314 +38 333.465 337.3425 1000 50 0.59791106 +39 345.0975 348.975 1000 50 0.55451834 +40 364.485 368.3625 1000 50 0.57960826 +41 368.3625 372.24 1000 50 0.9933867 +42 372.24 376.1175 1000 50 0.74919957 +43 376.1175 379.995 1000 50 0.81838083 +44 395.505 399.3825 1000 50 0.6474916 +45 399.3825 403.26 1000 50 0.8332435 +46 407.1375 411.015 1000 50 0.9079494 +47 418.77 422.6475 1000 50 0.72083235 +48 442.035 445.9125 1000 50 0.514525 +49 457.545 461.4225 1000 50 0.8689399 +50 469.1775 473.055 1000 50 0.73092186 +51 480.81 484.6875 1000 50 0.998439 +52 488.565 492.4425 1000 50 0.5188949 +53 492.4425 496.32 1000 50 0.8874321 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_22-11-55_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_22-11-55_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..8357d442d7161a9742875dc2a9a3e71d7a152f44 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_22-11-55_annot_2022-11-30_01.txt @@ -0,0 +1,104 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 7.755 11.6325 1000 50 0.6455699 +2 19.3875 23.265 1000 50 0.78545946 +3 34.8975 38.775 1000 50 0.67349166 +4 54.285 58.162499999999994 1000 50 0.98727965 +5 58.1625 62.04 1000 50 0.63382196 +6 73.6725 77.55 1000 50 0.6199725 +7 85.305 89.1825 1000 50 0.54584247 +8 93.06 96.9375 1000 50 0.87037843 +9 116.325 120.2025 1000 50 0.61597794 +10 124.08 127.9575 1000 50 0.6588356 +11 139.59 143.4675 1000 50 0.9848061 +12 143.4675 147.345 1000 50 0.5318893 +13 162.855 166.7325 1000 50 0.54806125 +14 170.61 174.4875 1000 50 0.6955593 +15 174.4875 178.365 1000 50 0.7839828 +16 232.65 236.5275 1000 50 0.79083616 +17 236.5275 240.405 1000 50 0.99821246 +18 240.405 244.2825 1000 50 0.9995604 +19 252.0375 255.915 1000 50 0.9522353 +20 255.915 259.7925 1000 50 0.6987861 +21 259.7925 263.67 1000 50 0.9805454 +22 267.5475 271.425 1000 50 0.5170392 +23 275.3025 279.18 1000 50 0.9462756 +24 279.18 283.0575 1000 50 0.6258903 +25 286.935 290.8125 1000 50 0.91293645 +26 290.8125 294.69 1000 50 0.7310773 +27 294.69 298.5675 1000 50 0.99718577 +28 302.445 306.3225 1000 50 0.87051064 +29 314.0775 317.955 1000 50 0.6532645 +30 317.955 321.8325 1000 50 0.98519725 +31 321.8325 325.71 1000 50 0.8959909 +32 329.5875 333.465 1000 50 0.9763777 +33 337.3425 341.21999999999997 1000 50 0.9795799 +34 341.22 345.0975 1000 50 0.9986796 +35 345.0975 348.975 1000 50 0.8320789 +36 348.975 352.8525 1000 50 0.9971944 +37 352.8525 356.73 1000 50 0.8940836 +38 356.73 360.6075 1000 50 0.9991855 +39 360.6075 364.485 1000 50 0.9952018 +40 364.485 368.3625 1000 50 0.9816487 +41 372.24 376.1175 1000 50 0.9993191 +42 376.1175 379.995 1000 50 0.9999125 +43 379.995 383.8725 1000 50 0.8699882 +44 383.8725 387.75 1000 50 0.9992267 +45 387.75 391.6275 1000 50 0.83859354 +46 391.6275 395.505 1000 50 0.91384417 +47 395.505 399.3825 1000 50 0.99932814 +48 399.3825 403.26 1000 50 0.84164727 +49 407.1375 411.015 1000 50 0.99998283 +50 411.015 414.8925 1000 50 0.60313916 +51 414.8925 418.77 1000 50 0.5826389 +52 418.77 422.6475 1000 50 0.9957858 +53 426.525 430.4025 1000 50 0.9652715 +54 430.4025 434.28 1000 50 0.8203926 +55 438.1575 442.035 1000 50 0.9999194 +56 442.035 445.9125 1000 50 0.70771956 +57 445.9125 449.79 1000 50 0.84624976 +58 449.79 453.6675 1000 50 0.99993825 +59 453.6675 457.545 1000 50 0.8393286 +60 461.4225 465.3 1000 50 0.9999995 +61 469.1775 473.055 1000 50 0.9942028 +62 473.055 476.9325 1000 50 0.778551 +63 480.81 484.6875 1000 50 0.99988425 +64 492.4425 496.32 1000 50 0.9999908 +65 496.32 500.1975 1000 50 0.6671081 +66 504.075 507.9525 1000 50 0.9999995 +67 511.83 515.7075 1000 50 0.86731714 +68 515.7075 519.585 1000 50 0.9913974 +69 523.4625 527.34 1000 50 0.99998534 +70 535.095 538.9725000000001 1000 50 0.98811626 +71 538.9725 542.85 1000 50 0.9737698 +72 546.7275 550.605 1000 50 0.9067411 +73 550.605 554.4825000000001 1000 50 0.84014183 +74 554.4825 558.36 1000 50 0.92941415 +75 558.36 562.2375000000001 1000 50 0.5249463 +76 577.7475 581.625 1000 50 0.64903134 +77 581.625 585.5025 1000 50 0.9248864 +78 585.5025 589.3800000000001 1000 50 0.9412864 +79 589.38 593.2575 1000 50 0.5646418 +80 593.2575 597.1350000000001 1000 50 0.64851874 +81 601.0125 604.8900000000001 1000 50 0.5499314 +82 608.7675 612.6450000000001 1000 50 0.9993426 +83 612.645 616.5225 1000 50 0.8509034 +84 620.4 624.2775 1000 50 0.5015691 +85 632.0325 635.9100000000001 1000 50 0.93831813 +86 639.7875 643.6650000000001 1000 50 0.7752926 +87 651.42 655.2975 1000 50 0.99610823 +88 655.2975 659.1750000000001 1000 50 0.5741701 +89 663.0525 666.9300000000001 1000 50 0.6315351 +90 670.8075 674.6850000000001 1000 50 0.7328747 +91 674.685 678.5625 1000 50 0.74784034 +92 686.3175 690.195 1000 50 0.59212446 +93 694.0725 697.95 1000 50 0.8299787 +94 701.8275 705.705 1000 50 0.99992645 +95 709.5825 713.46 1000 50 0.9999938 +96 721.215 725.0925000000001 1000 50 0.99994326 +97 728.97 732.8475000000001 1000 50 0.9984571 +98 732.8475 736.725 1000 50 0.98848176 +99 740.6025 744.48 1000 50 0.9977545 +100 752.235 756.1125000000001 1000 50 0.99998784 +101 756.1125 759.99 1000 50 0.9035842 +102 763.8675 767.745 1000 50 0.9999552 +103 783.255 787.1325 1000 50 0.99654937 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_23-00-05_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_23-00-05_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..2087b3a58e16d5a571638ce8e9099200c7bffad7 --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_23-00-05_annot_2022-11-30_01.txt @@ -0,0 +1,96 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.9882267 +2 7.755 11.6325 1000 50 0.99907327 +3 27.1425 31.02 1000 50 0.7168609 +4 31.02 34.8975 1000 50 0.55178934 +5 69.795 73.6725 1000 50 0.758224 +6 73.6725 77.55 1000 50 0.98169255 +7 81.4275 85.30499999999999 1000 50 0.5124073 +8 93.06 96.9375 1000 50 0.9367033 +9 96.9375 100.815 1000 50 0.98442113 +10 104.6925 108.57 1000 50 0.51153684 +11 116.325 120.2025 1000 50 0.61636007 +12 127.9575 131.835 1000 50 0.6916687 +13 147.345 151.2225 1000 50 0.6372169 +14 158.9775 162.855 1000 50 0.76129764 +15 178.365 182.2425 1000 50 0.77277184 +16 193.875 197.7525 1000 50 0.9296249 +17 197.7525 201.63 1000 50 0.67894816 +18 201.63 205.5075 1000 50 0.67725754 +19 221.0175 224.895 1000 50 0.71666133 +20 224.895 228.7725 1000 50 0.65676403 +21 232.65 236.5275 1000 50 0.93530864 +22 236.5275 240.405 1000 50 0.6537201 +23 244.2825 248.16 1000 50 0.9391615 +24 248.16 252.0375 1000 50 0.91380614 +25 252.0375 255.915 1000 50 0.6362589 +26 255.915 259.7925 1000 50 0.8798203 +27 275.3025 279.18 1000 50 0.95805043 +28 290.8125 294.69 1000 50 0.7910603 +29 294.69 298.5675 1000 50 0.7953025 +30 298.5675 302.445 1000 50 0.8397743 +31 302.445 306.3225 1000 50 0.8379516 +32 306.3225 310.2 1000 50 0.9978676 +33 314.0775 317.955 1000 50 0.9707555 +34 321.8325 325.71 1000 50 0.8909763 +35 329.5875 333.465 1000 50 0.5350894 +36 333.465 337.3425 1000 50 0.9226123 +37 337.3425 341.21999999999997 1000 50 0.97490025 +38 341.22 345.0975 1000 50 0.99896634 +39 345.0975 348.975 1000 50 0.9975405 +40 348.975 352.8525 1000 50 0.9959881 +41 356.73 360.6075 1000 50 0.99967396 +42 360.6075 364.485 1000 50 0.70398223 +43 364.485 368.3625 1000 50 0.5919801 +44 368.3625 372.24 1000 50 0.96729016 +45 372.24 376.1175 1000 50 0.990948 +46 379.995 383.8725 1000 50 0.7091212 +47 403.26 407.1375 1000 50 0.5071097 +48 411.015 414.8925 1000 50 0.8840815 +49 414.8925 418.77 1000 50 0.9235231 +50 426.525 430.4025 1000 50 0.84363586 +51 430.4025 434.28 1000 50 0.9741865 +52 442.035 445.9125 1000 50 0.99866986 +53 449.79 453.6675 1000 50 0.9934362 +54 461.4225 465.3 1000 50 0.91158056 +55 465.3 469.1775 1000 50 0.99652475 +56 473.055 476.9325 1000 50 0.76328963 +57 476.9325 480.81 1000 50 0.9780311 +58 480.81 484.6875 1000 50 0.6853774 +59 488.565 492.4425 1000 50 0.99813676 +60 492.4425 496.32 1000 50 0.63336474 +61 496.32 500.1975 1000 50 0.98984003 +62 500.1975 504.075 1000 50 0.9812385 +63 504.075 507.9525 1000 50 0.984772 +64 507.9525 511.83 1000 50 0.9981078 +65 511.83 515.7075 1000 50 0.9993536 +66 515.7075 519.585 1000 50 0.98933303 +67 519.585 523.4625000000001 1000 50 0.71257955 +68 527.34 531.2175000000001 1000 50 0.7647187 +69 535.095 538.9725000000001 1000 50 0.9022719 +70 538.9725 542.85 1000 50 0.85243183 +71 550.605 554.4825000000001 1000 50 0.99820876 +72 573.87 577.7475000000001 1000 50 0.64087176 +73 581.625 585.5025 1000 50 0.5275892 +74 593.2575 597.1350000000001 1000 50 0.6302539 +75 604.89 608.7675 1000 50 0.9899198 +76 628.155 632.0325 1000 50 0.5970657 +77 639.7875 643.6650000000001 1000 50 0.78254855 +78 643.665 647.5425 1000 50 0.6260197 +79 647.5425 651.4200000000001 1000 50 0.9691868 +80 659.175 663.0525 1000 50 0.98771566 +81 670.8075 674.6850000000001 1000 50 0.78416514 +82 682.44 686.3175000000001 1000 50 0.5998365 +83 701.8275 705.705 1000 50 0.8233242 +84 705.705 709.5825000000001 1000 50 0.62066555 +85 713.46 717.3375000000001 1000 50 0.88209105 +86 721.215 725.0925000000001 1000 50 0.7383741 +87 732.8475 736.725 1000 50 0.88839126 +88 744.48 748.3575000000001 1000 50 0.7379305 +89 748.3575 752.235 1000 50 0.50926584 +90 759.99 763.8675000000001 1000 50 0.75514334 +91 767.745 771.6225000000001 1000 50 0.9390742 +92 779.3775 783.2550000000001 1000 50 0.53902745 +93 787.1325 791.0100000000001 1000 50 0.58146906 +94 798.765 802.6425 1000 50 0.5752799 +95 802.6425 806.5200000000001 1000 50 0.9948383 diff --git a/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_23-17-14_annot_2022-11-30_01.txt b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_23-17-14_annot_2022-11-30_01.txt new file mode 100755 index 0000000000000000000000000000000000000000..c0c94f90ea334c37438da22462716fccf76e5c1b --- /dev/null +++ b/tests/test_files/test_annoted_files/thresh_0.5/N1/2021-03-20_2kHz/channelA_2021-03-20_23-17-14_annot_2022-11-30_01.txt @@ -0,0 +1,59 @@ +Selection Begin Time (s) End Time (s) High Freq (Hz) Low Freq (Hz) Prediction/Comments +1 3.8775 7.755 1000 50 0.87765676 +2 7.755 11.6325 1000 50 0.9897619 +3 19.3875 23.265 1000 50 0.9998863 +4 27.1425 31.02 1000 50 0.9688978 +5 31.02 34.8975 1000 50 0.84774584 +6 34.8975 38.775 1000 50 0.7049534 +7 46.53 50.4075 1000 50 0.68591994 +8 50.4075 54.285 1000 50 0.54738426 +9 62.04 65.9175 1000 50 0.99986804 +10 69.795 73.6725 1000 50 0.81861943 +11 81.4275 85.30499999999999 1000 50 0.6302281 +12 85.305 89.1825 1000 50 0.9887754 +13 100.815 104.6925 1000 50 0.8506385 +14 104.6925 108.57 1000 50 0.86063594 +15 112.4475 116.325 1000 50 0.67147243 +16 116.325 120.2025 1000 50 0.59639364 +17 120.2025 124.08 1000 50 0.8074335 +18 124.08 127.9575 1000 50 0.6109773 +19 131.835 135.7125 1000 50 0.74283147 +20 135.7125 139.59 1000 50 0.7904808 +21 139.59 143.4675 1000 50 0.7880863 +22 143.4675 147.345 1000 50 0.764317 +23 147.345 151.2225 1000 50 0.6621309 +24 151.2225 155.1 1000 50 0.9167827 +25 162.855 166.7325 1000 50 0.7337161 +26 166.7325 170.60999999999999 1000 50 0.7873661 +27 170.61 174.4875 1000 50 0.9812484 +28 182.2425 186.12 1000 50 0.6848136 +29 186.12 189.9975 1000 50 0.9231478 +30 193.875 197.7525 1000 50 0.78923666 +31 197.7525 201.63 1000 50 0.9915553 +32 201.63 205.5075 1000 50 0.75990313 +33 205.5075 209.385 1000 50 0.73153514 +34 209.385 213.2625 1000 50 0.86108285 +35 213.2625 217.14 1000 50 0.8020375 +36 217.14 221.01749999999998 1000 50 0.66750205 +37 221.0175 224.895 1000 50 0.99162334 +38 228.7725 232.65 1000 50 0.8004841 +39 240.405 244.2825 1000 50 0.95812064 +40 244.2825 248.16 1000 50 0.9694643 +41 263.67 267.5475 1000 50 0.71422225 +42 275.3025 279.18 1000 50 0.5065821 +43 279.18 283.0575 1000 50 0.9645269 +44 286.935 290.8125 1000 50 0.89459145 +45 306.3225 310.2 1000 50 0.54025763 +46 329.5875 333.465 1000 50 0.53762054 +47 348.975 352.8525 1000 50 0.6102905 +48 352.8525 356.73 1000 50 0.6449242 +49 360.6075 364.485 1000 50 0.52505594 +50 372.24 376.1175 1000 50 0.995647 +51 395.505 399.3825 1000 50 0.9985133 +52 403.26 407.1375 1000 50 0.99410975 +53 407.1375 411.015 1000 50 0.8783331 +54 414.8925 418.77 1000 50 0.9987004 +55 418.77 422.6475 1000 50 0.6413508 +56 426.525 430.4025 1000 50 0.99872106 +57 438.1575 442.035 1000 50 0.9842547 +58 469.1775 473.055 1000 50 0.81806606