├── .gitattributes ├── .github └── workflows │ ├── build_sphinx.yaml │ ├── publish.yaml │ ├── pytest.yaml │ └── ruff.yaml ├── .gitignore ├── CITATION.cff ├── LICENSE ├── README.md ├── dataset ├── README.md ├── binary_reactions │ ├── 2Fe3O4-3Y2O3_1000C_60min.xrdml │ ├── 2FeC2O4(H2O)2-Y2O3_200C_60min.xrdml │ ├── Bi2O3-2MoO3_400C_60min.xrdml │ ├── Bi2O3-Nb2O5_500C_60min.xrdml │ ├── Bi2O3-V2O5_400C_60min.xrdml │ ├── CaCO3-NH4H2PO4_200C_60min.xrdml │ ├── CoO-WO3_900C_60min.xrdml │ ├── CoO-ZnO_1100C_60min.xrdml │ ├── Cr2O3-2MnO_1100C_60min.xrdml │ ├── Cr2O3-2PbO_500C_60min.xrdml │ ├── Cr2O3-2ZnO_1100C_60min.xrdml │ ├── Cr2O3-V2O5_400C_60min.xrdml │ ├── CuO-MnO_800C_60min.xrdml │ ├── Fe2O3-2TiO2_1000C_60min.xrdml │ ├── Fe2O3-Nb2O5_900C_60min.xrdml │ ├── Fe3O4-3SrCO3_900C_60min.xrdml │ ├── Fe3O4-3ZnO_1000C_60min.xrdml │ ├── GeO2-ZnO_700C_60min.xrdml │ ├── NH4H2PO4-Na2CO3_200C_60min.xrdml │ └── V2O5-2ZnO_400C_60min.xrdml └── precursor_mixture │ ├── In2O3_0p3022-La(OH)3_0p5014-TiO2_0p2004--2min.xrdml │ ├── In2O3_0p3022-La(OH)3_0p5014-TiO2_0p2004--8min.xrdml │ ├── In2O3_0p5002-MnCO3_0p5000--2min.xrdml │ ├── In2O3_0p5002-MnCO3_0p5000--8min.xrdml │ ├── Li2CO3_0p9001-ZrO2_0p1000--2min.xrdml │ ├── Li2CO3_0p9001-ZrO2_0p1000--8min.xrdml │ ├── NiO_0p1031-La(OH)3_0p2025-TiO2_0p7014--2min.xrdml │ ├── NiO_0p1031-La(OH)3_0p2025-TiO2_0p7014--8min.xrdml │ ├── NiO_0p2030-Li2CO3_0p2999-TiO2_0p5025--2min.xrdml │ ├── NiO_0p2030-Li2CO3_0p2999-TiO2_0p5025--8min.xrdml │ ├── NiO_0p3035-Bi2O3_0p3016-Li2CO3_0p3997--2min.xrdml │ ├── NiO_0p3035-Bi2O3_0p3016-Li2CO3_0p3997--8min.xrdml │ ├── NiO_0p6007-Bi2O3_0p4008--2min.xrdml │ ├── NiO_0p6007-Bi2O3_0p4008--8min.xrdml │ ├── NiO_0p7028-La(OH)3_0p1010-ZnO_0p2000--2min.xrdml │ ├── NiO_0p7028-La(OH)3_0p1010-ZnO_0p2000--8min.xrdml │ ├── TiO2_0p4009-ZnO_0p6010--2min.xrdml │ ├── TiO2_0p4009-ZnO_0p6010--8min.xrdml │ ├── V2O5_0p1012-In2O3_0p2008-TiO2_0p7001--2min.xrdml │ ├── V2O5_0p1012-In2O3_0p2008-TiO2_0p7001--8min.xrdml │ ├── V2O5_0p2012-La(OH)3_0p5004-MnCO3_0p3013--2min.xrdml │ ├── V2O5_0p2012-La(OH)3_0p5004-MnCO3_0p3013--8min.xrdml │ ├── V2O5_0p2013-La(OH)3_0p5000-ZrO2_0p3001--2min.xrdml │ ├── V2O5_0p2013-La(OH)3_0p5000-ZrO2_0p3001--8min.xrdml │ ├── V2O5_0p3005-NiO_0p4020-TiO2_0p3020--2min.xrdml │ ├── V2O5_0p3005-NiO_0p4020-TiO2_0p3020--8min.xrdml │ ├── V2O5_0p3015-TiO2_0p6998--2min.xrdml │ ├── V2O5_0p3015-TiO2_0p6998--8min.xrdml │ ├── V2O5_0p4005-NiO_0p6016--2min.xrdml │ ├── V2O5_0p4005-NiO_0p6016--8min.xrdml │ ├── V2O5_0p4013-In2O3_0p4021-La(OH)3_0p2014--2min.xrdml │ ├── V2O5_0p4013-In2O3_0p4021-La(OH)3_0p2014--8min.xrdml │ ├── V2O5_0p6008-ZnO_0p4010--2min.xrdml │ ├── V2O5_0p6008-ZnO_0p4010--8min.xrdml │ ├── V2O5_0p7006-MnCO3_0p3001--2min.xrdml │ ├── V2O5_0p7006-MnCO3_0p3001--8min.xrdml │ ├── V2O5_0p8011-ZrO2_0p2012--2min.xrdml │ ├── V2O5_0p8011-ZrO2_0p2012--8min.xrdml │ ├── ZnO_0p4006-In2O3_0p6008--2min.xrdml │ └── ZnO_0p4006-In2O3_0p6008--8min.xrdml ├── docs ├── .gitignore ├── _static │ ├── bgmnwin_Darwin.zip │ ├── bgmnwin_Darwin_m1.zip │ ├── bgmnwin_Linux.zip │ ├── bgmnwin_Windows.zip │ ├── logo-wide-dark.svg │ ├── logo-wide.svg │ ├── logo-with-text.svg │ └── logo.svg ├── conf.py ├── index.md ├── install.md ├── notebooks ├── tutorial_grid.md ├── tutorials.md └── web_server.md ├── logo ├── dara.jpg ├── dara.pdf ├── dara.svg └── draw_logo.ipynb ├── notebooks ├── .gitignore ├── automated_refinement.ipynb ├── phase_search.ipynb └── tutorial_data │ ├── Ca(OH)2_(NH4)2HPO4_NiO_recipe.json │ ├── CaNi(PO3)4_15_sym.cif │ ├── CaNi(PO3)4_800_240_Ca(OH)2_(NH4)2HPO4_NiO.xy │ ├── GeO2-ZnO_700C_60min.xrdml │ ├── NiO_225_sym.cif │ └── rxn_manifest.json ├── pyproject.toml ├── scripts ├── README.md ├── filter_cod.py ├── filter_icsd.py ├── run_binary_reaction.py └── run_precursor_mixture.py ├── src └── dara │ ├── __init__.py │ ├── bgmn │ ├── __init__.py │ └── download_bgmn.py │ ├── bgmn_worker.py │ ├── cif.py │ ├── cif2str.py │ ├── cli.py │ ├── data │ ├── BGMN-Templates │ │ ├── Devices │ │ │ ├── Aeris-fds-Pixcel1d-Medipix3.geq │ │ │ ├── Aeris-fds-Pixcel1d-Medipix3.ger │ │ │ ├── Aeris-fds-Pixcel1d-Medipix3.sav │ │ │ ├── Aeris-fds-Pixcel1d-Medipix3.tpl │ │ │ ├── D8_6Div_4SS.geq │ │ │ ├── D8_6Div_4SS.ger │ │ │ ├── D8_6Div_4SS.sav │ │ │ ├── D8_6Div_4SS.tpl │ │ │ ├── LBL-d8-LynxEyeXE.SAV │ │ │ ├── LBL-d8-LynxEyeXE.geq │ │ │ ├── LBL-d8-LynxEyeXE.ger │ │ │ ├── LBL-d8-LynxEyeXE.tpl │ │ │ ├── PW3040-FDS-ADS-Xcelerator.geq │ │ │ ├── PW3040-FDS-ADS-Xcelerator.ger │ │ │ ├── PW3040-FDS-ADS-Xcelerator.sav │ │ │ ├── PW3040-FDS-ADS-Xcelerator.tpl │ │ │ ├── RMS-D8-ADS-15-Glass-LynxEyeXE-bkgr.xy │ │ │ ├── RMS-D8-ADS-15-Glass-LynxEyeXE.geq │ │ │ ├── RMS-D8-ADS-15-Glass-LynxEyeXE.ger │ │ │ ├── RMS-D8-ADS-15-Glass-LynxEyeXE.sav │ │ │ ├── RMS-D8-ADS-15-Glass-LynxEyeXE.tpl │ │ │ ├── RMS-D8-ADS-15-LynxEyeXE-bkgr.xy │ │ │ ├── RMS-D8-ADS-15-LynxEyeXE.geq │ │ │ ├── RMS-D8-ADS-15-LynxEyeXE.ger │ │ │ ├── RMS-D8-ADS-15-LynxEyeXE.sav │ │ │ ├── RMS-D8-ADS-15-LynxEyeXE.tpl │ │ │ ├── RMS-D8-Capillary-500um-LynxEyeXE.geq │ │ │ ├── RMS-D8-Capillary-500um-LynxEyeXE.ger │ │ │ ├── RMS-D8-Capillary-500um-LynxEyeXE.sav │ │ │ ├── RMS-D8-Capillary-500um-LynxEyeXE.tpl │ │ │ ├── RMS-D8-FDS-03-LynxEyeXE.geq │ │ │ ├── RMS-D8-FDS-03-LynxEyeXE.ger │ │ │ ├── RMS-D8-FDS-03-LynxEyeXE.sav │ │ │ ├── RMS-D8-FDS-03-LynxEyeXE.tpl │ │ │ ├── Rigaku-Miniflex-600-DTEXultra2-fds.geq │ │ │ ├── Rigaku-Miniflex-600-DTEXultra2-fds.ger │ │ │ ├── Rigaku-Miniflex-600-DTEXultra2-fds.sav │ │ │ ├── Rigaku-Miniflex-600-DTEXultra2-fds.tpl │ │ │ ├── Rigaku-Miniflex-gen5-Dtex-var.geq │ │ │ ├── Rigaku-Miniflex-gen5-Dtex-var.ger │ │ │ ├── Rigaku-Miniflex-gen5-Dtex-var.sav │ │ │ ├── Rigaku-Miniflex-gen5-Dtex-var.tpl │ │ │ ├── Rigaku-Miniflex-gen5-Dtex-varfix.geq │ │ │ ├── Rigaku-Miniflex-gen5-Dtex-varfix.ger │ │ │ ├── Rigaku-Miniflex-gen5-Dtex-varfix.sav │ │ │ ├── Rigaku-Miniflex-gen5-Dtex-varfix.tpl │ │ │ ├── Rigaku-Miniflex.geq │ │ │ ├── Rigaku-Miniflex.ger │ │ │ ├── Rigaku-Miniflex.sav │ │ │ ├── Rigaku-Miniflex.tpl │ │ │ ├── Rigaku-SmartLab-CBO-BB-FDS05deg.geq │ │ │ ├── Rigaku-SmartLab-CBO-BB-FDS05deg.ger │ │ │ ├── Rigaku-SmartLab-CBO-BB-FDS05deg.sav │ │ │ ├── Rigaku-SmartLab-CBO-BB-FDS05deg.tpl │ │ │ ├── cubix-ads-10mm.geq │ │ │ ├── cubix-ads-10mm.ger │ │ │ ├── cubix-ads-10mm.sav │ │ │ ├── cubix-ads-10mm.tpl │ │ │ ├── cubix-ads-15mm.geq │ │ │ ├── cubix-ads-15mm.ger │ │ │ ├── cubix-ads-15mm.sav │ │ │ ├── cubix-ads-15mm.tpl │ │ │ ├── d2-ssd160-fds-1.geq │ │ │ ├── d2-ssd160-fds-1.ger │ │ │ ├── d2-ssd160-fds-1.sav │ │ │ ├── d2-ssd160-fds-1.tpl │ │ │ ├── d8-fds-02-LynxEyeXE.geq │ │ │ ├── d8-fds-02-LynxEyeXE.ger │ │ │ ├── d8-fds-02-LynxEyeXE.sav │ │ │ ├── d8-fds-02-LynxEyeXE.tpl │ │ │ ├── d8-lynxeye-ads-1mm.geq │ │ │ ├── d8-lynxeye-ads-1mm.ger │ │ │ ├── d8-lynxeye-ads-1mm.sav │ │ │ ├── d8-lynxeye-ads-1mm.tpl │ │ │ ├── d8-lynxeye-fds-02.geq │ │ │ ├── d8-lynxeye-fds-02.ger │ │ │ ├── d8-lynxeye-fds-02.sav │ │ │ ├── d8-lynxeye-fds-02.tpl │ │ │ ├── d8-lynxeye-fds-05mm.geq │ │ │ ├── d8-lynxeye-fds-05mm.ger │ │ │ ├── d8-lynxeye-fds-05mm.sav │ │ │ ├── d8-lynxeye-fds-05mm.tpl │ │ │ ├── d8-lynxeye-fds-06mm.geq │ │ │ ├── d8-lynxeye-fds-06mm.ger │ │ │ ├── d8-lynxeye-fds-06mm.sav │ │ │ ├── d8-lynxeye-fds-06mm.tpl │ │ │ ├── d8-solxe-fds-0600.geq │ │ │ ├── d8-solxe-fds-0600.ger │ │ │ ├── d8-solxe-fds-0600.sav │ │ │ ├── d8-solxe-fds-0600.tpl │ │ │ ├── d8-solxe-vds-12mm.geq │ │ │ ├── d8-solxe-vds-12mm.ger │ │ │ ├── d8-solxe-vds-12mm.sav │ │ │ ├── d8-solxe-vds-12mm.tpl │ │ │ ├── pw1800-ads-10mm.geq │ │ │ ├── pw1800-ads-10mm.ger │ │ │ ├── pw1800-ads-10mm.sav │ │ │ ├── pw1800-ads-10mm.tpl │ │ │ ├── pw1800-fds.geq │ │ │ ├── pw1800-fds.ger │ │ │ ├── pw1800-fds.sav │ │ │ ├── pw1800-fds.tpl │ │ │ ├── rigaku-ultima.geq │ │ │ ├── rigaku-ultima.ger │ │ │ ├── rigaku-ultima.sav │ │ │ ├── rigaku-ultima.tpl │ │ │ ├── siemens-d5000-fds1mm-2.geq │ │ │ ├── siemens-d5000-fds1mm-2.ger │ │ │ ├── siemens-d5000-fds1mm-2.sav │ │ │ ├── siemens-d5000-fds1mm-2.tpl │ │ │ ├── siemens-d5000-fds1mm.geq │ │ │ ├── siemens-d5000-fds1mm.ger │ │ │ ├── siemens-d5000-fds1mm.sav │ │ │ ├── siemens-d5000-fds1mm.tpl │ │ │ ├── siemens-d5000-fds2mm.geq │ │ │ ├── siemens-d5000-fds2mm.ger │ │ │ ├── siemens-d5000-fds2mm.sav │ │ │ ├── siemens-d5000-fds2mm.tpl │ │ │ ├── synchrotron.SAV │ │ │ ├── synchrotron.geq │ │ │ ├── synchrotron.ger │ │ │ ├── synchrotron.tpl │ │ │ ├── ucb-xrdynamic500-anton-paar.geq │ │ │ ├── x8-apex2-fds-10.geq │ │ │ ├── x8-apex2-fds-10.ger │ │ │ ├── x8-apex2-fds-10.sav │ │ │ ├── x8-apex2-fds-10.tpl │ │ │ ├── xpert-pixcel-0500.geq │ │ │ ├── xpert-pixcel-0500.ger │ │ │ ├── xpert-pixcel-0500.sav │ │ │ ├── xpert-pixcel-0500.tpl │ │ │ ├── xpert-xcel-ads-10mm-Ge.geq │ │ │ ├── xpert-xcel-ads-10mm-Ge.ger │ │ │ ├── xpert-xcel-ads-10mm-Ge.sav │ │ │ ├── xpert-xcel-ads-10mm-Ge.tpl │ │ │ ├── xpert-xcel-ads-10mm.geq │ │ │ ├── xpert-xcel-ads-10mm.ger │ │ │ ├── xpert-xcel-ads-10mm.sav │ │ │ ├── xpert-xcel-ads-10mm.tpl │ │ │ ├── xpert-xcel-fds-0125.geq │ │ │ ├── xpert-xcel-fds-0125.ger │ │ │ ├── xpert-xcel-fds-0125.sav │ │ │ ├── xpert-xcel-fds-0125.tpl │ │ │ ├── xpert-xcel-fds-0250.geq │ │ │ ├── xpert-xcel-fds-0250.ger │ │ │ ├── xpert-xcel-fds-0250.sav │ │ │ ├── xpert-xcel-fds-0250.tpl │ │ │ ├── xpert-xcel-fds-1000.geq │ │ │ ├── xpert-xcel-fds-1000.ger │ │ │ ├── xpert-xcel-fds-1000.sav │ │ │ ├── xpert-xcel-fds-1000.tpl │ │ │ ├── xpert-xcel-htk-ads-10.geq │ │ │ ├── xpert-xcel-htk-ads-10.ger │ │ │ ├── xpert-xcel-htk-ads-10.sav │ │ │ ├── xpert-xcel-htk-ads-10.xy │ │ │ ├── xpert-xcel-htk-fds-0125.geq │ │ │ ├── xpert-xcel-htk-fds-0125.ger │ │ │ ├── xpert-xcel-htk-fds-0125.sav │ │ │ └── xpert-xcel-htk-fds-0125.tpl │ │ └── Wavelengths │ │ │ ├── COFeFilter.LAM │ │ │ ├── CO_CheMin.ANO │ │ │ ├── CO_CheMin.LAM │ │ │ ├── CO_CheMin.MDR │ │ │ ├── CU-priMon.ANO │ │ │ ├── CU-priMon.LAM │ │ │ ├── CU-priMon.MDR │ │ │ └── CUNiFilterLynxeyeXE.lam │ ├── README.md │ ├── __init__.py │ ├── cod_filtered_info_2024.json.gz │ ├── common_gases.json │ ├── icsd_filtered_info_2024.json.gz │ ├── icsd_filtered_info_2024_v2.json.gz │ ├── icsd_filtered_info_2025_v3.json.gz │ ├── mp_struct_info.json.gz │ ├── possible_species.txt │ └── spglib_db │ │ ├── make_spg_db.py │ │ ├── spacegrp.xml │ │ ├── spg.csv │ │ └── spg.json │ ├── eflech_worker.py │ ├── generate_control_file.py │ ├── jobs.py │ ├── peak_detection.py │ ├── plot.py │ ├── prediction │ ├── __init__.py │ ├── base.py │ ├── core.py │ ├── rn.py │ └── rxn_ca.py │ ├── py.typed │ ├── refine.py │ ├── result.py │ ├── schema.py │ ├── search │ ├── __init__.py │ ├── core.py │ ├── data_model.py │ ├── peak_matcher.py │ └── tree.py │ ├── server │ ├── __init__.py │ ├── api_router.py │ ├── app.py │ ├── setting.py │ ├── ui │ │ ├── README.md │ │ ├── gatsby-config.js │ │ ├── gatsby-node.js │ │ ├── package.json │ │ ├── public │ │ │ ├── 404 │ │ │ │ └── index.html │ │ │ ├── 404.html │ │ │ ├── 57410fc8030deeedff04bbfabf19294f9925e2d9-eb8847e260a45c34a1f2.js │ │ │ ├── 57410fc8030deeedff04bbfabf19294f9925e2d9-eb8847e260a45c34a1f2.js.map │ │ │ ├── 6f797cde19b29064589bb5dc1179e6fed6df5f5a-634d22334f8432b3094d.js │ │ │ ├── 6f797cde19b29064589bb5dc1179e6fed6df5f5a-634d22334f8432b3094d.js.map │ │ │ ├── 806-b910bba0608d70eeaf63.js │ │ │ ├── 806-b910bba0608d70eeaf63.js.map │ │ │ ├── app-b33b585ff4011f009546.js │ │ │ ├── app-b33b585ff4011f009546.js.LICENSE.txt │ │ │ ├── app-b33b585ff4011f009546.js.map │ │ │ ├── app-b757238a74a01857068f.js │ │ │ ├── app-b757238a74a01857068f.js.LICENSE.txt │ │ │ ├── app-b757238a74a01857068f.js.map │ │ │ ├── cd1d783e2058bb475f378b4ae5e70b80a1e199cb-5499e4bd4b88271b8c36.js │ │ │ ├── cd1d783e2058bb475f378b4ae5e70b80a1e199cb-5499e4bd4b88271b8c36.js.map │ │ │ ├── cd1d783e2058bb475f378b4ae5e70b80a1e199cb-a2b2ded70df4b7b03c29.js │ │ │ ├── cd1d783e2058bb475f378b4ae5e70b80a1e199cb-a2b2ded70df4b7b03c29.js.map │ │ │ ├── chunk-map.json │ │ │ ├── commons-056c96522dea66b76798.js │ │ │ ├── commons-056c96522dea66b76798.js.LICENSE.txt │ │ │ ├── commons-056c96522dea66b76798.js.map │ │ │ ├── component---src-pages-404-js-25ab2c85ad506ad32df4.js │ │ │ ├── component---src-pages-404-js-25ab2c85ad506ad32df4.js.map │ │ │ ├── component---src-pages-index-js-ed1b1145e1021ebb5c41.js │ │ │ ├── component---src-pages-index-js-ed1b1145e1021ebb5c41.js.map │ │ │ ├── component---src-pages-submit-js-4603b9e115ee9963ef3d.js │ │ │ ├── component---src-pages-submit-js-4603b9e115ee9963ef3d.js.map │ │ │ ├── component---src-pages-task-js-66ea4a8e4d1bd553db8d.js │ │ │ ├── component---src-pages-task-js-66ea4a8e4d1bd553db8d.js.map │ │ │ ├── component---src-templates-md-templates-js-002e44d599a9ac7ae5d2.js │ │ │ ├── component---src-templates-md-templates-js-002e44d599a9ac7ae5d2.js.map │ │ │ ├── e117f8f131e1cc93205b2e614216746a0135d2ae-4985b4ced6621c479a89.js │ │ │ ├── e117f8f131e1cc93205b2e614216746a0135d2ae-4985b4ced6621c479a89.js.map │ │ │ ├── e48519b3-aa19aa04c1e8ec361279.js │ │ │ ├── e48519b3-aa19aa04c1e8ec361279.js.LICENSE.txt │ │ │ ├── e48519b3-aa19aa04c1e8ec361279.js.map │ │ │ ├── e8075c4baa3929c3d37a61687b697d65a10ff29e-38bcc4c0f66026e50757.js │ │ │ ├── e8075c4baa3929c3d37a61687b697d65a10ff29e-38bcc4c0f66026e50757.js.map │ │ │ ├── framework-d41bea17c3fc3e3fe984.js │ │ │ ├── framework-d41bea17c3fc3e3fe984.js.LICENSE.txt │ │ │ ├── framework-d41bea17c3fc3e3fe984.js.map │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ ├── page-data │ │ │ │ ├── 404 │ │ │ │ │ └── page-data.json │ │ │ │ ├── 404.html │ │ │ │ │ └── page-data.json │ │ │ │ ├── app-data.json │ │ │ │ ├── index │ │ │ │ │ └── page-data.json │ │ │ │ ├── results │ │ │ │ │ └── page-data.json │ │ │ │ ├── task │ │ │ │ │ └── page-data.json │ │ │ │ └── tutorial │ │ │ │ │ └── page-data.json │ │ │ ├── polyfill-edbb1be0c2738f0008fe.js │ │ │ ├── polyfill-edbb1be0c2738f0008fe.js.map │ │ │ ├── results │ │ │ │ └── index.html │ │ │ ├── robots.txt │ │ │ ├── static │ │ │ │ ├── dara_explained-0a20a41514e46274c741ab7cc6956448.png │ │ │ │ └── favicon-329294da2ac81a2cdf7e5a11c0a57afe.ico │ │ │ ├── styles.4143da2ac0ae2a8f050e.css │ │ │ ├── task │ │ │ │ └── index.html │ │ │ ├── tutorial │ │ │ │ └── index.html │ │ │ ├── webpack-runtime-2fc51e81e2070c63e809.js │ │ │ ├── webpack-runtime-2fc51e81e2070c63e809.js.map │ │ │ ├── webpack-runtime-dfeedde5a6b89127f6b1.js │ │ │ ├── webpack-runtime-dfeedde5a6b89127f6b1.js.map │ │ │ └── webpack.stats.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── HeaderMenu.js │ │ │ │ ├── Layout.js │ │ │ │ └── layout.css │ │ │ ├── images │ │ │ │ ├── dara.svg │ │ │ │ └── favicon.ico │ │ │ ├── md-pages │ │ │ │ ├── images │ │ │ │ │ └── dara_explained.png │ │ │ │ └── tutorial.md │ │ │ ├── pages │ │ │ │ ├── 404.js │ │ │ │ ├── index.js │ │ │ │ ├── results.js │ │ │ │ └── task.js │ │ │ └── templates │ │ │ │ └── mdTemplates.js │ │ ├── static │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── yarn.lock │ ├── utils.py │ └── worker.py │ ├── settings.py │ ├── structure_db.py │ ├── utils.py │ └── xrd.py └── tests ├── test_cif2str.py ├── test_data ├── Bi25FeO39.cif ├── Bi25FeO39.str ├── Bi2Fe4O9.cif ├── Bi2Fe4O9.str ├── BiFeO3.cif ├── BiFeO3.str ├── BiFeO3.xy └── RM20220915Si01.rasx ├── test_refinement.py ├── test_structure_db.py └── test_xrd.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build_sphinx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/.github/workflows/build_sphinx.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/pytest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/.github/workflows/pytest.yaml -------------------------------------------------------------------------------- /.github/workflows/ruff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/.github/workflows/ruff.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/README.md -------------------------------------------------------------------------------- /dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/README.md -------------------------------------------------------------------------------- /dataset/binary_reactions/2Fe3O4-3Y2O3_1000C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/2Fe3O4-3Y2O3_1000C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/2FeC2O4(H2O)2-Y2O3_200C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/2FeC2O4(H2O)2-Y2O3_200C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/Bi2O3-2MoO3_400C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/Bi2O3-2MoO3_400C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/Bi2O3-Nb2O5_500C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/Bi2O3-Nb2O5_500C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/Bi2O3-V2O5_400C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/Bi2O3-V2O5_400C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/CaCO3-NH4H2PO4_200C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/CaCO3-NH4H2PO4_200C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/CoO-WO3_900C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/CoO-WO3_900C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/CoO-ZnO_1100C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/CoO-ZnO_1100C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/Cr2O3-2MnO_1100C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/Cr2O3-2MnO_1100C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/Cr2O3-2PbO_500C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/Cr2O3-2PbO_500C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/Cr2O3-2ZnO_1100C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/Cr2O3-2ZnO_1100C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/Cr2O3-V2O5_400C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/Cr2O3-V2O5_400C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/CuO-MnO_800C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/CuO-MnO_800C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/Fe2O3-2TiO2_1000C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/Fe2O3-2TiO2_1000C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/Fe2O3-Nb2O5_900C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/Fe2O3-Nb2O5_900C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/Fe3O4-3SrCO3_900C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/Fe3O4-3SrCO3_900C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/Fe3O4-3ZnO_1000C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/Fe3O4-3ZnO_1000C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/GeO2-ZnO_700C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/GeO2-ZnO_700C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/NH4H2PO4-Na2CO3_200C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/NH4H2PO4-Na2CO3_200C_60min.xrdml -------------------------------------------------------------------------------- /dataset/binary_reactions/V2O5-2ZnO_400C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/binary_reactions/V2O5-2ZnO_400C_60min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/In2O3_0p3022-La(OH)3_0p5014-TiO2_0p2004--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/In2O3_0p3022-La(OH)3_0p5014-TiO2_0p2004--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/In2O3_0p3022-La(OH)3_0p5014-TiO2_0p2004--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/In2O3_0p3022-La(OH)3_0p5014-TiO2_0p2004--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/In2O3_0p5002-MnCO3_0p5000--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/In2O3_0p5002-MnCO3_0p5000--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/In2O3_0p5002-MnCO3_0p5000--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/In2O3_0p5002-MnCO3_0p5000--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/Li2CO3_0p9001-ZrO2_0p1000--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/Li2CO3_0p9001-ZrO2_0p1000--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/Li2CO3_0p9001-ZrO2_0p1000--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/Li2CO3_0p9001-ZrO2_0p1000--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/NiO_0p1031-La(OH)3_0p2025-TiO2_0p7014--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/NiO_0p1031-La(OH)3_0p2025-TiO2_0p7014--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/NiO_0p1031-La(OH)3_0p2025-TiO2_0p7014--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/NiO_0p1031-La(OH)3_0p2025-TiO2_0p7014--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/NiO_0p2030-Li2CO3_0p2999-TiO2_0p5025--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/NiO_0p2030-Li2CO3_0p2999-TiO2_0p5025--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/NiO_0p2030-Li2CO3_0p2999-TiO2_0p5025--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/NiO_0p2030-Li2CO3_0p2999-TiO2_0p5025--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/NiO_0p3035-Bi2O3_0p3016-Li2CO3_0p3997--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/NiO_0p3035-Bi2O3_0p3016-Li2CO3_0p3997--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/NiO_0p3035-Bi2O3_0p3016-Li2CO3_0p3997--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/NiO_0p3035-Bi2O3_0p3016-Li2CO3_0p3997--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/NiO_0p6007-Bi2O3_0p4008--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/NiO_0p6007-Bi2O3_0p4008--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/NiO_0p6007-Bi2O3_0p4008--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/NiO_0p6007-Bi2O3_0p4008--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/NiO_0p7028-La(OH)3_0p1010-ZnO_0p2000--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/NiO_0p7028-La(OH)3_0p1010-ZnO_0p2000--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/NiO_0p7028-La(OH)3_0p1010-ZnO_0p2000--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/NiO_0p7028-La(OH)3_0p1010-ZnO_0p2000--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/TiO2_0p4009-ZnO_0p6010--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/TiO2_0p4009-ZnO_0p6010--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/TiO2_0p4009-ZnO_0p6010--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/TiO2_0p4009-ZnO_0p6010--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p1012-In2O3_0p2008-TiO2_0p7001--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p1012-In2O3_0p2008-TiO2_0p7001--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p1012-In2O3_0p2008-TiO2_0p7001--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p1012-In2O3_0p2008-TiO2_0p7001--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p2012-La(OH)3_0p5004-MnCO3_0p3013--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p2012-La(OH)3_0p5004-MnCO3_0p3013--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p2012-La(OH)3_0p5004-MnCO3_0p3013--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p2012-La(OH)3_0p5004-MnCO3_0p3013--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p2013-La(OH)3_0p5000-ZrO2_0p3001--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p2013-La(OH)3_0p5000-ZrO2_0p3001--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p2013-La(OH)3_0p5000-ZrO2_0p3001--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p2013-La(OH)3_0p5000-ZrO2_0p3001--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p3005-NiO_0p4020-TiO2_0p3020--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p3005-NiO_0p4020-TiO2_0p3020--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p3005-NiO_0p4020-TiO2_0p3020--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p3005-NiO_0p4020-TiO2_0p3020--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p3015-TiO2_0p6998--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p3015-TiO2_0p6998--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p3015-TiO2_0p6998--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p3015-TiO2_0p6998--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p4005-NiO_0p6016--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p4005-NiO_0p6016--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p4005-NiO_0p6016--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p4005-NiO_0p6016--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p4013-In2O3_0p4021-La(OH)3_0p2014--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p4013-In2O3_0p4021-La(OH)3_0p2014--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p4013-In2O3_0p4021-La(OH)3_0p2014--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p4013-In2O3_0p4021-La(OH)3_0p2014--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p6008-ZnO_0p4010--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p6008-ZnO_0p4010--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p6008-ZnO_0p4010--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p6008-ZnO_0p4010--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p7006-MnCO3_0p3001--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p7006-MnCO3_0p3001--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p7006-MnCO3_0p3001--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p7006-MnCO3_0p3001--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p8011-ZrO2_0p2012--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p8011-ZrO2_0p2012--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/V2O5_0p8011-ZrO2_0p2012--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/V2O5_0p8011-ZrO2_0p2012--8min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/ZnO_0p4006-In2O3_0p6008--2min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/ZnO_0p4006-In2O3_0p6008--2min.xrdml -------------------------------------------------------------------------------- /dataset/precursor_mixture/ZnO_0p4006-In2O3_0p6008--8min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/dataset/precursor_mixture/ZnO_0p4006-In2O3_0p6008--8min.xrdml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | dara* 2 | modules.rst -------------------------------------------------------------------------------- /docs/_static/bgmnwin_Darwin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/docs/_static/bgmnwin_Darwin.zip -------------------------------------------------------------------------------- /docs/_static/bgmnwin_Darwin_m1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/docs/_static/bgmnwin_Darwin_m1.zip -------------------------------------------------------------------------------- /docs/_static/bgmnwin_Linux.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/docs/_static/bgmnwin_Linux.zip -------------------------------------------------------------------------------- /docs/_static/bgmnwin_Windows.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/docs/_static/bgmnwin_Windows.zip -------------------------------------------------------------------------------- /docs/_static/logo-wide-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/docs/_static/logo-wide-dark.svg -------------------------------------------------------------------------------- /docs/_static/logo-wide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/docs/_static/logo-wide.svg -------------------------------------------------------------------------------- /docs/_static/logo-with-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/docs/_static/logo-with-text.svg -------------------------------------------------------------------------------- /docs/_static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/docs/_static/logo.svg -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/notebooks: -------------------------------------------------------------------------------- 1 | ../notebooks -------------------------------------------------------------------------------- /docs/tutorial_grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/docs/tutorial_grid.md -------------------------------------------------------------------------------- /docs/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/docs/tutorials.md -------------------------------------------------------------------------------- /docs/web_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/docs/web_server.md -------------------------------------------------------------------------------- /logo/dara.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/logo/dara.jpg -------------------------------------------------------------------------------- /logo/dara.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/logo/dara.pdf -------------------------------------------------------------------------------- /logo/dara.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/logo/dara.svg -------------------------------------------------------------------------------- /logo/draw_logo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/logo/draw_logo.ipynb -------------------------------------------------------------------------------- /notebooks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/notebooks/.gitignore -------------------------------------------------------------------------------- /notebooks/automated_refinement.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/notebooks/automated_refinement.ipynb -------------------------------------------------------------------------------- /notebooks/phase_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/notebooks/phase_search.ipynb -------------------------------------------------------------------------------- /notebooks/tutorial_data/Ca(OH)2_(NH4)2HPO4_NiO_recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/notebooks/tutorial_data/Ca(OH)2_(NH4)2HPO4_NiO_recipe.json -------------------------------------------------------------------------------- /notebooks/tutorial_data/CaNi(PO3)4_15_sym.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/notebooks/tutorial_data/CaNi(PO3)4_15_sym.cif -------------------------------------------------------------------------------- /notebooks/tutorial_data/CaNi(PO3)4_800_240_Ca(OH)2_(NH4)2HPO4_NiO.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/notebooks/tutorial_data/CaNi(PO3)4_800_240_Ca(OH)2_(NH4)2HPO4_NiO.xy -------------------------------------------------------------------------------- /notebooks/tutorial_data/GeO2-ZnO_700C_60min.xrdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/notebooks/tutorial_data/GeO2-ZnO_700C_60min.xrdml -------------------------------------------------------------------------------- /notebooks/tutorial_data/NiO_225_sym.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/notebooks/tutorial_data/NiO_225_sym.cif -------------------------------------------------------------------------------- /notebooks/tutorial_data/rxn_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/notebooks/tutorial_data/rxn_manifest.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/filter_cod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/scripts/filter_cod.py -------------------------------------------------------------------------------- /scripts/filter_icsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/scripts/filter_icsd.py -------------------------------------------------------------------------------- /scripts/run_binary_reaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/scripts/run_binary_reaction.py -------------------------------------------------------------------------------- /scripts/run_precursor_mixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/scripts/run_precursor_mixture.py -------------------------------------------------------------------------------- /src/dara/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/__init__.py -------------------------------------------------------------------------------- /src/dara/bgmn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dara/bgmn/download_bgmn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/bgmn/download_bgmn.py -------------------------------------------------------------------------------- /src/dara/bgmn_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/bgmn_worker.py -------------------------------------------------------------------------------- /src/dara/cif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/cif.py -------------------------------------------------------------------------------- /src/dara/cif2str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/cif2str.py -------------------------------------------------------------------------------- /src/dara/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/cli.py -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Aeris-fds-Pixcel1d-Medipix3.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Aeris-fds-Pixcel1d-Medipix3.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Aeris-fds-Pixcel1d-Medipix3.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Aeris-fds-Pixcel1d-Medipix3.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Aeris-fds-Pixcel1d-Medipix3.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Aeris-fds-Pixcel1d-Medipix3.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Aeris-fds-Pixcel1d-Medipix3.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Aeris-fds-Pixcel1d-Medipix3.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/D8_6Div_4SS.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/D8_6Div_4SS.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/D8_6Div_4SS.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/D8_6Div_4SS.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/D8_6Div_4SS.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/D8_6Div_4SS.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/D8_6Div_4SS.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/D8_6Div_4SS.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/LBL-d8-LynxEyeXE.SAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/LBL-d8-LynxEyeXE.SAV -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/LBL-d8-LynxEyeXE.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/LBL-d8-LynxEyeXE.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/LBL-d8-LynxEyeXE.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/LBL-d8-LynxEyeXE.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/LBL-d8-LynxEyeXE.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/LBL-d8-LynxEyeXE.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/PW3040-FDS-ADS-Xcelerator.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/PW3040-FDS-ADS-Xcelerator.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/PW3040-FDS-ADS-Xcelerator.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/PW3040-FDS-ADS-Xcelerator.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/PW3040-FDS-ADS-Xcelerator.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/PW3040-FDS-ADS-Xcelerator.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/PW3040-FDS-ADS-Xcelerator.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/PW3040-FDS-ADS-Xcelerator.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-Glass-LynxEyeXE-bkgr.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-Glass-LynxEyeXE-bkgr.xy -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-Glass-LynxEyeXE.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-Glass-LynxEyeXE.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-Glass-LynxEyeXE.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-Glass-LynxEyeXE.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-Glass-LynxEyeXE.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-Glass-LynxEyeXE.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-Glass-LynxEyeXE.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-Glass-LynxEyeXE.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-LynxEyeXE-bkgr.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-LynxEyeXE-bkgr.xy -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-LynxEyeXE.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-LynxEyeXE.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-LynxEyeXE.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-LynxEyeXE.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-LynxEyeXE.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-LynxEyeXE.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-LynxEyeXE.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-ADS-15-LynxEyeXE.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-Capillary-500um-LynxEyeXE.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-Capillary-500um-LynxEyeXE.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-Capillary-500um-LynxEyeXE.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-Capillary-500um-LynxEyeXE.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-Capillary-500um-LynxEyeXE.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-Capillary-500um-LynxEyeXE.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-Capillary-500um-LynxEyeXE.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-Capillary-500um-LynxEyeXE.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-FDS-03-LynxEyeXE.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-FDS-03-LynxEyeXE.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-FDS-03-LynxEyeXE.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-FDS-03-LynxEyeXE.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-FDS-03-LynxEyeXE.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-FDS-03-LynxEyeXE.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/RMS-D8-FDS-03-LynxEyeXE.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/RMS-D8-FDS-03-LynxEyeXE.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-600-DTEXultra2-fds.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-600-DTEXultra2-fds.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-600-DTEXultra2-fds.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-600-DTEXultra2-fds.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-600-DTEXultra2-fds.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-600-DTEXultra2-fds.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-600-DTEXultra2-fds.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-600-DTEXultra2-fds.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-var.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-var.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-var.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-var.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-var.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-var.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-var.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-var.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-varfix.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-varfix.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-varfix.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-varfix.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-varfix.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-varfix.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-varfix.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex-gen5-Dtex-varfix.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-Miniflex.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-SmartLab-CBO-BB-FDS05deg.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-SmartLab-CBO-BB-FDS05deg.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-SmartLab-CBO-BB-FDS05deg.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-SmartLab-CBO-BB-FDS05deg.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-SmartLab-CBO-BB-FDS05deg.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-SmartLab-CBO-BB-FDS05deg.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/Rigaku-SmartLab-CBO-BB-FDS05deg.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/Rigaku-SmartLab-CBO-BB-FDS05deg.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/cubix-ads-10mm.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/cubix-ads-10mm.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/cubix-ads-10mm.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/cubix-ads-10mm.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/cubix-ads-10mm.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/cubix-ads-10mm.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/cubix-ads-10mm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/cubix-ads-10mm.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/cubix-ads-15mm.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/cubix-ads-15mm.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/cubix-ads-15mm.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/cubix-ads-15mm.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/cubix-ads-15mm.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/cubix-ads-15mm.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/cubix-ads-15mm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/cubix-ads-15mm.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d2-ssd160-fds-1.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d2-ssd160-fds-1.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d2-ssd160-fds-1.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d2-ssd160-fds-1.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d2-ssd160-fds-1.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d2-ssd160-fds-1.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d2-ssd160-fds-1.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d2-ssd160-fds-1.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-fds-02-LynxEyeXE.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-fds-02-LynxEyeXE.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-fds-02-LynxEyeXE.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-fds-02-LynxEyeXE.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-fds-02-LynxEyeXE.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-fds-02-LynxEyeXE.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-fds-02-LynxEyeXE.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-fds-02-LynxEyeXE.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-ads-1mm.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-ads-1mm.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-ads-1mm.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-ads-1mm.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-ads-1mm.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-ads-1mm.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-ads-1mm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-ads-1mm.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-02.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-02.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-02.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-02.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-02.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-02.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-02.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-02.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-05mm.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-05mm.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-05mm.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-05mm.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-05mm.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-05mm.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-05mm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-05mm.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-06mm.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-06mm.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-06mm.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-06mm.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-06mm.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-06mm.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-06mm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-lynxeye-fds-06mm.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-solxe-fds-0600.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-solxe-fds-0600.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-solxe-fds-0600.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-solxe-fds-0600.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-solxe-fds-0600.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-solxe-fds-0600.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-solxe-fds-0600.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-solxe-fds-0600.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-solxe-vds-12mm.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-solxe-vds-12mm.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-solxe-vds-12mm.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-solxe-vds-12mm.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-solxe-vds-12mm.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-solxe-vds-12mm.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/d8-solxe-vds-12mm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/d8-solxe-vds-12mm.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/pw1800-ads-10mm.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/pw1800-ads-10mm.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/pw1800-ads-10mm.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/pw1800-ads-10mm.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/pw1800-ads-10mm.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/pw1800-ads-10mm.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/pw1800-ads-10mm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/pw1800-ads-10mm.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/pw1800-fds.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/pw1800-fds.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/pw1800-fds.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/pw1800-fds.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/pw1800-fds.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/pw1800-fds.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/pw1800-fds.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/pw1800-fds.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/rigaku-ultima.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/rigaku-ultima.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/rigaku-ultima.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/rigaku-ultima.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/rigaku-ultima.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/rigaku-ultima.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/rigaku-ultima.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/rigaku-ultima.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm-2.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm-2.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm-2.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm-2.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm-2.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm-2.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm-2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm-2.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds1mm.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds2mm.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds2mm.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds2mm.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds2mm.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds2mm.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds2mm.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds2mm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/siemens-d5000-fds2mm.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/synchrotron.SAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/synchrotron.SAV -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/synchrotron.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/synchrotron.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/synchrotron.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/synchrotron.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/synchrotron.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/synchrotron.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/ucb-xrdynamic500-anton-paar.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/ucb-xrdynamic500-anton-paar.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/x8-apex2-fds-10.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/x8-apex2-fds-10.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/x8-apex2-fds-10.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/x8-apex2-fds-10.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/x8-apex2-fds-10.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/x8-apex2-fds-10.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/x8-apex2-fds-10.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/x8-apex2-fds-10.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-pixcel-0500.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-pixcel-0500.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-pixcel-0500.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-pixcel-0500.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-pixcel-0500.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-pixcel-0500.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-pixcel-0500.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-pixcel-0500.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm-Ge.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm-Ge.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm-Ge.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm-Ge.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm-Ge.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm-Ge.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm-Ge.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm-Ge.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-ads-10mm.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0125.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0125.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0125.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0125.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0125.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0125.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0125.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0125.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0250.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0250.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0250.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0250.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0250.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0250.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0250.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-0250.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-1000.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-1000.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-1000.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-1000.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-1000.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-1000.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-1000.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-fds-1000.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-ads-10.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-ads-10.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-ads-10.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-ads-10.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-ads-10.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-ads-10.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-ads-10.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-ads-10.xy -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-fds-0125.geq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-fds-0125.geq -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-fds-0125.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-fds-0125.ger -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-fds-0125.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-fds-0125.sav -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-fds-0125.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Devices/xpert-xcel-htk-fds-0125.tpl -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Wavelengths/COFeFilter.LAM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Wavelengths/COFeFilter.LAM -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Wavelengths/CO_CheMin.ANO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Wavelengths/CO_CheMin.ANO -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Wavelengths/CO_CheMin.LAM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Wavelengths/CO_CheMin.LAM -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Wavelengths/CO_CheMin.MDR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Wavelengths/CO_CheMin.MDR -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Wavelengths/CU-priMon.ANO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Wavelengths/CU-priMon.ANO -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Wavelengths/CU-priMon.LAM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Wavelengths/CU-priMon.LAM -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Wavelengths/CU-priMon.MDR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Wavelengths/CU-priMon.MDR -------------------------------------------------------------------------------- /src/dara/data/BGMN-Templates/Wavelengths/CUNiFilterLynxeyeXE.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/BGMN-Templates/Wavelengths/CUNiFilterLynxeyeXE.lam -------------------------------------------------------------------------------- /src/dara/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/README.md -------------------------------------------------------------------------------- /src/dara/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/__init__.py -------------------------------------------------------------------------------- /src/dara/data/cod_filtered_info_2024.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/cod_filtered_info_2024.json.gz -------------------------------------------------------------------------------- /src/dara/data/common_gases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/common_gases.json -------------------------------------------------------------------------------- /src/dara/data/icsd_filtered_info_2024.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/icsd_filtered_info_2024.json.gz -------------------------------------------------------------------------------- /src/dara/data/icsd_filtered_info_2024_v2.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/icsd_filtered_info_2024_v2.json.gz -------------------------------------------------------------------------------- /src/dara/data/icsd_filtered_info_2025_v3.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/icsd_filtered_info_2025_v3.json.gz -------------------------------------------------------------------------------- /src/dara/data/mp_struct_info.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/mp_struct_info.json.gz -------------------------------------------------------------------------------- /src/dara/data/possible_species.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/possible_species.txt -------------------------------------------------------------------------------- /src/dara/data/spglib_db/make_spg_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/spglib_db/make_spg_db.py -------------------------------------------------------------------------------- /src/dara/data/spglib_db/spacegrp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/spglib_db/spacegrp.xml -------------------------------------------------------------------------------- /src/dara/data/spglib_db/spg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/spglib_db/spg.csv -------------------------------------------------------------------------------- /src/dara/data/spglib_db/spg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/data/spglib_db/spg.json -------------------------------------------------------------------------------- /src/dara/eflech_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/eflech_worker.py -------------------------------------------------------------------------------- /src/dara/generate_control_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/generate_control_file.py -------------------------------------------------------------------------------- /src/dara/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/jobs.py -------------------------------------------------------------------------------- /src/dara/peak_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/peak_detection.py -------------------------------------------------------------------------------- /src/dara/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/plot.py -------------------------------------------------------------------------------- /src/dara/prediction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/prediction/__init__.py -------------------------------------------------------------------------------- /src/dara/prediction/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/prediction/base.py -------------------------------------------------------------------------------- /src/dara/prediction/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/prediction/core.py -------------------------------------------------------------------------------- /src/dara/prediction/rn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/prediction/rn.py -------------------------------------------------------------------------------- /src/dara/prediction/rxn_ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/prediction/rxn_ca.py -------------------------------------------------------------------------------- /src/dara/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dara/refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/refine.py -------------------------------------------------------------------------------- /src/dara/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/result.py -------------------------------------------------------------------------------- /src/dara/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/schema.py -------------------------------------------------------------------------------- /src/dara/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/search/__init__.py -------------------------------------------------------------------------------- /src/dara/search/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/search/core.py -------------------------------------------------------------------------------- /src/dara/search/data_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/search/data_model.py -------------------------------------------------------------------------------- /src/dara/search/peak_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/search/peak_matcher.py -------------------------------------------------------------------------------- /src/dara/search/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/search/tree.py -------------------------------------------------------------------------------- /src/dara/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dara/server/api_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/api_router.py -------------------------------------------------------------------------------- /src/dara/server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/app.py -------------------------------------------------------------------------------- /src/dara/server/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/setting.py -------------------------------------------------------------------------------- /src/dara/server/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/README.md -------------------------------------------------------------------------------- /src/dara/server/ui/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/gatsby-config.js -------------------------------------------------------------------------------- /src/dara/server/ui/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/gatsby-node.js -------------------------------------------------------------------------------- /src/dara/server/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/package.json -------------------------------------------------------------------------------- /src/dara/server/ui/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/404.html -------------------------------------------------------------------------------- /src/dara/server/ui/public/404/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/404/index.html -------------------------------------------------------------------------------- /src/dara/server/ui/public/57410fc8030deeedff04bbfabf19294f9925e2d9-eb8847e260a45c34a1f2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/57410fc8030deeedff04bbfabf19294f9925e2d9-eb8847e260a45c34a1f2.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/57410fc8030deeedff04bbfabf19294f9925e2d9-eb8847e260a45c34a1f2.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/57410fc8030deeedff04bbfabf19294f9925e2d9-eb8847e260a45c34a1f2.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/6f797cde19b29064589bb5dc1179e6fed6df5f5a-634d22334f8432b3094d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/6f797cde19b29064589bb5dc1179e6fed6df5f5a-634d22334f8432b3094d.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/6f797cde19b29064589bb5dc1179e6fed6df5f5a-634d22334f8432b3094d.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/6f797cde19b29064589bb5dc1179e6fed6df5f5a-634d22334f8432b3094d.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/806-b910bba0608d70eeaf63.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/806-b910bba0608d70eeaf63.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/806-b910bba0608d70eeaf63.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/806-b910bba0608d70eeaf63.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/app-b33b585ff4011f009546.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/app-b33b585ff4011f009546.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/app-b33b585ff4011f009546.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/app-b33b585ff4011f009546.js.LICENSE.txt -------------------------------------------------------------------------------- /src/dara/server/ui/public/app-b33b585ff4011f009546.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/app-b33b585ff4011f009546.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/app-b757238a74a01857068f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/app-b757238a74a01857068f.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/app-b757238a74a01857068f.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/app-b757238a74a01857068f.js.LICENSE.txt -------------------------------------------------------------------------------- /src/dara/server/ui/public/app-b757238a74a01857068f.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/app-b757238a74a01857068f.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/cd1d783e2058bb475f378b4ae5e70b80a1e199cb-5499e4bd4b88271b8c36.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/cd1d783e2058bb475f378b4ae5e70b80a1e199cb-5499e4bd4b88271b8c36.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/cd1d783e2058bb475f378b4ae5e70b80a1e199cb-5499e4bd4b88271b8c36.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/cd1d783e2058bb475f378b4ae5e70b80a1e199cb-5499e4bd4b88271b8c36.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/cd1d783e2058bb475f378b4ae5e70b80a1e199cb-a2b2ded70df4b7b03c29.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/cd1d783e2058bb475f378b4ae5e70b80a1e199cb-a2b2ded70df4b7b03c29.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/cd1d783e2058bb475f378b4ae5e70b80a1e199cb-a2b2ded70df4b7b03c29.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/cd1d783e2058bb475f378b4ae5e70b80a1e199cb-a2b2ded70df4b7b03c29.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/chunk-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/chunk-map.json -------------------------------------------------------------------------------- /src/dara/server/ui/public/commons-056c96522dea66b76798.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/commons-056c96522dea66b76798.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/commons-056c96522dea66b76798.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/commons-056c96522dea66b76798.js.LICENSE.txt -------------------------------------------------------------------------------- /src/dara/server/ui/public/commons-056c96522dea66b76798.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/commons-056c96522dea66b76798.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/component---src-pages-404-js-25ab2c85ad506ad32df4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/component---src-pages-404-js-25ab2c85ad506ad32df4.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/component---src-pages-404-js-25ab2c85ad506ad32df4.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/component---src-pages-404-js-25ab2c85ad506ad32df4.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/component---src-pages-index-js-ed1b1145e1021ebb5c41.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/component---src-pages-index-js-ed1b1145e1021ebb5c41.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/component---src-pages-index-js-ed1b1145e1021ebb5c41.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/component---src-pages-index-js-ed1b1145e1021ebb5c41.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/component---src-pages-submit-js-4603b9e115ee9963ef3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/component---src-pages-submit-js-4603b9e115ee9963ef3d.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/component---src-pages-submit-js-4603b9e115ee9963ef3d.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/component---src-pages-submit-js-4603b9e115ee9963ef3d.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/component---src-pages-task-js-66ea4a8e4d1bd553db8d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/component---src-pages-task-js-66ea4a8e4d1bd553db8d.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/component---src-pages-task-js-66ea4a8e4d1bd553db8d.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/component---src-pages-task-js-66ea4a8e4d1bd553db8d.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/component---src-templates-md-templates-js-002e44d599a9ac7ae5d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/component---src-templates-md-templates-js-002e44d599a9ac7ae5d2.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/component---src-templates-md-templates-js-002e44d599a9ac7ae5d2.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/component---src-templates-md-templates-js-002e44d599a9ac7ae5d2.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/e117f8f131e1cc93205b2e614216746a0135d2ae-4985b4ced6621c479a89.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/e117f8f131e1cc93205b2e614216746a0135d2ae-4985b4ced6621c479a89.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/e117f8f131e1cc93205b2e614216746a0135d2ae-4985b4ced6621c479a89.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/e117f8f131e1cc93205b2e614216746a0135d2ae-4985b4ced6621c479a89.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/e48519b3-aa19aa04c1e8ec361279.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/e48519b3-aa19aa04c1e8ec361279.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/e48519b3-aa19aa04c1e8ec361279.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/e48519b3-aa19aa04c1e8ec361279.js.LICENSE.txt -------------------------------------------------------------------------------- /src/dara/server/ui/public/e48519b3-aa19aa04c1e8ec361279.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/e48519b3-aa19aa04c1e8ec361279.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/e8075c4baa3929c3d37a61687b697d65a10ff29e-38bcc4c0f66026e50757.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/e8075c4baa3929c3d37a61687b697d65a10ff29e-38bcc4c0f66026e50757.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/e8075c4baa3929c3d37a61687b697d65a10ff29e-38bcc4c0f66026e50757.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/e8075c4baa3929c3d37a61687b697d65a10ff29e-38bcc4c0f66026e50757.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/framework-d41bea17c3fc3e3fe984.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/framework-d41bea17c3fc3e3fe984.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/framework-d41bea17c3fc3e3fe984.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/framework-d41bea17c3fc3e3fe984.js.LICENSE.txt -------------------------------------------------------------------------------- /src/dara/server/ui/public/framework-d41bea17c3fc3e3fe984.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/framework-d41bea17c3fc3e3fe984.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/index.html -------------------------------------------------------------------------------- /src/dara/server/ui/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/manifest.json -------------------------------------------------------------------------------- /src/dara/server/ui/public/page-data/404.html/page-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/page-data/404.html/page-data.json -------------------------------------------------------------------------------- /src/dara/server/ui/public/page-data/404/page-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/page-data/404/page-data.json -------------------------------------------------------------------------------- /src/dara/server/ui/public/page-data/app-data.json: -------------------------------------------------------------------------------- 1 | {"webpackCompilationHash":"1f3748d767ad77027392"} 2 | -------------------------------------------------------------------------------- /src/dara/server/ui/public/page-data/index/page-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/page-data/index/page-data.json -------------------------------------------------------------------------------- /src/dara/server/ui/public/page-data/results/page-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/page-data/results/page-data.json -------------------------------------------------------------------------------- /src/dara/server/ui/public/page-data/task/page-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/page-data/task/page-data.json -------------------------------------------------------------------------------- /src/dara/server/ui/public/page-data/tutorial/page-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/page-data/tutorial/page-data.json -------------------------------------------------------------------------------- /src/dara/server/ui/public/polyfill-edbb1be0c2738f0008fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/polyfill-edbb1be0c2738f0008fe.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/polyfill-edbb1be0c2738f0008fe.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/polyfill-edbb1be0c2738f0008fe.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/results/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/results/index.html -------------------------------------------------------------------------------- /src/dara/server/ui/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /src/dara/server/ui/public/static/dara_explained-0a20a41514e46274c741ab7cc6956448.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/static/dara_explained-0a20a41514e46274c741ab7cc6956448.png -------------------------------------------------------------------------------- /src/dara/server/ui/public/static/favicon-329294da2ac81a2cdf7e5a11c0a57afe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/static/favicon-329294da2ac81a2cdf7e5a11c0a57afe.ico -------------------------------------------------------------------------------- /src/dara/server/ui/public/styles.4143da2ac0ae2a8f050e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/styles.4143da2ac0ae2a8f050e.css -------------------------------------------------------------------------------- /src/dara/server/ui/public/task/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/task/index.html -------------------------------------------------------------------------------- /src/dara/server/ui/public/tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/tutorial/index.html -------------------------------------------------------------------------------- /src/dara/server/ui/public/webpack-runtime-2fc51e81e2070c63e809.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/webpack-runtime-2fc51e81e2070c63e809.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/webpack-runtime-2fc51e81e2070c63e809.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/webpack-runtime-2fc51e81e2070c63e809.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/webpack-runtime-dfeedde5a6b89127f6b1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/webpack-runtime-dfeedde5a6b89127f6b1.js -------------------------------------------------------------------------------- /src/dara/server/ui/public/webpack-runtime-dfeedde5a6b89127f6b1.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/webpack-runtime-dfeedde5a6b89127f6b1.js.map -------------------------------------------------------------------------------- /src/dara/server/ui/public/webpack.stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/public/webpack.stats.json -------------------------------------------------------------------------------- /src/dara/server/ui/src/components/HeaderMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/src/components/HeaderMenu.js -------------------------------------------------------------------------------- /src/dara/server/ui/src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/src/components/Layout.js -------------------------------------------------------------------------------- /src/dara/server/ui/src/components/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/src/components/layout.css -------------------------------------------------------------------------------- /src/dara/server/ui/src/images/dara.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/src/images/dara.svg -------------------------------------------------------------------------------- /src/dara/server/ui/src/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/src/images/favicon.ico -------------------------------------------------------------------------------- /src/dara/server/ui/src/md-pages/images/dara_explained.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/src/md-pages/images/dara_explained.png -------------------------------------------------------------------------------- /src/dara/server/ui/src/md-pages/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/src/md-pages/tutorial.md -------------------------------------------------------------------------------- /src/dara/server/ui/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/src/pages/404.js -------------------------------------------------------------------------------- /src/dara/server/ui/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/src/pages/index.js -------------------------------------------------------------------------------- /src/dara/server/ui/src/pages/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/src/pages/results.js -------------------------------------------------------------------------------- /src/dara/server/ui/src/pages/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/src/pages/task.js -------------------------------------------------------------------------------- /src/dara/server/ui/src/templates/mdTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/src/templates/mdTemplates.js -------------------------------------------------------------------------------- /src/dara/server/ui/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/static/manifest.json -------------------------------------------------------------------------------- /src/dara/server/ui/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /src/dara/server/ui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/ui/yarn.lock -------------------------------------------------------------------------------- /src/dara/server/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/utils.py -------------------------------------------------------------------------------- /src/dara/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/server/worker.py -------------------------------------------------------------------------------- /src/dara/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/settings.py -------------------------------------------------------------------------------- /src/dara/structure_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/structure_db.py -------------------------------------------------------------------------------- /src/dara/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/utils.py -------------------------------------------------------------------------------- /src/dara/xrd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/src/dara/xrd.py -------------------------------------------------------------------------------- /tests/test_cif2str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/tests/test_cif2str.py -------------------------------------------------------------------------------- /tests/test_data/Bi25FeO39.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/tests/test_data/Bi25FeO39.cif -------------------------------------------------------------------------------- /tests/test_data/Bi25FeO39.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/tests/test_data/Bi25FeO39.str -------------------------------------------------------------------------------- /tests/test_data/Bi2Fe4O9.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/tests/test_data/Bi2Fe4O9.cif -------------------------------------------------------------------------------- /tests/test_data/Bi2Fe4O9.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/tests/test_data/Bi2Fe4O9.str -------------------------------------------------------------------------------- /tests/test_data/BiFeO3.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/tests/test_data/BiFeO3.cif -------------------------------------------------------------------------------- /tests/test_data/BiFeO3.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/tests/test_data/BiFeO3.str -------------------------------------------------------------------------------- /tests/test_data/BiFeO3.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/tests/test_data/BiFeO3.xy -------------------------------------------------------------------------------- /tests/test_data/RM20220915Si01.rasx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/tests/test_data/RM20220915Si01.rasx -------------------------------------------------------------------------------- /tests/test_refinement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/tests/test_refinement.py -------------------------------------------------------------------------------- /tests/test_structure_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/tests/test_structure_db.py -------------------------------------------------------------------------------- /tests/test_xrd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idocx/dara/HEAD/tests/test_xrd.py --------------------------------------------------------------------------------