-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path__init__.py
23 lines (19 loc) · 963 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
"""Welcome to BamQuery!
This package contains various utilities for in-depth exploration of the immunopeptidome
biological data at level of transcription and translation.
We emphasise on simplify tools for users.
Package overview
----------------
BamQuery is divided into the following subpackages:
============== =========================================================
Package Contents
-------------- ---------------------------------------------------------
|genomics| Classes and functions to manipulate genome annotations, alignments, and quantitative data
|plotting| Tools for plotting
|readers| Parsers for various file formats
|util| Utilities (e.g. function reverse translation, translation DNA,)
============== =========================================================
"""
__version__ = "1.0"
__author__ = "Maria Virginia Ruiz Cuevas"