aboutsummaryrefslogtreecommitdiff
path: root/wqflask/base/data_set.py
diff options
context:
space:
mode:
authorBonfaceKilz2021-04-29 21:45:51 +0300
committerBonfaceKilz2021-04-29 21:45:51 +0300
commit23e8e222e8016ea8335d4850070f884ab9b043fe (patch)
tree495b13f81dd7ce9692db8a8e107d2298962394e7 /wqflask/base/data_set.py
parent67703a57db19c9a1ebcc6991087479979cbbca18 (diff)
downloadgenenetwork2-23e8e222e8016ea8335d4850070f884ab9b043fe.tar.gz
Run `sed -i 's/(object)//g'`
See: https://is.gd/pL7IJF Ran: find . \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i 's/(object)//g'
Diffstat (limited to 'wqflask/base/data_set.py')
-rw-r--r--wqflask/base/data_set.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/wqflask/base/data_set.py b/wqflask/base/data_set.py
index 1ae138d2..3183363b 100644
--- a/wqflask/base/data_set.py
+++ b/wqflask/base/data_set.py
@@ -220,7 +220,7 @@ def create_datasets_list():
return datasets
-class Markers(object):
+class Markers:
"""Todo: Build in cacheing so it saves us reading the same file more than once"""
def __init__(self, name):
@@ -316,7 +316,7 @@ class HumanMarkers(Markers):
super(HumanMarkers, self).add_pvalues(p_values)
-class DatasetGroup(object):
+class DatasetGroup:
"""
Each group has multiple datasets; each species has multiple groups.
@@ -540,7 +540,7 @@ def datasets(group_name, this_group=None):
return dataset_menu
-class DataSet(object):
+class DataSet:
"""
DataSet class defines a dataset in webqtl, can be either Microarray,
Published phenotype, genotype, or user input dataset(temp)