aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2021-08-25Add map scale option that was missing for groups with only a single genotype ↵zsloan
file
2021-08-25Fix issue that could cause an error when doing cM mappingzsloan
2021-08-25Fix issue that could cause mapping_scale to not be set correctly in ↵zsloan
show_trait.py
2021-08-24README: on installing GN2Pjotr Prins
2021-08-24README: minor editsPjotr Prins
2021-08-24README: install with guix profilePjotr Prins
2021-08-23Merge pull request #599 from zsloan/bug/fix_mapping_recompute_issuezsloan
Bug/fix mapping recompute issue
2021-08-23Removed unused variable from list of 'wanted' variables for mappingzsloan
2021-08-23Fixed issue with the way categorical_vars and perm_strata were being passed ↵zsloan
to the template
2021-08-23Account for situations where the minimum permutation value is also above ↵zsloan
webqtlConfig.MAXLRS; previously threw an error
2021-08-23Fix get_perm_strata to usethe Ids for case attributes instead of names + ↵zsloan
allow perm_strata to be passed to the template
2021-08-23Fix the way categorical_var_list is set to account for case attribute Ids ↵zsloan
being keys now instead of names
2021-08-23Include categorical_vars in mapping_results.html so they're included when ↵zsloan
recomputing
2021-08-23For some reason sample_data was being set twice, and the second time used a ↵zsloan
test function that does not exclude parents/f1s (causing the N to be wrong if parents/f1s exist)
2021-08-20Fixed some logic in trait.py that could cause a problem if a dataset_name ↵zsloan
was passed that wasn't Temp
2021-08-20Fix issue where attempting to get the diff of vals for Temp traits was ↵zsloan
causing an error
2021-08-20startup_config.py: Add DebugToobarExtension for wsgi DEBUG modeBonfaceKilz
* wqflask/utility/startup_config.py (app_config): Add DebugToolbarExtension
2021-08-19Change color for Submit button when selecting covariates + move Back button ↵zsloan
to the far right
2021-08-19Fixed R/qtl 'select covariates' buttons to be the same as the changed ones ↵zsloan
for GEMMA
2021-08-19Fixed issue in JS that caused filter_by_value to not work for case attributeszsloan
2021-08-19Fixed the way the drop-down for Filter by Value set values for the case ↵zsloan
attributes
2021-08-19Added type='button' to the mapping compute buttons in order to prevent them ↵zsloan
from being submitted twice
2021-08-19Add hash of vals and diff of vals to template_vars passed to loading page in ↵zsloan
views.py
2021-08-19Fix issues caused by the attribute keys being ids instead of names + fix ↵zsloan
issue caused by an attribute cell being empty
2021-08-19Exclude attributes with only one distinct value as wellzsloan
2021-08-19Removed some unnecessary empty lines from loading.html JSzsloan
2021-08-19Added function for getting the diff of sample values before and after user ↵zsloan
changes to show_trait.py
2021-08-19Added hash of sample values and table of changed values to the loading pagezsloan
2021-08-19Added option to make collection default in the colorbox pop-upzsloan
2021-08-19Shorten 'Add to existing collection' button to 'Add'zsloan
2021-08-19Removed ID of 'submit' from the button in the cofactor select table, since ↵zsloan
it was causing trait page forms to not submit after opening it
2021-08-19After removing all cofactors, return the size of the select element to 2zsloan
2021-08-19Changed Remove All button to Clear and changed Select and Clear button colorszsloan
2021-08-19Add some CSS changing the way the colorbox pop-up for adding covariates ↵zsloan
looks on the trait page
2021-08-19Add Removal All button that removes all currently added covariateszsloan
2021-08-19Update show_trait.js to make removing covariates work with the new select ↵zsloan
element; individual covariates can now be removed
2021-08-19Update get_covariates_from_collection.js to properly interact with the ↵zsloan
select element instead of the previous textarea