Changeset 1064:cccc2cbcdf33 in orange-bioinformatics
- Timestamp:
- 02/10/10 19:38:23 (3 years ago)
- Branch:
- default
- Convert:
- 64a58deae5262f3588035188014bda98b62fb6e2
- Files:
-
- 2 edited
-
obiGO.py (modified) (1 diff)
-
widgets/OWGOEnrichmentAnalysis.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
obiGO.py
r1025 r1064 491 491 if not self.genematcher and self.taxid: 492 492 import obiGene 493 self.genematcher = obiGene.matcher([ obiGene.GMGO(self.taxid)] + ([obiGene.GMDicty()] if self.taxid == "352472" else []))493 self.genematcher = obiGene.matcher([[obiGene.GMGO(self.taxid)] + ([obiGene.GMDicty()] if self.taxid == "352472" else [])]) 494 494 if self.genematcher: 495 495 self.genematcher.set_targets(self.geneNames) -
widgets/OWGOEnrichmentAnalysis.py
r1052 r1064 472 472 if use: 473 473 try: 474 matchers.append(matcher(taxid)) 474 if taxid == "352472": 475 matchers.append([matcher(taxid), obiGene.GMDicty()]) 476 else: 477 matchers.append(matcher(taxid)) 475 478 except Exception, ex: 476 479 print ex
Note: See TracChangeset
for help on using the changeset viewer.
