aboutsummaryrefslogtreecommitdiff
path: root/wqflask
AgeCommit message (Expand)Author
2020-07-28Fixes issue where zooming in on mapping results in some browsers caused...the original tab's contents to be removed * wqflask/wqflask/templates/mapping_results.html: minor change to add spaces for readability * wqflask/wqflask/marker_regression/display_mapping_results.py: Removed "return" from chrView and rangeView since it appears to remove original tab's contents in some browers when submitting form zsloan
2020-07-27Clean up webqtlCaseData class...* wqflask/base/webqtlCaseData.py (webqtlCaseData): - Remove obsolete 'Object' from Class inheritance - Replace 'str' with 'case_data_string' variable- it collides with python in-builts - Use pythonic 'is Not None' form - Remove redundancy in 'if' forms - Update copyright header BonfaceKilz
2020-07-27Add unittests for WebqtlCaseData...* wqflask/tests/base/test_webqtl_case_data.py: Add it BonfaceKilz
2020-07-27Abstract away redundant code into set_dataset_key method...* wqflask/base/data_set.py (Dataset): - Add set_dataset_key - Remove __call__ method BonfaceKilz
2020-07-27Test that non-existent keys in Dataset are set correctly...* wqflask/tests/base/test_data_set.py: Add more tests. BonfaceKilz
2020-07-27Use the correct redis instance inside object...* wqflask/base/data_set.py (DatasetType): Use object's redis instance BonfaceKilz
2020-07-27Check that Redis is called correctly...* wqflask/tests/base/test_data_set.py: assert that `set` and `get` are called correctly BonfaceKilz
2020-07-27Add test case for empty redis instance for DatasetType...* wqflask/tests/base/test_data_set.py(tests): Check correct results are returned when Redis is empty * wqflask/tests/base/data.py(tests): New file. Adds json test data. BonfaceKilz
2020-07-27Apply py-lint...* wqflask/tests/base/test_data_set.py: Apply pylint BonfaceKilz
2020-07-25The variable is never defined, so let's default to "none"Pjotr Prins
2020-07-25Animated gifsPjotr Prins
2020-07-25Removing bimbam check. We'll get rid of bimbam anyway.Pjotr Prins
2020-07-24Merge pull request #409 from BonfaceKilz/Build/add-tests...Build/add testszsloan
2020-07-24Added missing JS library that caused adding markers to collections to not workzsloan
2020-07-24Minor aesthetic indentation change in htmlzsloan
2020-07-24Added to menu option for user to change some basic user information, like nam...zsloan
2020-07-24Fixed queries that were wrongly returning Data IDs as Nszsloan
2020-07-24Rename test_numify.py to test_formatting.pyBonfaceKilz
2020-07-24Add unittests for *utility/test_numify*BonfaceKilz
2020-07-24Revert "Add work-around for failed imports in unittest"...This reverts commit d5e87fa6fe7546b46790f512d984a5501223082f. BonfaceKilz
2020-07-24Add work-around for failed imports in unittest...* wqflask/utility/tools.py: Unittests will use `from wqflask.wqflask import app` and the gn2 script will use `from wqflask import app` BonfaceKilz
2020-07-24Remove unreachable conditional...* wqflask/base/GeneralObject.py(__getattr__): remove if statement that is unreachable BonfaceKilz
2020-07-24Add more tests for general_object...* wqflask/tests/base/test_general_object.py: test getattr() and `==` BonfaceKilz
2020-07-24Add more tests for GeneralObject...* wqflask/tests/base/test_general_object.py: test object's magic methods BonfaceKilz
2020-07-24Move .coveragerc to wqflask/...* .coveragerc: Move .coveragerc to wqflask so that the coverage test tool can pick it up automatically without having to add an `--rc-file` flag BonfaceKilz
2020-07-24Rename test_numify.py to test_formatting.pyBonfaceKilz
2020-07-24Add unittests for *base/data_set*BonfaceKilz
2020-07-24Inject redis instance into DatasetType class...* wqflask/base/data_set.py(DatasetType): - Rename Redis instance to r to avoid confusion and name collisions - Inject the redis instance into Dataset_Types class to make it easier to test - Rename Dataset_Types class to DatasetType class BonfaceKilz
2020-07-24Add unittests for *utility/test_numify*BonfaceKilz
2020-07-24Apply autopep-8...* wqflask/utility/formatting.py: apply it BonfaceKilz
2020-07-24Add zero to num_repr dictionary...* wqflask/utility/formatting.py(numify): Update `num_repr` to have a zero BonfaceKilz
2020-07-24Remove redundant variable...* wqflask/utility/corr_result_helpers.py(normalize_values_with_values): Remove `num_overlap` BonfaceKilz
2020-07-24Remove unused assert...* wqflask/utility/corr_result_helpers.py(normalize_values): At no one point will that assert be hit BonfaceKilz
2020-07-24Remove unused doc-tests...* wqflask/utility/corr_result_helpers.py: Delete doc-test BonfaceKilz
2020-07-24Simplify normalize_values...* wqflask/utility/corr_result_helpers.py(normalize_values): Replace loop with zip form BonfaceKilz
2020-07-24Add unittests for *utility/corr_result_helper*BonfaceKilz
2020-07-24Add unittests for *utility/corestats*BonfaceKilz
2020-07-24Remove unused doc-tests...* wqflask/utility/chunks.py: Remove test code from module BonfaceKilz
2020-07-24Test utility methods for chunking...* wqflask/tests/utility/test_chunks.py: New test BonfaceKilz
2020-07-24Move tests to module...* test/unittest/: Move to wqflask/tests/ BonfaceKilz
2020-07-24Apply autopep-8...* wqflask/base/data_set.py: Apply autopep-8 BonfaceKilz
2020-07-24Revert "Add work-around for failed imports in unittest"...This reverts commit d5e87fa6fe7546b46790f512d984a5501223082f. BonfaceKilz
2020-07-24Apply autopep-8...* wqflask/base/GeneralObject.py: Replace tabs with 4 spaces BonfaceKilz
2020-07-24Remove mock directory...* wqflask/mock: Delete it. Causes name conflicts with Python's mock module BonfaceKilz
2020-07-24Add work-around for failed imports in unittest...* wqflask/utility/tools.py: Unittests will use `from wqflask.wqflask import app` and the gn2 script will use `from wqflask import app` BonfaceKilz
2020-07-24Remove unused configBonfaceKilz
2020-07-24Remove unused importBonfaceKilz
2020-07-24Increased width for Min Expr since it was getting cut off if you added more t...zsloan
2020-07-24Fixed issue where DataTable was getting initialized twice when adding cofacto...zsloan
2020-07-24decodeURIComponent was throwing an error after the query-level fix to the uni...zsloan