Metadata-Version: 2.1
Name: mdu-pytools
Version: 0.1.1
Summary: Small tools/scripts written in Python for MDU
Home-page: https://github.com/MDU-PHL/mdu-pytools
Author: MDU Bioinformatics
Author-email: andersgs@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/MDU-PHL/mdu-pytools/issues
Project-URL: Source, https://github.com/MDU-PHL/mdu-pytools/
Description: # MDU Python Tools
        
        [![CircleCI](https://circleci.com/gh/MDU-PHL/mdu-pytools.svg?style=svg)](https://circleci.com/gh/MDU-PHL/mdu-pytools) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mdu-pytools) ![PyPI](https://img.shields.io/pypi/v/mdu-pytools) ![PyPI - License](https://img.shields.io/pypi/l/mdu-pytools)
        
        - [MDU Python Tools](#mdu-python-tools)
          - [Background](#background)
          - [Tools](#tools)
            - [mdu-merge-ngs-lanes](#mdu-merge-ngs-lanes)
          - [Development](#development)
            - [Development environment](#development-environment)
        
        ## Background
        
        Some simple tools in python for MDU
        
        ## Tools
        
        ### mdu-merge-ngs-lanes
        
        Use it to correctly merge lanes from an Illumina run into the a single FASTQ.
        
        Get help:
        
        ```bash
        mdu-merge-ngs-lanes --help
        ```
        
        Basic usage:
        
        ```bash
        mdu-merge-ngs-lanes -i /path/to/fastq_folder -o /path/to/output > cmd.sh
        ```
        
        Advanced usage:
        
        You can split the output to muliple subfolders of the output folder by adding `--subfolder`
        to the command line. The option can be used multiple times, and takes two space separated values as input:
        `path` `regex`. The `path` gives a name of the subfolder in the output folder, and the `regex` expression
        determines which samples go in that subfolder.
        
        For instance, the command below will split samples starting the NTC in to a subfolder called `ntc`,
        while all other samples will be added to a subfolder called `data`.
        
        ```bash
        mdu-merge-ngs-lanes -i /path/to/fastq -o /path/to/output --subfolder 'data' '(?!NTC).*' --subfolder 'ntc' '(?<=NTC).*' > cmd.sh
        ```
        
        ## Development
        
        ### Development environment
        
        To develop with the same environment use `vagrant` and `virtualbox`:
        
        ```bash
        vagrant up
        vagrant ssh
        ```
        
        Once logged in to the VM, the shared folder is in `/vagrant`.
        
Keywords: bioinformatics microbial-genomics
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: test
