├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── README.rst ├── Uncopyright.txt ├── demo ├── Parsing FastQC Output Data With Fadapa!.ipynb ├── Readme.rst └── fastqc_data.txt ├── discover_tests.py ├── fadapa ├── __init__.py ├── fadapa.py └── release.py ├── requirements └── testing.txt ├── setup.py └── tests ├── __init__.py ├── fastqc_data.txt └── test_fadapa.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/fadapa/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/fadapa/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/fadapa/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/fadapa/HEAD/README.rst -------------------------------------------------------------------------------- /Uncopyright.txt: -------------------------------------------------------------------------------- 1 | This is uncopyrighted. Do whatever you want to do! 2 | 3 | -------------------------------------------------------------------------------- /demo/Parsing FastQC Output Data With Fadapa!.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/fadapa/HEAD/demo/Parsing FastQC Output Data With Fadapa!.ipynb -------------------------------------------------------------------------------- /demo/Readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/fadapa/HEAD/demo/Readme.rst -------------------------------------------------------------------------------- /demo/fastqc_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/fadapa/HEAD/demo/fastqc_data.txt -------------------------------------------------------------------------------- /discover_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/fadapa/HEAD/discover_tests.py -------------------------------------------------------------------------------- /fadapa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/fadapa/HEAD/fadapa/__init__.py -------------------------------------------------------------------------------- /fadapa/fadapa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/fadapa/HEAD/fadapa/fadapa.py -------------------------------------------------------------------------------- /fadapa/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/fadapa/HEAD/fadapa/release.py -------------------------------------------------------------------------------- /requirements/testing.txt: -------------------------------------------------------------------------------- 1 | coverage==3.7.1 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/fadapa/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fastqc_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/fadapa/HEAD/tests/fastqc_data.txt -------------------------------------------------------------------------------- /tests/test_fadapa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/fadapa/HEAD/tests/test_fadapa.py --------------------------------------------------------------------------------