blob: 4ac2213cf1b1e1ffbd6640ecb7e6871234942815 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
 | from __future__ import absolute_import, print_function, division
import collections
from flask import Flask, g
#from MySQLdb import escape_string as escape
from utility import Bunch
from pprint import pformat as pf
from utility.logger import getLogger
logger = getLogger(__name__ )
class TheSpecies(object):
    def __init__(self, dataset):
        self.dataset = dataset
        #print("self.dataset is:", pf(self.dataset.__dict__))
        self.chromosomes = Chromosomes(self.dataset)
class IndChromosome(object):
    def __init__(self, name, length):
        self.name = name
        self.length = length
    @property
    def mb_length(self):
        """Chromosome length in megabases"""
        return self.length / 1000000
class Chromosomes(object):
    def __init__(self, dataset):
        self.dataset = dataset
        self.chromosomes = collections.OrderedDict()
        query = """
                Select
                        Chr_Length.Name, Chr_Length.OrderId, Length from Chr_Length, InbredSet
                where
                        Chr_Length.SpeciesId = InbredSet.SpeciesId AND
                        InbredSet.Name = '%s'
                Order by OrderId
                """ % self.dataset.group.name
        logger.sql(query)
        results = g.db.execute(query).fetchall()
        for item in results:
            self.chromosomes[item.OrderId] = IndChromosome(item.Name, item.Length)
 |