aboutsummaryrefslogtreecommitdiff
path: root/wqflask/utility/helper_functions.py
blob: 9ecad993cba909fc3c291e9341ba85c79c6b9907 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from __future__ import absolute_import, print_function, division

from base.trait import GeneralTrait
from base import data_set

def get_dataset_and_trait(self, start_vars):
    #assert type(read_genotype) == type(bool()), "Expecting boolean value for read_genotype"
    self.dataset = data_set.create_dataset(start_vars['dataset_name'])
    self.this_trait = GeneralTrait(dataset=self.dataset.name,
                                   name=start_vars['trait_id'],
                                   cellid=None)
    
    #if read_genotype:
    self.dataset.group.read_genotype_file()
    self.genotype = self.dataset.group.genotype