Metadata-Version: 1.1
Name: LIMBR
Version: 0.2.8.4
Summary: Learning and Imputation for Mass-spec Bias Reduction
Home-page: https://github.com/aleccrowell/LIMBR
Author: Alec Crowell
Author-email: alexander.m.crowell@gmail.com
License: BSD-3
Download-URL: https://github.com/aleccrowell/LIMBR/releases/tag/v0.2.8.4-alpha
Description: LIMBR: Learning and Imputation for Mass-spec Bias Reduction
        ===========================================================
        
        LIMBR provides a streamlined tool set for imputation of missing data followed by modelling and removal of batch effects.  The software was designed for proteomics datasets, with an emphasis on circadian 
        proteomics data, but can be applied to any time course or blocked experiments which produce large amounts of data, such as RNAseq. The two main classes are imputable, which performs missing data imputation, and sva, which performs 
        modelling and removal of batch effects.
        
        ----------
        Motivation
        ----------
        
        Decreasing costs and increasing ambition are resulting in larger Mass-spec (MS) experiments.  MS experiments have a few limitations which are exacerbated by this increasing scale, namely batch effects and missing data.  Many 
        downstream statistical analyses require complete cases for analysis, however, MS produces some missing data at random meaning that as the number of experiments increase the number of peptides rejected due to missing data actually 
        *increases*.  This is obviously not good, but fortunately there is a solution!  If the missing data for observations missing only a small number of data points are imputed this issue can be overcome and that's the first thing that 
        LIMBR does.  The second issue with larger scale MS experiments is batch effects.  As the number of samples increases, the number of batches necessary for sample processing also increases.  Batch effects from sample processing are 
        known to have a large effect on MS data and increasing the number of batches means more batch effects and a higher proportion of observations affected by at least one batch effect.  Here LIMBR capitolizes on the larger amount of 
        data and the known correlation structure of the data set to model these batch effects so that they can be removed.
        
        --------
        Features
        --------
        
        * KNN based imputation of missing data.
        
        * SVA based modelling and removal of batch effects.
        
        * Built for circadian and non-circadian time series as well as block designs
        
        -------------
        Example Usage
        -------------
        
        ```python
        from LIMBR import simulations, imputation, batch_fx
        
        simulation = simulations.simulate()
        simulation.generate_pool_map()
        simulation.write_output()
        
        #Read Raw Data
        to_impute = imputation.imputable('simulated_data_with_noise.txt',0.3)
        #Impute and Write Output
        to_impute.impute_data('imputed.txt')
        
        #Read Imputed Data ('c' indicates circadian experimental design, 'p' indicates proteomic data type)
        to_sva = batch_fx.sva(filename='imputed.txt',design='c',data_type='p',pool='pool_map.p')
        #preprocess data
        to_sva.preprocess_default()
        #perform permutation testing
        to_sva.perm_test(nperm=100)
        #write_output
        to_sva.output_default('LIMBR_processed.txt')
        ```
        
        ------------
        Installation
        ------------
        
        pip install limbr
        
        -------------
        API Reference
        -------------
        
        http://limbr.readthedocs.io/en/latest/
        
        -----------
        How to Use?
        -----------
        
        ----
        TODO
        ----
        
        * Switch to long format files for greater interoperability and more easily specified file format.
        
        * Add unit tests to docstrings where possible.
        
        * Review ensuring maximum Vectorization
        
        -------
        Credits
        -------
        
        K nearest neighbors as an imputation method was originally proposed by Gustavo Batista in 2002 (http://conteudo.icmc.usp.br/pessoas/gbatista/files/his2002.pdf) and has seen a great deal of success since.
        
        The sva based methods build on work for micro-array datasets by Jeffrey Leek, with particular reliance on his PhD Thesis from the University of Washington (https://digital.lib.washington.edu/researchworks/bitstream/handle/1773/9586/3290558.pdf?sequence=1).
        
        -------
        License
        -------
        
        © 2017 Alexander M. Crowell: BSD-3
        
Keywords: SVA,SVD,mass-spec,bioinformatics
Platform: UNKNOWN
