Metadata-Version: 2.1
Name: sam-alignment-reconstructor
Version: 0.0.5
Summary: SAM Alignment Reconstructor
Home-page: https://github.com/lairdm/sam-alignment-reconstructor.git
Author: Matthew Laird
Author-email: lairdm@ebi.ac.uk
License: Apache 2.0
Description: .. image:: https://travis-ci.com/Ensembl/sam-alignment-reconstructor.svg?branch=master
           :target: https://travis-ci.com/Ensembl/sam-alignment-reconstructor
        .. image:: https://codecov.io/gh/Ensembl/sam-alignment-reconstructor/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/Ensembl/sam-alignment-reconstructor
        .. image:: https://readthedocs.org/projects/sam-alignment-reconstructor/badge/?version=latest
           :target: https://sam-alignment-reconstructor.readthedocs.io/en/latest/?badge=latest
           :alt: Documentation Status
        
        Overview
        ########
        
        This package is design to reconstruct pairwise alignments from SAM files using the CIGAR string and MD:Z tag
        
        It can be used as a standalone command line tool, or as a library when given the three elements above.
        
        Usage
        #####
        
        To install the package, enable the virtual environment where it's going to be used and run
        
        ::
        
          $ pip install sam-alignment-reconstructor
          $ cat file.sam | sam-alignment-reconstructor
        
          MS2007487-600V3:1:2109:08999:01136
          TTCGAAATCTCACGCTCTTTACTGAAGACCCAGATAGAGCTTATCCTAAT
          |||||||||||||||||||||||||||||||||:||||||||||||||||
          TTCGAAATCTCACGCTCTTTACTGAAGACCCAGNTAGAGCTTATCCTAAT
        
          CAGGATACTGTGTGGGAGAGGTTCGAGCAGGTATTTTTAGTGGCCTATG-
          |||||||||||||||||:||:|||||||||||||||||||||:|||||| 
          CAGGATACTGTGTGGGANAGNTTCGAGCAGGTATTTTTAGTGNCCTATGC
        
          ----GGTTGGTCACTTATGCCCCTGTCTTTAAAGACTACCTCTATGAAGG
              :::|||||||||||||||||||||||||||||||||||||||||||
          CCCACTATGGTCACTTATGCCCCTGTCTTTAAAGACTACCTCTATGAAGG
        
          TCTCCGACAGTTTTATGAGGACAACATCATGTATGTGGAGATCAGAGCAC
          |||||||||||||||||||||||||||||:|||||||||:||||||||||
          TCTCCGACAGTTTTATGAGGACAACATCACGTATGTGGAAATCAGAGCAC
        
        
        Developing
        ##########
        
        To prepare the environment for developing the library, create a virtual environment, go to project root and then run:
        
        ::
        
          $ pip install -e .[dev]
        
        Testing
        #######
        The recommended way is to test using detox.
        This allows for testing in all the supported python versions using virtual environments effortlessly.
        To use, install it, then run in the project root:
        
        ::
        
          $ pip install detox
          $ detox
        
        Alternatively, testing can be done in the same environment as the dev one by installing it's dependencies, then running pytest:
        
        ::
        
          $ pip install -e .[test]
          $ python -m pytest -s
        
Keywords: sam alignment bioinformatics
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4
Provides-Extra: dev
Provides-Extra: docs
Provides-Extra: lint
Provides-Extra: test
