aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-10-06tests: test_run_mapping: Add missing positional argument "vals_hash"BonfaceKilz
2021-10-04Moved REDIS_CONN back into if __name__ == '__main__' since it doesn't need ↵zsloan
to be globally accessed anymore (I think I intiially moved it because I was calling it in create_group_data, but that ended up being unnecessary
2021-10-04Changed the group.py script to replace user e-mails with IDs and to include ↵zsloan
id, name, changed_timestamp, and created_timestamp in group details
2021-10-04Changed get_user_groups to pull both the ID and details in the for loop from ↵zsloan
group_list by using group_list.items()
2021-10-04Add group link for user member groupszsloan
2021-10-04scripts: group.py: Modify exit message when displaying updated dataBonfaceKilz
2021-10-04scripts: group.py: Remove "glom" dependencyBonfaceKilz
2021-10-04Decode redis response by defaultBonfaceKilz
2021-10-04Modify resource editing script to enable data backups & restorationBonfaceKilz
2021-10-04wqflask: resource_manager: Remove loggerBonfaceKilz
2021-10-04Add script that adds "editors" group to all resources in RedisBonfaceKilz
2021-10-04Add script for creating/ updating groups during authorisationBonfaceKilz
2021-10-04Remove "_scripts.html" and all it's referencesBonfaceKilz
2021-10-04new_security: login_user.html: Delete commented out blockBonfaceKilz
2021-10-04Replace hard-coded e-mails with gn-proxy queriesBonfaceKilz
* wqflask/wqflask/decorators.py (edit_access_required.wrap): Query the proxy to see the access rights of a given user.
2021-10-04Rename "admin_login_required" to "edit_access_required"BonfaceKilz
2021-09-27Apply pep-8 formattingBonfaceKilz
2021-09-27Remove variable-- named after a python keyword-- called "list"BonfaceKilz
2021-09-27Remove lengthy stack trace for 404, 400, 408 status codesBonfaceKilz
The stack trace causes the log file to grow into unmanageable sizes over time.
2021-09-22Removed the Control for (marker) option from R/qtl for now since Danny ↵zsloan
mentioned it isn't working correctly
2021-09-22Fixed issue where the control marker parameter was being passed incorrectly ↵zsloan
to GN3 (should be just 'control' but was previously passed as 'control_marker')
2021-09-22Only show most search page options if results exist; otherwise provide a ↵zsloan
link back to the home page
2021-09-22Added type='button' to the Delete Collection button within collections/view, ↵zsloan
since without it it attempts to submit the form encapsulating the button (export in this case)
2021-09-22Remove references to reaper_version and code for running old qtlreaperzsloan
2021-09-20Returned the GN1 url to gn1.genenetwork.org since it's apparently working ↵zsloan
well enough again now that some issues have been fixed
2021-09-20Removed the reaper_version selection option, since original qtlreaper is no ↵zsloan
longer supported
2021-09-20Added back the option to edit privileges on trait pages, since the metadata ↵zsloan
edit button had replaced it
2021-09-16wqflask: views: Redirect to the correct URL after phenotype updateBonfaceKilz
2021-09-14Replace / with _ in the mapping results filename, due to / causing issues ↵zsloan
with being translated to directories
2021-09-14Replace / with _ in the file hashes in rqtl_mapping.py, since they get ↵zsloan
translated to directories
2021-09-13Change mapping export filename to use the path passed from run_mapping, ↵zsloan
instead of the generic mapping_results.csv
2021-09-13Change mapping export filename to use the trait hashzsloan
2021-09-13Add trait name and trait hash to exported mapping resultszsloan
2021-09-13Include some extra metadata in the mapping page details (in addition to the ↵zsloan
figure itself)
2021-09-13Change Genotype File text to only show the meaningful genotype deescriptionzsloan
2021-09-13Temporarily point the View in GN1 button to gn1-lily.genenetwork.org since ↵zsloan
some features aren't working on gn1.genenetwork.org yet
2021-09-11Add Jupyter Notebook Launcher to Tools dropdown menujgart
2021-09-10Fix issue with the way the template was checking if genofile_string was set; ↵zsloan
it was receiving an empty string, so the previous logic made it think there was a genofile string when there wasn't one
2021-09-10Removed encoding, since it's apparently not needed since the Python 3 ↵zsloan
switchover (and was causing there to be no matches between user IDs and groups)
2021-09-09Merge pull request #600 from zsloan/feature/add_more_mapping_metadatazsloan
Feature/add more mapping metadata
2021-09-09Change trait name to display name in the metadata at the top of the page (so ↵zsloan
group codes will be includes in phenotype IDs
2021-09-09Replaced trait name with trait display name in display_mapping_results so ↵zsloan
the group codes will be includes in phenotype IDs
2021-09-07Add trait hash and datetime to mapping figurezsloan
2021-09-07Add timer to loading page to track how long the process has been runningzsloan
2021-09-05Fixed issue that caused sample data to not be fetched correctly; there's ↵zsloan
something wrong with the 'get_probeset_data' function (not sure why this function exists)
2021-09-03Allow categorical_var_list to be passed as a template variablezsloan
2021-09-03Fix issue that caused javascript to not work on the R/qtl mapping result ↵zsloan
page when permutations weren't used (because it wrongly expected the permutation histogram to always exist)
2021-09-03Fix issue where values written to phenotype file for R/qtl sometimes had ↵zsloan
trailing decimal values by grounding to 3 places past the decimal
2021-08-25Fix issue where correlation results weren't included parents/f1szsloan
2021-08-25Fixed issue in get_diff_of_vals that caused the diff to be calculated wrong ↵zsloan
(due to one set of values being rounded to 3 digits and the other not