This repository was archived by the owner on Apr 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GatingSet query modified to include gating set description column to be used as a tool tip in the combo box, for which this query is used. Also had to include gsid column into the query in order for the LABKEY.ext.store to properly fetch the data generated by the query. Population query modified to include the analysis column, so that proper filtering of the population set can be done. (not yet tested) StudyVars query created to contain the set of associated study variables for each of the generated gating sets (analyses). Plot.r : Parameter added for the usage of hexbin - smoothing of the data for display, for large data sets can result in faster rendering times. Now the table of gating sets is used, the path of the selected gating set/analysis is passed from JS so that R can read it from disk. begin.html : Modified to not load the module contents if the StudyVars query is not present in the opencyto_preprocessing schema, meaning that the OpenCytoVisualization module has been disabled (but its interface, the web part has not been removed from the home dashboard and still rendered by the server). Once issue #18 is resolved on the server side, this would need to be removed. ClearableComboBox.js control added to allow for a one-button approach to clearing a combo box value. OpenCytoVisualization.js : All of the common functionality needed for the entire suite moved to OpenCyto.js. strStudyVarName modified to include the Display field, the Value field and the Analysis field (the latter for filtering). The source for the strStudyVarName's data now comes from a custom table containing selected study variables for the selected analysis: the additional fields are now heavily used in order to speed up the computation time. Added a slider for selecting the hexbin parameter value. Fixed the generated graphic, so that if 2 identical web parts are present, each of the Resizable widgets is attached to the corresponding graphic. Moved the analysis selection combo box to the first tab. Replaced the 'drag and drop' instruction label with a quick tip, when hovering over the corresponding panel's header. Implemented the logic so that once a value is selected from either x-axis or y-axis combo box, that value is not present in the other combo box's choices (close issue #14). Overall streamlined and improved the layout design.
- Loading branch information
Lev Dashevskiy
committed
Jan 10, 2013
1 parent
33ea01d
commit 06b4aee
Showing
9 changed files
with
1,289 additions
and
1,209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
OpenCytoVisualization | ||
===================== | ||
|
||
Interface within LabKey for visualizing FCS Files with the ability to display gated data | ||
Labkey module with the interface for visualizing FCS Files with the ability to display gated data. | ||
|
||
Depends on the OpenCytoPreprocessing module. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
SELECT | ||
gsname AS Name, | ||
objlink AS Path | ||
gsid, | ||
gsname AS Name, | ||
objlink AS Path, | ||
gsdescription AS Tooltip | ||
FROM | ||
gstbl | ||
gstbl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<query name="StudyVars" schemaName="opencyto_preprocessing" xmlns="http://labkey.org/data/xml/query"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
SELECT | ||
study_vars.svname | ||
,study_vars.gsid.gsname AS analysis | ||
FROM | ||
study_vars |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.