Page MenuHomec4science

operator.py
No OneTemporary

File Metadata

Created
Wed, Jul 9, 07:36

operator.py

#!/usr/bin/env python
# -*- coding: utf-8 -*-
" module containing class Operator"
##########################################################################
##########################################################################
class Operator(object):
"""
class Operator: is used to store information about a person implicated in the sequencing process
"""
# ------------------------------------------------------------------ #
# Constructors/Destructors #
# ------------------------------------------------------------------ #
def __init__(self, name, institution):
"""__init__: an operator is initialised with a name and an institution name """
# Members ---------------------- #
# string operatorname
self.operator_name = None
# string institution
self.institution = None
def __del__(self):
"""__del__: not implemented"""
pass
##########################################################################
if __name__ == '__main__':
test = Operator('Aline Adler', 'EPFL')

Event Timeline