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-08-31 | Remove unused "string" import...* wqflask/utility/logger.py: Delete "import string". | Munyoki Kilyungi |
2022-08-31 | Replace debug with error logs in Except block pre/post a session...Put error logs in an Except block for easier parsing and re-word the error messages in them. * wqflask/wqflask/views.py: Delete "utility.logger" and "logger". (connect_db): Delete "g._database". Delete "logger.debug()". Use "app.logger.error" in Except block. (shutdown_session): Delete "logger.debug()". Use "app.logger.error" in Except block. | Munyoki Kilyungi |
2022-08-31 | Add transform parameter to mapping api unit test | zsloan |
2022-08-31 | Change qnorm parameter to transform, so other transforms can be added later | zsloan |
2022-08-31 | Add qnorm option to mapping api | zsloan |
2022-08-31 | Move normf function out of quantile_normalize_vals so it can be imported by m... | zsloan |
2022-08-31 | Fix failing api/test_mapping.py test | zsloan |
2022-08-31 | integrate text files | Alexander_Kabui |
2022-08-31 | add new environment variable:TEXTDIR | Alexander_Kabui |
2022-08-31 | read and parse text files | Alexander_Kabui |
2022-08-31 | Re-add read_from_pyfile...* wqflask/wqflask/database.py (read_from_pyfile): Re-add it. This is used in the sql_uri() function. | Munyoki Kilyungi |
2022-08-31 | add function to fetch probeset text files | Alexander_Kabui |
2022-08-30 | Remove logging and unused imports from api/mapping.py | zsloan |
2022-08-30 | Add genofile parameter to mapping API endpoint | zsloan |
2022-08-30 | Close a database connection only once...* wqflask/wqflask/database.py (database_connection): Close connection only once; otherwise an error is raised. | Munyoki Kilyungi |
2022-08-25 | Merge branch 'Alexanderlacuna-chores/gn2-queries-optimization' into testing | Frederick Muriuki Muriithi |
2022-08-25 | Merge branch 'chores/gn2-queries-optimization' of github.com:Alexanderlacuna/... | Frederick Muriuki Muriithi |
2022-08-24 | Fix issue where literature correlations were always run against their own dat... | zsloan |
2022-08-24 | Limit literature correlation results to top N as specified in the form | zsloan |
2022-08-23 | Add support for database rollbacks if the db engine supports it....* wqflask/wqflask/database.py: Import contextlib. (database_connection): Refactor to support roll-backs. | Munyoki Kilyungi |
2022-08-23 | Delete unused function and imports....* wqflask/wqflask/database.py: Remove unused sqlalchemy imports. (read_from_pyfile): Delete it. | Munyoki Kilyungi |
2022-08-23 | integrate code for fetching traits metadata | Alexander_Kabui |
2022-08-23 | function to fetch metadata | Alexander_Kabui |
2022-08-20 | Divide GEMMA additive effect by 2 | zsloan |
2022-08-20 | Fix JS for opening new tabs (or not) for collection page tools/options | zsloan |
2022-08-19 | Fix message and function key | Frederick Muriuki Muriithi |
2022-08-18 | bulk fetch n number of traits type probeset | Alexander_Kabui |
2022-08-17 | Reduce incremental backoff time | Frederick Muriuki Muriithi |
2022-08-17 | Do incremental backoff for mechanical rob tests...Sometimes the tests might be run before the service has began running. This commit delays the running of the tests for a while. | Frederick Muriuki Muriithi |
2022-08-17 | Merge branch 'Alexanderlacuna-chores/rust-enhancements' into testing | Frederick Muriuki Muriithi |
2022-08-17 | Use context managers for database cursors | Frederick Muriuki Muriithi |
2022-08-17 | Merge branch 'chores/rust-enhancements' of github.com:Alexanderlacuna/genenet... | Frederick Muriuki Muriithi |
2022-08-16 | Merge dicts into single result | Frederick Muriuki Muriithi |
2022-08-16 | Convert list items to single dict | Frederick Muriuki Muriithi |
2022-08-16 | rename boolean variables | Alexander_Kabui |
2022-08-16 | linter fixes | Alexander_Kabui |
2022-08-16 | enable compute all for test | Alexander_Kabui |
2022-08-16 | index error fix | Alexander_Kabui |
2022-08-16 | remove flask g object | Alexander_Kabui |
2022-08-16 | minor fixes for computing all correlations | Alexander_Kabui |
2022-08-16 | Setup default GN_PROXY setting | Frederick Muriuki Muriithi |
2022-08-15 | add default values for num overlap,corr_coeff | Alexander_Kabui |
2022-08-14 | init:perform top n sample for probes | Alexander_Kabui |
2022-08-12 | Update to newer lxml API | Frederick Muriuki Muriithi |
2022-08-12 | Revert "Check for keys before using them."...This reverts commit a1cbc12f843bbdc1759d5acac5ae3630fb5d4b81. | Frederick Muriuki Muriithi |
2022-08-12 | Merge branch 'integrate-rust-correlations' of github.com:genenetwork/genenetw... | Frederick Muriuki Muriithi |
2022-08-12 | Add a profiling script...Add a script to enable profiling the code. | Frederick Muriuki Muriithi |
2022-08-12 | Fix some issues with the tests. Add notes in code for improvements. | Frederick Muriuki Muriithi |
2022-08-12 | Refactor: separate the three correlation types...Refactor the code such that each correlation type (sample, tissue, literature) is computed in its own function. This makes the code clearer, and helps reduce repetition. | Frederick Muriuki Muriithi |