Age | Commit message (Collapse) | Author |
|
Move styling to css
|
|
permutations aren't used
|
|
figure, but it would probably be ideal to scale things such that the top tick is at the top of the figure
* wqflask/wqflask/marker_regression/display_mapping_results.py - Set LRS_LOD_Max (the top tick value) as the maximum value between the significant value (if permutations are used) and the max LRS/LOD value; previously it would set it as the significant value * 1.1 if the significant value exists and is higher than the max LRS/LOD value.
|
|
|
|
merging (there are a lot of conflicts between this and the changes that integrated Scroller)
|
|
|
|
show_trait.css, replaced _ with - in class names, and changed the checkbox table cell styling to better center it
* wqflask/wqflask/static/new/css/show_trait.css - Moved show_trait_edit_data.html styling to this file and changes padding for the checkbox table cell to better center it; for some reason text-align: center wasn't working and it specifically needed left-padding
* wqflask/wqflask/static/new/javascript/show_trait.js - Replaced underscores with - in class names
* wqflask/wqflask/static/new/javascript/show_trait_mapping_tools.js - Replaced underscores with - in class names
|
|
unnecessary with the scroller changes that move the table initialization to a separate file)
* wqflask/wqflask/templates/show_trait.html - Replaced underscores with - in class names
|
|
other divs that only have the styling of being inline
|
|
* wqflask/wqflask/templates/show_trait_edit_data.html - replaced underscores with -
|
|
|
|
* wqflask/wqflask/user_login.py (encode_password):
- Remove unused local variable "salt".
- Pass "hashfunc" as a string.
- Apply Pep-8.
|
|
* wqflask/tests/wqflask/test_user_login.py: New tests.
|
|
* wqflask/wqflask/pbkdf2.py: Remove unnecessary pbkdf2 usage docs---
it already exists in python3 stdlib--- and "__main__" section which
runs the test.
(imports): Delete unused imports. Add safe_str_cmp.
(pbkdf2_hex): Use hashlib.pbkdf2_hmac.
(safe_str_cmp): Replace with werkzeug.security.safe_str_cmp
(test): Delete it. Tests moved to test_pbkdf2.py.
|
|
* wqflask/tests/wqflask/test_pbkdf2.py: New tests.
|
|
|
|
|
|
* wqflask/wqflask/marker_regression/display_mapping_results.py:
Replace "%" strings with f-strings. Also, replace old "Href" with new
htmlgen "Link" method.
|
|
|
|
reaper mapping
* wqflask/wqflask/templates/show_trait_mapping_tools.html - Mistakenly reversed true/false in the reaper Interval Map option
|
|
some styling to be more simple/consistent and deal better with different screen sizes
* wqflask/wqflask/marker_regression/run_mapping.py - "manhattan_plot" is now passed as lower-case "true"/"false" to match the case of other boolean options
* wqflask/wqflask/static/new/css/show_trait.css - Added classes for the styling in show_trait_mapping_tools.html
* wqflask/wqflask/static/new/javascript/get_covariates_from_collection.js - Changed class name "selected_covariates" to "selected-covariates" to match class naming scheme
* wqflask/wqflask/static/new/javascript/show_trait.js - Changed class name "selected_covariates" to "selected-covariates" to match class naming scheme
* wqflask/wqflask/static/new/javascript/show_trait_mapping_tools.js - Changed class names from using underscore to useing "-" to match class naming scheme
* wqflask/wqflask/templates/show_trait_mapping_tools.html - Replaced styling with class names and changed some styling to be more simple/consistent
|
|
their width set in the same way as other sections of the correlation/mapping options
|
|
* wqflask/wqflask/static/new/css/show_trait.css - Added styles for elements in show_trait_transform_and_filter.html
* wqflask/wqflask/templates/show_trait_transform_and_filter.html - Replaced styling in template with classes
|
|
|
|
styling in the template
* wqflask/wqflask/static/new/css/show_trait.css - Added styling for elements in show_trait_calculate_correlations.html and changed a few existing class names to be more reasonable
* wqflask/wqflask/templates/show_trait.html - Changed the class name for the main div
* wqflask/wqflask/templates/show_trait_calculate_correlations.html - Substituted direct styling with CSS and changing some styling to make the correlation method descriptions keep a reasonable width and position
* wqflask/wqflask/templates/show_trait_statistics.html - Changed some class names to be better
|
|
pixels in the name since that might change later
* wqflask/wqflask/static/new/css/show_trait.css - Changed a couple class names
* wqflask/wqflask/templates/show_trait_statistics.html - Changed a couple class names
|
|
issue where not all figures had "Select Group:" before the group selection drop-down
* wqflask/wqflask/static/new/css/show_trait.css - Moved styling from show_trait_statistic.html here
* wqflask/wqflask/templates/show_trait_statistics.html - Replaced styling with classes, removed some unnecessary/unused styling, and added some missing label text
|
|
* wqflask/wqflask/static/new/css/show_trait.css - Added the bottom margin styling for the div containing the buttons
* wqflask/wqflask/templates/show_trait_details.html - Removed some unnecessary styling and moved the styling for .btn_toolbar to show_trait.css
|
|
* wqflask/wqflask/static/new/css/main.css - Added CSS for min-height in table cells with checkboxes, since this would apply to all tables throughout the site
* wqflask/wqflask/static/new/css/show_trait.css - Added CSS for styling that was previous in show_trait.html
* wqflask/wqflask/templates/show_trait.html - Replaced directly styling with classes
|
|
|
|
Some trait page width changes
|
|
CSS file instead of setting it as a style in initialize_show_trait_tables.js
|
|
Change some column widths/headers in search and view collection pages
|
|
* wqflask/wqflask/wgcna/wgcna_analysis.py: Update print statements by
wrapping then in "()". Run:
"2to3-3.8 -w wqflask/wqflask/wgcna/wgcna_analysis.py"
|
|
|
|
collections table + changed "Max LRS" column header to "High P"
* wqflask/wqflask/templates/collections/view.html - changed column widths and "Max LRS" header to "High P"
* wqflask/wqflask/templates/search_result_page.html - changed column widths and "Max LRS" header to "High P"
|
|
Tests/add extra tests for collections
|
|
* wqflask/wqflask/wgcna/wgcna_analysis.py: Apply pep8
* wqflask/wqflask/collect.py: Ditto
* wqflask/base/trait.py: Ditto
|
|
* wqflask/tests/wqflask/test_collect.py: Add it.
|
|
* wqflask/wqflask/views.py (export_trait_excel): Write data as bytes
instead of strings. See:
https://stackoverflow.com/questions/32075135/python-3-in-memory-zipfile-error-string-argument-expected-got-bytes
* wqflask/wqflask/show_trait/export_trait_data.py: Convert cmp
function into a key function.
|
|
|
|
|
|
|
|
* wqflask/wqflask/wgcna/wgcna_analysis.py
(WGCNA.render_image): Use named import method. This is a workaround
for using explicitly using "array" which conflicts with something else
in the namespace.
|
|
* wqflask/wqflask/wgcna/wgcna_analysis.py
(WGCNA.render_image): Use Python3's base64 library from the stdlib to
perform conversion.
* wqflask/wqflask/ctl/ctl_analysis.py (CTL.loadImage): Ditto.
|
|
* wqflask/wqflask/correlation_matrix/show_corr_matrix.py
(sortEigenVectors): Convert the comparison function into a key
function. See:
https://docs.python.org/3/howto/sorting.html#the-old-way-using-the-cmp-parameter
|
|
|
|
* wqflask/base/data_set.py - Fixed issue where there was an error when trying to take the len of the query results when there were no results
|
|
self.datasets property because the group name was used as the key (instead of the group name + "Publish", which is the full dataset name for phenotypes)
* wqflask/base/data_set.py - Set "group_name" as a separate variable from "name" to avoid it being used as the key in self.datasets
|
|
* wqflask/wqflask/templates/show_trait_mapping_tools.html - Removed the "col-xs-_" class to allow the div containing mapping description text to shrink with screen size
|