Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121208112
filter.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, 08:14
Size
987 B
Mime Type
text/x-python
Expires
Fri, Jul 11, 08:14 (2 d)
Engine
blob
Format
Raw Data
Handle
27294493
Attached To
R2010 molecular_data_processing
filter.py
View Options
#!/usr/bin/env python
# -*- coding: utf-8 -*-
" module containing class Filter"
##########################################################################
##########################################################################
class
Filter
(
object
):
"""
class Filter: filters will consist in a list of IDs (strings)
"""
# ------------------------------------------------------------------ #
# Constructors/Destructors #
# ------------------------------------------------------------------ #
def
__init__
(
self
):
"""__init__: a filter is initialized with a void list of sequence names """
# Members ---------------------- #
# list list_of_seqname
self
.
list_of_seqname
=
None
def
__del__
(
self
):
"""__del__: not implemented """
pass
##########################################################################
if
__name__
==
'__main__'
:
test
=
Filter
()
Event Timeline
Log In to Comment