Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121204610
operator.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Jul 9, 07:36
Size
1 KB
Mime Type
text/x-python
Expires
Fri, Jul 11, 07:36 (2 d)
Engine
blob
Format
Raw Data
Handle
27294404
Attached To
R2010 molecular_data_processing
operator.py
View Options
#!/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
Log In to Comment