Skip to content

Commit

Permalink
Updates (icons, readme, renaming)
Browse files Browse the repository at this point in the history
  • Loading branch information
lanzagar committed Sep 8, 2017
1 parent a3c7b87 commit 0a5526a
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 31 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Orange3 Variants
Orange3 Single Cell
======================

The Variants add-on for [Orange3](http://orange.biolab.si) adds functionality for working with VFC files and SNV data.
The Single Cell add-on for [Orange3](http://orange.biolab.si) adds functionality for analysis of single cell data.

Installation
------------
Expand Down Expand Up @@ -29,4 +29,4 @@ use

python -m Orange.canvas

The new widget appears in the toolbox bar under the section Variants.
The new widget appears in the toolbox bar under the section Single Cell.
17 changes: 17 additions & 0 deletions orangecontrib/single_cell/widgets/icons/DifferentialExpression.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions orangecontrib/single_cell/widgets/icons/ScoreCells.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 13 additions & 22 deletions orangecontrib/single_cell/widgets/icons/category.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion orangecontrib/single_cell/widgets/owdifexp.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
class OWDifferentialExpression(widget.OWWidget):
name = "Differential Expression"
description = "Compare expressions in groups of samples"
icon = "icons/DE.svg"
icon = "icons/DifferentialExpression.svg"
priority = 111

settingsHandler = DomainContextHandler(metas_in_res=True)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
from Orange.widgets.utils.sql import check_sql_input


class OWGeneScore(widget.OWWidget):
name = "Gene Score"
description = "Expand data with a score for a set of genes"
icon = "icons/GS.svg"
class OWScoreCells(widget.OWWidget):
name = "Score Cells"
description = "Add a cell score based on the given set of genes"
icon = "icons/ScoreCells.svg"
priority = 112

settingsHandler = DomainContextHandler(metas_in_res=True)
Expand Down Expand Up @@ -95,7 +95,7 @@ def test():
from AnyQt.QtWidgets import QApplication
app = QApplication([])

w = OWGeneScore()
w = OWScoreCells()
data = Table("iris")
w.set_data(data)
w.handleNewSignals()
Expand Down

0 comments on commit 0a5526a

Please sign in to comment.