aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-08-08Create new utility module for drawing...* wqflask/utility/pillow_utils.py: Create a module to hold some utility functions for drawing with Pillow. Initialise the module with a function to draw rotated text. Muriithi Frederick Muriuki
2020-08-08Fix font paths...* wqflask/utility/Plot.py: Update font paths. * wqflask/fonts/ttf: Update font files. Muriithi Frederick Muriuki
2020-08-08Update SNP Browser to Pillow...* wqflask/wqflask/snp_browser/snp_browser.py: Use newer, and supported Pillow in place of obsoleted Piddle library. Muriithi Frederick Muriuki
2020-08-08Add missing font files...* wqflask/fonts/ttf: Add ttf font files. Muriithi Frederick Muriuki
2020-08-08Migrate code from Piddle to Pillow...* wqflask/wqflask/marker_regression/display_mapping_results.py: Add font files (DisplayMappingResults): Update the code from the Piddle way of things to the Pillow way of things, for example, replace: - pid.drawRect(...) with im_drawer.rectangle(...) - pid.drawString(...) with im_drawer.text(...) - pid.drawPolygon(...) with im_drawer.polygon(...) etc. * wqflask/utility/Plot.py: Migrate code from the older, unsupported Piddle to the newer Pillow library. Muriithi Frederick Muriuki
2020-08-08Update the colours to use Pillow's ImageColor...* wqflask/wqflask/marker_regression/display_mapping_results.py: Use Pillow's ImageColor module in place of the older Piddle colours. Muriithi Frederick Muriuki
2020-08-07Move wqflask/tests/api to wqflask/tests/wqflask...* wqflask/tests(api): Move all the files here to tests/wqflask. The test dir should mirror the actual module structure BonfaceKilz
2020-08-06Added endpoint for changing some user details...* wqflask/wqflask/user_session.py - Added endpoint for /manage/user that lets the user change their full_name or organization. Still need to add something that lets them change their e-mail, since that will require a confirmation zsloan
2020-08-06Made a change that should fix the issue with the Y axis ticks extending...too high in mapping results * wqflask/wqflask/marker_regression/display_mapping_results.py - When in ful genome view, I changed it to subject the yTopOffset when drawing the Y axis; single chromosome view seems to work okay so it's conditional on that zsloan
2020-08-05Set maximum width for trait page details in order to avoid long...summaries looking strange * wqflask/wqflask/templates/show_trait_details.html - Set min-width of table containing details to 1400px zsloan
2020-08-04Merge branch 'testing' of github.com:genenetwork/genenetwork2 into testingzsloan
2020-08-04Simplified logic in the @before_request that checks user permissions...* wqflask/wqflask/views.py - Removed an if statement that was unnecessary, because it already checks if dataset is either the string "Temp" or of type "Temp" zsloan
2020-08-04Reduced table cell margin a bit to make cell contents better align with...header * wqflask/wqflask/static/new/css/show_trait.css - Changed right margin from 20px to 15px to better account for the width of the sort arrows in the header cell zsloan
2020-08-04Merge pull request #415 from BonfaceKilz/tests/add-tests-for-gen-menu...Tests/add tests for gen menuPjotr Prins
2020-08-03Fixed table width issue when there's an N column...* wqflask/wqflask/show_trait/show_trait.py - Just added more pixels in the function which determines the overall table width zsloan
2020-08-03Fixed issue where DataTables was initialized twice when selecting...cofactors, leading to an error in non-Chrome browsers * wqflask/wqflask/static/new/javascript/get_covariates_from_collection.js - Added a line that checks if the table already exists before initializing it; this issue is caused by a circular import issue, but I'm not sure how to get around it yet zsloan
2020-08-03Remove "+" when concatenating strings...* wqflask/wqflask/api/gen_menu.py (build_types, build_datasets): Replace '+' when joining strings inside brackets BonfaceKilz
2020-08-03Fix some errors generated by running pylint...* wqflask/wqflask/api/gen_menu.py: Apply pylint. * wqflask/tests/api/test_gen_menu.py: Apply pylint. BonfaceKilz
2020-08-03Add extra test for "build_datasets"...* wqflask/tests/api/test_gen_menu.py: Add test. BonfaceKilz
2020-08-03Move variable to setUp...* wqflask/tests/api/test_gen_menu.py: Move variable BonfaceKilz
2020-08-03Add test for "gen_dropdown_json"...* wqflask/tests/api/test_gen_menu.py: Add new test BonfaceKilz
2020-08-03Add tests for "get_datasets"...* wqflask/tests/api/test_gen_menu.py: Add new tests BonfaceKilz
2020-08-03Update how boolean is returned...* wqflask/wqflask/api/gen_menu.py (get_datasets): convert return value directly using "bool" to be more general and cater for cases wher "None" is returned BonfaceKilz
2020-08-03Remove unreached "else" branch...* wqflask/wqflask/api/gen_menu.py(get_types): - Remove unnecessary comment. - Remove unreachable "else" branch. BonfaceKilz
2020-08-03Add tests for "get_types"...* wqflask/tests/api/test_gen_menu.py: Add new tests BonfaceKilz
2020-08-03Add test for "build_types"...* wqflask/tests/api/test_gen_menu.py: New test BonfaceKilz
2020-08-03Clean up "if ... else" conditional...* wqflask/wqflask/api/gen_menu.py (build_datasets): Make conditionals more Pythonic BonfaceKilz
2020-08-03Reformat sql queries to be one line...* wqflask/wqflask/api/gen_menu.py (build_datasets, build_types): Strip white spaces and newlines from query and make the sql query one line. BonfaceKilz
2020-07-30Add tests for "build_datasets"...* wqflask/tests/api/test_gen_menu.py: Add new tests for "build_datasets" function BonfaceKilz
2020-07-29Fixed error that occured for new resources in check_admin...* wqflask/utility/authentication_tools.py: the code forgot to get resource_info when a resource wasn't in Redis yet, causing an error when it was referenced, so I added a line getting the resource info (and also a couple comments for other lines related to authentication) zsloan
2020-07-29Update how boolean is returned...* wqflask/wqflask/api/gen_menu.py (phenotypes_exist, genotypes_exist): Convert sql result to boolean instead of only checking for "None". BonfaceKilz
2020-07-29Reformat sql queries to be one line...* wqflask/wqflask/api/gen_menu.py (get_species, get_groups, phenotypes_exist) (genotypes_exist)[sql]: Strip white spaces and newlines from query and make the sql query one line. BonfaceKilz
2020-07-29Add tests for "phenotypes_exist" and "genotypes_exist"...* wqflask/tests/api/test_gen_menu.py: Add new tests BonfaceKilz
2020-07-29Add test for "get_groups"...* wqflask/tests/api/test_gen_menu.py: test that "get_groups" uses the correct sql query and returns the correct group data structure. BonfaceKilz
2020-07-29Add initial gen_menu test...* wqflask/tests/api/__init__.py: Add it * wqflask/tests/api/test_gen_menu.py: Add test for get_species BonfaceKilz
2020-07-28Fixes issue where zooming in on mapping results in some browsers caused...the original tab's contents to be removed * wqflask/wqflask/templates/mapping_results.html: minor change to add spaces for readability * wqflask/wqflask/marker_regression/display_mapping_results.py: Removed "return" from chrView and rangeView since it appears to remove original tab's contents in some browers when submitting form zsloan
2020-07-28Merge branch 'testing' of github.com:genenetwork/genenetwork2 into testingzsloan
2020-07-28Merge pull request #414 from BonfaceKilz/tests/add-tests-for-base-module...Tests/add tests for base modulezsloan
2020-07-28Setting owner to None since super-users should allow for people like Rob or m...zsloan
2020-07-27Clean up webqtlCaseData class...* wqflask/base/webqtlCaseData.py (webqtlCaseData): - Remove obsolete 'Object' from Class inheritance - Replace 'str' with 'case_data_string' variable- it collides with python in-builts - Use pythonic 'is Not None' form - Remove redundancy in 'if' forms - Update copyright header BonfaceKilz
2020-07-27Add unittests for WebqtlCaseData...* wqflask/tests/base/test_webqtl_case_data.py: Add it BonfaceKilz
2020-07-27Abstract away redundant code into set_dataset_key method...* wqflask/base/data_set.py (Dataset): - Add set_dataset_key - Remove __call__ method BonfaceKilz
2020-07-27Test that non-existent keys in Dataset are set correctly...* wqflask/tests/base/test_data_set.py: Add more tests. BonfaceKilz
2020-07-27Use the correct redis instance inside object...* wqflask/base/data_set.py (DatasetType): Use object's redis instance BonfaceKilz
2020-07-27Check that Redis is called correctly...* wqflask/tests/base/test_data_set.py: assert that `set` and `get` are called correctly BonfaceKilz
2020-07-27Add test case for empty redis instance for DatasetType...* wqflask/tests/base/test_data_set.py(tests): Check correct results are returned when Redis is empty * wqflask/tests/base/data.py(tests): New file. Adds json test data. BonfaceKilz
2020-07-27Apply py-lint...* wqflask/tests/base/test_data_set.py: Apply pylint BonfaceKilz
2020-07-27Merge pull request #411 from pjotrp/testing...Updating docsPjotr Prins
2020-07-27Merge branch 'testing' into testingPjotr Prins
2020-07-27Merge pull request #412 from BonfaceKilz/docs/document-how-to-run-tests...Docs/document how to run testsPjotr Prins