Metadata-Version: 1.1
Name: NanoLyse
Version: 0.1.4
Summary: Removing reads mapping to the lambda genome
Home-page: https://github.com/wdecoster/nanolyse
Author: Wouter De Coster
Author-email: decosterwouter@gmail.com
License: MIT
Description: NanoLyse
        ========
        
        | Remove reads mapping to the lambda phage genome from a fastq file.
        | This script uses Heng Li's
          `minimap2 <https://github.com/lh3/minimap2>`__ and his
          `mappy <https://pypi.python.org/pypi/mappy>`__ Python binding.
        
        INSTALLATION
        ~~~~~~~~~~~~
        
        ``pip install NanoLyse``
        
        USAGE
        ~~~~~
        
        | Reads fastq from stdin and writes to stdout.
        | Simple example:
        | ``gunzip -c reads.fastq.gz | NanoLyse | gzip > reads_without_lambda.fastq.gz``
        | In combination with
          `NanoFilt <https://github.com/wdecoster/nanofilt>`__:
        | ``gunzip -c reads.fastq.gz | NanoLyse | NanoFilt -q 12 |gzip > filtered_reads_without_lambda.fastq.gz``
        
        WARNING
        ~~~~~~~
        
        If (some of) the reads of your genome of interest are sufficiently
        similar to the lambda genome those reads will be lost.
        
Keywords: nanopore sequencing processing
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
