Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-05-10 | Merge branch 'testing' into feature/integrate-correlation-api | Alexander Kabui | |
2021-05-10 | add previous endpoint for correlation | Alexander Kabui | |
2021-05-05 | base: species: Remove redundant assignment | BonfaceKilz | |
2021-05-05 | base: chromosomes: Fetch the chromosomes lazily | BonfaceKilz | |
2021-05-05 | base: species: Rewrite Chromosomes using a dataclass | BonfaceKilz | |
2021-05-05 | base: species: Rewrite IndChromosome using a dataclass | BonfaceKilz | |
2021-05-05 | base: trait: Remove logging information | BonfaceKilz | |
The log adds unnecessary noise in addition to creating unwanted side-effects. | |||
2021-05-05 | base: species: Rewrite TheSpecies class using a dataclass | BonfaceKilz | |
2021-05-05 | base: species: Remove unused import | BonfaceKilz | |
2021-05-05 | base: species: Format SQL queries | BonfaceKilz | |
2021-04-30 | autopep8: Run autopep8 100 times with target rules | BonfaceKilz | |
Rules used are: E20,E211,E22,E224,E224,E225,E226,E227,E228,E231,E241,E242, E251,E252,E26,E265,E266,E27,E301,E302,E303,E304,E305,E306, E401,E501,E70,E701,W291,W292,W293,W391,W504,E101,E11,E121, E122,E123,E124,E125,E126,E127,E128,E129,E131,E133 | |||
2021-04-30 | autopep8: Fix E121,E122,E123,EI24,E125,E126,E127,E128,E129,E131,E133 | BonfaceKilz | |
2021-04-30 | autopep8: Fix W504 | BonfaceKilz | |
2021-04-30 | autopep8: Fix W291, W292, W293, W391 | BonfaceKilz | |
2021-04-30 | autopep8: Fix E501 | BonfaceKilz | |
2021-04-30 | autopep8: Fix E301,E302,E303,E304,E305,E306 | BonfaceKilz | |
2021-04-30 | autopep8: Fix E20-E27 | BonfaceKilz | |
Run: python -m autopep8 --in-place --recrusive ./ --select\ E20,E211,E22,E224,E224,E225,E226,E227,E228,E231,E241,\ E242,E251,E252,E26,E265,E266,E27 -p 3 | |||
2021-04-29 | Merge branch 'testing' into Feature/Add-upload-data-forms | BonfaceKilz | |
2021-04-29 | Run `sed -i 's/(object)//g'` | BonfaceKilz | |
See: https://is.gd/pL7IJF Ran: find . \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i 's/(object)//g' | |||
2021-04-29 | base: trait: Remove unused function | BonfaceKilz | |
* wqflask/base/trait.py (jsonable_table_row): Delete it. | |||
2021-04-29 | base: data_set: Remove unused method | BonfaceKilz | |
* wqflask/base/data_set.py (Dataset.get_accession_id): Delete it. | |||
2021-04-29 | base: data_set: Apply pep-8 | BonfaceKilz | |
2021-04-29 | base: data_set: Remove unused method | BonfaceKilz | |
* wqflask/base/data_set.py (riset): Delete class method. | |||
2021-04-29 | base: data_set: Rewrite data_set using @dataclass | BonfaceKilz | |
@dataclasses should be used to hold only data. Since dataset only encapsulates data, re-writing it using a dataclass makes it more readable and easier to follow. | |||
2021-04-28 | Added something to jsonable in trait.py to account for temp traits (this is ↵ | zsloan | |
necessary for them to show up correctly when selecting traits from collections in pop-up windows, like when selecting cofactors for mapping) | |||
2021-04-26 | fix:remove debug statements and commented code | Alexander Kabui | |
2021-04-23 | debugging for fetching probe data | Alexander Kabui | |
2021-04-23 | Remove stale comments | BonfaceKilz | |
2021-04-20 | refactor code for iterating mrna tissue data | Alexander Kabui | |
2021-04-19 | Removed unused code | zsloan | |
2021-03-17 | Added the RRID urls for mouse and rat to webqtlConfig | zsloan | |
2021-03-03 | Checked 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-02-18 | Changed 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-18 | Fixed missing colon | zsloan | |
2021-02-18 | Fixed checking permissions in trait.py | zsloan | |
2021-02-18 | Fixed SUPER_PRIVILEGES and DEFAULT_PRIVILEGES | zsloan | |
2021-02-11 | Removed some log statements | zsloan | |
2021-02-11 | Ensure trait description_display is set | zsloan | |
2020-12-07 | Changed the logic in create_trait so that permissions should always be set, ↵ | zsloan | |
and added an assert that 'name' is passed instead of using if/else, since it should always be passed | |||
2020-12-01 | Merge pull request #482 from zsloan/feature/corr_table_changes | zsloan | |
Feature/corr table changes | |||
2020-11-18 | Fixed issue where the cofactor trait descriptions didn't work correctly | zsloan | |
for genotype/snp cofactors (the code previously only accounted for probeset/phenotype cofactors, so it was treating genotypes/snps like phenotype traits) | |||
2020-11-18 | Fixed issue that was causing scatterplot cofactors to not work if the | zsloan | |
cofactors were genotypes (because it tried to get the "description_display" which doesn't exist for genotype traits) | |||
2020-11-11 | Switched checking if a trait is confidential to checking if it has a pubmed ↵ | zsloan | |
ID for the purposes of showing pre-publication abbreviation/description | |||
2020-11-03 | Changed the syntax for the "sort" function in the docstring of GeneralObject ↵ | zsloan | |
to be compatible with Python 3 syntax * wqflask/base/GeneralObject.py - edited docstring to be correct for Python 3 | |||
2020-10-27 | Get the "first_attr_start_pos" from a samplelist instead of from each ↵ | zsloan | |
individual sample, because it was previously causing problems when only some samples had an N * wqflask/base/webqtlCaseData.py - Removed code getting first_attr_start_pos * wqflask/wqflask/show_trait/SampleList.py - Added code getting first_attr_start_pos and assigning it to all samples + removing one unnecessary sort * wqflask/wqflask/static/new/javascript/initialize_show_trait_tables.js - Fixed issue that was causing the N column to not be displayed | |||
2020-10-20 | Merge branch 'testing' into build/python3-migration | BonfaceKilz | |
2020-10-19 | Merge branch 'testing' into scroller_testing | zsloan | |
2020-10-12 | Merge branch 'testing' into build/python3-migration | BonfaceKilz | |
2020-10-09 | Merge pull request #458 from BonfaceKilz/tests/add-extra-tests-for-collections | BonfaceKilz | |
Tests/add extra tests for collections | |||
2020-10-09 | Apply PEP 8 to buffer | BonfaceKilz | |
* wqflask/wqflask/wgcna/wgcna_analysis.py: Apply pep8 * wqflask/wqflask/collect.py: Ditto * wqflask/base/trait.py: Ditto |