This repository contains all active research materials for a project using MWC model parameters as selectable quantitative traits.
The repository is split into seven main directories, many of which have
subdirectories. This structure has been designed to be easily navigable by
humans and computers alike, allowing for rapid location of specific files and
instructions. Within each directory is a README.md
file which summarizes the
purpose of that directory as well as some examples where necessary.
Custom code written for the project that is not executed directly, but is
called from files in the code
directory.
In order to use the functions within the evo_mwc
module it is necessary to
install the package locally. This can simply be done by navigating in the
terminal to the main project directory and typing the command
pip install -e ./
The setup.py
file will take care of the installation. The -e
option within
the package allows for the constant update of the package as it might be
subject to changes as the project is being developed.
The modules contained in the package include:
viz.py
: functions for data visualization and plot styling.model.py
: functions related to the theoretical model to map biophysical traits to fitness functions.gaussianprocess.py
,fitderiv.py
: series of functions to compute derivatives from time series as detailed in Swain et al, 2016
This work is licensed under CC-BY-ND. All software is issued under the standard MIT license which is as follows:
Copyright 2019, The authors
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.