├── .gitignore ├── MANIFEST.in ├── docs ├── Docstring_notes.txt ├── images │ ├── 01_run_curvefit_settings.png │ ├── 20160527_0_compare_raw.png │ ├── AB_sample2.png │ ├── EC50_data_folder.png │ ├── ECCpy_settings_template_files.png │ ├── ECCpy_settings_template_location.png │ ├── ECCpy_settings_template_samplenames.png │ ├── ECCpy_settings_template_settings.png │ ├── Generated_input_excel_files.png │ ├── My_ECCpy_Settings.png │ ├── Windows_system32_cmd_test_python.exe.png │ ├── analysis_output_figures.png │ ├── clone_or_download.png │ ├── curve_fit_output_sample3.png │ ├── generated_data_0EC50_analysis_fig.png │ ├── generated_dot_plots_lgd_right.png │ ├── python_setup-py_develop.png │ ├── run_analysis_settings.png │ ├── run_curvefit_settings.png │ ├── sample4_red_slope.png │ └── signac_setting_sun.png ├── logo │ └── ECCpy_logo.png └── releases.rst ├── eccpy ├── __init__.py ├── compare_raw.py ├── curvefit.py ├── examples │ ├── example_data │ │ ├── generated_data_0.xlsx │ │ ├── generated_data_1.xlsx │ │ └── generated_data_2.xlsx │ └── example_settings │ │ ├── ECCpy_settings_template.xlsx │ │ └── eccpy-xlsx-generic-vertical_template.xlsx ├── gather.py ├── judgefit.py ├── settings.py └── tools.py ├── license.txt ├── pytest.ini ├── readme.rst ├── requirements.txt ├── setup.cfg ├── setup.py └── test ├── __init__.py ├── functional ├── test_example_data.py └── test_sample_replicates.py ├── helpers ├── __init__.py └── helpers.py └── unit └── test_df_consistency.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /docs/Docstring_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/Docstring_notes.txt -------------------------------------------------------------------------------- /docs/images/01_run_curvefit_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/01_run_curvefit_settings.png -------------------------------------------------------------------------------- /docs/images/20160527_0_compare_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/20160527_0_compare_raw.png -------------------------------------------------------------------------------- /docs/images/AB_sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/AB_sample2.png -------------------------------------------------------------------------------- /docs/images/EC50_data_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/EC50_data_folder.png -------------------------------------------------------------------------------- /docs/images/ECCpy_settings_template_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/ECCpy_settings_template_files.png -------------------------------------------------------------------------------- /docs/images/ECCpy_settings_template_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/ECCpy_settings_template_location.png -------------------------------------------------------------------------------- /docs/images/ECCpy_settings_template_samplenames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/ECCpy_settings_template_samplenames.png -------------------------------------------------------------------------------- /docs/images/ECCpy_settings_template_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/ECCpy_settings_template_settings.png -------------------------------------------------------------------------------- /docs/images/Generated_input_excel_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/Generated_input_excel_files.png -------------------------------------------------------------------------------- /docs/images/My_ECCpy_Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/My_ECCpy_Settings.png -------------------------------------------------------------------------------- /docs/images/Windows_system32_cmd_test_python.exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/Windows_system32_cmd_test_python.exe.png -------------------------------------------------------------------------------- /docs/images/analysis_output_figures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/analysis_output_figures.png -------------------------------------------------------------------------------- /docs/images/clone_or_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/clone_or_download.png -------------------------------------------------------------------------------- /docs/images/curve_fit_output_sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/curve_fit_output_sample3.png -------------------------------------------------------------------------------- /docs/images/generated_data_0EC50_analysis_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/generated_data_0EC50_analysis_fig.png -------------------------------------------------------------------------------- /docs/images/generated_dot_plots_lgd_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/generated_dot_plots_lgd_right.png -------------------------------------------------------------------------------- /docs/images/python_setup-py_develop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/python_setup-py_develop.png -------------------------------------------------------------------------------- /docs/images/run_analysis_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/run_analysis_settings.png -------------------------------------------------------------------------------- /docs/images/run_curvefit_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/run_curvefit_settings.png -------------------------------------------------------------------------------- /docs/images/sample4_red_slope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/sample4_red_slope.png -------------------------------------------------------------------------------- /docs/images/signac_setting_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/images/signac_setting_sun.png -------------------------------------------------------------------------------- /docs/logo/ECCpy_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/logo/ECCpy_logo.png -------------------------------------------------------------------------------- /docs/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/docs/releases.rst -------------------------------------------------------------------------------- /eccpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/eccpy/__init__.py -------------------------------------------------------------------------------- /eccpy/compare_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/eccpy/compare_raw.py -------------------------------------------------------------------------------- /eccpy/curvefit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/eccpy/curvefit.py -------------------------------------------------------------------------------- /eccpy/examples/example_data/generated_data_0.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/eccpy/examples/example_data/generated_data_0.xlsx -------------------------------------------------------------------------------- /eccpy/examples/example_data/generated_data_1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/eccpy/examples/example_data/generated_data_1.xlsx -------------------------------------------------------------------------------- /eccpy/examples/example_data/generated_data_2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/eccpy/examples/example_data/generated_data_2.xlsx -------------------------------------------------------------------------------- /eccpy/examples/example_settings/ECCpy_settings_template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/eccpy/examples/example_settings/ECCpy_settings_template.xlsx -------------------------------------------------------------------------------- /eccpy/examples/example_settings/eccpy-xlsx-generic-vertical_template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/eccpy/examples/example_settings/eccpy-xlsx-generic-vertical_template.xlsx -------------------------------------------------------------------------------- /eccpy/gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/eccpy/gather.py -------------------------------------------------------------------------------- /eccpy/judgefit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/eccpy/judgefit.py -------------------------------------------------------------------------------- /eccpy/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/eccpy/settings.py -------------------------------------------------------------------------------- /eccpy/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/eccpy/tools.py -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/license.txt -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/pytest.ini -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/readme.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/functional/test_example_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/test/functional/test_example_data.py -------------------------------------------------------------------------------- /test/functional/test_sample_replicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/test/functional/test_sample_replicates.py -------------------------------------------------------------------------------- /test/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/test/helpers/helpers.py -------------------------------------------------------------------------------- /test/unit/test_df_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teese/eccpy/HEAD/test/unit/test_df_consistency.py --------------------------------------------------------------------------------