├── .github └── ISSUE_TEMPLATE │ ├── escalate-bug-report.md │ ├── escalate-development-sprint.md │ └── escalate-requirement-specification.md ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── UI User Guide.docx ├── data_model ├── Dockerfile ├── LICENSE.txt ├── README.md ├── TECHNICAL.md ├── backups │ ├── escalate_dev_create_backup.sql │ ├── escalate_dev_refresh_backup.sql │ ├── postprocess_create_sql.awk │ ├── postprocess_refresh_sql.awk │ └── run_escalate_backups.sh ├── dataload_csv │ ├── Chemicals List.csv │ ├── MetalChalcogenideRxns.csv │ ├── load_action.csv │ ├── load_action_def.csv │ ├── load_action_unit.csv │ ├── load_base_bom_material.csv │ ├── load_calculation_def.csv │ ├── load_chem_inventory.txt │ ├── load_edocument.csv │ ├── load_exp_json.csv │ ├── load_experiment.csv │ ├── load_hc_inventory.csv │ ├── load_inventory_material.txt │ ├── load_lbl_inventory.csv │ ├── load_material.txt │ ├── load_material_identifier.csv │ ├── load_opentrons_vessels.csv │ ├── load_parameter_def.csv │ ├── load_perov_desc.csv │ ├── load_perov_desc_def.csv │ ├── load_perov_mol_image.csv │ ├── load_v2_bromides.csv │ ├── load_v2_iodides.csv │ ├── load_v2_wf3_alloying.csv │ ├── load_v2_wf3_iodides.csv │ ├── load_vessel.csv │ ├── load_workflow.csv │ ├── old_dev_schema_materials.csv │ └── type_command.csv ├── demo_exp_spec.sql ├── dev_exp_spec.sql ├── docker-compose.yml ├── docker_cmds.sh ├── docker_entrypoint.sh ├── erd_diagrams │ ├── escalate_erd_physicalmodel.pdf │ ├── escalate_erd_physicalmodel.png │ ├── escalatev3_schema_highlevel.png │ ├── note_viewmodel.pdf │ ├── note_viewmodel.png │ ├── tag_assign_viewmodel.pdf │ ├── tag_assign_viewmodel.png │ ├── tag_manage_viewmodel.pdf │ ├── tag_manage_viewmodel.png │ ├── udf_view_model_1.pdf │ ├── udf_view_model_1.png │ ├── udf_view_model_2.pdf │ └── udf_view_model_2.png ├── images │ ├── Escalate_B-04.png │ ├── docker_logo.png │ ├── pgadmin_logo.png │ └── postgresql_logo.png ├── prod_etl.sql ├── sql_core │ ├── prod_etl.sql │ ├── prod_functions.sql │ ├── prod_initialize_coretables.sql │ ├── prod_initialize_db.sql │ ├── prod_recreate_db.sql │ ├── prod_tables.sql │ ├── prod_upserts.sql │ ├── prod_views.sql │ ├── rebuild_schema_dev.sh │ └── table_comment_gen.awk ├── sql_dataload │ ├── postprocess_sql.awk │ ├── pro_dataload_v2_wf3_alloying.sql │ ├── prod_dataload_chem_inventory.sql │ ├── prod_dataload_edocument.sql │ ├── prod_dataload_hc_inventory.sql │ ├── prod_dataload_lbl_inventory.sql │ ├── prod_dataload_perov_desc.sql │ ├── prod_dataload_perov_desc_def.sql │ ├── prod_dataload_perov_mol_image.sql │ ├── prod_dataload_v2_bromides.sql │ ├── prod_dataload_v2_iodides.sql │ ├── prod_dataload_v2_wf3_iodides.sql │ ├── prod_escalate_change_log.sql │ └── prod_escalate_version.sql ├── sql_demo_data │ ├── dev_cocktail.sql │ ├── dev_sep_actions.sql │ ├── dev_sep_materials.sql │ ├── dev_sep_resin_weigh.sql │ ├── dev_sep_wf_liq_sol.sql │ ├── hc_create_wf1.sql │ ├── hc_create_wf1_take2.sql │ ├── hc_load_1_material.sql │ ├── hc_load_2_inverntory.sql │ └── hc_load_3_calculation.sql ├── sql_test │ ├── action_parameter.json │ ├── action_parameter_def.json │ ├── condition_calculation.json │ ├── experiment_workflow.json │ ├── experiment_workflow_step.json │ ├── experiment_workflow_step_object.json │ ├── pg_prove │ ├── pgtap_test.sql │ ├── test_functions.sql │ ├── workflow.json │ ├── workflow_step.json │ └── workflow_step_object.json └── tests │ ├── hello.sql │ └── test_upserts.sql ├── demonstrations ├── README.md ├── REST_API_DEMO.ipynb ├── WF1_setup.ipynb └── prototypes │ ├── demo.ipynb │ ├── demo_classes.py │ └── nicole_prototype.ipynb ├── escalate ├── .env.dev ├── Dockerfile ├── README.md ├── TECHNICAL.md ├── VERSION.py ├── __init__.py ├── api_test.http ├── boot.sh ├── build.sh ├── build_django_db.sh ├── build_fixture_db.sh ├── conda_environment.yml ├── core │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── cached_queries.py │ ├── custom_types.py │ ├── dataclass.py │ ├── fixtures │ │ ├── all_data.json │ │ ├── defaultvalues.json │ │ ├── propertytemplate.json │ │ ├── reagentmaterialtemplate.json │ │ ├── reagentmaterialvaluetemplate.json │ │ └── reagenttemplate.json │ ├── forms │ │ ├── __init__.py │ │ ├── custom_types.py │ │ ├── experiment.py │ │ ├── form_help_text.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── template_wizard.py │ │ └── wizard.py │ ├── management │ │ ├── commands │ │ │ ├── generate_descriptors.py │ │ │ ├── load_inventory.py │ │ │ ├── load_loadtables.py │ │ │ ├── load_neilson.py │ │ │ ├── load_organization.py │ │ │ ├── load_person.py │ │ │ ├── load_standard.py │ │ │ ├── load_systemtool.py │ │ │ └── setup_users.py │ │ └── utils │ │ │ ├── get_action.sql │ │ │ ├── get_action_unit.sql │ │ │ ├── get_base_bom_material.sql │ │ │ ├── get_calculation_def.sql │ │ │ ├── get_material.sql │ │ │ └── get_workflow.sql │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models │ │ ├── __init__.py │ │ ├── app_tables.py │ │ ├── base_classes │ │ │ ├── __init__.py │ │ │ ├── abstract_base_models.py │ │ │ └── organization_base_class.py │ │ ├── core_tables.py │ │ ├── custom_types.py │ │ ├── view_table_categories.md │ │ └── view_tables │ │ │ ├── __init__.py │ │ │ ├── actions.py │ │ │ ├── chemistry_data.py │ │ │ ├── descriptors.py │ │ │ ├── generic_data.py │ │ │ ├── organization.py │ │ │ └── workflow.py │ ├── signals.py │ ├── static │ │ ├── Escalate_B-04.png │ │ ├── avatar.png │ │ ├── css │ │ │ ├── app.34b94fa0.css │ │ │ ├── dropzone.css │ │ │ ├── material.css │ │ │ ├── material.css.map │ │ │ ├── material.min.css │ │ │ ├── material.min.css.map │ │ │ ├── table-style.css │ │ │ └── vue-flowchart.css │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── green_up_arrow.jpeg │ │ ├── js │ │ │ ├── dropzone.min.js │ │ │ ├── elsa │ │ │ │ ├── elsa-workflow-designer.esm.js │ │ │ │ ├── elsa-workflow-designer.js │ │ │ │ ├── index.esm.js │ │ │ │ ├── p-0ac323b1.entry.js │ │ │ │ ├── p-0ad0b6e8.js │ │ │ │ ├── p-115bf7e7.system.js │ │ │ │ ├── p-2dce866d.system.js │ │ │ │ ├── p-3d1015c2.js │ │ │ │ ├── p-483cd5c8.entry.js │ │ │ │ ├── p-5076f3cb.js │ │ │ │ ├── p-50ea2036.system.js │ │ │ │ ├── p-51bd23ae.entry.js │ │ │ │ ├── p-53d2bb4a.system.entry.js │ │ │ │ ├── p-5b90d4f8.entry.js │ │ │ │ ├── p-75076c56.system.js │ │ │ │ ├── p-890cab46.entry.js │ │ │ │ ├── p-89568ef3.system.entry.js │ │ │ │ ├── p-8ea4618f.system.entry.js │ │ │ │ ├── p-a5a09fce.system.js │ │ │ │ ├── p-c8bb9768.system.entry.js │ │ │ │ ├── p-d1ea5630.system.entry.js │ │ │ │ ├── p-d355c804.entry.js │ │ │ │ ├── p-f1e6bb7b.js │ │ │ │ ├── p-f2c8bd07.system.entry.js │ │ │ │ └── p-fb53799e.system.js │ │ │ └── material │ │ │ │ ├── material.js │ │ │ │ ├── material.js.map │ │ │ │ ├── material.min.js │ │ │ │ └── material.min.js.map │ │ ├── json │ │ │ ├── action_def_components.json │ │ │ ├── action_def_workflow.json │ │ │ ├── action_seq_workflow.json │ │ │ ├── http_components.json │ │ │ ├── http_workflow.json │ │ │ ├── mojito_components.json │ │ │ └── mojito_workflow.json │ │ ├── library │ │ │ ├── library.json │ │ │ ├── mojito.json │ │ │ ├── mojito_elsa.json │ │ │ ├── wf.json │ │ │ └── workflow.json │ │ ├── logo.png │ │ ├── main.css │ │ ├── red_down_arrow.jpeg │ │ └── three-dots.svg │ ├── templates │ │ └── core │ │ │ ├── accounts │ │ │ ├── change_password.html │ │ │ ├── create_user.html │ │ │ └── user_profile.html │ │ │ ├── action_template.html │ │ │ ├── base.html │ │ │ ├── create_user.html │ │ │ ├── experiment │ │ │ ├── create │ │ │ │ ├── done.html │ │ │ │ └── wizard.html │ │ │ ├── detail.html │ │ │ ├── list.html │ │ │ └── outcome_list.html │ │ │ ├── experiment_detail_editor.html │ │ │ ├── experiment_outcome.html │ │ │ ├── experiment_reagent_prep.html │ │ │ ├── forms │ │ │ └── table_widget.html │ │ │ ├── generic │ │ │ ├── add_tag.html │ │ │ ├── detail.html │ │ │ ├── edit.html │ │ │ ├── edit_note_tag.html │ │ │ └── list.html │ │ │ ├── login_page.html │ │ │ ├── main_menu.html │ │ │ ├── material_editor.html │ │ │ ├── parameter.html │ │ │ ├── parameter_editor.html │ │ │ └── select_lab.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── get_range.py │ │ ├── index.py │ │ └── toUnderscore.py │ ├── tests │ │ ├── basic_tests.py │ │ ├── conftest.py │ │ ├── experiment_tests.py │ │ └── user_tests.py │ ├── urls.py │ ├── utilities │ │ ├── __init__.py │ │ ├── calculations.py │ │ ├── descriptors │ │ │ ├── __init__.py │ │ │ ├── commands.py │ │ │ └── rdkit_generator.py │ │ ├── enumerativeSampling.py │ │ ├── experiment_utils.py │ │ ├── randomSampling.py │ │ ├── utils.py │ │ └── v2dataload.py │ ├── utils_no_dependencies │ │ ├── __init__.py │ │ ├── misc.py │ │ └── view_utils.py │ ├── validators.py │ ├── views │ │ ├── README.md │ │ ├── __init__.py │ │ ├── action_template.py │ │ ├── crud_view_methods │ │ │ ├── __init__.py │ │ │ ├── create_methods.py │ │ │ ├── delete_methods.py │ │ │ ├── detail_methods.py │ │ │ ├── list_methods.py │ │ │ ├── model_view_generic.py │ │ │ └── update_methods.py │ │ ├── crud_views.py │ │ ├── edocument.py │ │ ├── experiment │ │ │ ├── __init__.py │ │ │ ├── detail.py │ │ │ ├── edit.py │ │ │ ├── misc.py │ │ │ ├── outcome.py │ │ │ ├── prep_view.py │ │ │ ├── template_wizard.py │ │ │ └── wizard.py │ │ ├── export_views.py │ │ ├── exports │ │ │ ├── __init__.py │ │ │ ├── export_methods.py │ │ │ ├── file_types.py │ │ │ └── model_export_generic.py │ │ ├── function_views.py │ │ ├── login.py │ │ ├── menu.py │ │ ├── model_tag.py │ │ ├── note.py │ │ └── user_views.py │ └── widgets.py ├── docker-compose.yml ├── escalate │ ├── __init__.py │ ├── settings │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dev.py │ │ ├── local.py │ │ └── prod.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── plugins │ ├── __init__.py │ ├── postprocessing │ │ ├── __init__.py │ │ ├── base_post_processing_plugin.py │ │ └── conc_to_amount.py │ ├── robot │ │ ├── __init__.py │ │ ├── base_robot_plugin.py │ │ └── nimbus.py │ └── sampler │ │ ├── __init__.py │ │ ├── base_sampler_plugin.py │ │ ├── wf1_sampler.py │ │ └── wf3_sampler.py ├── pytest.ini ├── requirements.txt ├── requirements_developer.txt ├── rest_api │ ├── __init__.py │ ├── admin.py │ ├── api_experiment_templates │ │ ├── cocktail_setup.py │ │ ├── manual_script.py │ │ └── wf1_setup.py │ ├── apps.py │ ├── endpoint_details.py │ ├── filter_backend.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── rest_docs.py │ ├── serializers.py │ ├── templates │ │ └── rest_api │ │ │ └── documentation.html │ ├── test_requests.http │ ├── tests │ │ ├── README.md │ │ ├── basic_api_tests.py │ │ ├── conftest.py │ │ ├── model_tests │ │ │ ├── __init__.py │ │ │ ├── app_tables │ │ │ │ ├── __init__.py │ │ │ │ └── unittype.py │ │ │ ├── chemistry_data │ │ │ │ ├── __init__.py │ │ │ │ ├── inventory.py │ │ │ │ ├── inventorymaterial.py │ │ │ │ ├── material.py │ │ │ │ ├── material_identifier.py │ │ │ │ ├── material_identifier_def.py │ │ │ │ ├── material_type.py │ │ │ │ ├── mixture.py │ │ │ │ └── vessel.py │ │ │ ├── generic_data │ │ │ │ ├── __init__.py │ │ │ │ ├── calculation.py │ │ │ │ ├── parameter_def.py │ │ │ │ ├── property_def.py │ │ │ │ ├── status.py │ │ │ │ ├── tag.py │ │ │ │ ├── tagtype.py │ │ │ │ └── udfdef.py │ │ │ ├── model_tests_utils.py │ │ │ ├── organization │ │ │ │ ├── __init__.py │ │ │ │ ├── actor.py │ │ │ │ ├── organization.py │ │ │ │ ├── person.py │ │ │ │ ├── systemtool.py │ │ │ │ └── systemtooltype.py │ │ │ └── workflow │ │ │ │ ├── __init__.py │ │ │ │ ├── action.py │ │ │ │ ├── actiondef.py │ │ │ │ ├── actionunit.py │ │ │ │ ├── basebommaterial.py │ │ │ │ ├── billofmaterials.py │ │ │ │ ├── conditiondef.py │ │ │ │ ├── experiment.py │ │ │ │ ├── experimenttype.py │ │ │ │ └── outcome.py │ │ ├── post_data.py │ │ ├── post_put_delete_tests.py │ │ └── q_form_tests.py │ ├── urls.py │ ├── utilities │ │ └── google_sheets_integration.ipynb │ ├── utils │ │ ├── __init__.py │ │ ├── endpoint_definitions.py │ │ └── utils.py │ ├── views.py │ └── viewsets.py └── schema.yml ├── reference └── escalate.v1.yaml └── start.sh /.github/ISSUE_TEMPLATE/escalate-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/.github/ISSUE_TEMPLATE/escalate-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/escalate-development-sprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/.github/ISSUE_TEMPLATE/escalate-development-sprint.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/escalate-requirement-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/.github/ISSUE_TEMPLATE/escalate-requirement-specification.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/README.md -------------------------------------------------------------------------------- /UI User Guide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/UI User Guide.docx -------------------------------------------------------------------------------- /data_model/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/Dockerfile -------------------------------------------------------------------------------- /data_model/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/LICENSE.txt -------------------------------------------------------------------------------- /data_model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/README.md -------------------------------------------------------------------------------- /data_model/TECHNICAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/TECHNICAL.md -------------------------------------------------------------------------------- /data_model/backups/escalate_dev_create_backup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/backups/escalate_dev_create_backup.sql -------------------------------------------------------------------------------- /data_model/backups/escalate_dev_refresh_backup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/backups/escalate_dev_refresh_backup.sql -------------------------------------------------------------------------------- /data_model/backups/postprocess_create_sql.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/backups/postprocess_create_sql.awk -------------------------------------------------------------------------------- /data_model/backups/postprocess_refresh_sql.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/backups/postprocess_refresh_sql.awk -------------------------------------------------------------------------------- /data_model/backups/run_escalate_backups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/backups/run_escalate_backups.sh -------------------------------------------------------------------------------- /data_model/dataload_csv/Chemicals List.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/Chemicals List.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/MetalChalcogenideRxns.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/MetalChalcogenideRxns.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_action.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_action.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_action_def.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_action_def.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_action_unit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_action_unit.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_base_bom_material.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_base_bom_material.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_calculation_def.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_calculation_def.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_chem_inventory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_chem_inventory.txt -------------------------------------------------------------------------------- /data_model/dataload_csv/load_edocument.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_edocument.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_exp_json.csv: -------------------------------------------------------------------------------- 1 | exp_type uid exp_json add_dt 2 | -------------------------------------------------------------------------------- /data_model/dataload_csv/load_experiment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_experiment.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_hc_inventory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_hc_inventory.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_inventory_material.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_inventory_material.txt -------------------------------------------------------------------------------- /data_model/dataload_csv/load_lbl_inventory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_lbl_inventory.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_material.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_material.txt -------------------------------------------------------------------------------- /data_model/dataload_csv/load_material_identifier.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_material_identifier.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_opentrons_vessels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_opentrons_vessels.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_parameter_def.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_parameter_def.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_perov_desc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_perov_desc.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_perov_desc_def.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_perov_desc_def.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_perov_mol_image.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_perov_mol_image.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_v2_bromides.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_v2_bromides.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_v2_iodides.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_v2_iodides.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_v2_wf3_alloying.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_v2_wf3_alloying.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_v2_wf3_iodides.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_v2_wf3_iodides.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_vessel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_vessel.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/load_workflow.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/load_workflow.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/old_dev_schema_materials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/old_dev_schema_materials.csv -------------------------------------------------------------------------------- /data_model/dataload_csv/type_command.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dataload_csv/type_command.csv -------------------------------------------------------------------------------- /data_model/demo_exp_spec.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/demo_exp_spec.sql -------------------------------------------------------------------------------- /data_model/dev_exp_spec.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/dev_exp_spec.sql -------------------------------------------------------------------------------- /data_model/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/docker-compose.yml -------------------------------------------------------------------------------- /data_model/docker_cmds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/docker_cmds.sh -------------------------------------------------------------------------------- /data_model/docker_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/docker_entrypoint.sh -------------------------------------------------------------------------------- /data_model/erd_diagrams/escalate_erd_physicalmodel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/erd_diagrams/escalate_erd_physicalmodel.pdf -------------------------------------------------------------------------------- /data_model/erd_diagrams/escalate_erd_physicalmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/erd_diagrams/escalate_erd_physicalmodel.png -------------------------------------------------------------------------------- /data_model/erd_diagrams/escalatev3_schema_highlevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/erd_diagrams/escalatev3_schema_highlevel.png -------------------------------------------------------------------------------- /data_model/erd_diagrams/note_viewmodel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/erd_diagrams/note_viewmodel.pdf -------------------------------------------------------------------------------- /data_model/erd_diagrams/note_viewmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/erd_diagrams/note_viewmodel.png -------------------------------------------------------------------------------- /data_model/erd_diagrams/tag_assign_viewmodel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/erd_diagrams/tag_assign_viewmodel.pdf -------------------------------------------------------------------------------- /data_model/erd_diagrams/tag_assign_viewmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/erd_diagrams/tag_assign_viewmodel.png -------------------------------------------------------------------------------- /data_model/erd_diagrams/tag_manage_viewmodel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/erd_diagrams/tag_manage_viewmodel.pdf -------------------------------------------------------------------------------- /data_model/erd_diagrams/tag_manage_viewmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/erd_diagrams/tag_manage_viewmodel.png -------------------------------------------------------------------------------- /data_model/erd_diagrams/udf_view_model_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/erd_diagrams/udf_view_model_1.pdf -------------------------------------------------------------------------------- /data_model/erd_diagrams/udf_view_model_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/erd_diagrams/udf_view_model_1.png -------------------------------------------------------------------------------- /data_model/erd_diagrams/udf_view_model_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/erd_diagrams/udf_view_model_2.pdf -------------------------------------------------------------------------------- /data_model/erd_diagrams/udf_view_model_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/erd_diagrams/udf_view_model_2.png -------------------------------------------------------------------------------- /data_model/images/Escalate_B-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/images/Escalate_B-04.png -------------------------------------------------------------------------------- /data_model/images/docker_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/images/docker_logo.png -------------------------------------------------------------------------------- /data_model/images/pgadmin_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/images/pgadmin_logo.png -------------------------------------------------------------------------------- /data_model/images/postgresql_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/images/postgresql_logo.png -------------------------------------------------------------------------------- /data_model/prod_etl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/prod_etl.sql -------------------------------------------------------------------------------- /data_model/sql_core/prod_etl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_core/prod_etl.sql -------------------------------------------------------------------------------- /data_model/sql_core/prod_functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_core/prod_functions.sql -------------------------------------------------------------------------------- /data_model/sql_core/prod_initialize_coretables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_core/prod_initialize_coretables.sql -------------------------------------------------------------------------------- /data_model/sql_core/prod_initialize_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_core/prod_initialize_db.sql -------------------------------------------------------------------------------- /data_model/sql_core/prod_recreate_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_core/prod_recreate_db.sql -------------------------------------------------------------------------------- /data_model/sql_core/prod_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_core/prod_tables.sql -------------------------------------------------------------------------------- /data_model/sql_core/prod_upserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_core/prod_upserts.sql -------------------------------------------------------------------------------- /data_model/sql_core/prod_views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_core/prod_views.sql -------------------------------------------------------------------------------- /data_model/sql_core/rebuild_schema_dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_core/rebuild_schema_dev.sh -------------------------------------------------------------------------------- /data_model/sql_core/table_comment_gen.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_core/table_comment_gen.awk -------------------------------------------------------------------------------- /data_model/sql_dataload/postprocess_sql.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_dataload/postprocess_sql.awk -------------------------------------------------------------------------------- /data_model/sql_dataload/pro_dataload_v2_wf3_alloying.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_dataload/pro_dataload_v2_wf3_alloying.sql -------------------------------------------------------------------------------- /data_model/sql_dataload/prod_dataload_chem_inventory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_dataload/prod_dataload_chem_inventory.sql -------------------------------------------------------------------------------- /data_model/sql_dataload/prod_dataload_edocument.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_dataload/prod_dataload_edocument.sql -------------------------------------------------------------------------------- /data_model/sql_dataload/prod_dataload_hc_inventory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_dataload/prod_dataload_hc_inventory.sql -------------------------------------------------------------------------------- /data_model/sql_dataload/prod_dataload_lbl_inventory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_dataload/prod_dataload_lbl_inventory.sql -------------------------------------------------------------------------------- /data_model/sql_dataload/prod_dataload_perov_desc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_dataload/prod_dataload_perov_desc.sql -------------------------------------------------------------------------------- /data_model/sql_dataload/prod_dataload_perov_desc_def.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_dataload/prod_dataload_perov_desc_def.sql -------------------------------------------------------------------------------- /data_model/sql_dataload/prod_dataload_perov_mol_image.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_dataload/prod_dataload_perov_mol_image.sql -------------------------------------------------------------------------------- /data_model/sql_dataload/prod_dataload_v2_bromides.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_dataload/prod_dataload_v2_bromides.sql -------------------------------------------------------------------------------- /data_model/sql_dataload/prod_dataload_v2_iodides.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_dataload/prod_dataload_v2_iodides.sql -------------------------------------------------------------------------------- /data_model/sql_dataload/prod_dataload_v2_wf3_iodides.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_dataload/prod_dataload_v2_wf3_iodides.sql -------------------------------------------------------------------------------- /data_model/sql_dataload/prod_escalate_change_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_dataload/prod_escalate_change_log.sql -------------------------------------------------------------------------------- /data_model/sql_dataload/prod_escalate_version.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_dataload/prod_escalate_version.sql -------------------------------------------------------------------------------- /data_model/sql_demo_data/dev_cocktail.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_demo_data/dev_cocktail.sql -------------------------------------------------------------------------------- /data_model/sql_demo_data/dev_sep_actions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_demo_data/dev_sep_actions.sql -------------------------------------------------------------------------------- /data_model/sql_demo_data/dev_sep_materials.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_demo_data/dev_sep_materials.sql -------------------------------------------------------------------------------- /data_model/sql_demo_data/dev_sep_resin_weigh.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_demo_data/dev_sep_resin_weigh.sql -------------------------------------------------------------------------------- /data_model/sql_demo_data/dev_sep_wf_liq_sol.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_demo_data/dev_sep_wf_liq_sol.sql -------------------------------------------------------------------------------- /data_model/sql_demo_data/hc_create_wf1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_demo_data/hc_create_wf1.sql -------------------------------------------------------------------------------- /data_model/sql_demo_data/hc_create_wf1_take2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_demo_data/hc_create_wf1_take2.sql -------------------------------------------------------------------------------- /data_model/sql_demo_data/hc_load_1_material.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_demo_data/hc_load_1_material.sql -------------------------------------------------------------------------------- /data_model/sql_demo_data/hc_load_2_inverntory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_demo_data/hc_load_2_inverntory.sql -------------------------------------------------------------------------------- /data_model/sql_demo_data/hc_load_3_calculation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_demo_data/hc_load_3_calculation.sql -------------------------------------------------------------------------------- /data_model/sql_test/action_parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_test/action_parameter.json -------------------------------------------------------------------------------- /data_model/sql_test/action_parameter_def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_test/action_parameter_def.json -------------------------------------------------------------------------------- /data_model/sql_test/condition_calculation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_test/condition_calculation.json -------------------------------------------------------------------------------- /data_model/sql_test/experiment_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_test/experiment_workflow.json -------------------------------------------------------------------------------- /data_model/sql_test/experiment_workflow_step.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_test/experiment_workflow_step.json -------------------------------------------------------------------------------- /data_model/sql_test/experiment_workflow_step_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_test/experiment_workflow_step_object.json -------------------------------------------------------------------------------- /data_model/sql_test/pg_prove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_test/pg_prove -------------------------------------------------------------------------------- /data_model/sql_test/pgtap_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_test/pgtap_test.sql -------------------------------------------------------------------------------- /data_model/sql_test/test_functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_test/test_functions.sql -------------------------------------------------------------------------------- /data_model/sql_test/workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_test/workflow.json -------------------------------------------------------------------------------- /data_model/sql_test/workflow_step.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_test/workflow_step.json -------------------------------------------------------------------------------- /data_model/sql_test/workflow_step_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/sql_test/workflow_step_object.json -------------------------------------------------------------------------------- /data_model/tests/hello.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/tests/hello.sql -------------------------------------------------------------------------------- /data_model/tests/test_upserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/data_model/tests/test_upserts.sql -------------------------------------------------------------------------------- /demonstrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/demonstrations/README.md -------------------------------------------------------------------------------- /demonstrations/REST_API_DEMO.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/demonstrations/REST_API_DEMO.ipynb -------------------------------------------------------------------------------- /demonstrations/WF1_setup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/demonstrations/WF1_setup.ipynb -------------------------------------------------------------------------------- /demonstrations/prototypes/demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/demonstrations/prototypes/demo.ipynb -------------------------------------------------------------------------------- /demonstrations/prototypes/demo_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/demonstrations/prototypes/demo_classes.py -------------------------------------------------------------------------------- /demonstrations/prototypes/nicole_prototype.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/demonstrations/prototypes/nicole_prototype.ipynb -------------------------------------------------------------------------------- /escalate/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/.env.dev -------------------------------------------------------------------------------- /escalate/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/Dockerfile -------------------------------------------------------------------------------- /escalate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/README.md -------------------------------------------------------------------------------- /escalate/TECHNICAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/TECHNICAL.md -------------------------------------------------------------------------------- /escalate/VERSION.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/VERSION.py -------------------------------------------------------------------------------- /escalate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /escalate/api_test.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/api_test.http -------------------------------------------------------------------------------- /escalate/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/boot.sh -------------------------------------------------------------------------------- /escalate/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/build.sh -------------------------------------------------------------------------------- /escalate/build_django_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/build_django_db.sh -------------------------------------------------------------------------------- /escalate/build_fixture_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/build_fixture_db.sh -------------------------------------------------------------------------------- /escalate/conda_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/conda_environment.yml -------------------------------------------------------------------------------- /escalate/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/__init__.py -------------------------------------------------------------------------------- /escalate/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/admin.py -------------------------------------------------------------------------------- /escalate/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/apps.py -------------------------------------------------------------------------------- /escalate/core/cached_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/cached_queries.py -------------------------------------------------------------------------------- /escalate/core/custom_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/custom_types.py -------------------------------------------------------------------------------- /escalate/core/dataclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/dataclass.py -------------------------------------------------------------------------------- /escalate/core/fixtures/all_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/fixtures/all_data.json -------------------------------------------------------------------------------- /escalate/core/fixtures/defaultvalues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/fixtures/defaultvalues.json -------------------------------------------------------------------------------- /escalate/core/fixtures/propertytemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/fixtures/propertytemplate.json -------------------------------------------------------------------------------- /escalate/core/fixtures/reagentmaterialtemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/fixtures/reagentmaterialtemplate.json -------------------------------------------------------------------------------- /escalate/core/fixtures/reagentmaterialvaluetemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/fixtures/reagentmaterialvaluetemplate.json -------------------------------------------------------------------------------- /escalate/core/fixtures/reagenttemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/fixtures/reagenttemplate.json -------------------------------------------------------------------------------- /escalate/core/forms/__init__.py: -------------------------------------------------------------------------------- 1 | # from .forms import * 2 | -------------------------------------------------------------------------------- /escalate/core/forms/custom_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/forms/custom_types.py -------------------------------------------------------------------------------- /escalate/core/forms/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/forms/experiment.py -------------------------------------------------------------------------------- /escalate/core/forms/form_help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/forms/form_help_text.py -------------------------------------------------------------------------------- /escalate/core/forms/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/forms/forms.py -------------------------------------------------------------------------------- /escalate/core/forms/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/forms/models.py -------------------------------------------------------------------------------- /escalate/core/forms/template_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/forms/template_wizard.py -------------------------------------------------------------------------------- /escalate/core/forms/wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/forms/wizard.py -------------------------------------------------------------------------------- /escalate/core/management/commands/generate_descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/commands/generate_descriptors.py -------------------------------------------------------------------------------- /escalate/core/management/commands/load_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/commands/load_inventory.py -------------------------------------------------------------------------------- /escalate/core/management/commands/load_loadtables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/commands/load_loadtables.py -------------------------------------------------------------------------------- /escalate/core/management/commands/load_neilson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/commands/load_neilson.py -------------------------------------------------------------------------------- /escalate/core/management/commands/load_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/commands/load_organization.py -------------------------------------------------------------------------------- /escalate/core/management/commands/load_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/commands/load_person.py -------------------------------------------------------------------------------- /escalate/core/management/commands/load_standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/commands/load_standard.py -------------------------------------------------------------------------------- /escalate/core/management/commands/load_systemtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/commands/load_systemtool.py -------------------------------------------------------------------------------- /escalate/core/management/commands/setup_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/commands/setup_users.py -------------------------------------------------------------------------------- /escalate/core/management/utils/get_action.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/utils/get_action.sql -------------------------------------------------------------------------------- /escalate/core/management/utils/get_action_unit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/utils/get_action_unit.sql -------------------------------------------------------------------------------- /escalate/core/management/utils/get_base_bom_material.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/utils/get_base_bom_material.sql -------------------------------------------------------------------------------- /escalate/core/management/utils/get_calculation_def.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/utils/get_calculation_def.sql -------------------------------------------------------------------------------- /escalate/core/management/utils/get_material.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/utils/get_material.sql -------------------------------------------------------------------------------- /escalate/core/management/utils/get_workflow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/management/utils/get_workflow.sql -------------------------------------------------------------------------------- /escalate/core/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/managers.py -------------------------------------------------------------------------------- /escalate/core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /escalate/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /escalate/core/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/__init__.py -------------------------------------------------------------------------------- /escalate/core/models/app_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/app_tables.py -------------------------------------------------------------------------------- /escalate/core/models/base_classes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/base_classes/__init__.py -------------------------------------------------------------------------------- /escalate/core/models/base_classes/abstract_base_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/base_classes/abstract_base_models.py -------------------------------------------------------------------------------- /escalate/core/models/base_classes/organization_base_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/base_classes/organization_base_class.py -------------------------------------------------------------------------------- /escalate/core/models/core_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/core_tables.py -------------------------------------------------------------------------------- /escalate/core/models/custom_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/custom_types.py -------------------------------------------------------------------------------- /escalate/core/models/view_table_categories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/view_table_categories.md -------------------------------------------------------------------------------- /escalate/core/models/view_tables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/view_tables/__init__.py -------------------------------------------------------------------------------- /escalate/core/models/view_tables/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/view_tables/actions.py -------------------------------------------------------------------------------- /escalate/core/models/view_tables/chemistry_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/view_tables/chemistry_data.py -------------------------------------------------------------------------------- /escalate/core/models/view_tables/descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/view_tables/descriptors.py -------------------------------------------------------------------------------- /escalate/core/models/view_tables/generic_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/view_tables/generic_data.py -------------------------------------------------------------------------------- /escalate/core/models/view_tables/organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/view_tables/organization.py -------------------------------------------------------------------------------- /escalate/core/models/view_tables/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/models/view_tables/workflow.py -------------------------------------------------------------------------------- /escalate/core/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/signals.py -------------------------------------------------------------------------------- /escalate/core/static/Escalate_B-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/Escalate_B-04.png -------------------------------------------------------------------------------- /escalate/core/static/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/avatar.png -------------------------------------------------------------------------------- /escalate/core/static/css/app.34b94fa0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/css/app.34b94fa0.css -------------------------------------------------------------------------------- /escalate/core/static/css/dropzone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/css/dropzone.css -------------------------------------------------------------------------------- /escalate/core/static/css/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/css/material.css -------------------------------------------------------------------------------- /escalate/core/static/css/material.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/css/material.css.map -------------------------------------------------------------------------------- /escalate/core/static/css/material.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/css/material.min.css -------------------------------------------------------------------------------- /escalate/core/static/css/material.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/css/material.min.css.map -------------------------------------------------------------------------------- /escalate/core/static/css/table-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/css/table-style.css -------------------------------------------------------------------------------- /escalate/core/static/css/vue-flowchart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/css/vue-flowchart.css -------------------------------------------------------------------------------- /escalate/core/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/favicon.ico -------------------------------------------------------------------------------- /escalate/core/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/favicon.png -------------------------------------------------------------------------------- /escalate/core/static/green_up_arrow.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/green_up_arrow.jpeg -------------------------------------------------------------------------------- /escalate/core/static/js/dropzone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/dropzone.min.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/elsa-workflow-designer.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/elsa-workflow-designer.esm.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/elsa-workflow-designer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/elsa-workflow-designer.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/index.esm.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-0ac323b1.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-0ac323b1.entry.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-0ad0b6e8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-0ad0b6e8.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-115bf7e7.system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-115bf7e7.system.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-2dce866d.system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-2dce866d.system.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-3d1015c2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-3d1015c2.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-483cd5c8.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-483cd5c8.entry.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-5076f3cb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-5076f3cb.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-50ea2036.system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-50ea2036.system.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-51bd23ae.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-51bd23ae.entry.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-53d2bb4a.system.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-53d2bb4a.system.entry.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-5b90d4f8.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-5b90d4f8.entry.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-75076c56.system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-75076c56.system.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-890cab46.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-890cab46.entry.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-89568ef3.system.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-89568ef3.system.entry.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-8ea4618f.system.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-8ea4618f.system.entry.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-a5a09fce.system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-a5a09fce.system.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-c8bb9768.system.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-c8bb9768.system.entry.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-d1ea5630.system.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-d1ea5630.system.entry.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-d355c804.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-d355c804.entry.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-f1e6bb7b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-f1e6bb7b.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-f2c8bd07.system.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-f2c8bd07.system.entry.js -------------------------------------------------------------------------------- /escalate/core/static/js/elsa/p-fb53799e.system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/elsa/p-fb53799e.system.js -------------------------------------------------------------------------------- /escalate/core/static/js/material/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/material/material.js -------------------------------------------------------------------------------- /escalate/core/static/js/material/material.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/material/material.js.map -------------------------------------------------------------------------------- /escalate/core/static/js/material/material.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/material/material.min.js -------------------------------------------------------------------------------- /escalate/core/static/js/material/material.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/js/material/material.min.js.map -------------------------------------------------------------------------------- /escalate/core/static/json/action_def_components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/json/action_def_components.json -------------------------------------------------------------------------------- /escalate/core/static/json/action_def_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/json/action_def_workflow.json -------------------------------------------------------------------------------- /escalate/core/static/json/action_seq_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/json/action_seq_workflow.json -------------------------------------------------------------------------------- /escalate/core/static/json/http_components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/json/http_components.json -------------------------------------------------------------------------------- /escalate/core/static/json/http_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/json/http_workflow.json -------------------------------------------------------------------------------- /escalate/core/static/json/mojito_components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/json/mojito_components.json -------------------------------------------------------------------------------- /escalate/core/static/json/mojito_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/json/mojito_workflow.json -------------------------------------------------------------------------------- /escalate/core/static/library/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/library/library.json -------------------------------------------------------------------------------- /escalate/core/static/library/mojito.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/library/mojito.json -------------------------------------------------------------------------------- /escalate/core/static/library/mojito_elsa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/library/mojito_elsa.json -------------------------------------------------------------------------------- /escalate/core/static/library/wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/library/wf.json -------------------------------------------------------------------------------- /escalate/core/static/library/workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/library/workflow.json -------------------------------------------------------------------------------- /escalate/core/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/logo.png -------------------------------------------------------------------------------- /escalate/core/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/main.css -------------------------------------------------------------------------------- /escalate/core/static/red_down_arrow.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/red_down_arrow.jpeg -------------------------------------------------------------------------------- /escalate/core/static/three-dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/static/three-dots.svg -------------------------------------------------------------------------------- /escalate/core/templates/core/accounts/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/accounts/change_password.html -------------------------------------------------------------------------------- /escalate/core/templates/core/accounts/create_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/accounts/create_user.html -------------------------------------------------------------------------------- /escalate/core/templates/core/accounts/user_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/accounts/user_profile.html -------------------------------------------------------------------------------- /escalate/core/templates/core/action_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/action_template.html -------------------------------------------------------------------------------- /escalate/core/templates/core/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/base.html -------------------------------------------------------------------------------- /escalate/core/templates/core/create_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/create_user.html -------------------------------------------------------------------------------- /escalate/core/templates/core/experiment/create/done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/experiment/create/done.html -------------------------------------------------------------------------------- /escalate/core/templates/core/experiment/create/wizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/experiment/create/wizard.html -------------------------------------------------------------------------------- /escalate/core/templates/core/experiment/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/experiment/detail.html -------------------------------------------------------------------------------- /escalate/core/templates/core/experiment/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/experiment/list.html -------------------------------------------------------------------------------- /escalate/core/templates/core/experiment/outcome_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/experiment/outcome_list.html -------------------------------------------------------------------------------- /escalate/core/templates/core/experiment_detail_editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/experiment_detail_editor.html -------------------------------------------------------------------------------- /escalate/core/templates/core/experiment_outcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/experiment_outcome.html -------------------------------------------------------------------------------- /escalate/core/templates/core/experiment_reagent_prep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/experiment_reagent_prep.html -------------------------------------------------------------------------------- /escalate/core/templates/core/forms/table_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/forms/table_widget.html -------------------------------------------------------------------------------- /escalate/core/templates/core/generic/add_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/generic/add_tag.html -------------------------------------------------------------------------------- /escalate/core/templates/core/generic/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/generic/detail.html -------------------------------------------------------------------------------- /escalate/core/templates/core/generic/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/generic/edit.html -------------------------------------------------------------------------------- /escalate/core/templates/core/generic/edit_note_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/generic/edit_note_tag.html -------------------------------------------------------------------------------- /escalate/core/templates/core/generic/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/generic/list.html -------------------------------------------------------------------------------- /escalate/core/templates/core/login_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/login_page.html -------------------------------------------------------------------------------- /escalate/core/templates/core/main_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/main_menu.html -------------------------------------------------------------------------------- /escalate/core/templates/core/material_editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/material_editor.html -------------------------------------------------------------------------------- /escalate/core/templates/core/parameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/parameter.html -------------------------------------------------------------------------------- /escalate/core/templates/core/parameter_editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/parameter_editor.html -------------------------------------------------------------------------------- /escalate/core/templates/core/select_lab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templates/core/select_lab.html -------------------------------------------------------------------------------- /escalate/core/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /escalate/core/templatetags/get_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templatetags/get_range.py -------------------------------------------------------------------------------- /escalate/core/templatetags/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templatetags/index.py -------------------------------------------------------------------------------- /escalate/core/templatetags/toUnderscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/templatetags/toUnderscore.py -------------------------------------------------------------------------------- /escalate/core/tests/basic_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/tests/basic_tests.py -------------------------------------------------------------------------------- /escalate/core/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/tests/conftest.py -------------------------------------------------------------------------------- /escalate/core/tests/experiment_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/tests/experiment_tests.py -------------------------------------------------------------------------------- /escalate/core/tests/user_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/tests/user_tests.py -------------------------------------------------------------------------------- /escalate/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/urls.py -------------------------------------------------------------------------------- /escalate/core/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/utilities/__init__.py -------------------------------------------------------------------------------- /escalate/core/utilities/calculations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/utilities/calculations.py -------------------------------------------------------------------------------- /escalate/core/utilities/descriptors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /escalate/core/utilities/descriptors/commands.py: -------------------------------------------------------------------------------- 1 | # def get_command_dict() 2 | -------------------------------------------------------------------------------- /escalate/core/utilities/descriptors/rdkit_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/utilities/descriptors/rdkit_generator.py -------------------------------------------------------------------------------- /escalate/core/utilities/enumerativeSampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/utilities/enumerativeSampling.py -------------------------------------------------------------------------------- /escalate/core/utilities/experiment_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/utilities/experiment_utils.py -------------------------------------------------------------------------------- /escalate/core/utilities/randomSampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/utilities/randomSampling.py -------------------------------------------------------------------------------- /escalate/core/utilities/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/utilities/utils.py -------------------------------------------------------------------------------- /escalate/core/utilities/v2dataload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/utilities/v2dataload.py -------------------------------------------------------------------------------- /escalate/core/utils_no_dependencies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/utils_no_dependencies/__init__.py -------------------------------------------------------------------------------- /escalate/core/utils_no_dependencies/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/utils_no_dependencies/misc.py -------------------------------------------------------------------------------- /escalate/core/utils_no_dependencies/view_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/utils_no_dependencies/view_utils.py -------------------------------------------------------------------------------- /escalate/core/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/validators.py -------------------------------------------------------------------------------- /escalate/core/views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/README.md -------------------------------------------------------------------------------- /escalate/core/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/__init__.py -------------------------------------------------------------------------------- /escalate/core/views/action_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/action_template.py -------------------------------------------------------------------------------- /escalate/core/views/crud_view_methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /escalate/core/views/crud_view_methods/create_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/crud_view_methods/create_methods.py -------------------------------------------------------------------------------- /escalate/core/views/crud_view_methods/delete_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/crud_view_methods/delete_methods.py -------------------------------------------------------------------------------- /escalate/core/views/crud_view_methods/detail_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/crud_view_methods/detail_methods.py -------------------------------------------------------------------------------- /escalate/core/views/crud_view_methods/list_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/crud_view_methods/list_methods.py -------------------------------------------------------------------------------- /escalate/core/views/crud_view_methods/model_view_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/crud_view_methods/model_view_generic.py -------------------------------------------------------------------------------- /escalate/core/views/crud_view_methods/update_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/crud_view_methods/update_methods.py -------------------------------------------------------------------------------- /escalate/core/views/crud_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/crud_views.py -------------------------------------------------------------------------------- /escalate/core/views/edocument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/edocument.py -------------------------------------------------------------------------------- /escalate/core/views/experiment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/experiment/__init__.py -------------------------------------------------------------------------------- /escalate/core/views/experiment/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/experiment/detail.py -------------------------------------------------------------------------------- /escalate/core/views/experiment/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/experiment/edit.py -------------------------------------------------------------------------------- /escalate/core/views/experiment/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/experiment/misc.py -------------------------------------------------------------------------------- /escalate/core/views/experiment/outcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/experiment/outcome.py -------------------------------------------------------------------------------- /escalate/core/views/experiment/prep_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/experiment/prep_view.py -------------------------------------------------------------------------------- /escalate/core/views/experiment/template_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/experiment/template_wizard.py -------------------------------------------------------------------------------- /escalate/core/views/experiment/wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/experiment/wizard.py -------------------------------------------------------------------------------- /escalate/core/views/export_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/export_views.py -------------------------------------------------------------------------------- /escalate/core/views/exports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /escalate/core/views/exports/export_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/exports/export_methods.py -------------------------------------------------------------------------------- /escalate/core/views/exports/file_types.py: -------------------------------------------------------------------------------- 1 | file_types = ["csv"] 2 | -------------------------------------------------------------------------------- /escalate/core/views/exports/model_export_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/exports/model_export_generic.py -------------------------------------------------------------------------------- /escalate/core/views/function_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/function_views.py -------------------------------------------------------------------------------- /escalate/core/views/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/login.py -------------------------------------------------------------------------------- /escalate/core/views/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/menu.py -------------------------------------------------------------------------------- /escalate/core/views/model_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/model_tag.py -------------------------------------------------------------------------------- /escalate/core/views/note.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /escalate/core/views/user_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/views/user_views.py -------------------------------------------------------------------------------- /escalate/core/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/core/widgets.py -------------------------------------------------------------------------------- /escalate/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/docker-compose.yml -------------------------------------------------------------------------------- /escalate/escalate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /escalate/escalate/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /escalate/escalate/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/escalate/settings/base.py -------------------------------------------------------------------------------- /escalate/escalate/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/escalate/settings/dev.py -------------------------------------------------------------------------------- /escalate/escalate/settings/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/escalate/settings/local.py -------------------------------------------------------------------------------- /escalate/escalate/settings/prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/escalate/settings/prod.py -------------------------------------------------------------------------------- /escalate/escalate/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/escalate/urls.py -------------------------------------------------------------------------------- /escalate/escalate/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/escalate/wsgi.py -------------------------------------------------------------------------------- /escalate/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/manage.py -------------------------------------------------------------------------------- /escalate/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /escalate/plugins/postprocessing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/plugins/postprocessing/__init__.py -------------------------------------------------------------------------------- /escalate/plugins/postprocessing/base_post_processing_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/plugins/postprocessing/base_post_processing_plugin.py -------------------------------------------------------------------------------- /escalate/plugins/postprocessing/conc_to_amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/plugins/postprocessing/conc_to_amount.py -------------------------------------------------------------------------------- /escalate/plugins/robot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/plugins/robot/__init__.py -------------------------------------------------------------------------------- /escalate/plugins/robot/base_robot_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/plugins/robot/base_robot_plugin.py -------------------------------------------------------------------------------- /escalate/plugins/robot/nimbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/plugins/robot/nimbus.py -------------------------------------------------------------------------------- /escalate/plugins/sampler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/plugins/sampler/__init__.py -------------------------------------------------------------------------------- /escalate/plugins/sampler/base_sampler_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/plugins/sampler/base_sampler_plugin.py -------------------------------------------------------------------------------- /escalate/plugins/sampler/wf1_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/plugins/sampler/wf1_sampler.py -------------------------------------------------------------------------------- /escalate/plugins/sampler/wf3_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/plugins/sampler/wf3_sampler.py -------------------------------------------------------------------------------- /escalate/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/pytest.ini -------------------------------------------------------------------------------- /escalate/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/requirements.txt -------------------------------------------------------------------------------- /escalate/requirements_developer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/requirements_developer.txt -------------------------------------------------------------------------------- /escalate/rest_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /escalate/rest_api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/admin.py -------------------------------------------------------------------------------- /escalate/rest_api/api_experiment_templates/cocktail_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/api_experiment_templates/cocktail_setup.py -------------------------------------------------------------------------------- /escalate/rest_api/api_experiment_templates/manual_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/api_experiment_templates/manual_script.py -------------------------------------------------------------------------------- /escalate/rest_api/api_experiment_templates/wf1_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/api_experiment_templates/wf1_setup.py -------------------------------------------------------------------------------- /escalate/rest_api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/apps.py -------------------------------------------------------------------------------- /escalate/rest_api/endpoint_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/endpoint_details.py -------------------------------------------------------------------------------- /escalate/rest_api/filter_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/filter_backend.py -------------------------------------------------------------------------------- /escalate/rest_api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /escalate/rest_api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/models.py -------------------------------------------------------------------------------- /escalate/rest_api/rest_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/rest_docs.py -------------------------------------------------------------------------------- /escalate/rest_api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/serializers.py -------------------------------------------------------------------------------- /escalate/rest_api/templates/rest_api/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/templates/rest_api/documentation.html -------------------------------------------------------------------------------- /escalate/rest_api/test_requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/test_requests.http -------------------------------------------------------------------------------- /escalate/rest_api/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/README.md -------------------------------------------------------------------------------- /escalate/rest_api/tests/basic_api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/basic_api_tests.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/conftest.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/__init__.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/app_tables/__init__.py: -------------------------------------------------------------------------------- 1 | from .unittype import * 2 | -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/app_tables/unittype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/app_tables/unittype.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/chemistry_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/chemistry_data/__init__.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/chemistry_data/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/chemistry_data/inventory.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/chemistry_data/inventorymaterial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/chemistry_data/inventorymaterial.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/chemistry_data/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/chemistry_data/material.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/chemistry_data/material_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/chemistry_data/material_identifier.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/chemistry_data/material_identifier_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/chemistry_data/material_identifier_def.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/chemistry_data/material_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/chemistry_data/material_type.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/chemistry_data/mixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/chemistry_data/mixture.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/chemistry_data/vessel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/chemistry_data/vessel.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/generic_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/generic_data/__init__.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/generic_data/calculation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/generic_data/calculation.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/generic_data/parameter_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/generic_data/parameter_def.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/generic_data/property_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/generic_data/property_def.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/generic_data/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/generic_data/status.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/generic_data/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/generic_data/tag.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/generic_data/tagtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/generic_data/tagtype.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/generic_data/udfdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/generic_data/udfdef.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/model_tests_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/model_tests_utils.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/organization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/organization/__init__.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/organization/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/organization/actor.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/organization/organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/organization/organization.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/organization/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/organization/person.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/organization/systemtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/organization/systemtool.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/organization/systemtooltype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/organization/systemtooltype.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/workflow/__init__.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/workflow/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/workflow/action.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/workflow/actiondef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/workflow/actiondef.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/workflow/actionunit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/workflow/actionunit.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/workflow/basebommaterial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/workflow/basebommaterial.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/workflow/billofmaterials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/workflow/billofmaterials.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/workflow/conditiondef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/workflow/conditiondef.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/workflow/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/workflow/experiment.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/workflow/experimenttype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/workflow/experimenttype.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/model_tests/workflow/outcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/model_tests/workflow/outcome.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/post_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/post_data.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/post_put_delete_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/post_put_delete_tests.py -------------------------------------------------------------------------------- /escalate/rest_api/tests/q_form_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/tests/q_form_tests.py -------------------------------------------------------------------------------- /escalate/rest_api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/urls.py -------------------------------------------------------------------------------- /escalate/rest_api/utilities/google_sheets_integration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/utilities/google_sheets_integration.ipynb -------------------------------------------------------------------------------- /escalate/rest_api/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import * -------------------------------------------------------------------------------- /escalate/rest_api/utils/endpoint_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/utils/endpoint_definitions.py -------------------------------------------------------------------------------- /escalate/rest_api/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/utils/utils.py -------------------------------------------------------------------------------- /escalate/rest_api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/views.py -------------------------------------------------------------------------------- /escalate/rest_api/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/rest_api/viewsets.py -------------------------------------------------------------------------------- /escalate/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/escalate/schema.yml -------------------------------------------------------------------------------- /reference/escalate.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/reference/escalate.v1.yaml -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkreactions/ESCALATE/HEAD/start.sh --------------------------------------------------------------------------------