Age | Commit message (Expand) | Author |
2021-04-23 | Apply PEP-8 | BonfaceKilz |
2021-04-23 | Move looped sql query into one statement in "get_species_groups"...It's in-efficient to have a sql query executed in a loop. As data
grows, the query becomes slower. It's better to let sql handle such
queries.
| BonfaceKilz |
2021-04-23 | Remove stale comments | BonfaceKilz |
2020-08-26 | Remove "from __future__ import new_feature" statements...See: <https://docs.python.org/2/library/2to3.html#2to3fixer-future>
| BonfaceKilz |
2020-08-26 | Replace calls to "basestring with "str""...See: <https://docs.python.org/2/library/2to3.html#2to3fixer-basestring>
| BonfaceKilz |
2020-08-19 | Fix dictionary iteration methods...Run `2to3-3.8 -f dict -w .`
See: <https://docs.python.org/2/library/2to3.html#2to3fixer-dict> and
<https://stackoverflow.com/questions/17695456/why-does-python-3-need-dict-items-to-be-wrapped-with-list>
| BonfaceKilz |
2020-06-04 | Really should have split this into many more commits:...- Now use proxy to pull trait data and hide traits/results that the user
doesn't have view permission for
- Created a factory method for creating trait ob so it can return None
when user doesn't have view permissions (this is why such a large number
of files are changed)
- Added metadata to permutation export
- Added current group management code
- Added fixed password verification e-mail code
| zsloan |
2020-03-10 | Fixed issue that caused some problems when verifying hmac | zsloan |
2020-03-03 | Missed one more reference in helper_functions | zsloan |
2019-03-18 | - Added PCA traits to correlation matrix. You can't change their names yet or......but you can click them and access them from the trait page. I'll add the option to access them from the corr matrix page as well,
but adding the option to change their names might be trickier since they're currently used as their Redis keys. I need some better
way of passing the Redis key around so it can be stored in collections, but this is tricky without changing the structure in ElasticSearch
- Fixed the way temp traits work so you can use them with various functions, like mapping, correlations, network graph, etc
- Fixed some appearance issue where the network graph options were too wide if a trait name was too long
| zsloan |
2018-10-01 | - Can now remove cofactors from correlation scatterplot and select them by ju......- Cofactor color picker now works in Safari/Macs
- Displays N for relevant samples in trait page sample table
- Don't show bar chart when N>256
- Mapping loading page contents better centered
- Anonymous collections timeout correctly listed as 30 days now
- Minor allele frequency can actually be changed for GEMMA now (previously didn't work)
- Fixed transcript position marker location for mapping results
- Notifies user if their e-mail isn't associated with an account when they attempt to request forgotten password
- Users can now map with submitted traits
- Histogram width changes depending upon number of bins (need to improve this still)
- Improved Q-q plot (previously called "probability plot")
| zsloan |
2017-02-06 | Fixed appearance of several tables (search, mapping results, sample data)...Temporarily removed second sample table for CFW traits
Fixed location of global search bar to work with wider screens
| zsloan |
2016-10-05 | print statements should be logger | Pjotr Prins |
2016-08-16 | Users can now select specific traits from collection when using collection to......To do the above, changed the way form submission worked for those features; previously each feature had its own form, but that was dumb so instead I wrote a javascript function that just changed a single form's target url
Duplicate traits can no longer by added to collections
Fixed the digits for a few table columns in collection (additive effect, etc).
| zsloan |
2016-06-18 | Changed file permssions to non-executable | Pjotr Prins |
2014-08-12 | Fixed the scrollable data tables for the show trait page...Added the option to display the rqtl results (and soon other mapping results)
as either a manhattan plot or "interval map" style curve chart
Removed a couple unnecessary javascript imports
Changed the function in helper_functions.py that creates the trait and dataset
objects, making it to where the trait object also gets qtl info
Fixed color by trait after it was broken by the "scatterplot matrix" function
| Zachary Sloan |
2014-07-18 | Added outlier highlighting...Changed order of tabs in statistics panel on trait page
Started working on heatmap
| Zachary Sloan |
2014-05-05 | Committing a bunch of changes related to integrating GEMMA and...adding the correlation matrix page
| Zachary Sloan |
2013-07-19 | Finished integrating code that reads sample list from geno files...withouot using reaper and caches results so it doesn't need
to read the file every single time someone loads a page
| Zachary Sloan |
2013-06-13 | Fixed issue where too much memory was used as a result of creating a...dataset object for each trait in the correlation results
Added new fields/columns for each trait in the correlation result table
(max LRS, max LRS location, mean expression)
Fixed error if trait doesn't have these fields
| Lei Yan |
2013-03-12 | Got cashing working with pickle | Zachary Sloan |
2013-03-07 | Created file temp_data to store data related to progress...of the marker regression calculations
Storing progress of kinship matrix calculation in variable as
portion of 45 (the rough percent of total marker regression calculation
time
| Zachary Sloan |
2013-02-19 | Made lines for manhattan plot proportional to chromosome lengths | Zachary Sloan |
2013-01-31 | Changed reference to 'dataset_name' in keywords to 'dataset' to get...page to work, but will change all references to the dataset name to
'dataset_name' in future to avoid confusion between the dataset name
and the actual dataset object
| Zachary Sloan |
2013-01-22 | Pushed through a few errors in getting the correlation page running | Zachary Sloan |
2013-01-18 | Renamed CorrelationPage.py to show_corr_results.py...Worked with correlation code; got to the code that
begins to do the actual correlations
Created a function "get_dataset_and_trait" in
the new file "helper_functions.py" because the
code initializing the dataset and trait objects
was repeated in multiple places
| Zachary Sloan |