-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path__init__.py
32 lines (27 loc) · 1018 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
24
25
26
27
28
29
30
31
32
#!/bin/env python
#
# -*- coding: utf-8 -*-
#
# Copyright (C) University of Manchester 2011
# Julian Selley <[email protected]>
################################################################################
"""
Proteomics package
==================
This package provides methodologies linked with Proteomics and Protein
Mass Spectrometry. This particular module simply loads the other
modules in the package.
Description
-----------
This package aims to provide methodologies for dealing with proteomics
data. Currently, the only module part of this package is one connected
with processing U{Matrix Science's Mascot
<http://www.matrixscience.com/>} software data.
"""
# Metadata
__version__ = '0.1.0'
__author__ = 'Julian Selley <[email protected]>'
__copyright__ = 'Copyright 2011 Julian Selley <[email protected]>'
__license__ = 'The Artistic License 2.0 (see the file LICENSE included with the distribution)'
__package__ = 'proteomics'
__all__ = [ "mascot" ]