aboutsummaryrefslogtreecommitdiff
path: root/wqflask
AgeCommit message (Collapse)Author
2021-03-26Split rat RRID by _ in order to pull out just the ID number, since the ↵zsloan
number is needed for the links
2021-03-26Added try/except to deal with the possibility of user_id being stored in ↵zsloan
Redis as both string and bytes
2021-03-25minor fixAlexander Kabui
2021-03-25fix import errorAlexander Kabui
2021-03-25modify gn3 integration codeAlexander Kabui
2021-03-25add initial demo template pageAlexander Kabui
2021-03-25add code for calling gn3 correlation endpointAlexander Kabui
2021-03-24Added some default widths for situations where some wide columns exist and ↵zsloan
autoWidth can't be used on initial load + changed the logic for how to recalculate table width when a column is manually resized
2021-03-24Store a dictionary of maximum widths for each field + create a variable ↵zsloan
indicating if there are any wide columns (too wide to use DataTables' 'autoWidth' setting)
2021-03-24Use autoWidth on initial table load, though I'll change this to only apply ↵zsloan
when certain fields (like Description) are below a certain width Added some code tracking the change in width when a column's width is adjusted, so that the table_container width can be changed accordingly
2021-03-24initial commit for integrating to gn3 apiAlexander Kabui
2021-03-24initial commit for gn3-correlation api integrationAlexander Kabui
2021-03-19Added other BXD individual groups to the list of BXD groups used when ↵zsloan
drawing the Gene Band
2021-03-17Added the RRID urls for mouse and rat to webqtlConfigzsloan
2021-03-17Fixed the logic for creating the RRID links to account for the fact that the ↵zsloan
rat IDs don't have any prefix with a colon
2021-03-17Added a check for if there's a second value for case attributes, for ↵zsloan
situations where a case attribute also has a link
2021-03-17Added URL as second value for RRID case attributes, so it can be displayed ↵zsloan
in the trait page sample table
2021-03-16Fixed test_check_resource_availability_of_super_user to account for user_id ↵zsloan
being returned as bytes instead of a str
2021-03-16Added try/except to convert owner_id to bytes if necessaryzsloan
2021-03-16Fixed encoding in load_json_from_redis to account for the first that column ↵zsloan
values are sometimes stored as bytes and sometimes as strings
2021-03-16Fixed encoding to make get_user_groups work properly, since the user IDs for ↵zsloan
groups in Redis are stored as strings
2021-03-16Removed unnecessary encoding of user_id from authentication_tools.pyzsloan
2021-03-16Removed unnecessary decoding when getting user_id from UserSessionzsloan
2021-03-12Fixed imports in send_forgot_password_email since they apparently needed to ↵zsloan
be changed for Python 3.8
2021-03-11Set scrollX in all cases so the adjustablee columns also work for shorter ↵zsloan
results that don't use Scroller (<20 results)
2021-03-11Added a parameter to prevent columnDefs from being overwritten on initial ↵zsloan
table generation + changed the default table width to 100%
2021-03-11Made a variety of changes to make column resizeability work - the main issue ↵zsloan
was related to there being both an sWidth and width parameter
2021-03-11Added some CSS to make cell content cut off with ellipses if a column is ↵zsloan
narrower than the content's width
2021-03-07Right-aligned the Mean column for phenotype global searchzsloan
2021-03-07Limited Mean for phenotype global search to 3 decimal placeszsloan
2021-03-04Fixed issue that caused JS to break when trait description contains a ↵zsloan
newline character
2021-03-03Checked if pre_publication_description is NULL, because there was an error ↵zsloan
resulting from a trait missing both pre_publication_description and pubmed ID
2021-03-02Adoping code from the following link to make resizeable columns for search ↵zsloan
result table - https://datatables.net/forums/discussion/63231/resizing-columns-using-jquery-ui
2021-02-23Merge branch 'testing' of github.com:genenetwork/genenetwork2 into testingzsloan
2021-02-23This should fix the issue with Haplotype Analyst sample names/values not ↵zsloan
being displayed correctly
2021-02-19Fixed test_gen_menu to reflect updated queryzsloan
2021-02-19Fixed TestCheckResourceAvailability to make it work after realizing that ↵zsloan
Redis.smembers apparently returns values as bytes
2021-02-19Fixed test_run_mapping.py to make export_mapping_results test work correctlyzsloan
2021-02-19Patched utility.authentication_tools.g as TestUserSession because otherwise ↵zsloan
the str.encode failed on the mock.Mock() object, and this also seems consistent with the way it's done in a later method
2021-02-18Increased sample table width added for each case attribute. At some point ↵zsloan
this needs to be made 'smarter,' since this might look funny if all case attribute column are narrow
2021-02-18Committing changes that added some fields to mapping export - one of the ↵zsloan
tests I changed assumed these changes were already made, so including them should fix that
2021-02-18Convert user ID to stringzsloan
2021-02-18Remove the deocde since it was throwing an errorzsloan
2021-02-18Changed gsearch to be able to account for permissions either being a list or ↵zsloan
a string
2021-02-18Changed DEFAULT_PERMISSIONS AND SUPER_PERMISSIONS to not have permissions be ↵zsloan
lists (I think the proxy expects them to not be lists, but then returns them as lists; need to check about this)
2021-02-18Changed authentication_tools.py to account for encoding str as bytes and ↵zsloan
dealing with the permissions response either being a list or not a list (this should be temporary until I figure out what is going on here)
2021-02-18Need to account for permissions having either a list or string until I ↵zsloan
figure out what's going on with the proxy
2021-02-18Fixed missing colonzsloan
2021-02-18Fixed checking permissions in trait.pyzsloan
2021-02-18Fixed views.py to read properly formatted access masks correctlyzsloan