aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZachary Sloan2012-10-30 18:22:27 -0500
committerZachary Sloan2012-10-30 18:22:27 -0500
commit45b6e6a5eea13dbd06045e8307e371994b8c3083 (patch)
tree08670e421895fc229994241c6450b76469a7021e
parentdbda821555f2e9293d824b7c3662d251c0004252 (diff)
downloadgenenetwork2-45b6e6a5eea13dbd06045e8307e371994b8c3083.tar.gz
Worked on search_result.py code related to adding clause item to queries
Continued work on redesigning the trait data page design
-rwxr-xr-xwqflask/base/webqtlTrait.py12
-rw-r--r--wqflask/wqflask/search_results.py249
-rw-r--r--wqflask/wqflask/templates/show_trait.html253
3 files changed, 177 insertions, 337 deletions
diff --git a/wqflask/base/webqtlTrait.py b/wqflask/base/webqtlTrait.py
index 46af6683..51d36ab2 100755
--- a/wqflask/base/webqtlTrait.py
+++ b/wqflask/base/webqtlTrait.py
@@ -226,7 +226,7 @@ class webqtlTrait:
def retrieveData(self, samplelist=None):
-
+
if samplelist == None:
samplelist = []
assert self.db and self.cursor
@@ -331,7 +331,7 @@ class webqtlTrait:
self.cursor.execute(query)
results = self.cursor.fetchall()
self.data.clear()
-
+
if results:
self.mysqlid = results[0][-1]
#if samplelist:
@@ -345,7 +345,7 @@ class webqtlTrait:
name = item[0]
self.data[name] = webqtlCaseData(*item) #name, value, variance, num_cases)
#end for
- # else:
+ # else:
# for item in results:
# val = item[1]
# if val != None:
@@ -604,7 +604,7 @@ class webqtlTrait:
formatted += "; " + self.probe_target_description
else:
formatted = "Not available"
- return formatted
+ return formatted.capitalize()
@property
def alias_fmt(self):
@@ -660,7 +660,7 @@ class webqtlTrait:
else:
return dict(name = self.db.fullname,
url = webqtlConfig.INFOPAGEHREF % self.db.name)
-
+
def calculate_correlation(self, values, method):
"""Calculate the correlation value and p value according to the method specified"""
@@ -693,4 +693,4 @@ class webqtlTrait:
else:
ZValue = 0.5*log((1.0+self.correlation)/(1.0-self.correlation))
ZValue = ZValue*sqrt(self.overlap-3)
- self.p_value = 2.0*(1.0 - reaper.normp(abs(ZValue)))
+ self.p_value = 2.0*(1.0 - reaper.normp(abs(ZValue)))
diff --git a/wqflask/wqflask/search_results.py b/wqflask/wqflask/search_results.py
index a2b0596c..29a497fa 100644
--- a/wqflask/wqflask/search_results.py
+++ b/wqflask/wqflask/search_results.py
@@ -365,114 +365,111 @@ class SearchResultPage(templatePage):
#last_result = False
self.trait_list = []
- for result in self.results:
- if not result:
- continue
- #last_result = False
-
- #for item in result:
- print("foo locals are:", locals())
- probe_set_id = result[1]
- print("probe_set_id is:", pf(probe_set_id))
- this_trait = webqtlTrait(db=self.dataset, name=probe_set_id, cursor=self.cursor)
- this_trait.retrieveInfo(QTL=True)
- print("this_trait is:", pf(this_trait))
- self.trait_list.append(this_trait)
- print("self.trait_list is:", pf(self.trait_list))
-
- ##############
- # Excel file #
- ##############
-
- # Todo: Replace this with official Python temp file naming functions?
- filename= webqtlUtil.genRandStr("Search_")
- #xlsUrl = HT.Input(type='button', value = 'Download Table', onClick= "location.href='/tmp/%s.xls'" % filename, Class='button')
- # Create a new Excel workbook
- #workbook = xl.Writer('%s.xls' % (webqtlConfig.TMPDIR+filename))
- #headingStyle = workbook.add_format(align = 'center', bold = 1, border = 1, size=13, fg_color = 0x1E, color="white")
-
- #XZ, 3/18/2010: pay attention to the line number of header in this file. As of today, there are 7 lines.
- #worksheet = self.createExcelFileWithTitleAndFooter(workbook=workbook, db=this_trait.db, returnNumber=len(self.trait_list))
- newrow = 7
-
- #### Excel file stuff stops
+ # result_set represents the results for each search term; a search of
+ # "shh grin2b" would have two sets of results, one for each term
+ for result_set in self.results:
+ for result in result_set:
+ if not result:
+ continue
+ #last_result = False
- #tbl = HT.TableLite(cellSpacing=2,cellPadding=0,width="90%",border=0)
- #seq = self.pageNumber*self.NPerPage+1 //Edited out because we show all results in one page now - Zach 2/22/11
- seq = 1
- group = self.dataset.group
- self.form_name = form_name = 'show_dataset_'+group
+ seq = 1
+ group = self.dataset.group
+ self.form_name = form_name = 'show_dataset_'+group
- tblobj = {}
- species = webqtlDatabaseFunction.retrieveSpecies(cursor=self.cursor, RISet=group)
+ tblobj = {}
+ species = webqtlDatabaseFunction.retrieveSpecies(cursor=self.cursor, RISet=group)
- if this_trait.db.type=="Geno":
- tblobj['header'] = self.getTableHeaderForGeno(worksheet=worksheet, newrow=newrow, headingStyle=headingStyle)
+ #### Excel file
- newrow += 1
- sortby = self.getSortByValue(datasetType="Geno")
+ # Todo: Replace this with official Python temp file naming functions?
+ filename= webqtlUtil.genRandStr("Search_")
+ #xlsUrl = HT.Input(type='button', value = 'Download Table', onClick= "location.href='/tmp/%s.xls'" % filename, Class='button')
+ # Create a new Excel workbook
+ #workbook = xl.Writer('%s.xls' % (webqtlConfig.TMPDIR+filename))
+ #headingStyle = workbook.add_format(align = 'center', bold = 1, border = 1, size=13, fg_color = 0x1E, color="white")
- #tblobj['body'] = self.getTableBodyForGeno(trait_list=self.trait_list, form_name=form_name, worksheet=worksheet, newrow=newrow)
+ #XZ, 3/18/2010: pay attention to the line number of header in this file. As of today, there are 7 lines.
+ #worksheet = self.createExcelFileWithTitleAndFooter(workbook=workbook, db=this_trait.db, returnNumber=len(self.trait_list))
+ newrow = 7
- #workbook.close()
- #objfile = open('%s.obj' % (webqtlConfig.TMPDIR+filename), 'wb')
- #cPickle.dump(tblobj, objfile)
- #objfile.close()
+ #### Excel file stuff stops
- #div = HT.Div(webqtlUtil.genTableObj(tblobj, filename, sortby), Id="sortable")
- #
- #pageTable.append(HT.TR(HT.TD(div)))
+ if self.dataset.type == "ProbeSet":
+ #for item in result:
+ print("foo locals are:", locals())
+ probe_set_id = result[1]
+ print("probe_set_id is:", pf(probe_set_id))
+ this_trait = webqtlTrait(db=self.dataset, name=probe_set_id, cursor=self.cursor)
+ this_trait.retrieveInfo(QTL=True)
+ print("this_trait is:", pf(this_trait))
+ self.trait_list.append(this_trait)
+ print("self.trait_list is:", pf(self.trait_list))
- elif this_trait.db.type=="Publish":
- #tblobj['header'] = self.getTableHeaderForPublish(worksheet=worksheet, newrow=newrow, headingStyle=headingStyle)
+ #tblobj['header'] = self.getTableHeaderForProbeSet(worksheet=worksheet, newrow=newrow, headingStyle=headingStyle)
- #newrow += 1
+ #newrow += 1
- sortby = self.getSortByValue(datasetType="Publish")
+ sortby = self.getSortByValue(datasetType="ProbeSet")
- #tblobj['body'] = self.getTableBodyForPublish(trait_list=self.trait_list, formName=mainfmName, worksheet=worksheet, newrow=newrow, species=species)
+ tblobj['body'] = self.getTableBodyForProbeSet(trait_list=self.trait_list, formName=self.form_name, newrow=newrow, species=species)
- #workbook.close()
- #objfile = open('%s.obj' % (webqtlConfig.TMPDIR+filename), 'wb')
- #cPickle.dump(tblobj, objfile)
- #objfile.close()
+ #workbook.close()
+ #objfile = open('%s.obj' % (webqtlConfig.TMPDIR+filename), 'wb')
+ #cPickle.dump(tblobj, objfile)
+ #objfile.close()
- #div = HT.Div(webqtlUtil.genTableObj(tblobj, filename, sortby), Id="sortable")
+ #div = HT.Div(webqtlUtil.genTableObj(tblobj, filename, sortby), Id="sortable")
- #pageTable.append(HT.TR(HT.TD(div)))
+ #pageTable.append(HT.TR(HT.TD(div)))
+ elif self.dataset.type == "Publish":
+ #tblobj['header'] = self.getTableHeaderForPublish(worksheet=worksheet, newrow=newrow, headingStyle=headingStyle)
- elif this_trait.db.type=="ProbeSet":
- #tblobj['header'] = self.getTableHeaderForProbeSet(worksheet=worksheet, newrow=newrow, headingStyle=headingStyle)
+ #newrow += 1
- #newrow += 1
+ sortby = self.getSortByValue(datasetType="Publish")
- sortby = self.getSortByValue(datasetType="ProbeSet")
+ #tblobj['body'] = self.getTableBodyForPublish(trait_list=self.trait_list, formName=mainfmName, worksheet=worksheet, newrow=newrow, species=species)
- tblobj['body'] = self.getTableBodyForProbeSet(trait_list=self.trait_list, formName=self.form_name, newrow=newrow, species=species)
- #
- #workbook.close()
- #objfile = open('%s.obj' % (webqtlConfig.TMPDIR+filename), 'wb')
- #cPickle.dump(tblobj, objfile)
- #objfile.close()
+ #workbook.close()
+ #objfile = open('%s.obj' % (webqtlConfig.TMPDIR+filename), 'wb')
+ #cPickle.dump(tblobj, objfile)
+ #objfile.close()
- #div = HT.Div(webqtlUtil.genTableObj(tblobj, filename, sortby), Id="sortable")
+ #div = HT.Div(webqtlUtil.genTableObj(tblobj, filename, sortby), Id="sortable")
- #pageTable.append(HT.TR(HT.TD(div)))
+ #pageTable.append(HT.TR(HT.TD(div)))
+ elif self.dataset.type == "Geno":
+ tblobj['header'] = self.getTableHeaderForGeno(worksheet=worksheet, newrow=newrow, headingStyle=headingStyle)
+ newrow += 1
+ sortby = self.getSortByValue(datasetType="Geno")
- #traitForm = HT.Form(cgi= os.path.join(webqtlConfig.CGIDIR, webqtlConfig.SCRIPTFILE), enctype='multipart/form-data', name=thisFormName, submit=HT.Input(type='hidden'))
- hddn = {'FormID':'showDatabase','ProbeSetID':'_','database':'_','CellID':'_','group':group}
- hddn['incparentsf1']='ON'
- # for key in hddn.keys():
- # traitForm.append(HT.Input(name=key, value=hddn[key], type='hidden'))
- #
- # traitForm.append(HT.P(),pageTable)
- #
- # TD_LR.append(traitForm)
- # if len(self.results) > 1 and i < len(self.results) - 1:
- # last_result = True
- #if last_result:
- # TD_LR.contents.pop()
+ #tblobj['body'] = self.getTableBodyForGeno(trait_list=self.trait_list, form_name=form_name, worksheet=worksheet, newrow=newrow)
+
+ #workbook.close()
+ #objfile = open('%s.obj' % (webqtlConfig.TMPDIR+filename), 'wb')
+ #cPickle.dump(tblobj, objfile)
+ #objfile.close()
+
+ #div = HT.Div(webqtlUtil.genTableObj(tblobj, filename, sortby), Id="sortable")
+ #
+ #pageTable.append(HT.TR(HT.TD(div)))
+
+
+ #traitForm = HT.Form(cgi= os.path.join(webqtlConfig.CGIDIR, webqtlConfig.SCRIPTFILE), enctype='multipart/form-data', name=thisFormName, submit=HT.Input(type='hidden'))
+ hddn = {'FormID':'showDatabase','ProbeSetID':'_','database':'_','CellID':'_','group':group}
+ hddn['incparentsf1']='ON'
+ # for key in hddn.keys():
+ # traitForm.append(HT.Input(name=key, value=hddn[key], type='hidden'))
+ #
+ # traitForm.append(HT.P(),pageTable)
+ #
+ # TD_LR.append(traitForm)
+ # if len(self.results) > 1 and i < len(self.results) - 1:
+ # last_result = True
+ #if last_result:
+ # TD_LR.contents.pop()
def executeQuery(self):
@@ -642,6 +639,8 @@ class SearchResultPage(templatePage):
print("fd.search_terms:", self.fd['search_terms'])
self.search_terms = parser.parse(self.fd['search_terms'])
print("After parsing:", self.search_terms)
+
+
#print("ORkeyword is:", pf(self.ORkeyword))
#self.ANDkeyword2 = parser.parse(self.ANDkeyword)
#self.ORkeyword2 = parser.parse(self.ORkeyword)
@@ -662,11 +661,8 @@ class SearchResultPage(templatePage):
###remove remain parethesis, could be input with syntax error
#self.ORkeyword2 = re.sub(re.compile('\s*\([\s\S]*\)'), '', self.ORkeyword2)
#self.ORkeyword2 = self.encregexp(self.ORkeyword2)
-
- #if self.search_terms:
- #full_text = []
- #ANDFulltext = []
- #ORFulltext = []
+
+ self.results = []
for item in self.search_terms:
search_term = item['search_term']
# self.nkeywords += 1
@@ -683,8 +679,19 @@ class SearchResultPage(templatePage):
# fulltext = ORFulltext
print("item is:", pf(search_term))
-
+
+
+ clause_item = (
+""" MATCH (ProbeSet.Name,
+ ProbeSet.description,
+ ProbeSet.symbol,
+ alias,
+ GenbankId,
+ UniGeneId,
+ Probe_Target_Description)
+ AGAINST ('%s' IN BOOLEAN MODE) """ % self.db_conn.escape_string(search_term))
if self.dataset.type == "ProbeSet":
+
query = (
"""SELECT distinct 0, ProbeSet.Name as TNAME, 0 as thistable,
ProbeSetXRef.Mean as TMEAN,
@@ -693,31 +700,55 @@ class SearchResultPage(templatePage):
ProbeSet.Chr_num as TCHR_NUM,
ProbeSet.Mb as TMB,
ProbeSet.Symbol as TSYMBOL,
- ProbeSet.name_num as TNAME_NUM FROM ProbeSetXRef,
- ProbeSet WHERE (MATCH (ProbeSet.Name, ProbeSet.description, ProbeSet.symbol,
- alias, GenbankId, UniGeneId, Probe_Target_Description)
- AGAINST ('%s' IN BOOLEAN MODE))
- and ProbeSet.Id = ProbeSetXRef.ProbeSetId
- and ProbeSetXRef.ProbeSetFreezeId = %s
+ ProbeSet.name_num as TNAME_NUM
+ FROM ProbeSetXRef, ProbeSet
+ WHERE %s
+ and ProbeSet.Id = ProbeSetXRef.ProbeSetId
+ and ProbeSetXRef.ProbeSetFreezeId = %s
""" % (self.db_conn.escape_string(search_term),
+ self.db_conn.escape_string(clause_item),
self.db_conn.escape_string(str(self.dataset.id))))
+
+ elif self.dataset.type == "Publish":
+ include_geno = ""
+ if search_term.find("Geno.name") >= 0:
+ include_geno = " Geno, "
+
+ query = (
+"""SELECT 0, PublishXRef.Id, PublishFreeze.createtime as thistable,
+ Publication.PubMed_ID as Publication_PubMed_ID,
+ Phenotype.Post_publication_description as Phenotype_Name
+ FROM %s PublishFreeze, Publication, PublishXRef, Phenotype
+ WHERE PublishXRef.InbredSetId = %s and %s and
+ PublishXRef.PhenotypeId = Phenotype.Id and
+ PublishXRef.PublicationId = Publication.Id and
+ PublishFreeze.Id = %s
+ """ % (include_geno,
+ self.db_conn.escape_string(str(self.dataset.group_id)),
+ self.db_conn.escape_string(clause_item),
+ self.db_conn.escape_string(str(self.dataset.id))))
+
+ elif self.dataset.type == "Geno":
+ query = (
+"""SELECT 0, Geno.Name, GenoFreeze.createtime as thistable,
+ Geno.Name as Geno_Name,
+ Geno.Source2 as Geno_Source2,
+ Geno.chr_num as Geno_chr_num,
+ Geno.Mb as Geno_Mb
+ FROM GenoXRef, GenoFreeze, Geno
+ WHERE %s and Geno.Id = GenoXRef.GenoId and
+ GenoXRef.GenoFreezeId = GenoFreeze.Id and
+ GenoFreeze.Id = %d
+ """% (self.db_conn.escape_string(clause_item),
+ self.db_conn.escape_string(str(self.dataset.id))))
- self.cursor.execute(query)
- #print("query is:", pf(self.query))
- #self.cursor.execute(self.query)
- self.results = self.cursor.fetchall()
+ self.cursor.execute(query)
+ self.results.append(self.cursor.fetchall())
print("self.results is:", pf(self.results))
-#["(SELECT distinct 0, ProbeSet.Name as TNAME, 0 as thistable,\n\t\t\t\t\t\tProbeSetXRef.Mean as TMEAN,
-# ProbeSetXRef.LRS as TLRS, ProbeSetXRef.PVALUE as TPVALUE,\n\t\t\t\t\t\tProbeSet.Chr_num as TCHR_NUM,
-# Pr beSet.Mb as TMB, ProbeSet.Symbol as TSYMBOL,\n\t\t\t\t\t\tProbeSet.name_num as TNAME_NUM FROM
-# ProbeSetXRef, ProbeSet \n\t\t\t\t\t\tWHERE ( MATCH (ProbeSet.Name,ProbeSet.description,ProbeSet.symbol,
-# alias GenbankId, UniGeneId, Probe_Target_Description)
-# AGAINST ('shh' IN BOOLEAN MODE) )
-# and ProbeSet.Id = ProbeSetXRef.ProbeSetId and ProbeSetXRef.ProbeSetFreezeId = 112\n\t\t\t\t\t\t)"]
#if self.dataset.type == "ProbeSet" and search_term.find('.') < 0 and search_term.find('\'') < 0:
diff --git a/wqflask/wqflask/templates/show_trait.html b/wqflask/wqflask/templates/show_trait.html
index ab662a77..d7b81562 100644
--- a/wqflask/wqflask/templates/show_trait.html
+++ b/wqflask/wqflask/templates/show_trait.html
@@ -48,240 +48,49 @@
<dd>{{ "%i" % (this_trait.probe_set_blat_score) }}</dd>
</dl>
- <tr>
- <td bgcolor="#EEEEEE" class="solidBorder">
- <table width="100%" cellspacing="0" cellpadding="5">
- <tr>
- <td valign="top" width="100%" bgcolor="#FAFAFA">
- <form method="post" action="/corr_compute" name="dataInput" id="trait_data_form">
- {# <input type="hidden" name="isSE" value="yes">
- <input type="hidden" name="permCheck">
- <input type="hidden" name="otherStrainVals" value="_">
- <input type="hidden" name="FormID" value="dataEditing">
- <input type="hidden" name="normalPlotTitle" value="Sall3: 1441186_at">
- <input type="hidden" name="sampleVars" value="_">
- <input type="hidden" name="additiveCheck" value="ON">
- <input type="hidden" name="incparentsf1" value="ON">
- <input type="hidden" name="sampleNames" value="_">
- <input type="hidden" name="submitID" value="">
- <input type="hidden" name="scale" value="physic">
- <input type="hidden" name="intervalAnalystCheck" value="ON">
- <input type="hidden" name="topten" value="">
- <input type="hidden" name="parentsf14regression" value="OFF">
- <input type="hidden" name="identification" value="Hippocampus M430v2 BXD 06/06 PDNN : 1441186_at">
- <input type="hidden" name="mappingMethodId" value="1">
- <input type="hidden" name="criteria">
- <input type="hidden" name="other_extra_attributes" is it value="_">
- <input type="hidden" name="otherStrainNames" value="_">
- <input type="hidden" name="method">
- <input type="hidden" name="showGenes" value="ON">
- <input type="hidden" name="attribute_names" value="">
- <input type="hidden" name="chromosomes" value="-1">
- <input type="hidden" name="allsamplelist" value="B6D2F1 D2B6F1 C57BL/6J DBA/2J BXD1 BXD2 BXD5 BXD6 BXD8 BXD9 BXD11 BXD12 BXD13 BXD14 BXD15 BXD16 BXD18 BXD19 BXD20 BXD21 BXD22 BXD23 BXD24a BXD24 BXD25 BXD27 BXD28 BXD29 BXD30 BXD31 BXD32 BXD33 BXD34 BXD35 BXD36 BXD37 BXD38 BXD39 BXD40 BXD41 BXD42 BXD43 BXD44 BXD45 BXD48 BXD49 BXD50 BXD51 BXD52 BXD53 BXD54 BXD55 BXD56 BXD59 BXD60 BXD61 BXD62 BXD63 BXD64 BXD65 BXD66 BXD67 BXD68 BXD69 BXD70 BXD71 BXD72 BXD73 BXD74 BXD75 BXD76 BXD77 BXD78 BXD79 BXD80 BXD81 BXD83 BXD84 BXD85 BXD86 BXD87 BXD88 BXD89 BXD90 BXD91 BXD92 BXD93 BXD94 BXD95 BXD96 BXD97 BXD98 BXD99 BXD100 BXD101 BXD102 BXD103 BALB/cByJ PWK/PhJ A/J KK/HlJ LG/J 129S1/SvImJ NZO/HlLtJ CAST/EiJ PWD/PhJ AKR/J CXB13 CXB12 CXB11 CXB10 WSB/EiJ C3H/HeJ CXB7 CXB6 CXB5 CXB4 CXB3 CXB2 CXB1 CXB9 CXB8 NOD/ShiLtJ C57BL/6ByJ BALB/cJ">
- <input type="hidden" name="applyVarianceSE">
- <input type="hidden" name="MDPChoice">
- <input type="hidden" name="otherStrainVars" value="_">
- <input type="hidden" name="sampleVals" value="_">
- <input type="hidden" name="showSNP" value="ON">
- <input type="hidden" name="bootCheck">
- <input type="hidden" name="GeneId" value="20689">
- <input type="hidden" name="extra_attributes" value="_">
- <input type="hidden" name="stats_method" value="1">
- <input type="hidden" name="heritability" value="None">
- <input type="hidden" name="database" value="">
- <input type="hidden" name="viewLegend" value="ON">
- <input type="hidden" name="fromDataEditingPage" value="1">
- <input type="hidden" name="trait_type" value="ProbeSet">
- <input type="hidden" name="valsHidden" value="OFF">
- <input type="hidden" name="fullname" value="HC_M2_0606_P::1441186_at">
- <input type="hidden" name="RISet" value="BXD">
- #}
- {% for key in hddn %}
- <input type="hidden" name="{{ key }}" value="{{ hddn[key] }}">
- {% endfor %}
- <div>
- <div style="font-size:14px;">
- <strong style="font-size:16px;">Trait Data and Analysis&nbsp;</strong> for Record ID 1441186_at
- </div>
- </div>
-
- <p class="sectionheader" id="title1" style="border-radius: 5px;">&nbsp;&nbsp;Details and Links</p>
-
- <p id="sectionbody1"></p>
-
- <table class="collap" id="target1" style="margin-left:20px;" cellpadding="2" width="840" valign="top">
- <tr>
- <td class="fwb fs13" nowrap="on" valign="top" width="90">Gene Symbol:</td>
-
- <td valign="top" width="10"></td>
-
- <td valign="top" width="740"><span class="fs13 fsI">{{ this_trait.symbol }}</span></td>
- </tr>
-
- <tr>
- <td class="fwb fs13" nowrap="on" valign="top">Aliases:</td>
-
- <td valign="top" width="10"></td>
-
- <td valign="top"><span class="fs13 fsI">{{ this_trait.alias_fmt }}</span></td>
- </tr>
-
- <tr>
- <td class="fwb fs13" nowrap="on" valign="top">Description:</td>
-
- <td valign="top" width="10"></td>
-
- <td valign="top"><span class="fs13">{{ this_trait.description_fmt }}</span></td>
- </tr>
-
- <tr>
- <td class="fwb fs13" nowrap="on" valign="top">Location:</td>
-
- <td valign="top" width="10"></td>
-
- <td valign="top"><span class="fs13">{{ this_trait.location_fmt }}<br></span></td>
- </tr>
-
- <tr>
- <td class="fwb fs13" nowrap="on" valign="top">Target Score:</td>
-
- <td valign="top" width="10"></td>
-
- <td valign="top">
- <span class="fs13">
- <a href="/blatInfo.html" target="_blank" class="non_bold" title="Values higher than 2 for the specificity are good">
- BLAT specificity
- </a>: {{ "%.1f" % (this_trait.probe_set_specificity) }}&nbsp;&nbsp;&nbsp;
- Score: {{ "%i" % (this_trait.probe_set_blat_score) }}&nbsp;&nbsp;
- </span>
- </td>
- </tr>
-
- <tr>
- <td class="fwb fs13" nowrap="on" valign="top">Species and Group:</td>
-
- <td valign="top" width="10"></td>
-
- <td valign="top"><span class="fs13">{{ this_trait.species.capitalize() }}, {{fd.RISet}}</span></td>
- </tr>
-
- <tr>
- <td class="fs13 fwb" nowrap="on" valign="top">Database:</td>
-
- <td valign="top" width="10"></td>
-
- <td valign="top">
- <a href="{{ this_trait.database.url }}" target="_blank" class="fs13 fwn non_bold">{{ this_trait.database.name }}</a>
- </td>
- </tr>
+ <form method="post" action="/corr_compute" name="dataInput" id="trait_data_form">
+ {% for key in hddn %}
+ <input type="hidden" name="{{ key }}" value="{{ hddn[key] }}">
+ {% endfor %}
- <tr>
- <td colspan="3" height="6"></td>
- </tr>
+ <div class="btn-toolbar">
+ <div class="btn-group">
+ <button class="btn btn-primary" title="Add to collection">
+ <i class="icon-plus-sign icon-white"></i> Add
+ </button>
- <tr>
- <td class="fwb fs13" nowrap="on" valign="top">Resource Links:</td>
-
- <td valign="top" width="10"></td>
-
- <td valign="top">
- <span class="fs13">
- <span style="background:#dddddd;padding:2">
- <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene&amp;cmd=Retrieve&amp;dopt=Graphics&amp;list_uids=20689" target="_blank" class=
- "fs14 fwn" title="Info from NCBI Entrez Gene">
- Gene
- </a>
- </span>
- &nbsp;&nbsp;<span style="background:#dddddd;padding:2"><a href=
- "http://www.ncbi.nlm.nih.gov/UniGene/clust.cgi?ORG=Mm&amp;CID=215917" target="_blank" class="fs14 fwn" title=
- "UniGene ID">UniGene</a></span>&nbsp;&nbsp;<span style="background:#dddddd;padding:2"><a href=
- "http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=Nucleotide&amp;cmd=search&amp;doptcmdl=DocSum&amp;term=BM119035" target="_blank" class=
- "fs14 fwn" title="Find the original GenBank sequence used to design the probes">GenBank</a></span>&nbsp;&nbsp;<span style=
- "background:#dddddd;padding:2"><a href="http://www.ncbi.nlm.nih.gov/sites/entrez?Db=homologene&amp;Cmd=DetailsSearch&amp;Term=18142"
- target="_blank" class="fs14 fwn" title="Find similar genes in other species">HomoloGene</a></span>&nbsp;&nbsp;</span></td>
- </tr>
+ <button class="btn" title="Find similar expression data">
+ <i class="icon-search"></i> Find
+ </button>
- <tr>
- <td colspan="3" height="6"></td>
- </tr>
+ <button class="btn" title="Check probe locations at UCSC">
+ <i class="icon-ok"></i> Verify
+ </button>
+ </div>
- <tr>
- <td></td>
-
- <td valign="top" width="10"></td>
-
- <td valign="top"><span style="font-family:verdana,serif;font-size:13px"><span style="background:#dddddd;padding:2"><a href=
- "http://genome.cse.ucsc.edu/cgi-bin/hgGene?db=mm9&amp;hgg_gene=NM_178280&amp;hgg_chrom=chr18&amp;hgg_start=81163112&amp;hgg_end=81183317"
- target="mainFrame" class="fs14 fwn" title="Info from UCSC Genome Browser">UCSC</a></span>&nbsp;&nbsp;<span style=
- "background:#dddddd;padding:2"><a href="http://biogps.gnf.org/?org=mouse#goto=genereport&amp;id=20689" target="mainFrame" class="fs14 fwn"
- title="Expression across many tissues and cell types">BioGPS</a></span>&nbsp;&nbsp;<span style="background:#dddddd;padding:2"><a href=
- "http://string.embl.de/newstring_cgi/show_link_summary.pl?identifier=Sall3" target="mainFrame" class="fs14 fwn" title=
- "Protein interactions: known and inferred">STRING</a></span>&nbsp;&nbsp;<span style="background:#dddddd;padding:2"><a href=
- "http://www.pantherdb.org/genes/gene.do?acc=20689" target="mainFrame" class="fs14 fwn" title=
- "Gene and protein data resources from Celera-ABI">PANTHER</a></span>&nbsp;&nbsp;<span style="background:#dddddd;padding:2"><a href=
- "http://www.chibi.ubc.ca/Gemma/gene/showGene.html?ncbiid=20689" target="mainFrame" class="fs14 fwn" title=
- "Meta-analysis of gene expression data">Gemma</a></span>&nbsp;&nbsp;<span style="background:#dddddd;padding:2"><a href=
- "http://lily.uthsc.edu:8080/20091027_GNInterfaces/20091027_redirectSynDB.jsp?query=Sall3" target="mainFrame" class="fs14 fwn" title=
- "Brain synapse database">SynDB</a></span>&nbsp;&nbsp;<span style="background:#dddddd;padding:2"><a href=
- "http://mouse.brain-map.org/brain/Sall3.html" target="mainFrame" class="fs14 fwn" title=
- "Allen Brain Atlas">ABA</a></span>&nbsp;&nbsp;</span></td>
- </tr>
- </table><br>
-
- <table class="collap" id="target1" cellpadding="2" width="620">
- <tr style="vertical-align:bottom;">
- <td align="center"><a href="#redirect" onclick=
- "addRmvSelection('BXD', document.getElementsByName('dataInput')[0], 'addToSelection');"><img src="/images/add_icon.jpg" alt=
- "Add To Collection" name="addselect" style="border:none;" title="Add To Collection"></a></td>
-
- <td align="center"><a href="#redirect" onclick=
- "openNewWin('/webqtl/main.py?cmd=sch&amp;gene=Sall3&amp;alias=1&amp;species=mouse')"><img src="/images/find_icon.jpg" alt=
- " Find similar expression data " name="addselect" style="border:none;" title=" Find similar expression data "></a></td>
-
- <td align="center"><a href="#redirect" onclick=
- "openNewWin('http://genome.ucsc.edu/cgi-bin/hgBlat?org=mouse&amp;db=mm9&amp;type=0&amp;sort=0&amp;output=0&amp;userSeq=%3E1441186_at%0AGAATTAGTTTTTTCAGTGCTGGGCAGGCCCTGTAAGTGCATGCCGGACAATGTTGCTTTACATCTGCCATGGAAGAGACTCTACAGCGTCCAAAGATGGCCACACCGGGTTTGCCTCACTGGGTGATCACAGTAGCGTTCAGGTCACTACAGCCAAGGGCTTCTCAGATCCATGTAGGAAAGAACAAGCGAGTGCTCACAGATACCACGCTCAGCAGACTTCATTAGCATTGTCTCACAGATAACAT%0A%3EProbe_522467%0AGAATTAGTTTTTTCAGTGCTGGGCA%0A%3EProbe_711755%0AGGCCCTGTAAGTGCATGCCGGACAA%0A%3EProbe_392797%0ATGTTGCTTTACATCTGCCATGGAAG%0A%3EProbe_246123%0AAGAGACTCTACAGCGTCCAAAGATG%0A%3EProbe_X80217%0AAAAGATGGCCACACCGGGTTTGCCT%0A%3EProbe_248315%0ACACTGGGTGATCACAGTAGCGTTCA%0A%3EProbe_349625%0AGTAGCGTTCAGGTCACTACAGCCAA%0A%3EProbe_288681%0AGGGCTTCTCAGATCCATGTAGGAAA%0A%3EProbe_801497%0AGAACAAGCGAGTGCTCACAGATACC%0A%3EProbe_139197%0AACAGATACCACGCTCAGCAGACTTC%0A%3EProbe_752Y13%0AATTAGCATTGTCTCACAGATAACAT%0A')">
- <img src="/images/verify_icon.jpg" alt=" Check probe locations at UCSC " name="addselect" style="border:none;" title=
- " Check probe locations at UCSC "></a></td>
-
- <td align="center"><a href="#redirect" onclick="openNewWin('/webqtl/main.py?FormID=geneWiki&amp;symbol=Sall3')"><img src=
- "/images/genewiki_icon.jpg" alt=" Write or review comments about this gene " name="addselect" style="border:none;" title=
- " Write or review comments about this gene "></a></td>
-
- <td align="center"><a href="#redirect" onclick=
- "openNewWin('/webqtl/main.py?FormID=SnpBrowserResultPage&amp;submitStatus=1&amp;diffAlleles=True&amp;customStrain=True&amp;geneName=Sall3')">
- <img src="/images/snp_icon.jpg" alt=" View SNPs and Indels " name="addselect" style="border:none;" title=" View SNPs and Indels "></a></td>
-
- <td align="center"><a href="#redirect" onclick=
- "openNewWin('http://ucscbrowser.genenetwork.org/cgi-bin/hgBlat?org=mouse&amp;db=mm9&amp;type=0&amp;sort=0&amp;output=0&amp;userSeq=%3E1441186_at%0AGAATTAGTTTTTTCAGTGCTGGGCAGGCCCTGTAAGTGCATGCCGGACAATGTTGCTTTACATCTGCCATGGAAGAGACTCTACAGCGTCCAAAGATGGCCACACCGGGTTTGCCTCACTGGGTGATCACAGTAGCGTTCAGGTCACTACAGCCAAGGGCTTCTCAGATCCATGTAGGAAAGAACAAGCGAGTGCTCACAGATACCACGCTCAGCAGACTTCATTAGCATTGTCTCACAGATAACAT%0A%3EProbe_522467%0AGAATTAGTTTTTTCAGTGCTGGGCA%0A%3EProbe_711755%0AGGCCCTGTAAGTGCATGCCGGACAA%0A%3EProbe_392797%0ATGTTGCTTTACATCTGCCATGGAAG%0A%3EProbe_246123%0AAGAGACTCTACAGCGTCCAAAGATG%0A%3EProbe_X80217%0AAAAGATGGCCACACCGGGTTTGCCT%0A%3EProbe_248315%0ACACTGGGTGATCACAGTAGCGTTCA%0A%3EProbe_349625%0AGTAGCGTTCAGGTCACTACAGCCAA%0A%3EProbe_288681%0AGGGCTTCTCAGATCCATGTAGGAAA%0A%3EProbe_801497%0AGAACAAGCGAGTGCTCACAGATACC%0A%3EProbe_139197%0AACAGATACCACGCTCAGCAGACTTC%0A%3EProbe_752Y13%0AATTAGCATTGTCTCACAGATAACAT%0A')">
- <img src="/images/rnaseq_icon.jpg" alt=" View probes, SNPs, and RNA-seq at UTHSC " name="addselect" style="border:none;" title=
- " View probes, SNPs, and RNA-seq at UTHSC "></a></td>
-
- <td align="center"><a href="#redirect" onclick=
- "openNewWin('/webqtl/main.py?FormID=showProbeInfo&amp;database=HC_M2_0606_P&amp;ProbeSetID=1441186_at&amp;CellID=&amp;RISet=BXD&amp;incparentsf1=ON')">
- <img src="/images/probe_icon.jpg" alt=" Check sequence of probes " name="addselect" style="border:none;" title=
- " Check sequence of probes "></a></td>
-
- <td align="center"></td>
- </tr>
+ <div class="btn-group">
- <tr style="vertical-align:bottom;">
- <td align="center">Add</td>
+ <button class="btn" title="Write or review comments about this gene">
+ <i class="icon-edit"></i> GeneWiki
+ </button>
- <td align="center">Find</td>
+ <button class="btn" title="View SNPs and Indels">
+ <i class="icon-road"></i> SNPs
+ </button>
- <td align="center">Verify</td>
+ <button class="btn" title="View probes, SNPs, and RNA-seq at UTHSC">
+ <i class="icon-eye-close"></i> RNA-seq
+ </button>
- <td align="center">GeneWiki</td>
+ <button class="btn" title="Check sequence of probes">
+ <i class="icon-list"></i> Probes
+ </button>
- <td align="center">SNPs</td>
+ </div>
- <td align="center">RNA-seq</td>
+ </div>
- <td align="center">Probes</td>
- <td align="center"></td>
- </tr>
- </table>
<p class="sectionheader" id="title2" style="border-radius: 5px;">&nbsp;&nbsp;Basic Statistics</p>