Age | Commit message (Expand) | Author |
---|---|---|
2022-08-31 | Remove usage of "logger" and un-necessary comments wrt the same...Logging is used to introspect variables or notify the commencement of a given operation. Logging should only be used to log errors. Also, most of the logging is either "logger.debug" or "logger.info"; and this won't show up in production/testing since we need a logging level above "WARNING" for them to show up. * wqflask/base/data_set.py (create_datasets_list): Remove logger. (Markers.add_pvalues): Ditto. (DataSet.retrieve_other_names): Ditto. * wqflask/base/mrna_assay_tissue_data.py: Ditto. * wqflask/base/webqtlCaseData.py: Ditto. * wqflask/db/call.py (fetch1): Ditto. (gn_server): Ditto. * wqflask/db/gn_server.py: Ditto. * wqflask/maintenance/set_resource_defaults.py: Ditto. * wqflask/utility/Plot.py (find_outliers): Ditto. * wqflask/utility/gen_geno_ob.py: Ditto. * wqflask/utility/helper_functions.py: Ditto. * wqflask/utility/pillow_utils.py: Ditto. * wqflask/utility/redis_tools.py: Ditto. * wqflask/wqflask/api/gen_menu.py (get_groups): Ditto. * wqflask/wqflask/api/mapping.py: Ditto. * wqflask/wqflask/api/router.py (get_dataset_info): Ditto. * wqflask/wqflask/collect.py (report_change): Ditto. * wqflask/wqflask/correlation/corr_scatter_plot.py: Ditto. * wqflask/wqflask/ctl/ctl_analysis.py (CTL): Ditto. (CTL.__init__): Ditto. (CTL.run_analysis): Ditto. (CTL.process_results): Ditto. * wqflask/wqflask/db_info.py: Ditto. * wqflask/wqflask/do_search.py (DoSearch.execute): Ditto. (DoSearch.mescape): Ditto. (DoSearch.get_search): Ditto. (MrnaAssaySearch.run_combined): Ditto. (MrnaAssaySearch.run): Ditto. (PhenotypeSearch.run_combined): Ditto. (GenotypeSearch.get_where_clause): Ditto. (LrsSearch.get_where_clause): Ditto. (MeanSearch.run): Ditto. (RangeSearch.get_where_clause): Ditto. (PvalueSearch.run): Ditto. * wqflask/wqflask/docs.py: Ditto. * wqflask/wqflask/export_traits.py: Ditto. * wqflask/wqflask/external_tools/send_to_bnw.py: Ditto. * wqflask/wqflask/external_tools/send_to_geneweaver.py: Ditto. * wqflask/wqflask/external_tools/send_to_webgestalt.py: Ditto. * wqflask/wqflask/gsearch.py (GSearch.__init__): Ditto. * wqflask/wqflask/heatmap/heatmap.py: Ditto. * wqflask/wqflask/marker_regression/display_mapping_results.py (DisplayMappingResults): Ditto. * wqflask/wqflask/marker_regression/gemma_mapping.py: Ditto. * wqflask/wqflask/marker_regression/plink_mapping.py (run_plink): Ditto. * wqflask/wqflask/marker_regression/qtlreaper_mapping.py (run_reaper): Ditto. * wqflask/wqflask/marker_regression/rqtl_mapping.py: Ditto. * wqflask/wqflask/marker_regression/run_mapping.py (RunMapping.__init__): Ditto. * wqflask/wqflask/parser.py (parse): Ditto. * wqflask/wqflask/search_results.py (SearchResultPage.__init__): Ditto. * wqflask/wqflask/update_search_results.py (GSearch.__init__): Ditto. * wqflask/wqflask/user_login.py (send_email): Ditto. (logout): Ditto. (forgot_password_submit): Ditto. (password_reset): Ditto. (password_reset_step2): Ditto. (register): Ditto. * wqflask/wqflask/user_session.py (create_signed_cookie): Ditto. | Munyoki Kilyungi |
2022-04-04 | Return None in load_json_from_redis when the item doesn't exist...For some reason that isn't clear to me yet, a logged-in user session ID was set even when a user wasn't logged in, causing the user session code to attempt to fetch user information for a non-existent user ID | zsloan |
2021-10-28 | Remove the use of '@deprecated'...This causes noisy logging. | BonfaceKilz |
2021-10-25 | utility: redis_tools: Remove dead functions | BonfaceKilz |
2021-10-25 | Mark `get_resource_info` as deprecated | BonfaceKilz |
2021-10-04 | Changed get_user_groups to pull both the ID and details in the for loop from ... | zsloan |
2021-09-10 | Removed encoding, since it's apparently not needed since the Python 3 switcho... | zsloan |
2021-06-15 | Fix issue where column values were used as str instead of bytes; pretty sure ... | zsloan |
2021-04-30 | autopep8: Fix E501 | BonfaceKilz |
2021-03-16 | Fixed encoding in load_json_from_redis to account for the first that column v... | zsloan |
2021-03-16 | Fixed encoding to make get_user_groups work properly, since the user IDs for ... | zsloan |
2021-02-18 | Remove the deocde since it was throwing an error | zsloan |
2021-02-17 | Fixed error caused by user IDs being encoded as bytes | zsloan |
2020-11-02 | Created function for encoding the column value as bytes when fetching from th......* wqflask/utility/redis_tools.py - Created function load_json_from_redis that encodes the key (column_value) when fetching a value from the JSON pulled from Redis | zsloan |
2020-09-26 | Merge branch 'testing' into build/python3-migration | BonfaceKilz |
2020-09-18 | Apply pep8 formatting | BonfaceKilz |
2020-09-17 | Merge branch 'testing' into build/python3-migration | BonfaceKilz |
2020-08-31 | Fixed issue that was causing updating resource default privileges to not...work * wqflask/utility/redis_tools.py - There was an issue where resources wouldn't be updated if they already existed. This is because the code didn't yet account for the "update" tag (that is meant to give the option of preventing updating resources when running the script to enter all resources into Redis). I changed the logic to add a resource if "update" is True or the resource doesn't already exist (so it won't if update is False and the resource exists). | zsloan |
2020-08-26 | Remove "from __future__ import new_feature" statements...See: <https://docs.python.org/2/library/2to3.html#2to3fixer-future> | BonfaceKilz |
2020-07-22 | It should add new resources to Redis automatically now | zsloan |
2020-07-06 | Fixed some of the logic with how traits are authenticated to avoid situation ... | zsloan |
2020-06-24 | Temporary partial fix to issue of resources without info; need to add somethi... | zsloan |
2020-06-17 | A user's id is now set as a parameter if it doesn't already existauthentication_test | zsloan |
2020-06-17 | Adding all the authentication stuff | zsloan |
2020-06-05 | Commiting other current group/resource management code, plus the new files | zsloan |
2020-06-04 | Really should have split this into many more commits:...- Now use proxy to pull trait data and hide traits/results that the user doesn't have view permission for - Created a factory method for creating trait ob so it can return None when user doesn't have view permissions (this is why such a large number of files are changed) - Added metadata to permutation export - Added current group management code - Added fixed password verification e-mail code | zsloan |
2020-05-28 | Added lines calling proxy for publish datasets + added some resource redis qu... | zsloan |
2020-05-12 | Added change for F2s in r/qtl and fixed minor issue in save_user in redis_tools | zsloan |
2020-05-07 | Committing current progress on group manager + a minor fix in dataset.py | zsloan |
2020-05-06 | Commiting a few minor changes plus returning rqtl_mapping.py to the same as o... | zsloan |
2020-02-12 | Fixed issue that broke some logins with the new redis user code | zsloan |
2020-01-23 | Forgot to commit new file containing Redis functions | zsloan |